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 6D1ADA0548; Fri, 27 Aug 2021 19:25:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 32D7D4067C; Fri, 27 Aug 2021 19:25:57 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 4F59740150 for ; Fri, 27 Aug 2021 19:25:56 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10089"; a="240219212" X-IronPort-AV: E=Sophos;i="5.84,357,1620716400"; d="scan'208";a="240219212" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Aug 2021 10:25:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,357,1620716400"; d="scan'208";a="457609757" Received: from silpixa00401160.ir.intel.com ([10.55.128.248]) by fmsmga007.fm.intel.com with ESMTP; 27 Aug 2021 10:25:54 -0700 From: Conor Walsh To: dev@dpdk.org Cc: bruce.richardson@intel.com, fengchengwen@huawei.com, jerinj@marvell.com, kevin.laatz@intel.com, Conor Walsh Date: Fri, 27 Aug 2021 17:25:42 +0000 Message-Id: <20210827172550.1522362-1-conor.walsh@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 0/8] dma: add dmadev driver for ioat devices 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 Sender: "dev" This patchset adds a dmadev driver and associated documentation to support Intel QuickData Technology devices, part of the Intel I/O Acceleration Technology (Intel I/OAT). This driver is intended to ultimately replace the current IOAT rawdev driver NOTE: This patchset has several dependencies: - v16 of the dmadev set [1] - rfc of the dmadev test suite [2] - v1 of the IDXD driver [3] [1] http://patches.dpdk.org/project/dpdk/list/?series=18391 [2] http://patches.dpdk.org/project/dpdk/list/?series=18477 [3] http://patches.dpdk.org/project/dpdk/list/?series=18500 Conor Walsh (8): dma/ioat: add device probe and removal functions dma/ioat: create dmadev instances on PCI probe dma/ioat: add datapath structures dma/ioat: add configuration functions dma/ioat: add start and stop functions dma/ioat: add data path job submission functions dma/ioat: add data path completion functions dma/ioat: add statistics MAINTAINERS | 6 + doc/guides/dmadevs/index.rst | 1 + doc/guides/dmadevs/ioat.rst | 214 ++++++++ doc/guides/rel_notes/release_21_11.rst | 7 +- drivers/dma/ioat/ioat_dmadev.c | 674 +++++++++++++++++++++++++ drivers/dma/ioat/ioat_hw_defs.h | 296 +++++++++++ drivers/dma/ioat/ioat_internal.h | 44 ++ drivers/dma/ioat/meson.build | 7 + drivers/dma/ioat/version.map | 3 + drivers/dma/meson.build | 1 + 10 files changed, 1250 insertions(+), 3 deletions(-) create mode 100644 doc/guides/dmadevs/ioat.rst create mode 100644 drivers/dma/ioat/ioat_dmadev.c create mode 100644 drivers/dma/ioat/ioat_hw_defs.h create mode 100644 drivers/dma/ioat/ioat_internal.h create mode 100644 drivers/dma/ioat/meson.build create mode 100644 drivers/dma/ioat/version.map -- 2.25.1