aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSinan Kaya <okaya@kernel.org>2018-08-10 00:32:12 -0400
committerBjorn Helgaas <bhelgaas@google.com>2018-09-17 17:32:24 -0400
commitc238252f86c1833fc0cbee3ce3b4c295d3ab24ef (patch)
tree4d7b0116c0c4a86c6969564bf8ceceb02cfb15e0
parent1ad61b612b95980a4d970c52022aa01dfc0f6068 (diff)
PCI/ACPI: Allow _OSC presence to be optional for PCI
The PCI Firmware Spec, r3.2, sec 4.5.1, says: For a host bridge device that originates a PCI Express hierarchy, the _OSC interface defined in this section is required. For a host bridge device that originates a PCI/PCI-X bus hierarchy, inclusion of an _OSC object is optional. Allow PCI host bridges to bail out silently if _OSC is not found. Reported-by: Michael Kelley <mikelley@microsoft.com> Signed-off-by: Sinan Kaya <okaya@kernel.org> [bhelgaas: cite PCI Firmware spec, the authoritative source] Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r--drivers/acpi/pci_root.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index e465e720eab2..707aafc7c2aa 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -421,7 +421,8 @@ out:
421} 421}
422EXPORT_SYMBOL(acpi_pci_osc_control_set); 422EXPORT_SYMBOL(acpi_pci_osc_control_set);
423 423
424static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm) 424static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm,
425 bool is_pcie)
425{ 426{
426 u32 support, control, requested; 427 u32 support, control, requested;
427 acpi_status status; 428 acpi_status status;
@@ -455,10 +456,15 @@ static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm)
455 decode_osc_support(root, "OS supports", support); 456 decode_osc_support(root, "OS supports", support);
456 status = acpi_pci_osc_support(root, support); 457 status = acpi_pci_osc_support(root, support);
457 if (ACPI_FAILURE(status)) { 458 if (ACPI_FAILURE(status)) {
459 *no_aspm = 1;
460
461 /* _OSC is optional for PCI host bridges */
462 if ((status == AE_NOT_FOUND) && !is_pcie)
463 return;
464
458 dev_info(&device->dev, "_OSC failed (%s)%s\n", 465 dev_info(&device->dev, "_OSC failed (%s)%s\n",
459 acpi_format_exception(status), 466 acpi_format_exception(status),
460 pcie_aspm_support_enabled() ? "; disabling ASPM" : ""); 467 pcie_aspm_support_enabled() ? "; disabling ASPM" : "");
461 *no_aspm = 1;
462 return; 468 return;
463 } 469 }
464 470
@@ -534,6 +540,7 @@ static int acpi_pci_root_add(struct acpi_device *device,
534 acpi_handle handle = device->handle; 540 acpi_handle handle = device->handle;
535 int no_aspm = 0; 541 int no_aspm = 0;
536 bool hotadd = system_state == SYSTEM_RUNNING; 542 bool hotadd = system_state == SYSTEM_RUNNING;
543 bool is_pcie;
537 544
538 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL); 545 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
539 if (!root) 546 if (!root)
@@ -591,7 +598,8 @@ static int acpi_pci_root_add(struct acpi_device *device,
591 598
592 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(handle); 599 root->mcfg_addr = acpi_pci_root_get_mcfg_addr(handle);
593 600
594 negotiate_os_control(root, &no_aspm); 601 is_pcie = strcmp(acpi_device_hid(device), "PNP0A08") == 0;
602 negotiate_os_control(root, &no_aspm, is_pcie);
595 603
596 /* 604 /*
597 * TBD: Need PCI interface for enumeration/configuration of roots. 605 * TBD: Need PCI interface for enumeration/configuration of roots.