projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbee049
)
vfio/nvgrace-gpu: Add a new GH200 SKU to the devid table
author
Ankit Agrawal
<ankita@nvidia.com>
Sun, 13 Oct 2024 07:52:16 +0000
(07:52 +0000)
committer
Alex Williamson
<alex.williamson@redhat.com>
Wed, 30 Oct 2024 19:35:18 +0000
(13:35 -0600)
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>
Link:
https://lore.kernel.org/r/20241013075216.19229-1-ankita@nvidia.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
drivers/vfio/pci/nvgrace-gpu/main.c
patch
|
blob
|
history
diff --git
a/drivers/vfio/pci/nvgrace-gpu/main.c
b/drivers/vfio/pci/nvgrace-gpu/main.c
index
a7fd018
..
a467085
100644
(file)
--- 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) },
{}
};