Skip to content

Commit b727484

Browse files
Nirmal Patelkwilczynski
authored andcommitted
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/20241011175657.249948-1-nirmal.patel@linux.intel.com Signed-off-by: Nirmal Patel <nirmal.patel@linux.ntel.com> Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1 parent 9852d85 commit b727484

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)