- Updates to config.g so that it works more reliably and has initial support
[coreboot.git] / src / mainboard / newisys / khepri / mainboard.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <device/pci.h>
4 #include <device/pci_ids.h>
5 #include <device/pci_ops.h>
6
7 #include <arch/io.h>
8 #include <device/chip.h>
9 #include "chip.h"
10
11
12 unsigned long initial_apicid[CONFIG_MAX_CPUS] =
13 {
14         0, 1,
15 };
16
17 static void
18 enable(struct chip *chip, enum chip_pass pass)
19 {
20
21         struct mainboard_newisys_khepri_config *conf =
22                 (struct mainboard_newisys_khepri_config *)chip->chip_info;
23
24         switch (pass) {
25         default: break;
26         case CONF_PASS_PRE_BOOT:
27                 break;
28         }
29
30 }
31 struct chip_control mainboard_newisys_khepri_control = {
32                 enable: enable,
33                 name:   "Newisys Khepri mainboard "
34 };
35