aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/via/epia-n
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2010-09-24 18:42:56 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2010-09-24 18:42:56 +0000
commit20979584fe28e9e62a71aa92c5c5ad8074790de4 (patch)
tree473d4f461b50b0fa6ee26415ca8287bf224f0aec /src/mainboard/via/epia-n
parent0a6d1aebf12b786b4c5cbb85ce14cb89f3498958 (diff)
Automatically fetch bus information for mptable from
the device tree, instead of using hardcoded values. If this changes behaviour, this is either - a bug in mptable_write_buses(), or - a bug in the old mptable or device config, that is they were inconsistent. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5835 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/via/epia-n')
-rw-r--r--src/mainboard/via/epia-n/mptable.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mainboard/via/epia-n/mptable.c b/src/mainboard/via/epia-n/mptable.c
index c2e6ccc1d0..ddd96bed5c 100644
--- a/src/mainboard/via/epia-n/mptable.c
+++ b/src/mainboard/via/epia-n/mptable.c
@@ -12,6 +12,7 @@ static void *smp_write_config_table(void *v)
static const char oem[8] = "COREBOOT";
static const char productid[12] = "P4DPE ";
struct mp_config_table *mc;
+ int isa_bus;
mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
memset(mc, 0, sizeof(*mc));
@@ -31,12 +32,8 @@ static void *smp_write_config_table(void *v)
mc->reserved = 0;
smp_write_processors(mc);
+ mptable_write_buses(mc, NULL, &isa_bus);
-
-/*Bus: Bus ID Type*/
- smp_write_bus(mc, 0, "PCI ");
- smp_write_bus(mc, 1, "PCI ");
- smp_write_bus(mc, 2, "ISA ");
/*I/O APICs: APIC ID Version State Address*/
smp_write_ioapic(mc, 2, 0x20, 0xfec00000);
{
@@ -71,7 +68,7 @@ static void *smp_write_config_table(void *v)
}
}
}
- mptable_add_isa_interrupts(mc, 0x2, 0x2, 0);
+ mptable_add_isa_interrupts(mc, isa_bus, 0x2, 0);
/*I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x40, 0x2, 0x15);