summaryrefslogtreecommitdiff
path: root/src/superio/serverengines/pilot/pilot_early_init.c
diff options
context:
space:
mode:
authorMondrian nuessle <nuessle@uni-hd.de>2009-04-22 20:30:42 +0000
committerMyles Watson <mylesgw@gmail.com>2009-04-22 20:30:42 +0000
commit21da019a1e2840ef8c17d0733c574fa4abd4eedd (patch)
tree34f265cc8f51429cdacb81abdcd17310da841e30 /src/superio/serverengines/pilot/pilot_early_init.c
parentd9b1c4f42f8e2fc4c3e44fa23f815c68e5127385 (diff)
downloadcoreboot-21da019a1e2840ef8c17d0733c574fa4abd4eedd.tar.xz
This patch add rudimentary support for the superio functionality of
the Serverengines Pilot BMC chip. Necessary to get serial out on the HP DL145 G3. Signed-off-by: Mondrian nuessle <nuessle@uni-hd.de> Acked-by: Samuel Verstraete <samuel.verstraete@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/serverengines/pilot/pilot_early_init.c')
-rw-r--r--src/superio/serverengines/pilot/pilot_early_init.c96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/superio/serverengines/pilot/pilot_early_init.c b/src/superio/serverengines/pilot/pilot_early_init.c
new file mode 100644
index 0000000000..0bd83c96ec
--- /dev/null
+++ b/src/superio/serverengines/pilot/pilot_early_init.c
@@ -0,0 +1,96 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2009 University of Heidelberg
+ * Written by Mondrian Nuessle <nuessle@uni-heidelberg.de> for University of Heidelberg
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/* PILOT SuperIO is only based on LPC observation done on factory system. */
+
+#define BLUBB_DEV PNP_DEV(port, 0x04)
+
+/* Logical device 4, 5 and 7 are being deactivated. Logical Device 1 seems to
+ be another serial (?), it is also deactivated on the HP machine */
+static void pilot_early_init(device_t dev)
+{
+ unsigned port = dev>>8;
+ print_debug("Using port:");print_debug_hex16(port);print_debug("\r\n");
+ pilot_disable_serial(PNP_DEV(port,0x1));
+ print_debug("disable serial 1\r\n");
+
+/*
+pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x3));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable( PNP_DEV(port,0x3),0);
+ pnp_exit_ext_func_mode(dev);
+*/
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x4));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable( PNP_DEV(port,0x4),0);
+ pnp_exit_ext_func_mode(dev);
+
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x5));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable(PNP_DEV(port,0x5),0);
+ pnp_exit_ext_func_mode(dev);
+ /*
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x6));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable( PNP_DEV(port,0x6),0);
+ pnp_exit_ext_func_mode(dev);
+*/
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x7));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable(PNP_DEV(port,0x7), 0);
+ pnp_exit_ext_func_mode(dev);
+/*
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x8));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable(PNP_DEV(port,0x8), 0);
+ pnp_exit_ext_func_mode(dev);
+
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x9));
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable(PNP_DEV(port,0x9), 0);
+ pnp_exit_ext_func_mode(dev);
+
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_logical_device(PNP_DEV(port,0x10;
+ pnp_exit_ext_func_mode(dev);
+ pnp_enter_ext_func_mode(dev);
+ pnp_set_enable(PNP_DEV(port,0x10 0);
+ pnp_exit_ext_func_mode(dev);
+*/
+
+}
+
+
+