Bug 7679
Summary: | RTC IRQ 8 screams unless pnpacpi=off - Intel STL2 | ||
---|---|---|---|
Product: | ACPI | Reporter: | Len Brown (lenb) |
Component: | BIOS | Assignee: | Len Brown (lenb) |
Status: | CLOSED DUPLICATE | ||
Severity: | normal | CC: | acpi-bugzilla |
Priority: | P2 | ||
Hardware: | i386 | ||
OS: | Linux | ||
Kernel Version: | 2.6.19 | Subsystem: | |
Regression: | --- | Bisected commit-id: | |
Attachments: |
acpidump
2.6.19 dmesg pnpacpi=off 2.6.19 dmesg |
Description
Len Brown
2006-12-14 02:16:38 UTC
Created attachment 9813 [details]
acpidump
Created attachment 9814 [details]
2.6.19 dmesg pnpacpi=off
Created attachment 9815 [details]
2.6.19 dmesg
This is a BIOS bug. _CRS claims the interrupt is level for RTC. We had a similar bug report http://bugzilla.kernel.org/show_bug.cgi?id=5243 and a workaround there. per Shaohua's comment #4, the DSDT (and thus pnpacpi) parse the BIOS DSDT, which erroneously sets IRQ8 to level sensitive. Device (RTC) { Name (_HID, EisaId ("PNP0B00")) Name (RTCD, 0x00) Name (CRSP, ResourceTemplate () { IO (Decode16, 0x0070, 0x0070, 0x01, 0x02) IRQ (Level, ActiveLow, Exclusive) {8} }) Method (_CRS, 0, NotSerialized) { Return (CRSP) } So technically, this is a BIOS bug, and a duplicate of bug 5243, which is has the same fix as bug 9153:-) |