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>
|
2003-09-02 19:16:48 +02:00
|
|
|
#include "../../../northbridge/amd/amdk8/northbridge.h"
|
2003-08-04 23:05:19 +02:00
|
|
|
#include "chip.h"
|
|
|
|
|
2003-06-24 05:45:36 +02:00
|
|
|
|
2003-09-02 01:17:58 +02:00
|
|
|
unsigned long initial_apicid[CONFIG_MAX_CPUS] =
|
2003-06-24 05:45:36 +02:00
|
|
|
{
|
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
|
|
|
|
2003-09-02 19:16:48 +02:00
|
|
|
static struct device_operations mainboard_operations = {
|
|
|
|
.read_resources = root_dev_read_resources,
|
|
|
|
.set_resources = root_dev_set_resources,
|
|
|
|
.enable_resources = enable_childrens_resources,
|
|
|
|
.init = 0,
|
|
|
|
.scan_bus = amdk8_scan_root_bus,
|
|
|
|
.enable = 0,
|
|
|
|
};
|
2003-08-04 23:05:19 +02:00
|
|
|
|
2003-09-02 19:16:48 +02:00
|
|
|
static void enumerate(struct chip *chip)
|
|
|
|
{
|
|
|
|
struct chip *child;
|
|
|
|
dev_root.ops = &mainboard_operations;
|
|
|
|
chip->dev = &dev_root;
|
|
|
|
chip->bus = 0;
|
|
|
|
for(child = chip->children; child; child = child->next) {
|
|
|
|
child->bus = &dev_root.link[0];
|
|
|
|
}
|
2003-08-04 23:05:19 +02:00
|
|
|
}
|
|
|
|
struct chip_control mainboard_arima_hdama_control = {
|
2003-09-02 19:16:48 +02:00
|
|
|
.enumerate = enumerate,
|
|
|
|
.name = "Arima HDAMA mainboard ",
|
2003-08-04 23:05:19 +02:00
|
|
|
};
|
|
|
|
|