PCI/ACPI: Fix companion lookup for device 0 on the root bus
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 11 Dec 2020 20:17:35 +0000 (21:17 +0100)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 11 Dec 2020 23:20:36 +0000 (17:20 -0600)
commitaa0b1574fd36f6929f0a3094342a08622c80b4d1
tree61f2e19c30b5b7118badd46097cbd652374bbe99
parent0af6e21eed2778e68139941389460e2a00d6ef8e
PCI/ACPI: Fix companion lookup for device 0 on the root bus

In some cases acpi_pci_find_companion() returns an incorrect device object
as the ACPI companion for device 0 on the root bus (bus 0).

On the affected systems that device is the PCI interface to the host bridge
and the "ACPI companion" returned for it corresponds to a non-PCI device
located in the SoC (e.g. a sensor on an I2C bus).  As a result of this, the
ACPI device object "attached" to PCI device 00:00.0 cannot be used for
enumerating the device that is really represented by it which (of course)
is problematic.

Address that issue by preventing acpi_pci_find_companion() from returning a
device object with a valid _HID (which by the spec should not be present
uder ACPI device objects corresponding to PCI devices) for PCI device
00:00.0.

[bhelgaas: use pci_is_root_bus()]
Link: https://lore.kernel.org/linux-acpi/1409ba0c-1580-dc09-e6fe-a0c9bcda6462@gmail.com/
Link: https://lore.kernel.org/r/4673285.9aE2nYKHPr@kreacher
Reported-by: Daniel Scally <djrscally@gmail.com>
Tested-by: Daniel Scally <djrscally@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Daniel Scally <djrscally@gmail.com>
drivers/pci/pci-acpi.c