diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-08-07 14:11:08 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-08-07 14:11:08 +0000 |
commit | 235c2545632008bda411d3287fa0fa5f6707144b (patch) | |
tree | 8ead43266bb028df4778ce8cd497b2c6e4d77ee9 | |
parent | 081e8cfd21ca6826fde0d3b318b66c1cd2330eba (diff) |
more quartet fixes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1085 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/mainboard/amd/quartet/auto.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/amd/quartet/auto.c b/src/mainboard/amd/quartet/auto.c index 9ac94b2a32..54fef9304b 100644 --- a/src/mainboard/amd/quartet/auto.c +++ b/src/mainboard/amd/quartet/auto.c @@ -162,6 +162,7 @@ static void main(void) static const struct mem_controller cpu[] = { { + .node_id = 0, .f0 = PCI_DEV(0, 0x18, 0), .f1 = PCI_DEV(0, 0x18, 1), .f2 = PCI_DEV(0, 0x18, 2), @@ -170,6 +171,7 @@ static void main(void) .channel1 = { (0xa<<3)|1, (0xa<<3)|3, 0, 0 }, }, { + .node_id = 1, .f0 = PCI_DEV(0, 0x19, 0), .f1 = PCI_DEV(0, 0x19, 1), .f2 = PCI_DEV(0, 0x19, 2), @@ -178,6 +180,7 @@ static void main(void) .channel1 = { (0xa<<3)|5, (0xa<<3)|7, 0, 0 }, }, { + .node_id = 2, .f0 = PCI_DEV(0, 0x1a, 0), .f1 = PCI_DEV(0, 0x1a, 1), .f2 = PCI_DEV(0, 0x1a, 2), @@ -186,6 +189,7 @@ static void main(void) .channel1 = { (0xa<<3)|9, (0xa<<3)|11, 0, 0 }, }, { + .node_id = 3, .f0 = PCI_DEV(0, 0x1b, 0), .f1 = PCI_DEV(0, 0x1b, 1), .f2 = PCI_DEV(0, 0x1b, 2), @@ -200,6 +204,7 @@ static void main(void) enable_lapic(); init_timer(); if (!boot_cpu()) { + notify_bsp_ap_is_stopped(); stop_this_cpu(); } pc87360_enable_serial(); |