2004-06-28 13:57:31 +02:00
|
|
|
#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 "chip.h"
|
|
|
|
|
|
|
|
static int mainboard_scan_bus(device_t root, int maxbus)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
printk_spew("%s: root %p maxbus %d\n", __FUNCTION__, root, maxbus);
|
|
|
|
retval = pci_scan_bus(root->bus, 0, 0xff, maxbus);
|
|
|
|
printk_spew("DONE %s: return %d\n", __FUNCTION__, maxbus);
|
|
|
|
return maxbus;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_operations mainboard_operations = {
|
|
|
|
.read_resources = root_dev_read_resources,
|
|
|
|
.set_resources = root_dev_set_resources,
|
2004-10-21 12:44:08 +02:00
|
|
|
.enable_resources = root_dev_enable_resources,
|
|
|
|
.init = root_dev_init,
|
2004-06-28 13:57:31 +02:00
|
|
|
.scan_bus = mainboard_scan_bus,
|
|
|
|
};
|
|
|
|
|
2004-10-21 12:44:08 +02:00
|
|
|
static void enable_dev(struct device *dev)
|
2004-06-28 13:57:31 +02:00
|
|
|
{
|
2004-10-21 12:44:08 +02:00
|
|
|
dev->ops = &mainboard_operations;
|
2004-06-28 13:57:31 +02:00
|
|
|
}
|
|
|
|
|
2004-10-21 12:44:08 +02:00
|
|
|
struct chip_operations mainboard_emulation_qemu_i386_control = {
|
|
|
|
.enable_dev = enable_dev,
|
|
|
|
.name = "qemu mainboard ",
|
2004-06-28 13:57:31 +02:00
|
|
|
};
|
|
|
|
|