Skip to content

Commit f91f2a9

Browse files
Fenghua Yuvinodkoul
authored andcommitted
dmaengine: idxd: Add a new DSA device ID for Granite Rapids-D platform
A new DSA device ID, 0x11fb, is introduced for the Granite Rapids-D platform. Add the device ID to the IDXD driver. Since a potential security issue has been fixed on the new device, it's secure to assign the device to virtual machines, and therefore, the new device ID will not be added to the VFIO denylist. Additionally, the new device ID may be useful in identifying and addressing any other potential issues with this specific device in the future. The same is also applied to any other new DSA/IAA devices with new device IDs. Signed-off-by: Fenghua Yu <[email protected]> Reviewed-by: Dave Jiang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 4bb5932 commit f91f2a9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

drivers/dma/idxd/init.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ static struct idxd_driver_data idxd_driver_data[] = {
6969
static struct pci_device_id idxd_pci_tbl[] = {
7070
/* DSA ver 1.0 platforms */
7171
{ PCI_DEVICE_DATA(INTEL, DSA_SPR0, &idxd_driver_data[IDXD_TYPE_DSA]) },
72+
/* DSA on GNR-D platforms */
73+
{ PCI_DEVICE_DATA(INTEL, DSA_GNRD, &idxd_driver_data[IDXD_TYPE_DSA]) },
7274

7375
/* IAX ver 1.0 platforms */
7476
{ PCI_DEVICE_DATA(INTEL, IAX_SPR0, &idxd_driver_data[IDXD_TYPE_IAX]) },

include/linux/pci_ids.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2706,6 +2706,7 @@
27062706
#define PCI_DEVICE_ID_INTEL_82815_MC 0x1130
27072707
#define PCI_DEVICE_ID_INTEL_82815_CGC 0x1132
27082708
#define PCI_DEVICE_ID_INTEL_SST_TNG 0x119a
2709+
#define PCI_DEVICE_ID_INTEL_DSA_GNRD 0x11fb
27092710
#define PCI_DEVICE_ID_INTEL_82092AA_0 0x1221
27102711
#define PCI_DEVICE_ID_INTEL_82437 0x122d
27112712
#define PCI_DEVICE_ID_INTEL_82371FB_0 0x122e

0 commit comments

Comments
 (0)