From: Alexander Kozyrev Date: Tue, 27 Jun 2023 15:20:51 +0000 (+0000) Subject: dpdk: add ConnectX-6LX and ConnectX-7 support X-Git-Tag: v24.06-rc0~254 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=029f039d5;hp=a127d3c157cb6e7658451a877abbfe0dd16c982a;p=vpp.git dpdk: add ConnectX-6LX and ConnectX-7 support List Mellanox ConnectX-6LX and ConnectX-7 as a supported PCI devices. Type: feature Change-Id: Ieeca3f214d08f29238c387354055ac1320cab75f Signed-off-by: Alexander Kozyrev --- diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index ad38694dc31..897cd2cc8dd 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -668,10 +668,16 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) { continue; } - /* Mellanox CX6, CX6VF, CX6DX, CX6DXVF */ - else if (d->vendor_id == 0x15b3 && d->device_id >= 0x101b && d->device_id <= 0x101e) + /* Mellanox CX6, CX6VF, CX6DX, CX6DXVF, CX6LX */ + else if (d->vendor_id == 0x15b3 && + (d->device_id >= 0x101b && d->device_id <= 0x101f)) { - continue; + continue; + } + /* Mellanox CX7 */ + else if (d->vendor_id == 0x15b3 && d->device_id == 0x1021) + { + continue; } /* Broadcom NetXtreme S, and E series only */ else if (d->vendor_id == 0x14e4 &&