[PATCH] common/mlx5: add ConnectX-10 SmartNIC
Raslan Darawsheh
rasland at nvidia.com
Sun Apr 19 13:17:21 CEST 2026
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 at 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
More information about the dev
mailing list