* [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000]
@ 2023-10-10 10:02 Levend Sayar
2023-10-10 10:06 ` Elena Agostini
2024-10-07 18:51 ` Stephen Hemminger
0 siblings, 2 replies; 3+ messages in thread
From: Levend Sayar @ 2023-10-10 10:02 UTC (permalink / raw)
To: eagostini; +Cc: dev, Levend Sayar
PCI device ID is added for NVIDIA TU102GL [Quadro RTX 6000/8000]
GPU card.
Signed-off-by: Levend Sayar <levendsayar@gmail.com>
---
drivers/gpu/cuda/cuda.c | 4 ++++
drivers/gpu/cuda/devices.h | 1 +
2 files changed, 5 insertions(+)
diff --git a/drivers/gpu/cuda/cuda.c b/drivers/gpu/cuda/cuda.c
index a552aabeb8..00133696d7 100644
--- a/drivers/gpu/cuda/cuda.c
+++ b/drivers/gpu/cuda/cuda.c
@@ -203,6 +203,10 @@ static const struct rte_pci_id pci_id_cuda_map[] = {
RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
NVIDIA_GPU_QUADRO_RTX_8000)
},
+ {
+ RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
+ NVIDIA_GPU_QUADRO_RTX_8000_2)
+ },
{
RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
NVIDIA_GPU_QUADRO_RTX_A4000)
diff --git a/drivers/gpu/cuda/devices.h b/drivers/gpu/cuda/devices.h
index e6502910f3..94e4ee218c 100644
--- a/drivers/gpu/cuda/devices.h
+++ b/drivers/gpu/cuda/devices.h
@@ -54,6 +54,7 @@
#define NVIDIA_GPU_QUADRO_RTX_5000 (0x1eb0)
#define NVIDIA_GPU_QUADRO_RTX_6000 (0x13d9)
#define NVIDIA_GPU_QUADRO_RTX_8000 (0x13d8)
+#define NVIDIA_GPU_QUADRO_RTX_8000_2 (0x1e30)
#define NVIDIA_GPU_QUADRO_RTX_A4000 (0x24b0)
#define NVIDIA_GPU_QUADRO_RTX_A6000 (0x2230)
#define NVIDIA_GPU_QUADRO_RTX_A5000 (0x2231)
--
2.39.3 (Apple Git-145)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000]
2023-10-10 10:02 [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000] Levend Sayar
@ 2023-10-10 10:06 ` Elena Agostini
2024-10-07 18:51 ` Stephen Hemminger
1 sibling, 0 replies; 3+ messages in thread
From: Elena Agostini @ 2023-10-10 10:06 UTC (permalink / raw)
To: Levend Sayar; +Cc: dev, Levend Sayar
[-- Attachment #1: Type: text/plain, Size: 1786 bytes --]
Sounds good to me
Thanks
EA
________________________________
From: Levend Sayar <levendsayar@gmail.com>
Sent: Tuesday, October 10, 2023 12:02
To: Elena Agostini <eagostini@nvidia.com>
Cc: dev@dpdk.org <dev@dpdk.org>; Levend Sayar <levendsayar@gmail.com>
Subject: [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000]
PCI device ID is added for NVIDIA TU102GL [Quadro RTX 6000/8000]
GPU card.
Signed-off-by: Levend Sayar <levendsayar@gmail.com>
---
drivers/gpu/cuda/cuda.c | 4 ++++
drivers/gpu/cuda/devices.h | 1 +
2 files changed, 5 insertions(+)
diff --git a/drivers/gpu/cuda/cuda.c b/drivers/gpu/cuda/cuda.c
index a552aabeb8..00133696d7 100644
--- a/drivers/gpu/cuda/cuda.c
+++ b/drivers/gpu/cuda/cuda.c
@@ -203,6 +203,10 @@ static const struct rte_pci_id pci_id_cuda_map[] = {
RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
NVIDIA_GPU_QUADRO_RTX_8000)
},
+ {
+ RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
+ NVIDIA_GPU_QUADRO_RTX_8000_2)
+ },
{
RTE_PCI_DEVICE(NVIDIA_GPU_VENDOR_ID,
NVIDIA_GPU_QUADRO_RTX_A4000)
diff --git a/drivers/gpu/cuda/devices.h b/drivers/gpu/cuda/devices.h
index e6502910f3..94e4ee218c 100644
--- a/drivers/gpu/cuda/devices.h
+++ b/drivers/gpu/cuda/devices.h
@@ -54,6 +54,7 @@
#define NVIDIA_GPU_QUADRO_RTX_5000 (0x1eb0)
#define NVIDIA_GPU_QUADRO_RTX_6000 (0x13d9)
#define NVIDIA_GPU_QUADRO_RTX_8000 (0x13d8)
+#define NVIDIA_GPU_QUADRO_RTX_8000_2 (0x1e30)
#define NVIDIA_GPU_QUADRO_RTX_A4000 (0x24b0)
#define NVIDIA_GPU_QUADRO_RTX_A6000 (0x2230)
#define NVIDIA_GPU_QUADRO_RTX_A5000 (0x2231)
--
2.39.3 (Apple Git-145)
[-- Attachment #2: Type: text/html, Size: 3595 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000]
2023-10-10 10:02 [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000] Levend Sayar
2023-10-10 10:06 ` Elena Agostini
@ 2024-10-07 18:51 ` Stephen Hemminger
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Hemminger @ 2024-10-07 18:51 UTC (permalink / raw)
To: Levend Sayar; +Cc: eagostini, dev
On Tue, 10 Oct 2023 13:02:14 +0300
Levend Sayar <levendsayar@gmail.com> wrote:
> PCI device ID is added for NVIDIA TU102GL [Quadro RTX 6000/8000]
> GPU card.
>
> Signed-off-by: Levend Sayar <levendsayar@gmail.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-07 18:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-10 10:02 [PATCH] gpu/cuda: add PCI device ID for NVIDIA TU102GL [Quadro RTX 6000/8000] Levend Sayar
2023-10-10 10:06 ` Elena Agostini
2024-10-07 18:51 ` Stephen Hemminger
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).