From 0bcc66441d1ed8c2759ac05cfcfc3144de288b85 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Tue, 26 Feb 2019 12:29:20 +0000 Subject: [PATCH] usertools: add octeontx2 SSO and NPA PCIe devices Add the Marvell's octeontx2's SSO and NPA PCIe devices as eventdev, mempool devices in devbind script. Signed-off-by: Jerin Jacob --- usertools/dpdk-devbind.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index a9cd66a780..249b65ac38 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -29,10 +29,15 @@ cavium_zip = {'Class': '12', 'Vendor': '177d', 'Device': 'a037', avp_vnic = {'Class': '05', 'Vendor': '1af4', 'Device': '1110', 'SVendor': None, 'SDevice': None} +octeontx2_sso = {'Class': '08', 'Vendor': '177d', 'Device': 'a0f9,a0fa', + 'SVendor': None, 'SDevice': None} +octeontx2_npa = {'Class': '08', 'Vendor': '177d', 'Device': 'a0fb,a0fc', + 'SVendor': None, 'SDevice': None} + network_devices = [network_class, cavium_pkx, avp_vnic] crypto_devices = [encryption_class, intel_processor_class] -eventdev_devices = [cavium_sso, cavium_tim] -mempool_devices = [cavium_fpa] +eventdev_devices = [cavium_sso, cavium_tim, octeontx2_sso] +mempool_devices = [cavium_fpa, octeontx2_npa] compress_devices = [cavium_zip] # global dict ethernet devices present. Dictionary indexed by PCI address. -- 2.20.1