From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BAAC7A00BE; Wed, 29 Apr 2020 11:38:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F11411D99D; Wed, 29 Apr 2020 11:38:03 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id DE1DD1C1C6 for ; Wed, 29 Apr 2020 11:38:02 +0200 (CEST) IronPort-SDR: h/wcxzx+IejgT1fUUHUNWP3np/ZET0iZJc4b21+sXV872Endibm4BBI38wwtf2ZpyImlgZFume +1M1VKoGaFpA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2020 02:38:01 -0700 IronPort-SDR: 5W3K0biJ/PCKegUItqugzPbXNadALMmQoMZ3aKRSkxQIqExEgZA3RzSmsldCW8UpIm/dyQ1SB/ iyjMJGAJLnfw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,331,1583222400"; d="scan'208";a="459127072" Received: from silpixa00383879.ir.intel.com ([10.237.222.142]) by fmsmga005.fm.intel.com with ESMTP; 29 Apr 2020 02:37:59 -0700 From: Radu Nicolau To: dev@dpdk.org Cc: bruce.richardson@intel.com, thomas@monjalon.net, jerinj@marvell.com, harry.van.haaren@intel.com, Radu Nicolau Date: Wed, 29 Apr 2020 10:37:40 +0100 Message-Id: <1588153061-5202-1-git-send-email-radu.nicolau@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH v1 1/2] usertools: add support for ICX IOAT X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Radu Nicolau --- usertools/dpdk-devbind.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index b1d1498..40b4bee 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -45,6 +45,8 @@ 'SVendor': None, 'SDevice': None} intel_ioat_skx = {'Class': '08', 'Vendor': '8086', 'Device': '2021', 'SVendor': None, 'SDevice': None} +intel_ioat_icx = {'Class': '08', 'Vendor': '8086', 'Device': '0b00', + 'SVendor': None, 'SDevice': None} intel_ntb_skx = {'Class': '06', 'Vendor': '8086', 'Device': '201c', 'SVendor': None, 'SDevice': None} @@ -54,7 +56,7 @@ eventdev_devices = [cavium_sso, cavium_tim, octeontx2_sso] mempool_devices = [cavium_fpa, octeontx2_npa] compress_devices = [cavium_zip] -misc_devices = [intel_ioat_bdw, intel_ioat_skx, intel_ntb_skx, octeontx2_dma] +misc_devices = [intel_ioat_bdw, intel_ioat_skx, intel_ioat_icx, intel_ntb_skx, octeontx2_dma] # global dict ethernet devices present. Dictionary indexed by PCI address. # Each device within this is itself a dictionary of device properties -- 2.7.4