dpdk: add Mellanox BlueField NICs
[vpp.git] / src / plugins / dpdk / device / init.c
index 897cd2c..d88dad4 100644 (file)
@@ -679,6 +679,18 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
       {
        continue;
       }
+    /* Mellanox BF, BFVF */
+    else if (d->vendor_id == 0x15b3 &&
+            (d->device_id >= 0xa2d2 && d->device_id <= 0Xa2d3))
+      {
+       continue;
+      }
+    /* Mellanox BF2, BF3 */
+    else if (d->vendor_id == 0x15b3 &&
+            (d->device_id == 0xa2d6 || d->device_id == 0xa2dc))
+      {
+       continue;
+      }
     /* Broadcom NetXtreme S, and E series only */
     else if (d->vendor_id == 0x14e4 &&
        ((d->device_id >= 0x16c0 &&