summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/Kconfig
diff options
context:
space:
mode:
authorYinghai Lu2013-03-28 05:28:58 +0100
committerRafael J. Wysocki2013-03-30 02:07:17 +0100
commit545d6e189a41c94c11f55045a771118eccc9d9eb (patch)
tree1c9adc565cf4988e1e10180e3a2e079e8c61e81d /drivers/acpi/Kconfig
parentACPI / processor_thermal: avoid null pointer deference error (diff)
downloadkernel-qcow2-linux-545d6e189a41c94c11f55045a771118eccc9d9eb.tar.gz
kernel-qcow2-linux-545d6e189a41c94c11f55045a771118eccc9d9eb.tar.xz
kernel-qcow2-linux-545d6e189a41c94c11f55045a771118eccc9d9eb.zip
PCI / ACPI: Don't query OSC support with all possible controls
Found problem on system that firmware that could handle pci aer. Firmware get error reporting after pci injecting error, before os boots. But after os boots, firmware can not get report anymore, even pci=noaer is passed. Root cause: BIOS _OSC has problem with query bit checking. It turns out that BIOS vendor is copying example code from ACPI Spec. In ACPI Spec 5.0, page 290: If (Not(And(CDW1,1))) // Query flag clear? { // Disable GPEs for features granted native control. If (And(CTRL,0x01)) // Hot plug control granted? { Store(0,HPCE) // clear the hot plug SCI enable bit Store(1,HPCS) // clear the hot plug SCI status bit } ... } When Query flag is set, And(CDW1,1) will be 1, Not(1) will return 0xfffffffe. So it will get into code path that should be for control set only. BIOS acpi code should be changed to "If (LEqual(And(CDW1,1), 0)))" Current kernel code is using _OSC query to notify firmware about support from OS and then use _OSC to set control bits. During query support, current code is using all possible controls. So will execute code that should be only for control set stage. That will have problem when pci=noaer or aer firmware_first is used. As firmware have that control set for os aer already in query support stage, but later will not os aer handling. We should avoid passing all possible controls, just use osc_control_set instead. That should workaround BIOS bugs with affected systems on the field as more bios vendors are copying sample code from ACPI spec. Signed-off-by: Yinghai Lu <yinghai@kernel.org> Cc: stable@vger.kernel.org Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/Kconfig')
0 files changed, 0 insertions, 0 deletions