summaryrefslogtreecommitdiff
path: root/src/mainboard/newisys/khepri/mainboard.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2003-08-28 17:23:15 +0000
committerStefan Reinauer <stepan@openbios.org>2003-08-28 17:23:15 +0000
commitb980e39c81a1eed2dc3e2d1a939320292b36885c (patch)
tree857194fa2ea1078add319df58ed998cf67b13749 /src/mainboard/newisys/khepri/mainboard.c
parentf4440e65a45aaa7d05ea55a8304630d7fd31ac44 (diff)
downloadcoreboot-b980e39c81a1eed2dc3e2d1a939320292b36885c.tar.xz
add first bunch of newisys khepri files.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1090 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/newisys/khepri/mainboard.c')
-rw-r--r--src/mainboard/newisys/khepri/mainboard.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/mainboard/newisys/khepri/mainboard.c b/src/mainboard/newisys/khepri/mainboard.c
new file mode 100644
index 0000000000..9e5c0acc89
--- /dev/null
+++ b/src/mainboard/newisys/khepri/mainboard.c
@@ -0,0 +1,35 @@
+#include <console/console.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+#include <device/pci_ops.h>
+
+#include <arch/io.h>
+#include <device/chip.h>
+#include "chip.h"
+
+
+unsigned long initial_apicid[MAX_CPUS] =
+{
+ 0, 1,
+};
+
+static void
+enable(struct chip *chip, enum chip_pass pass)
+{
+
+ struct mainboard_newisys_khepri_config *conf =
+ (struct mainboard_newisys_khepri_config *)chip->chip_info;
+
+ switch (pass) {
+ default: break;
+ case CONF_PASS_PRE_BOOT:
+ break;
+ }
+
+}
+struct chip_control mainboard_newisys_khepri_control = {
+ enable: enable,
+ name: "Newisys Khepri mainboard "
+};
+