diff options
author | Xiaohua Zhang <xiaohua.zhang@windriver.com> | 2018-03-05 17:16:32 +0800 |
---|---|---|
committer | Thomas Monjalon <thomas@monjalon.net> | 2018-03-28 00:49:53 +0200 |
commit | 20526313ba41174d3e7831ee800f6e938a1d5b85 (patch) | |
tree | b1869ece51647c3d0956c447cb243644d2f53f7e /usertools | |
parent | 2a5002362d2af81590c958773021cd297830f270 (diff) | |
download | dpdk-next-eventdev-20526313ba41174d3e7831ee800f6e938a1d5b85.zip dpdk-next-eventdev-20526313ba41174d3e7831ee800f6e938a1d5b85.tar.gz dpdk-next-eventdev-20526313ba41174d3e7831ee800f6e938a1d5b85.tar.xz |
usertools: support AVP device
Signed-off-by: Xiaohua Zhang <xiaohua.zhang@windriver.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Diffstat (limited to 'usertools')
-rwxr-xr-x | usertools/dpdk-devbind.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index 18d9386..ff4b186 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -22,8 +22,10 @@ cavium_fpa = {'Class': '08', 'Vendor': '177d', 'Device': 'a053', 'SVendor': None, 'SDevice': None} cavium_pkx = {'Class': '08', 'Vendor': '177d', 'Device': 'a0dd,a049', 'SVendor': None, 'SDevice': None} +avp_vnic = {'Class': '05', 'Vendor': '1af4', 'Device': '1110', + 'SVendor': None, 'SDevice': None} -network_devices = [network_class, cavium_pkx] +network_devices = [network_class, cavium_pkx, avp_vnic] crypto_devices = [encryption_class, intel_processor_class] eventdev_devices = [cavium_sso] mempool_devices = [cavium_fpa] |