Linux PCI subsystem development
 help / color / mirror / Atom feed
* Re: [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors.
  2026-07-08  9:29 [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors Szymon Durawa
@ 2026-07-08  7:10 ` sashiko-bot
  2026-07-09 13:21 ` Manivannan Sadhasivam
  1 sibling, 0 replies; 4+ messages in thread
From: sashiko-bot @ 2026-07-08  7:10 UTC (permalink / raw)
  To: Szymon Durawa; +Cc: linux-pci

> Cc: Bjorn Helgaas <bhelgaas@google.com>
> Cc: Dan Williams <djbw@kernel.org>
> Cc: Lukas Wunner <lukas@wunner.de>
> Cc: linux-pci@vger.kernel.org
> Suggested-by: Nirmal Patel <nirmal.patel@linux.intel.com>
> Signed-off-by: Szymon Durawa <szymon.durawa@linux.intel.com>

Sashiko has reviewed this patch and found no issues. It looks great!

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260708092957.3269545-1-szymon.durawa@linux.intel.com?part=1


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

* [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors.
@ 2026-07-08  9:29 Szymon Durawa
  2026-07-08  7:10 ` sashiko-bot
  2026-07-09 13:21 ` Manivannan Sadhasivam
  0 siblings, 2 replies; 4+ messages in thread
From: Szymon Durawa @ 2026-07-08  9:29 UTC (permalink / raw)
  To: helgaas, nirmal.patel, szymon.durawa, djbw, linux-pci, lukas
  Cc: Bjorn Helgaas

Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Dan Williams <djbw@kernel.org>
Cc: Lukas Wunner <lukas@wunner.de>
Cc: linux-pci@vger.kernel.org
Suggested-by: Nirmal Patel <nirmal.patel@linux.intel.com>
Signed-off-by: Szymon Durawa <szymon.durawa@linux.intel.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 d4ae250d4bc6..f9d145932155 100644
--- a/drivers/pci/controller/vmd.c
+++ b/drivers/pci/controller/vmd.c
@@ -1132,6 +1132,10 @@ static const struct pci_device_id vmd_ids[] = {
                 .driver_data = VMD_FEATS_CLIENT,},
 	{PCI_VDEVICE(INTEL, 0xb07f),
                 .driver_data = VMD_FEATS_CLIENT,},
+	{PCI_VDEVICE(INTEL, 0xd70b),
+		.driver_data = VMD_FEATS_CLIENT,},
+	{PCI_VDEVICE(INTEL, 0xd73b),
+		.driver_data = VMD_FEATS_CLIENT,},
 	{0,}
 };
 MODULE_DEVICE_TABLE(pci, vmd_ids);
-- 
2.43.0


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

* Re: [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors.
  2026-07-08  9:29 [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors Szymon Durawa
  2026-07-08  7:10 ` sashiko-bot
@ 2026-07-09 13:21 ` Manivannan Sadhasivam
  2026-07-09 17:35   ` Nirmal Patel
  1 sibling, 1 reply; 4+ messages in thread
From: Manivannan Sadhasivam @ 2026-07-09 13:21 UTC (permalink / raw)
  To: Szymon Durawa
  Cc: helgaas, nirmal.patel, djbw, linux-pci, lukas, Bjorn Helgaas

On Wed, Jul 08, 2026 at 09:29:57AM +0000, Szymon Durawa wrote:

Subject duplicates twice and there is no description.

> Cc: Bjorn Helgaas <bhelgaas@google.com>
> Cc: Dan Williams <djbw@kernel.org>
> Cc: Lukas Wunner <lukas@wunner.de>
> Cc: linux-pci@vger.kernel.org

You didn't CC all VMD maintainers:

Nirmal Patel <nirmal.patel@linux.intel.com> (maintainer:PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (...)
Jonathan Derrick <jonathan.derrick@linux.dev> (reviewer:PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (...)
Lorenzo Pieralisi <lpieralisi@kernel.org> (maintainer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS)
"Krzysztof Wilczyński" <kwilczynski@kernel.org> (maintainer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS)
Manivannan Sadhasivam <mani@kernel.org> (maintainer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS)
Rob Herring <robh@kernel.org> (reviewer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS)
Bjorn Helgaas <bhelgaas@google.com> (maintainer:PCI SUBSYSTEM)
linux-pci@vger.kernel.org (open list:PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (...)
linux-kernel@vger.kernel.org (open list)

- Mani

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

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

* Re: [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors.
  2026-07-09 13:21 ` Manivannan Sadhasivam
@ 2026-07-09 17:35   ` Nirmal Patel
  0 siblings, 0 replies; 4+ messages in thread
From: Nirmal Patel @ 2026-07-09 17:35 UTC (permalink / raw)
  To: Manivannan Sadhasivam
  Cc: Szymon Durawa, helgaas, djbw, linux-pci, lukas, Bjorn Helgaas

On Thu, 9 Jul 2026 15:21:53 +0200
Manivannan Sadhasivam <mani@kernel.org> wrote:

> On Wed, Jul 08, 2026 at 09:29:57AM +0000, Szymon Durawa wrote:
> 
> Subject duplicates twice and there is no description.
> 
> > Cc: Bjorn Helgaas <bhelgaas@google.com>
> > Cc: Dan Williams <djbw@kernel.org>
> > Cc: Lukas Wunner <lukas@wunner.de>
> > Cc: linux-pci@vger.kernel.org  
> 
> You didn't CC all VMD maintainers:
> 
> Nirmal Patel <nirmal.patel@linux.intel.com> (maintainer:PCI DRIVER
> FOR INTEL VOLUME MANAGEMENT DEVICE (...) Jonathan Derrick
> <jonathan.derrick@linux.dev> (reviewer:PCI DRIVER FOR INTEL VOLUME
> MANAGEMENT DEVICE (...) Lorenzo Pieralisi <lpieralisi@kernel.org>
> (maintainer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS) "Krzysztof
> Wilczyński" <kwilczynski@kernel.org> (maintainer:PCI NATIVE HOST
> BRIDGE AND ENDPOINT DRIVERS) Manivannan Sadhasivam <mani@kernel.org>
> (maintainer:PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS) Rob Herring
> <robh@kernel.org> (reviewer:PCI NATIVE HOST BRIDGE AND ENDPOINT
> DRIVERS) Bjorn Helgaas <bhelgaas@google.com> (maintainer:PCI
> SUBSYSTEM) linux-pci@vger.kernel.org (open list:PCI DRIVER FOR INTEL
> VOLUME MANAGEMENT DEVICE (...) linux-kernel@vger.kernel.org (open
> list)
> 
> - Mani
> 

Reviewed-by : Nirmal Patel <nirmal.patel@linux.intel.com>

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

end of thread, other threads:[~2026-07-09 17:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-08  9:29 [PATCH v1] PCI: vmd: Add VMD Device ID Support for Intel Nova Lake (NVL) and Dunlow (DNL) Add VMD Device ID Support for NVL and DNL processors Szymon Durawa
2026-07-08  7:10 ` sashiko-bot
2026-07-09 13:21 ` Manivannan Sadhasivam
2026-07-09 17:35   ` Nirmal Patel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox