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 E9AA0A0547; Thu, 25 Aug 2022 16:29:08 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 85B40410E5; Thu, 25 Aug 2022 16:29:08 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id D956740156 for ; Thu, 25 Aug 2022 16:29:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1661437747; x=1692973747; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=OkEIBw77NHlWcm3C0e8nq3SaSC6Qsi/qAVlKcafrkgE=; b=DFVIPKuhrv9L8RDd8yJbZWRwc/MNF3fcN+QbouqeM+TlE4MdqLFWfoCf LPlHMtn4wVteLfTLthsXKkTjPUocPWUYA4B5XWF+50UPLiI8EuEMRrn3J v53/CVeMsRSdeYtiW411pVgO45Ae1jmE2Twass3Aw3M76Cb7aTxFSiOak w5h0jneKP19BG8tP7VNu5Pujf90feXoHROJbadhH0qkaR3It6wu+TkRiq 5UqAM+myle5HxDvguBWdzxppsDtgO28FTl/Cp9D89v6XAe0Oo8yB0X3FR sA9wJA7ty01gV2ilN4l8G0YofMkBZSlGVtb49Qh4I0OAFcWhiIQfq5Eyr A==; X-IronPort-AV: E=McAfee;i="6500,9779,10450"; a="358216604" X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="358216604" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2022 07:29:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="561043237" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.222.49]) by orsmga003.jf.intel.com with ESMTP; 25 Aug 2022 07:29:04 -0700 From: Ciara Power To: Cc: dev@dpdk.org, kai.ji@intel.com, roy.fan.zhang@intel.com, pablo.de.lara.guarch@intel.com, Ciara Power Subject: [PATCH v2 0/5] add remaining SGL support to AESNI_MB Date: Thu, 25 Aug 2022 14:28:56 +0000 Message-Id: <20220825142901.898007-1-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220812132334.75707-1-ciara.power@intel.com> References: <20220812132334.75707-1-ciara.power@intel.com> 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 Currently, the intel-ipsec-mb library only supports SGL for GCM and ChaCha20-Poly1305 algorithms through the JOB API. To add SGL support for other algorithms, a workaround approach is added in the AESNI_MB PMD. SGL feature flags can now be added to the PMD. This patchset also includes a fix for SGL wireless operations, and sessionless cleanup. Some additional Snow3G SGL and AES tests are also added for various SGL input/output combinations that were not previously being tested. v2: - Added documentation changes. - Added fix for sessionless cleanup. - Modified blockcipher tests to support various SGL types. - Added more SGL AES tests. - Small fixes. Ciara Power (5): test/crypto: fix wireless auth digest segment crypto/ipsec_mb: fix sessionless cleanup crypto/ipsec_mb: add remaining SGL support test/crypto: add OOP snow3g SGL tests test/crypto: add remaining blockcipher SGL tests app/test/test_cryptodev.c | 56 +++- app/test/test_cryptodev_aes_test_vectors.h | 345 +++++++++++++++++--- app/test/test_cryptodev_blockcipher.c | 50 +-- app/test/test_cryptodev_blockcipher.h | 2 + app/test/test_cryptodev_hash_test_vectors.h | 8 +- doc/guides/cryptodevs/aesni_mb.rst | 1 - doc/guides/cryptodevs/features/aesni_mb.ini | 4 + doc/guides/rel_notes/release_22_11.rst | 4 + drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 195 ++++++++--- drivers/crypto/ipsec_mb/pmd_chacha_poly.c | 4 - drivers/crypto/ipsec_mb/pmd_kasumi.c | 5 - drivers/crypto/ipsec_mb/pmd_snow3g.c | 4 - drivers/crypto/ipsec_mb/pmd_zuc.c | 4 - 13 files changed, 548 insertions(+), 134 deletions(-) -- 2.25.1