diff options
author | Matthew Smith <mgsmith@netgate.com> | 2022-07-06 10:52:20 -0500 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2022-07-08 14:16:38 +0000 |
commit | 08f39102bf2c36d6ba39e65eaf11a3a1c2d0cae3 (patch) | |
tree | 71210624d33fc459cf4e8d30d12181a4f8dcb412 /src/plugins/dpdk/device/init.c | |
parent | 55050c31c250679eb2aadf9b0d06fd08812b0a9d (diff) |
dpdk: add ID for 4xxx QAT VF
Type: improvement
Enable use of 4th gen QAT devices. Will be available on Sapphire Rapids.
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Change-Id: I89e7d29e10ecb4c36c700ff5e017796161ec6c5e
Diffstat (limited to 'src/plugins/dpdk/device/init.c')
-rw-r--r-- | src/plugins/dpdk/device/init.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 80a075f2bb1..0cc8e12357b 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -621,9 +621,11 @@ dpdk_bind_devices_to_uio (dpdk_config_main_t * conf) else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET) ; /* 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 == 0x18a1 || d->device_id == 0x19e3 || - d->device_id == 0x37c9 || d->device_id == 0x6f55)) + else if (d->vendor_id == 0x8086 && + d->device_class == PCI_CLASS_PROCESSOR_CO && + (d->device_id == 0x0443 || d->device_id == 0x18a1 || + d->device_id == 0x19e3 || d->device_id == 0x37c9 || + d->device_id == 0x6f55 || d->device_id == 0x4941)) ; /* Cisco VIC */ else if (d->vendor_id == 0x1137 && |