summaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci.c
diff options
context:
space:
mode:
authorLogan Gunthorpe <logang@deltatee.com>2018-08-09 16:51:43 -0500
committerBjorn Helgaas <bhelgaas@google.com>2018-08-09 17:48:28 -0500
commit73c47ddef29b5869a2221e93cefdb56fd8263718 (patch)
tree5b258b2b7d70ce1ac59847ceec2d0f7013297a25 /drivers/pci/pci.c
parent3b269185c19268027ac79388b03c9d7322518e4c (diff)
downloadlinux-stable-73c47ddef29b5869a2221e93cefdb56fd8263718.tar.gz
linux-stable-73c47ddef29b5869a2221e93cefdb56fd8263718.tar.bz2
linux-stable-73c47ddef29b5869a2221e93cefdb56fd8263718.zip
PCI: Add device-specific ACS Redirect disable infrastructure
Intel Sunrise Point (SPT) PCH hardware has an implementation of the ACS bits that does not comply with the PCIe standard. To deal with this we need device-specific quirks to disable ACS redirection. Add a new pci_dev_specific_disable_acs_redir() quirk and a new .disable_acs_redir() function pointer for use by non-compliant devices. No functional change intended. Signed-off-by: Logan Gunthorpe <logang@deltatee.com> [bhelgaas: split to separate patch, move pci_dev_specific_disable_acs_redir() declarations to drivers/pci/pci.h] Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r--drivers/pci/pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 822577d9b39e..17d8de109556 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -3023,6 +3023,9 @@ static void pci_disable_acs_redir(struct pci_dev *dev)
if (ret != 1)
return;
+ if (!pci_dev_specific_disable_acs_redir(dev))
+ return;
+
pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ACS);
if (!pos) {
pci_warn(dev, "cannot disable ACS redirect for this hardware as it does not have ACS capabilities\n");