aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2010-08-23 17:55:59 -0400
committerJesse Barnes <jbarnes@virtuousgeek.org>2010-08-24 16:44:17 -0400
commit2b8fd9186d9275b07aef43e5bb4e98cd571f9a7d (patch)
tree8ddae8c12e8dabfffb3eed75aff0f3121b955e9c /drivers/acpi
parentab8e8957a2ae21c0f036476c6db13e949be730ac (diff)
ACPI/PCI: Do not preserve _OSC control bits returned by a query
There is the assumption in acpi_pci_osc_control_set() that it is always sufficient to compare the mask of _OSC control bits to be requested with the result of an _OSC query where all of the known control bits have been checked. However, in general, that need not be the case. For example, if an _OSC feature A depends on an _OSC feature B and control of A, B plus another _OSC feature C is requested simultaneously, the BIOS may return A, B, C, while it would only return C if A and C were requested without B. That may result in passing a wrong mask of _OSC control bits to an _OSC control request, in which case the BIOS may only grant control of a subset of the requested features. Moreover, acpi_pci_run_osc() will return error code if that happens and the caller of acpi_pci_osc_control_set() will not know that it's been granted control of some _OSC features. Consequently, the system will generally not work as expected. Apart from this acpi_pci_osc_control_set() always uses the mask of _OSC control bits returned by the very first invocation of acpi_pci_query_osc(), but that is done with the second argument equal to OSC_PCI_SEGMENT_GROUPS_SUPPORT which generally happens to affect the returned _OSC control bits. For these reasons, make acpi_pci_osc_control_set() always check if control of the requested _OSC features will be granted before making the final control request. As a result, the osc_control_qry and osc_queried members of struct acpi_pci_root are not necessary any more, so drop them and remove the remaining code referring to them. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/pci_root.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index d2ae816df0f5..77cd19697b1e 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -249,12 +249,8 @@ static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
249 status = acpi_pci_run_osc(root->device->handle, capbuf, &result); 249 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
250 if (ACPI_SUCCESS(status)) { 250 if (ACPI_SUCCESS(status)) {
251 root->osc_support_set = support; 251 root->osc_support_set = support;
252 if (control) { 252 if (control)
253 *control = result; 253 *control = result;
254 } else {
255 root->osc_control_qry = result;
256 root->osc_queried = 1;
257 }
258 } 254 }
259 return status; 255 return status;
260} 256}
@@ -409,14 +405,12 @@ acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
409 goto out; 405 goto out;
410 406
411 /* Need to query controls first before requesting them */ 407 /* Need to query controls first before requesting them */
412 if (!root->osc_queried) { 408 flags = control_req;
413 status = acpi_pci_query_osc(root, root->osc_support_set, NULL); 409 status = acpi_pci_query_osc(root, root->osc_support_set, &flags);
414 if (ACPI_FAILURE(status)) 410 if (ACPI_FAILURE(status))
415 goto out; 411 goto out;
416 } 412
417 if ((root->osc_control_qry & control_req) != control_req) { 413 if (flags != control_req) {
418 printk(KERN_DEBUG
419 "Firmware did not grant requested _OSC control\n");
420 status = AE_SUPPORT; 414 status = AE_SUPPORT;
421 goto out; 415 goto out;
422 } 416 }