diff options
author | Jim Thompson <jim@netgate.com> | 2019-08-12 02:03:38 -0500 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-09-21 08:25:13 +0000 |
commit | f5d6c80acc5e1fbdaf3a891e010a7e653733c851 (patch) | |
tree | 931eb2cec9dc581570ff165e6d5fc4b2cda2c97b /src/plugins/dpdk | |
parent | cbae1e1c5c0b627f1063bd63c5f69115fab99453 (diff) |
dpdk: QAT devices update, add c4xxx and xeon d15xx
Type: feature
Change-Id: I21f8f4563f5545a684b2666f7410847e0f7bc403
Signed-off-by: Jim Thompson <jim@netgate.com>
(cherry picked from commit 4d843b9940a8fbcd0b54c8a66916b9ba66e4f2c9)
Diffstat (limited to 'src/plugins/dpdk')
-rw-r--r-- | src/plugins/dpdk/device/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index a32ab4e8015..843ea8ebca4 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -923,7 +923,8 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) ; /* all Intel QAT devices VFs */ else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO && - (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3)) + (d->device_id == 0x0443 || d->device_id == 0x18a1 || d->device_id == 0x19e3 || + d->device_id == 0x37c9 || d->device_id == 0x6f55)) ; /* Cisco VIC */ else if (d->vendor_id == 0x1137 && |