From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=Zy2c6UNZm0+giOZFjIyPIJSnI2ArmaQgGMlriN4VBiQ=; b=MfHvdGctBs9f5PsDhxdUx2VRbCnZPgMNhxjvVgE5QD1mRwUU0QxzGCFJgqjQlCEZTd YiTVix5RdAgbDHaAsJ8Ountu/vL2DHfQm9jOi+snHDgPArfisfX0mCXuhSWKxtxyiF+v 410WjmeJN2Q92q2OTxp0xj2z9Jtw1c22KV39dfJQbNAWSKaq5t/leXaUf5nN63+Vo3qC y+Z8D10LirGnyrquh43f4GeN8WCM+sMptTCXIf4SoGlm2/6+8CPyBRSFp/4tNP5QiS80 4VmfVejj1b9HA/jzrgSKJpq+RhQcxjRW2iQcfWHMfOT6jOlWomAbQX/if62Oz8Zr9EY0 JTPQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Zy2c6UNZm0+giOZFjIyPIJSnI2ArmaQgGMlriN4VBiQ=; b=cIHVkcZTh29YVSYIKj2uMotq2VR8chNfByQACSb0iK6se2efMIHfqcfgLwCItbqW23 xpy8/DXBDSWxNrvfQAIXccfgcmnKv0h7wLfK1fWztn+LTPS1uPhpkMD+/S8nMmmt9/W3 Xy++OxMIvz7s2AgadSXuCYjAk5u6QiujicrWoaCyvTscLjaosGAZvkicIn7fQTo3Tc28 trVL/8UPdngFgZdowRtoGTA2Yveo7w5IsXsHy0lT4zYqt4CaxbSCAVnzWq4hKvnWczkd CJv40ZUrRqMMPbRASniCsFjbFZA9n9gbZI86+q+Buv/9dY7SsLAfzKZB7kFcqeokJjFH 8Jpw== X-Gm-Message-State: AMCzsaWTC4yZo9LA8IQicpHkwRrb8i3Lv8bu0lL947I6+g+Kl5Taq2Bc cg27Ig+MD1El/lYTNZTgtGBscrRYtdw= X-Google-Smtp-Source: AOwi7QBJfRi4aYB2ywPfzYIazNG/r+Rf1cvlFUebti835OtXJxw7R8ZfAV3dIiKLtjdoJrN+FgO46Q== X-Received: by 10.46.14.18 with SMTP id 18mr1449885ljo.133.1507408133412; Sat, 07 Oct 2017 13:28:53 -0700 (PDT) Received: from tdu.semihalf.local (31-172-191-173.noc.fibertech.net.pl. [31.172.191.173]) by smtp.gmail.com with ESMTPSA id b8sm1050713ljf.60.2017.10.07.13.28.51 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 07 Oct 2017 13:28:52 -0700 (PDT) From: Tomasz Duszynski To: dev@dpdk.org Cc: mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@linaro.org, Tomasz Duszynski Date: Sat, 7 Oct 2017 22:28:22 +0200 Message-Id: <1507408106-11292-1-git-send-email-tdu@semihalf.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1506594212-15803-1-git-send-email-tdu@semihalf.com> References: <1506594212-15803-1-git-send-email-tdu@semihalf.com> Subject: [dpdk-dev] [PATCH v3 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: Sat, 07 Oct 2017 20:28:54 -0000 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