Skip to content

Commit bf3551e

Browse files
committed
vfio/pci: Add Intel X550 to hidden INTx devices
Intel document 333717-008, "Intel® Ethernet Controller X550 Specification Update", version 2.7, dated June 2020, includes errata #22, added in version 2.1, May 2016, indicating X550 NICs suffer from the same implementation deficiency as the 700-series NICs: "The Interrupt Status bit in the Status register of the PCIe configuration space is not implemented and is not set as described in the PCIe specification." Without the interrupt status bit, vfio-pci cannot determine when these devices signal INTx. They are therefore added to the nointx quirk. Cc: Jesse Brandeburg <[email protected]> Signed-off-by: Alex Williamson <[email protected]>
1 parent 26afdd9 commit bf3551e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/vfio/pci/vfio_pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ static bool vfio_pci_nointx(struct pci_dev *pdev)
207207
case 0x1580 ... 0x1581:
208208
case 0x1583 ... 0x158b:
209209
case 0x37d0 ... 0x37d2:
210+
/* X550 */
211+
case 0x1563:
210212
return true;
211213
default:
212214
return false;

0 commit comments

Comments
 (0)