* [PATCH] common/mlx5: add ConnectX-10 SmartNIC
@ 2026-04-19 11:17 Raslan Darawsheh
2026-04-20 10:48 ` [PATCH v2] " Raslan Darawsheh
0 siblings, 1 reply; 3+ messages in thread
From: Raslan Darawsheh @ 2026-04-19 11:17 UTC (permalink / raw)
To: dev; +Cc: thomas, dsosnowski
This adds the ConnectX-10 SmartNIC device ID to the
list of NVIDIA devices that run the mlx5 drivers.
The device is still in development stage.
Signed-off-by: Raslan Darawsheh <rasland@nvidia.com>
---
drivers/common/mlx5/mlx5_common.h | 1 +
drivers/crypto/mlx5/mlx5_crypto.c | 4 ++++
drivers/net/mlx5/mlx5.c | 4 ++++
3 files changed, 9 insertions(+)
diff --git a/drivers/common/mlx5/mlx5_common.h b/drivers/common/mlx5/mlx5_common.h
index 47fcc3fb06..b8f0235f47 100644
--- a/drivers/common/mlx5/mlx5_common.h
+++ b/drivers/common/mlx5/mlx5_common.h
@@ -155,6 +155,7 @@ enum {
PCI_DEVICE_ID_MELLANOX_BLUEFIELD3 = 0Xa2dc,
PCI_DEVICE_ID_MELLANOX_CONNECTX8 = 0x1023,
PCI_DEVICE_ID_MELLANOX_CONNECTX9 = 0x1025,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10 = 0x1027,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4 = 0xa2df,
};
diff --git a/drivers/crypto/mlx5/mlx5_crypto.c b/drivers/crypto/mlx5/mlx5_crypto.c
index 240e8bb858..e974297961 100644
--- a/drivers/crypto/mlx5/mlx5_crypto.c
+++ b/drivers/crypto/mlx5/mlx5_crypto.c
@@ -491,6 +491,10 @@ static const struct rte_pci_id mlx5_crypto_pci_id_map[] = {
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_CONNECTX9)
},
+ {
+ RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10)
+ },
{
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4)
diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
index c24c9b306d..bf19364a07 100644
--- a/drivers/net/mlx5/mlx5.c
+++ b/drivers/net/mlx5/mlx5.c
@@ -3921,6 +3921,10 @@ static const struct rte_pci_id mlx5_pci_id_map[] = {
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_CONNECTX9)
},
+ {
+ RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10)
+ },
{
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4)
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v2] common/mlx5: add ConnectX-10 SmartNIC
2026-04-19 11:17 [PATCH] common/mlx5: add ConnectX-10 SmartNIC Raslan Darawsheh
@ 2026-04-20 10:48 ` Raslan Darawsheh
2026-05-10 9:00 ` Raslan Darawsheh
0 siblings, 1 reply; 3+ messages in thread
From: Raslan Darawsheh @ 2026-04-20 10:48 UTC (permalink / raw)
To: dev; +Cc: thomas, dsosnowski
This adds the ConnectX-10 SmartNIC device ID to the
list of NVIDIA devices that run the mlx5 drivers.
The device is still in development stage.
Signed-off-by: Raslan Darawsheh <rasland@nvidia.com>
--
v2: changing order of devices
--
---
drivers/common/mlx5/mlx5_common.h | 1 +
drivers/crypto/mlx5/mlx5_crypto.c | 4 ++++
drivers/net/mlx5/mlx5.c | 4 ++++
3 files changed, 9 insertions(+)
diff --git a/drivers/common/mlx5/mlx5_common.h b/drivers/common/mlx5/mlx5_common.h
index 47fcc3fb06..3e66c9e6c8 100644
--- a/drivers/common/mlx5/mlx5_common.h
+++ b/drivers/common/mlx5/mlx5_common.h
@@ -156,6 +156,7 @@ enum {
PCI_DEVICE_ID_MELLANOX_CONNECTX8 = 0x1023,
PCI_DEVICE_ID_MELLANOX_CONNECTX9 = 0x1025,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4 = 0xa2df,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10 = 0x1027,
};
/* Maximum number of simultaneous unicast MAC addresses. */
diff --git a/drivers/crypto/mlx5/mlx5_crypto.c b/drivers/crypto/mlx5/mlx5_crypto.c
index 240e8bb858..dd0aabb6d7 100644
--- a/drivers/crypto/mlx5/mlx5_crypto.c
+++ b/drivers/crypto/mlx5/mlx5_crypto.c
@@ -495,6 +495,10 @@ static const struct rte_pci_id mlx5_crypto_pci_id_map[] = {
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4)
},
+ {
+ RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10)
+ },
{
.vendor_id = 0
}
diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
index c24c9b306d..f190654756 100644
--- a/drivers/net/mlx5/mlx5.c
+++ b/drivers/net/mlx5/mlx5.c
@@ -3925,6 +3925,10 @@ static const struct rte_pci_id mlx5_pci_id_map[] = {
RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
PCI_DEVICE_ID_MELLANOX_BLUEFIELD4)
},
+ {
+ RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
+ PCI_DEVICE_ID_MELLANOX_CONNECTX10)
+ },
{
.vendor_id = 0
}
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] common/mlx5: add ConnectX-10 SmartNIC
2026-04-20 10:48 ` [PATCH v2] " Raslan Darawsheh
@ 2026-05-10 9:00 ` Raslan Darawsheh
0 siblings, 0 replies; 3+ messages in thread
From: Raslan Darawsheh @ 2026-05-10 9:00 UTC (permalink / raw)
To: dev; +Cc: thomas, dsosnowski
Hi,
On 20/04/2026 1:48 PM, Raslan Darawsheh wrote:
> This adds the ConnectX-10 SmartNIC device ID to the
> list of NVIDIA devices that run the mlx5 drivers.
> The device is still in development stage.
>
> Signed-off-by: Raslan Darawsheh <rasland@nvidia.com>
> --
> v2: changing order of devices
Patch applied to next-net-mlx,
Kindest regards
Raslan Darawsheh
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-10 9:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-19 11:17 [PATCH] common/mlx5: add ConnectX-10 SmartNIC Raslan Darawsheh
2026-04-20 10:48 ` [PATCH v2] " Raslan Darawsheh
2026-05-10 9:00 ` Raslan Darawsheh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox