summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/dbm690t/mptable.c
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-03 15:55:40 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-10-16 12:01:10 +0200
commit822bc65b0e8cb9c17721b8b776ec7ecf6ac4129e (patch)
treeb32448affa8d83a08cc4a754aed4731b32c09882 /src/mainboard/amd/dbm690t/mptable.c
parent0e64617d7d8adcd4d3db16eed7a34604691c2ee6 (diff)
downloadcoreboot-staging-822bc65b0e8cb9c17721b8b776ec7ecf6ac4129e.zip
coreboot-staging-822bc65b0e8cb9c17721b8b776ec7ecf6ac4129e.tar.gz
ACPI: Remove CONFIG_GENERATE_ACPI_TABLES
As currently many systems would be barely functional without ACPI, always generate ACPI tables if supported. Change-Id: I372dbd03101030c904dab153552a1291f3b63518 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4609 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/mainboard/amd/dbm690t/mptable.c')
-rw-r--r--src/mainboard/amd/dbm690t/mptable.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/mainboard/amd/dbm690t/mptable.c b/src/mainboard/amd/dbm690t/mptable.c
index 8ef9138..09d137a 100644
--- a/src/mainboard/amd/dbm690t/mptable.c
+++ b/src/mainboard/amd/dbm690t/mptable.c
@@ -97,57 +97,6 @@ static void *smp_write_config_table(void *v)
mptable_add_isa_interrupts(mc, bus_isa, apicid_sb600, 0);
- /* PCI interrupts are level triggered, and are
- * associated with a specific bus/device/function tuple.
- */
-#if !CONFIG_GENERATE_ACPI_TABLES
-#define PCI_INT(bus, dev, fn, pin) \
- smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb600, (pin))
-#else
-#define PCI_INT(bus, dev, fn, pin)
-#endif
-
- /* usb */
- PCI_INT(0x0, 0x13, 0x0, 0x10);
- PCI_INT(0x0, 0x13, 0x1, 0x11);
- PCI_INT(0x0, 0x13, 0x2, 0x12);
- PCI_INT(0x0, 0x13, 0x3, 0x13);
-
- /* sata */
- PCI_INT(0x0, 0x12, 0x0, 0x16);
-
- /* HD Audio: b0:d20:f1:reg63 should be 0. */
- PCI_INT(0x0, 0x14, 0x0, 0x10);
-
- /* on board NIC & Slot PCIE. */
- PCI_INT(bus_rs690[1], 0x5, 0x0, 0x12);
- PCI_INT(bus_rs690[1], 0x5, 0x1, 0x13);
- PCI_INT(bus_rs690[2], 0x0, 0x0, 0x12);
- PCI_INT(bus_rs690[3], 0x0, 0x0, 0x13);
- PCI_INT(bus_rs690[4], 0x0, 0x0, 0x10);
- PCI_INT(bus_rs690[5], 0x0, 0x0, 0x11);
- PCI_INT(bus_rs690[6], 0x0, 0x0, 0x12);
- PCI_INT(bus_rs690[7], 0x0, 0x0, 0x13);
-
- /* PCI slots */
- /* PCI_SLOT 0. */
- PCI_INT(bus_sb600[1], 0x5, 0x0, 0x14);
- PCI_INT(bus_sb600[1], 0x5, 0x1, 0x15);
- PCI_INT(bus_sb600[1], 0x5, 0x2, 0x16);
- PCI_INT(bus_sb600[1], 0x5, 0x3, 0x17);
-
- /* PCI_SLOT 1. */
- PCI_INT(bus_sb600[1], 0x6, 0x0, 0x15);
- PCI_INT(bus_sb600[1], 0x6, 0x1, 0x16);
- PCI_INT(bus_sb600[1], 0x6, 0x2, 0x17);
- PCI_INT(bus_sb600[1], 0x6, 0x3, 0x14);
-
- /* PCI_SLOT 2. */
- PCI_INT(bus_sb600[1], 0x7, 0x0, 0x16);
- PCI_INT(bus_sb600[1], 0x7, 0x1, 0x17);
- PCI_INT(bus_sb600[1], 0x7, 0x2, 0x14);
- PCI_INT(bus_sb600[1], 0x7, 0x3, 0x15);
-
/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
OpenPOWER on IntegriCloud