From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tomasz Duszynski Subject: [PATCH v3 0/4] add crypto mrvl pmd driver Date: Sat, 7 Oct 2017 22:28:22 +0200 Message-ID: <1507408106-11292-1-git-send-email-tdu@semihalf.com> References: <1506594212-15803-1-git-send-email-tdu@semihalf.com> Cc: mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@linaro.org, Tomasz Duszynski To: dev@dpdk.org Return-path: Received: from mail-lf0-f42.google.com (mail-lf0-f42.google.com [209.85.215.42]) by dpdk.org (Postfix) with ESMTP id 6D3D92C5E for ; Sat, 7 Oct 2017 22:28:54 +0200 (CEST) Received: by mail-lf0-f42.google.com with SMTP id c82so19758592lfc.6 for ; Sat, 07 Oct 2017 13:28:54 -0700 (PDT) In-Reply-To: <1506594212-15803-1-git-send-email-tdu@semihalf.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hello, This patch series introduces crypto driver for Marvell Armada 7k/8k SoCs along with documentation and crypto pmd driver tests. 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) 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. 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 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 | 198 ++++++ 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 | 869 +++++++++++++++++++++++++++ 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, 2392 insertions(+), 33 deletions(-) create mode 100644 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 -- 2.7.4