* [PATCH v1 1/1] vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table
@ 2024-10-13 7:52 ankita
2024-11-01 14:38 ` Alex Williamson
0 siblings, 1 reply; 3+ messages in thread
From: ankita @ 2024-10-13 7:52 UTC (permalink / raw)
To: ankita, jgg, alex.williamson, yishaih, shameerali.kolothum.thodi,
kevin.tian, zhiw
Cc: aniketa, cjia, kwankhede, targupta, vsethi, acurrid, apopple,
jhubbard, danw, anuaggarwal, mochs, kvm, linux-kernel
From: Ankit Agrawal <ankita@nvidia.com>
NVIDIA is planning to productize a new Grace Hopper superchip
SKU with device ID 0x2348.
Add the SKU devid to nvgrace_gpu_vfio_pci_table.
Signed-off-by: Ankit Agrawal <ankita@nvidia.com>
---
drivers/vfio/pci/nvgrace-gpu/main.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/vfio/pci/nvgrace-gpu/main.c b/drivers/vfio/pci/nvgrace-gpu/main.c
index a7fd018aa548..a467085038f0 100644
--- a/drivers/vfio/pci/nvgrace-gpu/main.c
+++ b/drivers/vfio/pci/nvgrace-gpu/main.c
@@ -866,6 +866,8 @@ static const struct pci_device_id nvgrace_gpu_vfio_pci_table[] = {
{ PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2342) },
/* GH200 480GB */
{ PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2345) },
+ /* GH200 SKU */
+ { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2348) },
{}
};
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v1 1/1] vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table
2024-10-13 7:52 [PATCH v1 1/1] vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table ankita
@ 2024-11-01 14:38 ` Alex Williamson
2024-11-04 1:47 ` Ankit Agrawal
0 siblings, 1 reply; 3+ messages in thread
From: Alex Williamson @ 2024-11-01 14:38 UTC (permalink / raw)
To: ankita
Cc: jgg, yishaih, shameerali.kolothum.thodi, kevin.tian, zhiw,
aniketa, cjia, kwankhede, targupta, vsethi, acurrid, apopple,
jhubbard, danw, anuaggarwal, mochs, kvm, linux-kernel
On Sun, 13 Oct 2024 07:52:16 +0000
<ankita@nvidia.com> wrote:
> From: Ankit Agrawal <ankita@nvidia.com>
>
> NVIDIA is planning to productize a new Grace Hopper superchip
> SKU with device ID 0x2348.
>
> Add the SKU devid to nvgrace_gpu_vfio_pci_table.
>
> Signed-off-by: Ankit Agrawal <ankita@nvidia.com>
> ---
> drivers/vfio/pci/nvgrace-gpu/main.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/vfio/pci/nvgrace-gpu/main.c b/drivers/vfio/pci/nvgrace-gpu/main.c
> index a7fd018aa548..a467085038f0 100644
> --- a/drivers/vfio/pci/nvgrace-gpu/main.c
> +++ b/drivers/vfio/pci/nvgrace-gpu/main.c
> @@ -866,6 +866,8 @@ static const struct pci_device_id nvgrace_gpu_vfio_pci_table[] = {
> { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2342) },
> /* GH200 480GB */
> { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2345) },
> + /* GH200 SKU */
> + { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2348) },
> {}
> };
>
Applied to vfio next branch for v6.13. Thanks,
Alex
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v1 1/1] vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table
2024-11-01 14:38 ` Alex Williamson
@ 2024-11-04 1:47 ` Ankit Agrawal
0 siblings, 0 replies; 3+ messages in thread
From: Ankit Agrawal @ 2024-11-04 1:47 UTC (permalink / raw)
To: Alex Williamson
Cc: Jason Gunthorpe, Yishai Hadas,
shameerali.kolothum.thodi@huawei.com, kevin.tian@intel.com,
Zhi Wang, Aniket Agashe, Neo Jia, Kirti Wankhede,
Tarun Gupta (SW-GPU), Vikram Sethi, Andy Currid, Alistair Popple,
John Hubbard, Dan Williams, Anuj Aggarwal (SW-GPU), Matt Ochs,
kvm@vger.kernel.org, linux-kernel@vger.kernel.org
>> diff --git a/drivers/vfio/pci/nvgrace-gpu/main.c b/drivers/vfio/pci/nvgrace-gpu/main.c
>> index a7fd018aa548..a467085038f0 100644
>> --- a/drivers/vfio/pci/nvgrace-gpu/main.c
>> +++ b/drivers/vfio/pci/nvgrace-gpu/main.c
>> @@ -866,6 +866,8 @@ static const struct pci_device_id nvgrace_gpu_vfio_pci_table[] = {
>> { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2342) },
>> /* GH200 480GB */
>> { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2345) },
>> + /* GH200 SKU */
>> + { PCI_DRIVER_OVERRIDE_DEVICE_VFIO(PCI_VENDOR_ID_NVIDIA, 0x2348) },
>> {}
>> };
>>
>
> Applied to vfio next branch for v6.13. Thanks,
>
> Alex
Thank you, Alex!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-04 1:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-13 7:52 [PATCH v1 1/1] vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table ankita
2024-11-01 14:38 ` Alex Williamson
2024-11-04 1:47 ` Ankit Agrawal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox