linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] PCI/ACPI: correct error message for ASPM disabling
@ 2018-08-09 18:46 Sinan Kaya
  2018-08-09 18:46 ` [PATCH 2/2] PCI/ACPI: allow _OSC presence to be optional for PCI Sinan Kaya
  2018-08-10  0:27 ` [PATCH 1/2] PCI/ACPI: correct error message for ASPM disabling Joe Perches
  0 siblings, 2 replies; 4+ messages in thread
From: Sinan Kaya @ 2018-08-09 18:46 UTC (permalink / raw)
  To: linux-pci
  Cc: Sinan Kaya, Bjorn Helgaas, Rafael J. Wysocki, Len Brown,
	open list:ACPI, open list

If _OSC execution fails today for platforms without an _OSC
entry, code is printing a misleading message saying disabling
ASPM as follows:

acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM

We need to ensure that platform supports ASPM to begin with.

Signed-off-by: Sinan Kaya <okaya@kernel.org>
Reported-by: Michael Kelley <mikelley@microsoft.com>
---
 drivers/acpi/pci_root.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index 7433035..9d738e2 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -455,8 +455,13 @@ static void negotiate_os_control(struct acpi_pci_root *root, int *no_aspm)
 	decode_osc_support(root, "OS supports", support);
 	status = acpi_pci_osc_support(root, support);
 	if (ACPI_FAILURE(status)) {
-		dev_info(&device->dev, "_OSC failed (%s); disabling ASPM\n",
-			 acpi_format_exception(status));
+		char *aspm_msg = "";
+
+		if (pcie_aspm_support_enabled())
+			aspm_msg = "; disabling ASPM";
+
+		dev_info(&device->dev, "_OSC failed (%s) %s\n",
+				 acpi_format_exception(status), aspm_msg);
 		*no_aspm = 1;
 		return;
 	}
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-08-10  2:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-09 18:46 [PATCH 1/2] PCI/ACPI: correct error message for ASPM disabling Sinan Kaya
2018-08-09 18:46 ` [PATCH 2/2] PCI/ACPI: allow _OSC presence to be optional for PCI Sinan Kaya
2018-08-10  0:27 ` [PATCH 1/2] PCI/ACPI: correct error message for ASPM disabling Joe Perches
2018-08-10  2:15   ` Sinan Kaya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).