]> Git Repo - linux.git/commitdiff
PCI: Honor firmware's device disabled status
authorRob Herring <[email protected]>
Fri, 10 Feb 2023 16:43:51 +0000 (10:43 -0600)
committerBjorn Helgaas <[email protected]>
Mon, 13 Feb 2023 21:29:56 +0000 (15:29 -0600)
If a device has a firmware node (DT/ACPI), and the device is marked
disabled, that is currently ignored. Add a check for this condition and
bail out creating the pci_dev.

This assumes the config space for the device can still be accessed because
they already have by this point in order to identify the device.

Link: https://lore.kernel.org/r/[email protected]
Tested-by: Binbin Zhou <[email protected]>
Signed-off-by: Rob Herring <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Cc: Liu Peibao <[email protected]>
Cc: Huacai Chen <[email protected]>
drivers/pci/probe.c

index 1779582fb5007cd1ba0b054e78c545d0d4f644c3..b1d80c1d7a691a0fe7c1841f76455775b30ee7c0 100644 (file)
@@ -1841,6 +1841,8 @@ int pci_setup_device(struct pci_dev *dev)
 
        pci_set_of_node(dev);
        pci_set_acpi_fwnode(dev);
+       if (dev->dev.fwnode && !fwnode_device_is_available(dev->dev.fwnode))
+               return -ENODEV;
 
        pci_dev_assign_slot(dev);
 
This page took 0.081317 seconds and 4 git commands to generate.