]> Git Repo - linux.git/commitdiff
PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKUs
authorNirmal Patel <[email protected]>
Fri, 11 Oct 2024 17:56:57 +0000 (10:56 -0700)
committerKrzysztof Wilczyński <[email protected]>
Wed, 6 Nov 2024 22:02:15 +0000 (22:02 +0000)
Add support for this VMD device which supports the bus restriction mode.
The feature that turns off vector 0 for MSI-X remapping is also enabled.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Nirmal Patel <[email protected]>
Signed-off-by: Krzysztof Wilczyński <[email protected]>
Reviewed-by: Manivannan Sadhasivam <[email protected]>
drivers/pci/controller/vmd.c

index 264a180403a0ecde14720b5d7274c310f41692aa..8a036d6b7d497e2bcdd12a9a97657f7973e283d0 100644 (file)
@@ -1100,6 +1100,10 @@ static const struct pci_device_id vmd_ids[] = {
                .driver_data = VMD_FEATS_CLIENT,},
        {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_9A0B),
                .driver_data = VMD_FEATS_CLIENT,},
+       {PCI_VDEVICE(INTEL, 0xb60b),
+                .driver_data = VMD_FEATS_CLIENT,},
+       {PCI_VDEVICE(INTEL, 0xb06f),
+                .driver_data = VMD_FEATS_CLIENT,},
        {0,}
 };
 MODULE_DEVICE_TABLE(pci, vmd_ids);
This page took 0.059395 seconds and 4 git commands to generate.