diff options
author | Marc Jones <marc.jones@amd.com> | 2008-09-26 17:41:34 +0000 |
---|---|---|
committer | Marc Jones <marc.jones@amd.com> | 2008-09-26 17:41:34 +0000 |
commit | 96bcc53071bacc284df46093cfc3981b437cf035 (patch) | |
tree | cc9f4671de8ced6bfa3216da7c6aa062ab3eb140 /src/mainboard | |
parent | ad9bdb4345d73c7e9ae53b4bef4796d4216c34a2 (diff) | |
download | coreboot-96bcc53071bacc284df46093cfc3981b437cf035.tar.xz |
Add IRQ12 to the dbm690t mptable for mouse interrupt support.
Signed-off-by: Marc Jones <marc.jones@amd.com>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3603 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/amd/dbm690t/mptable.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/amd/dbm690t/mptable.c b/src/mainboard/amd/dbm690t/mptable.c index 7273b545f4..b776116754 100644 --- a/src/mainboard/amd/dbm690t/mptable.c +++ b/src/mainboard/amd/dbm690t/mptable.c @@ -135,6 +135,8 @@ void *smp_write_config_table(void *v) smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, 0x7, apicid_sb600, 0x7); smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, + bus_isa, 0xc, apicid_sb600, 0xc); + smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, 0xd, apicid_sb600, 0xd); smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, 0xe, apicid_sb600, 0xe); |