summaryrefslogtreecommitdiff
path: root/src/mainboard/newisys/khepri/mainboard.c
blob: 88c5977cbb45f7e0325a8da07656bfe2a9fb4e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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[CONFIG_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 "
};