]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
PCI: Wait for Link before restoring Downstream Buses
authorIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Thu, 8 Aug 2024 12:17:07 +0000 (15:17 +0300)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 9 Aug 2024 20:35:42 +0000 (15:35 -0500)
__pci_reset_bus() calls pci_bridge_secondary_bus_reset() to perform the
reset and also waits for the Secondary Bus to become again accessible.
__pci_reset_bus() then calls pci_bus_restore_locked() that restores the PCI
devices connected to the bus, and if necessary, recursively restores also
the subordinate buses and their devices.

The logic in pci_bus_restore_locked() does not take into account that after
restoring a device on one level, there might be another Link Downstream
that can only start to come up after restore has been performed for its
Downstream Port device. That is, the Link may require additional wait until
it becomes accessible.

Similarly, pci_slot_restore_locked() lacks wait.

Amend pci_bus_restore_locked() and pci_slot_restore_locked() to wait for
the Secondary Bus before recursively performing the restore of that bus.

Fixes: 090a3c5322e9 ("PCI: Add pci_reset_slot() and pci_reset_bus()")
Link: https://lore.kernel.org/r/20240808121708.2523-1-ilpo.jarvinen@linux.intel.com
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/pci.c

index e3a49f66982d52fc8a30f3dbf387a2ea95be1deb..98c7b732998aa72cedc3f028822c7feed8352460 100644 (file)
@@ -5671,8 +5671,10 @@ static void pci_bus_restore_locked(struct pci_bus *bus)
 
        list_for_each_entry(dev, &bus->devices, bus_list) {
                pci_dev_restore(dev);
-               if (dev->subordinate)
+               if (dev->subordinate) {
+                       pci_bridge_wait_for_secondary_bus(dev, "bus reset");
                        pci_bus_restore_locked(dev->subordinate);
+               }
        }
 }
 
@@ -5706,8 +5708,10 @@ static void pci_slot_restore_locked(struct pci_slot *slot)
                if (!dev->slot || dev->slot != slot)
                        continue;
                pci_dev_restore(dev);
-               if (dev->subordinate)
+               if (dev->subordinate) {
+                       pci_bridge_wait_for_secondary_bus(dev, "slot reset");
                        pci_bus_restore_locked(dev->subordinate);
+               }
        }
 }