From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3FB0146150; Thu, 30 Jan 2025 18:27:05 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1070540275; Thu, 30 Jan 2025 18:27:05 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by mails.dpdk.org (Postfix) with ESMTP id BB4124025A; Thu, 30 Jan 2025 18:27:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1738258023; x=1769794023; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=gqDfr+8PC3SszLS4V/F6MPLxJgimJQOvlpKYWa90FBU=; b=C4/oV1hzmaXNoKxjmPx2xbwRGpye7jqYbmXR5ey7criy/fP1EvZ6tOHV J9jBHGy9geXojWuqbYnprZLXt9EIuKBQLrobeNDh9/i4gxWjLfU/jeG5K H/amBiHVXYUjOCd0NnNK27TlFDgdXImLthWhVg5M3s4EVDplBcvjmEpAw Grl3lVmHTXLCXUKW/y7K1zCAMa5j5cK4uI5p/C0z2lpcxiPjwCjo129oe hYPGWqgK8Og4dt1TwZY+4POSPcZ+LvAqeMmJ10KSZggvW4wnacvMpAm9a IEDMv84tQ62g3haa1SSEm53NJFBw/dXYjx0yfOvt3JCIS8VD65uWmd8TJ Q==; X-CSE-ConnectionGUID: IUEusEtqSd2FXetb0uFvTA== X-CSE-MsgGUID: pnjxQgGiT2eQ3GLMD+1TVA== X-IronPort-AV: E=McAfee;i="6700,10204,11331"; a="26420460" X-IronPort-AV: E=Sophos;i="6.13,246,1732608000"; d="scan'208";a="26420460" Received: from orviesa003.jf.intel.com ([10.64.159.143]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jan 2025 09:27:02 -0800 X-CSE-ConnectionGUID: xJHgsWA3TO2gdidce9IGAg== X-CSE-MsgGUID: gkf3vhjwSo+fydJZmZAk6Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,199,1725346800"; d="scan'208";a="114375627" Received: from silpixa00401197coob.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.45]) by orviesa003.jf.intel.com with ESMTP; 30 Jan 2025 09:26:59 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , stable@dpdk.org, Kevin Laatz , Robin Jarry Subject: [PATCH] dma/idxd: add device ids for new HW versions Date: Thu, 30 Jan 2025 17:26:25 +0000 Message-ID: <20250130172624.1450975-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add in two extra PCI device id's for future HW versions to be supported by idxd driver. This aligns with the definitions present in kernel idxd driver [1]. [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/dma/idxd/registers.h#n9 Signed-off-by: Bruce Richardson --- Cc: stable@dpdk.org Since this only adds a couple of device IDs, and there are no other changes to the dma/idxd driver in 25.03, perhaps this could be considered for backport for 24.11? --- drivers/dma/idxd/idxd_pci.c | 4 ++++ usertools/dpdk-devbind.py | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/dma/idxd/idxd_pci.c b/drivers/dma/idxd/idxd_pci.c index 5c05762d03..214f6f22d5 100644 --- a/drivers/dma/idxd/idxd_pci.c +++ b/drivers/dma/idxd/idxd_pci.c @@ -11,6 +11,8 @@ #define IDXD_VENDOR_ID 0x8086 #define IDXD_DEVICE_ID_SPR 0x0B25 +#define IDXD_DEVICE_ID_GNRD 0x11FB +#define IDXD_DEVICE_ID_DMR 0x1212 #define DEVICE_VERSION_1 0x100 #define DEVICE_VERSION_2 0x200 @@ -24,6 +26,8 @@ const struct rte_pci_id pci_id_idxd_map[] = { { RTE_PCI_DEVICE(IDXD_VENDOR_ID, IDXD_DEVICE_ID_SPR) }, + { RTE_PCI_DEVICE(IDXD_VENDOR_ID, IDXD_DEVICE_ID_GNRD) }, + { RTE_PCI_DEVICE(IDXD_VENDOR_ID, IDXD_DEVICE_ID_DMR) }, { .vendor_id = 0, /* sentinel */ }, }; diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py index 283707fc16..62edbba095 100755 --- a/usertools/dpdk-devbind.py +++ b/usertools/dpdk-devbind.py @@ -62,6 +62,10 @@ 'SVendor': None, 'SDevice': None} intel_idxd_spr = {'Class': '08', 'Vendor': '8086', 'Device': '0b25', 'SVendor': None, 'SDevice': None} +intel_idxd_gnrd = {'Class': '08', 'Vendor': '8086', 'Device': '11fb', + 'SVendor': None, 'SDevice': None} +intel_idxd_dmr = {'Class': '08', 'Vendor': '8086', 'Device': '1212', + 'SVendor': None, 'SDevice': None} intel_ntb_skx = {'Class': '06', 'Vendor': '8086', 'Device': '201c', 'SVendor': None, 'SDevice': None} intel_ntb_icx = {'Class': '06', 'Vendor': '8086', 'Device': '347e', @@ -84,7 +88,8 @@ baseband_devices = [acceleration_class] crypto_devices = [encryption_class, intel_processor_class] dma_devices = [cnxk_dma, hisilicon_dma, - intel_idxd_spr, intel_ioat_bdw, intel_ioat_icx, intel_ioat_skx, + intel_idxd_gnrd, intel_idxd_dmr, intel_idxd_spr, + intel_ioat_bdw, intel_ioat_icx, intel_ioat_skx, odm_dma] eventdev_devices = [cavium_sso, cavium_tim, intel_dlb, cnxk_sso] mempool_devices = [cavium_fpa, cnxk_npa] -- 2.43.0