From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id B9DA61B27E for ; Thu, 12 Oct 2017 14:11:52 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Oct 2017 05:11:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,366,1503385200"; d="scan'208";a="162339144" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga006.fm.intel.com with ESMTP; 12 Oct 2017 05:11:47 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by IRSMSX106.ger.corp.intel.com ([169.254.8.36]) with mapi id 14.03.0319.002; Thu, 12 Oct 2017 13:11:46 +0100 From: "De Lara Guarch, Pablo" To: Tomasz Duszynski , "dev@dpdk.org" CC: "mw@semihalf.com" , "dima@marvell.com" , "nsamsono@marvell.com" , "Jianbo.liu@arm.org" Thread-Topic: [dpdk-dev] [PATCH v4 0/4] add crypto mrvl pmd driver Thread-Index: AQHTQcHObZXk08PVyk+ct1CG1PKu9qLgIt5A Date: Thu, 12 Oct 2017 12:11:46 +0000 Message-ID: References: <1507408106-11292-1-git-send-email-tdu@semihalf.com> <1507637842-4417-1-git-send-email-tdu@semihalf.com> In-Reply-To: <1507637842-4417-1-git-send-email-tdu@semihalf.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNTQzZDVjMGYtYTc5YS00OWRjLTkwMDQtY2E0M2EzMWRlOTk3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6InlBb0k1c0grOEU3U1lpT3RFMDdrOThQd0tVZXo4MEVkb2l5UHdXZFVjN1E9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/4] add crypto mrvl pmd driver 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: , X-List-Received-Date: Thu, 12 Oct 2017 12:11:53 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Tomasz Duszynski > Sent: Tuesday, October 10, 2017 1:17 PM > To: dev@dpdk.org > Cc: mw@semihalf.com; dima@marvell.com; nsamsono@marvell.com; > Jianbo.liu@arm.org; Tomasz Duszynski > Subject: [dpdk-dev] [PATCH v4 0/4] add crypto mrvl pmd driver >=20 > Hello, >=20 > This patch series introduces crypto driver for Marvell Armada 7k/8k SoCs > along with documentation and crypto pmd driver tests. >=20 > Below you can find the list of features which crypto pmd supports: > * Symmetric crypto > * Sym operation chaining > * AES CBC (128) > * AES CBC (192) > * AES CBC (256) > * AES CTR (128) > * AES CTR (192) > * AES CTR (256) > * 3DES CBC > * 3DES CTR > * MD5 > * MD5 HMAC > * SHA1 > * SHA1 HMAC > * SHA256 > * SHA256 HMAC > * SHA384 > * SHA384 HMAC > * SHA512 > * SHA512 HMAC > * AES GCM (128) >=20 > Changes since v3: > * Rebased on dpdk-next-crypto. > * Allocated driver structure statically. > * Fixed email addresses. > * Updated documentation. >=20 > Changes since v2: > * Added MRVL CRYPTO PMD to the test-build.sh. > * Updated release notes. > * Updated cryptoperf documentation. > * Removed cryptodev_mrvl_pmd driver alias. > * Fixed min,max key sizes used by HMACs in capabilities table. > * Renamed map file. > * Updated documentation. >=20 > Tomasz Duszynski (4): > crypto/mrvl: add mrvl crypto pmd driver > doc: add mrvl crypto pmd documentation > maintainers: add maintainers for the mrvl crypto pmd > test: add mrvl crypto pmd unit tests >=20 > MAINTAINERS | 10 + > config/common_base | 6 + > devtools/test-build.sh | 4 + > doc/guides/cryptodevs/features/mrvl.ini | 42 ++ > doc/guides/cryptodevs/index.rst | 1 + > doc/guides/cryptodevs/mrvl.rst | 205 +++++++ > doc/guides/rel_notes/release_17_11.rst | 5 + > doc/guides/tools/cryptoperf.rst | 1 + > drivers/crypto/Makefile | 2 + > drivers/crypto/mrvl/Makefile | 63 ++ > drivers/crypto/mrvl/rte_mrvl_compat.h | 48 ++ > drivers/crypto/mrvl/rte_mrvl_pmd.c | 872 > +++++++++++++++++++++++++++ > drivers/crypto/mrvl/rte_mrvl_pmd_ops.c | 776 > ++++++++++++++++++++++++ > drivers/crypto/mrvl/rte_mrvl_pmd_private.h | 121 ++++ > drivers/crypto/mrvl/rte_pmd_mrvl_version.map | 3 + > mk/rte.app.mk | 1 + > test/test/test_cryptodev.c | 168 ++++++ > test/test/test_cryptodev.h | 1 + > test/test/test_cryptodev_aes_test_vectors.h | 72 ++- > test/test/test_cryptodev_blockcipher.c | 9 +- > test/test/test_cryptodev_blockcipher.h | 1 + > test/test/test_cryptodev_des_test_vectors.h | 24 +- > 22 files changed, 2402 insertions(+), 33 deletions(-) create mode 10064= 4 > doc/guides/cryptodevs/features/mrvl.ini > create mode 100644 doc/guides/cryptodevs/mrvl.rst create mode 100644 > drivers/crypto/mrvl/Makefile create mode 100644 > drivers/crypto/mrvl/rte_mrvl_compat.h > create mode 100644 drivers/crypto/mrvl/rte_mrvl_pmd.c > create mode 100644 drivers/crypto/mrvl/rte_mrvl_pmd_ops.c > create mode 100644 drivers/crypto/mrvl/rte_mrvl_pmd_private.h > create mode 100644 drivers/crypto/mrvl/rte_pmd_mrvl_version.map >=20 > -- > 2.7.4 Applied to dpdk-next-crypto, squashing patch 1 and 3. Thanks, Pablo