summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorManivannan Sadhasivam <manivannan.sadhasivam@oss.qualcomm.com>2026-01-02 21:04:50 +0530
committerBjorn Helgaas <bhelgaas@google.com>2026-02-06 16:54:12 -0600
commitb5f88a3947055e4ef8c04222ec75950d2fdfa79f (patch)
treeac842043dbbdde244d02e4baa6e9d277e659cf24 /drivers
parentb26d7fb4a53e671a95b282b4f3922e79dfb1470d (diff)
PCI: Disable ACS SV for IDT 0x8090 switch
The IDT switch with Device ID 0x8090 used in the ARM Juno R2 development board incorrectly raises an ACS Source Validation error on Completions for Config Read Requests, even though PCIe r7.0, sec 6.12.1.1, says that Completions are never affected by ACS Source Validation. This is already handled by the pci_disable_broken_acs_cap() quirk for the IDT 0x80b5 switch. Extend the quirk for the 0x8090 device too. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@oss.qualcomm.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Tested-by: Naresh Kamboju <naresh.kamboju@linaro.org> Link: https://patch.msgid.link/20260102-pci_acs-v3-4-72280b94d288@oss.qualcomm.com
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/quirks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 6360c172ff0d..e5c32a21d57f 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -5824,7 +5824,7 @@ DECLARE_PCI_FIXUP_CLASS_RESUME_EARLY(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
void pci_disable_broken_acs_cap(struct pci_dev *pdev)
{
if (pdev->vendor == PCI_VENDOR_ID_IDT &&
- pdev->device == 0x80b5) {
+ (pdev->device == 0x80b5 || pdev->device == 0x8090)) {
pci_info(pdev, "Disabling broken ACS SV; downstream device isolation reduced\n");
pdev->acs_capabilities &= ~PCI_ACS_SV;
}