Message ID | 20241011175657.249948-1-nirmal.patel@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Krzysztof Wilczyński |
Headers | show |
Series | PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's | expand |
On Fri, Oct 11, 2024 at 10:56:57AM -0700, Nirmal Patel wrote: > From: Nirmal Patel <nirmal.patel@linux.ntel.com> > > 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. > > Signed-off-by: Nirmal Patel <nirmal.patel@linux.ntel.com> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> - Mani > --- > drivers/pci/controller/vmd.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c > index a726de0af011..4429a3ca1de1 100644 > --- a/drivers/pci/controller/vmd.c > +++ b/drivers/pci/controller/vmd.c > @@ -1111,6 +1111,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); > -- > 2.39.1 > >
Hello, > 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. Applied to controller/vmd, thank you! [01/01] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's https://git.kernel.org/pci/pci/c/2a530f44f509 Krzysztof
diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c index a726de0af011..4429a3ca1de1 100644 --- a/drivers/pci/controller/vmd.c +++ b/drivers/pci/controller/vmd.c @@ -1111,6 +1111,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);