linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's
@ 2024-09-20 17:27 Nirmal Patel
  0 siblings, 0 replies; 4+ messages in thread
From: Nirmal Patel @ 2024-09-20 17:27 UTC (permalink / raw)
  To: linux-pci, paul.m.stillwell.jr; +Cc: Nirmal Patel

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>
---
 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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's
@ 2024-10-11 17:56 Nirmal Patel
  2024-10-15  5:43 ` Manivannan Sadhasivam
  2024-11-03 20:52 ` Krzysztof Wilczyński
  0 siblings, 2 replies; 4+ messages in thread
From: Nirmal Patel @ 2024-10-11 17:56 UTC (permalink / raw)
  To: linux-pci, paul.m.stillwell.jr; +Cc: Nirmal Patel

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>
---
 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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's
  2024-10-11 17:56 [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's Nirmal Patel
@ 2024-10-15  5:43 ` Manivannan Sadhasivam
  2024-11-03 20:52 ` Krzysztof Wilczyński
  1 sibling, 0 replies; 4+ messages in thread
From: Manivannan Sadhasivam @ 2024-10-15  5:43 UTC (permalink / raw)
  To: Nirmal Patel; +Cc: linux-pci, paul.m.stillwell.jr, Nirmal Patel

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
> 
> 

-- 
மணிவண்ணன் சதாசிவம்

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's
  2024-10-11 17:56 [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's Nirmal Patel
  2024-10-15  5:43 ` Manivannan Sadhasivam
@ 2024-11-03 20:52 ` Krzysztof Wilczyński
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Wilczyński @ 2024-11-03 20:52 UTC (permalink / raw)
  To: Nirmal Patel; +Cc: linux-pci, paul.m.stillwell.jr, Nirmal Patel

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-11-03 20:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-11 17:56 [PATCH] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKU's Nirmal Patel
2024-10-15  5:43 ` Manivannan Sadhasivam
2024-11-03 20:52 ` Krzysztof Wilczyński
  -- strict thread matches above, loose matches on Subject: below --
2024-09-20 17:27 Nirmal Patel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).