From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf0-f45.google.com (mail-lf0-f45.google.com [209.85.215.45]) by dpdk.org (Postfix) with ESMTP id 1226E1B29A for ; Tue, 10 Oct 2017 14:17:33 +0200 (CEST) Received: by mail-lf0-f45.google.com with SMTP id 90so22594114lfs.13 for ; Tue, 10 Oct 2017 05:17:33 -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=ST8975dm7LsEb5lZYvDq0xyNziGu3Z3NV93PRBoqGh4=; b=g974Rfqe8N2LGUHkDfU9KhkcXBF3xKFxTL2FkwDxENC7zt8Le4QzN46FLmUkdA1FVh 3ek1WTDdrNPbKHwrc9VdSOodetCdC5cSfGcpcJVHpppOCi8Bm9WTbzjiS8wS9o/VIZ3Y T6j64qux8WS1xZkZprBWrOoM8JyMOSFGeN6W/BS0a8fFIFQ4CAGTMkmN6VKyNYXICfv4 b//6M3O9L+SSdAyYB9mKeqv+FqvYureOdBDThLieRjevElapYCqgjoixkHu7SemeYJuW MqqkDUFoYbK+dQDzuq5dQt82xUXlIyTnkMxUVoSOq7XsT/30LzPmgrkHEmEYGXDpft0T X4jA== 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=ST8975dm7LsEb5lZYvDq0xyNziGu3Z3NV93PRBoqGh4=; b=lLBGUswoauovzpVoQoh3cDgyQ3z+KnWmLK3g0yP/MhgODoeCBoiszGvA59UOTD5IOc A5biDVjc9TZnSgZsQONlIhoDhVeBOvU82HfjFw5UUBXVO0ZheroMg1QpvfEzlEO1lfjB i73B4uFK8sDbCyxUaUR7Kv/XKvjmSBGhXUAFZAaIXQMj5i35kbzE/GEM1yBtzwEujgg6 uIC9ZDPL/CriqI+kxsDGI1ZOkqBOL9vgRjmUnahaLsQn5p4gjgm4h5A3W7qUdH03Ly+V NtZROV3haIL0OLGzYAC5DfwvGdIyN0EcjM1WheIPG5SF6vaAQ7IznwaEhGQ9DIxBJKal Cc6w== X-Gm-Message-State: AMCzsaVyMVQCft/nMbWfuK+eZnoyQ//DCY1KD63M9mGlNmWOuC/sx02U PNDQ/VYZ5iEu507r5PcYO6a3RyV6/VE= X-Google-Smtp-Source: AOwi7QAIMC9GgaGdoJOZB++a/q/8DCpglY0/YGMtVlAiIjnccPNwOBmxVEgzhNK70hnV7+PnaIPxZg== X-Received: by 10.25.17.153 with SMTP id 25mr4844835lfr.132.1507637853066; Tue, 10 Oct 2017 05:17:33 -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 e13sm1677728ljb.93.2017.10.10.05.17.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 10 Oct 2017 05:17:31 -0700 (PDT) From: Tomasz Duszynski To: dev@dpdk.org Cc: mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@arm.org, Tomasz Duszynski Date: Tue, 10 Oct 2017 14:17:18 +0200 Message-Id: <1507637842-4417-1-git-send-email-tdu@semihalf.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1507408106-11292-1-git-send-email-tdu@semihalf.com> References: <1507408106-11292-1-git-send-email-tdu@semihalf.com> Subject: [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: Tue, 10 Oct 2017 12:17:34 -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 v3: * Rebased on dpdk-next-crypto. * Allocated driver structure statically. * Fixed email addresses. * Updated documentation. 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 | 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 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