2003-06-24 05:45:36 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <device/pci_ops.h>
|
|
|
|
|
2003-08-04 23:05:19 +02:00
|
|
|
#include <arch/io.h>
|
|
|
|
#include <device/chip.h>
|
|
|
|
#include "chip.h"
|
|
|
|
|
2003-06-24 05:45:36 +02:00
|
|
|
|
|
|
|
unsigned long initial_apicid[MAX_CPUS] =
|
|
|
|
{
|
2003-07-19 06:28:22 +02:00
|
|
|
0, 1,
|
2003-06-24 05:45:36 +02:00
|
|
|
};
|
2003-08-04 23:05:19 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
enable(struct chip *chip, enum chip_pass pass)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct mainboard_arima_hdama_config *conf =
|
|
|
|
(struct mainboard_arima_hdama_config *)chip->chip_info;
|
|
|
|
|
|
|
|
switch (pass) {
|
2003-08-06 01:31:26 +02:00
|
|
|
default: break;
|
|
|
|
case CONF_PASS_PRE_BOOT:
|
|
|
|
break;
|
2003-08-04 23:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
struct chip_control mainboard_arima_hdama_control = {
|
|
|
|
enable: enable,
|
|
|
|
name: "Arima HDAMA mainboard "
|
|
|
|
};
|
|
|
|
|