Skip to content

Commit 8633a37

Browse files
author
Myron Stowe
committed
PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKUs
JIRA: https://issues.redhat.com/browse/RHEL-47438 Upstream Status: b727484 commit b727484 Author: Nirmal Patel <[email protected]> Date: Fri Oct 11 10:56:57 2024 -0700 PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKUs 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]> Signed-off-by: Myron Stowe <[email protected]>
1 parent 15b5887 commit 8633a37

File tree

1 file changed

+4
-0
lines changed
  • drivers/pci/controller

1 file changed

+4
-0
lines changed

drivers/pci/controller/vmd.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,10 @@ static const struct pci_device_id vmd_ids[] = {
11001100
.driver_data = VMD_FEATS_CLIENT,},
11011101
{PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_9A0B),
11021102
.driver_data = VMD_FEATS_CLIENT,},
1103+
{PCI_VDEVICE(INTEL, 0xb60b),
1104+
.driver_data = VMD_FEATS_CLIENT,},
1105+
{PCI_VDEVICE(INTEL, 0xb06f),
1106+
.driver_data = VMD_FEATS_CLIENT,},
11031107
{0,}
11041108
};
11051109
MODULE_DEVICE_TABLE(pci, vmd_ids);

0 commit comments

Comments
 (0)