Move generation of mptable entries for ISA to generic code.
[coreboot.git] / src / mainboard / asrock / 939a785gmh / mptable.c
index e2ab5abd8cefa12db8699a7034a83871f8948099..b45f8e4219023ef94fc965207abd289fde98096b 100644 (file)
@@ -118,27 +118,10 @@ static void *smp_write_config_table(void *v)
                }
        }
 
-       /* I/O Ints:    Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
 #define IO_LOCAL_INT(type, intr, apicid, pin) \
        smp_write_intsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
 
-       IO_LOCAL_INT(mp_ExtINT, 0x0, apicid_sb700, 0x0);
-
-       /* ISA ints are edge-triggered, and usually originate from the ISA bus,
-        * or its remainings.
-        */
-#define ISA_INT(intr, pin) \
-       smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, (intr), apicid_sb700, (pin))
-
-       ISA_INT(0x1, 0x1);
-       ISA_INT(0x0, 0x2);
-       ISA_INT(0x3, 0x3);
-       ISA_INT(0x4, 0x4);
-       ISA_INT(0x6, 0x6);
-       ISA_INT(0x7, 0x7);
-       ISA_INT(0xc, 0xc);
-       ISA_INT(0xd, 0xd);
-       ISA_INT(0xe, 0xe);
+       mptable_add_isa_interrupts(mc, bus_isa, apicid_sb700, 0);
 
        /* PCI interrupts are level triggered, and are
         * associated with a specific bus/device/function tuple.