PCI currently provides pci_reset_function() which will try several reset mechanisms including PCIe FLR, AF FLR, PM reset, and only if none of those are available and the device is alone on the bus, a secondary bus reset. This is rather limiting because many devices don't support FLR and don't have useful PM resets. A driver, like vfio, that may control all of the devices on a bus needs an interface to reset a bus even if it has multiple devices.
This series adds pci_reset_slot() and pci_reset_bus() to allow that. pci_reset_slot() also corrects a problem in the secondary bus reset path where a bridge supporting pciehp with surprise removal may detect a device presence change during secondary bus reset and attempt to remove and re-add the device. This series allows a driver to determine which reset mechanisms are available for a device and upgrade to a slot or bus reset depending on what the platform drivers support. I still need to integrate this all the way through to vfio, but I'd like some feedback on the PCI changes before investing too much in that. I'm finding with attempting to support graphics devices exposed through vfio that they are typically multifunction devices (func0 = gfx, func1 = audio) where both devices are grouped in the same iommu group, thus vfio controls both of them. They don't support any kind of FLR and a PM reset does nothing. Also, host drivers or even userspace drivers, leave the device in an unusable state, so many users are having problems. I think these interfaces should significantly improve our repeatability for such devices. Thanks, Alex --- Alex Williamson (8): pci: Create pci_reset_bridge_secondary_bus() pci: Add hotplug_slot_ops.reset_slot() pci: Add pci_hp_reset_slot pci: Implement reset_slot for pciehp pci: Add reset_slot option to pci_dev_reset pci: Split out pci_dev lock/unlock and save/restore pci: Add slot and bus reset interfaces pci: Add reset probe functions drivers/pci/hotplug/pci_hotplug_core.c | 24 ++ drivers/pci/hotplug/pciehp.h | 1 drivers/pci/hotplug/pciehp_core.c | 12 + drivers/pci/hotplug/pciehp_hpc.c | 31 +++ drivers/pci/pci.c | 341 ++++++++++++++++++++++++++++++-- include/linux/pci.h | 6 + include/linux/pci_hotplug.h | 12 + 7 files changed, 401 insertions(+), 26 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/