Bug 201133
Summary: | ACPI BIOS Error (bug): Failure creating [\_SB.PCI0._OSC.CAPB], AE_ALREADY_EXISTS - Toshiba NB250 Netbook | ||
---|---|---|---|
Product: | ACPI | Reporter: | magiblot |
Component: | BIOS | Assignee: | acpi_bios |
Status: | RESOLVED DUPLICATE | ||
Severity: | normal | CC: | magiblot |
Priority: | P1 | ||
Hardware: | x86-64 | ||
OS: | Linux | ||
Kernel Version: | 4.* | Subsystem: | |
Regression: | No | Bisected commit-id: | |
Attachments: |
dmesg output with acpi-related messages
output of acpidump acpi disassemby |
Description
magiblot
2018-09-14 17:53:17 UTC
Created attachment 278541 [details]
dmesg output with acpi-related messages
Created attachment 278543 [details]
output of acpidump
Created attachment 278545 [details]
acpi disassemby
I have found the root cause of the overheating issue, which is the actual issue I wanted to solve, and it has nothing to do with the ACPI error shown at boot. For the interested, the culprit is the intel_idle driver. Disabling it with the kernel parameter 'intel_idle.max_cstate=0' (so that acpi_idle will be used) makes the processor behave the same as in Linux. In addition, the code which produces the ACPI error message is essentially identical to the one from https://bugzilla.kernel.org/show_bug.cgi?id=23442, so this report can be considered a duplicate. From attachment 278545 [details]: > Method (_OSC, 4, NotSerialized) // _OSC: Operating System Capabilities > { > Local0 = Arg2 > Local1 = (Local0 * 0x04) > Name (BUF1, Buffer (Local1){}) > BUF1 = Arg3 > Local1 = 0x00 > Local2 = 0x00 > While (Local0) > { > Local2 = (Local1 * 0x04) > CreateDWordField (BUF1, Local2, CAPB) > If (Arg2) > { > CAPB &= 0xFFFFFFFC > CAPB |= 0x00 > } > Else > { > } > > Local1++ > Local0-- > } > > Return (BUF1) /* \_SB_.PCI0._OSC.BUF1 */ > } *** This bug has been marked as a duplicate of bug 23442 *** Finally, let me correct a typo. In comment #4, when I said: > makes the processor behave the same as in Linux. I meant Windows. Comment on attachment 278543 [details] output of acpidump Corrected MIME type of attachment 278543 [details] |