Skip to content

Commit b5f88a3

Browse files
Mani-Sadhasivambjorn-helgaas
authored andcommitted
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
1 parent b26d7fb commit b5f88a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/pci/quirks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5824,7 +5824,7 @@ DECLARE_PCI_FIXUP_CLASS_RESUME_EARLY(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
58245824
void pci_disable_broken_acs_cap(struct pci_dev *pdev)
58255825
{
58265826
if (pdev->vendor == PCI_VENDOR_ID_IDT &&
5827-
pdev->device == 0x80b5) {
5827+
(pdev->device == 0x80b5 || pdev->device == 0x8090)) {
58285828
pci_info(pdev, "Disabling broken ACS SV; downstream device isolation reduced\n");
58295829
pdev->acs_capabilities &= ~PCI_ACS_SV;
58305830
}

0 commit comments

Comments
 (0)