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 <akozyrev@nvidia.com>
This commit is contained in:
Alexander Kozyrev
2023-06-27 15:20:51 +00:00
committed by Damjan Marion
parent a127d3c157
commit 029f039d5d
+9 -3
View File
@@ -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 &&