ioapic: Don't do the default IRQ configure, if it is mapped to different GSI
authorSepherosa Ziehau <sephe@dragonflybsd.org>
Fri, 22 Jul 2011 01:54:03 +0000 (09:54 +0800)
committerSepherosa Ziehau <sephe@dragonflybsd.org>
Fri, 22 Jul 2011 08:44:53 +0000 (16:44 +0800)
commit41f4f2876f040377b466c255ffe4c957f84b1af2
tree36a63118ed4d1b7ab23745821ed6d482c49b746e
parent19cfb338f0a53355d59ac7b749135a17250c81b8
ioapic: Don't do the default IRQ configure, if it is mapped to different GSI

The problem went on unnoticed for such a long time, mainly because most of
the mobos only map IRQ0 to GSI2, and GSI0 is taken as being hooked to the
external interrupt source like i8259.

However, the bug reporter's mobo has an extra IRQ source override entry in
ACPI MADT, which maps IRQ9 to GSI21.  The problem reported is actually
caused by:
GSI is configured in the ascending order, so GSI9 is configured before GSI21.
Since there is no explicit IRQ to GSI mapping for GSI9, by using the default
1:1 mapping IRQ9 will be configured.  When GSI21 is configured, due to the
explicit IRQ to GSI mapping, IRQ9 will be configured again, booo

Reported-by: Siju George <sgeorge.ml@gmail.com>
sys/platform/pc32/apic/ioapic.c
sys/platform/pc64/apic/ioapic.c