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 21D09A04BC; Fri, 9 Oct 2020 23:11:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 867D31BD82; Fri, 9 Oct 2020 23:11:52 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 173492B8C for ; Fri, 9 Oct 2020 23:11:49 +0200 (CEST) IronPort-SDR: GTCYMISQ461P8+tTEXG8e+iTV2+zs1cQCDDUv4F+kR0LkbdlyqPZNPkwo1+9uBnaS1eFn+99Bz BIRp4TlIv0VQ== X-IronPort-AV: E=McAfee;i="6000,8403,9769"; a="182984632" X-IronPort-AV: E=Sophos;i="5.77,356,1596524400"; d="scan'208";a="182984632" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Oct 2020 14:11:47 -0700 IronPort-SDR: GotTckDcopjUHq7YMuTEd4wW+HmeE1ZzjH0/4yuxBtShZHEX7sI0yFvq6oLOOrs7lKpFgOkS1x RshlNk4i89Ng== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,356,1596524400"; d="scan'208";a="329029371" Received: from silpixa00398673.ir.intel.com (HELO silpixa00398673.ger.corp.intel.com) ([10.237.223.136]) by orsmga002.jf.intel.com with ESMTP; 09 Oct 2020 14:11:46 -0700 From: Fan Zhang To: dev@dpdk.org Cc: akhil.goyal@nxp.com, Fan Zhang Date: Fri, 9 Oct 2020 22:11:37 +0100 Message-Id: <20201009211141.14435-1-roy.fan.zhang@intel.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200924163417.49983-1-roy.fan.zhang@intel.com> References: <20200924163417.49983-1-roy.fan.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [dpdk-dev v11 0/4] cryptodev: add raw data-path APIs 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" The Crypto Raw data-path APIs are a set of APIs designed to enable external libraries/applications to leverage the cryptographic processing provided by DPDK crypto PMDs through the cryptodev API but in a manner that is not dependent on native DPDK data structures (eg. rte_mbuf, rte_crypto_op, ... etc) in their data-path implementation. The raw data-path APIs have the following advantages: - External data structure friendly design. The new APIs uses the operation descriptor ``struct rte_crypto_sym_vec`` that supports raw data pointer and IOVA addresses as input. Moreover, the APIs does not require the user to allocate the descriptor from mempool, nor requiring mbufs to describe input data's virtual and IOVA addresses. All these features made the translation from user's own data structure into the descriptor easier and more efficient. - Flexible enqueue and dequeue operation. The raw data-path APIs gives the user more control to the enqueue and dequeue operations, including the capability of precious enqueue/dequeue count, abandoning enqueue or dequeue at any time, and operation status translation and set on the fly. v11: - Rebased on top of latest master. - API changed followed by the discussion results. - Fixed a few grammar error thanks to Akhil. - Reverted attach session API changes. - Fixed QAT driver bugs. v10: - Changed rte_crypto_sym_vec structure to support both sync cpu_crypto and async raw data-path API. - Changed documentation. - Changed API names. - Changed the way data-path context is initialized. - Added new API to attach session or xform to existing context. - Changed QAT PMD accordingly with new APIs. - Changed unit test to use the device feature flag for the raw API tests. v9: - Changed return types of submit_done() and dequeue_done() APIs. - Added release note update. v8: - Updated following by comments. - Fixed a few bugs. - Fixed ARM build error. - Updated the unit test covering all tests. v7: - Fixed a few typos. - Fixed length calculation bugs. v6: - Rebased on top of DPDK 20.08. - Changed to service ctx and added single job submit/dequeue. v5: - Changed to use rte_crypto_sym_vec as input. - Changed to use public APIs instead of use function pointer. v4: - Added missed patch. v3: - Instead of QAT only API, moved the API to cryptodev. - Added cryptodev feature flags. v2: - Used a structure to simplify parameters. - Added unit tests. - Added documentation. Fan Zhang (4): cryptodev: change crypto symmetric vector structure cryptodev: add raw crypto data-path APIs crypto/qat: add raw crypto data-path API support test/crypto: add unit-test for cryptodev raw API test app/test/test_cryptodev.c | 805 ++++++++++++++- app/test/test_cryptodev.h | 12 + app/test/test_cryptodev_blockcipher.c | 58 +- doc/guides/cryptodevs/features/default.ini | 1 + doc/guides/cryptodevs/features/qat.ini | 1 + doc/guides/prog_guide/cryptodev_lib.rst | 100 +- doc/guides/rel_notes/release_20_11.rst | 10 + drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 18 +- drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 9 +- drivers/crypto/qat/meson.build | 1 + drivers/crypto/qat/qat_sym.h | 11 + drivers/crypto/qat/qat_sym_hw_dp.c | 959 ++++++++++++++++++ drivers/crypto/qat/qat_sym_pmd.c | 9 +- lib/librte_cryptodev/rte_crypto_sym.h | 40 +- lib/librte_cryptodev/rte_cryptodev.c | 80 ++ lib/librte_cryptodev/rte_cryptodev.h | 367 ++++++- lib/librte_cryptodev/rte_cryptodev_pmd.h | 51 +- .../rte_cryptodev_version.map | 10 + lib/librte_ipsec/esp_inb.c | 12 +- lib/librte_ipsec/esp_outb.c | 12 +- lib/librte_ipsec/misc.h | 6 +- 21 files changed, 2464 insertions(+), 108 deletions(-) create mode 100644 drivers/crypto/qat/qat_sym_hw_dp.c -- 2.20.1