diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-09-09 13:30:58 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-09-09 13:30:58 +0000 |
commit | 5282cd08756eb5084d5a86a7e18a87bc6801d5b7 (patch) | |
tree | 53c0630690707e1206eade7ac0151fd58f72a1c4 /src/mainboard/amd/quartet/mainboard.c | |
parent | dad60489d5dcce58ad6b99f5bc6becc1d4fc7660 (diff) |
remove old config files, adopt to new config method. fix resource map (?)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1107 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/quartet/mainboard.c')
-rw-r--r-- | src/mainboard/amd/quartet/mainboard.c | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/src/mainboard/amd/quartet/mainboard.c b/src/mainboard/amd/quartet/mainboard.c index 0622150d64..6c4d435ee1 100644 --- a/src/mainboard/amd/quartet/mainboard.c +++ b/src/mainboard/amd/quartet/mainboard.c @@ -1,11 +1,42 @@ + #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 "../../../northbridge/amd/amdk8/northbridge.h" +#include "chip.h" + unsigned long initial_apicid[CONFIG_MAX_CPUS] = { - 0, 1, 2, 3 + 0, 1, 2, 3, +}; + +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, +}; + +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]; + } +} +struct chip_control mainboard_amd_quartet_control = { + .enumerate = enumerate, + .name = "AMD Quartet mainboard ", }; + |