From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH v2 1/4] crypto/mrvl: add mrvl crypto pmd driver Date: Thu, 5 Oct 2017 16:47:37 +0100 Message-ID: <20171005154736.GA23608@bricha3-MOBL3.ger.corp.intel.com> References: <1506418805-12117-1-git-send-email-tdu@semihalf.com> <1506594212-15803-1-git-send-email-tdu@semihalf.com> <1506594212-15803-2-git-send-email-tdu@semihalf.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@linaro.org, Jacek Siuda To: Tomasz Duszynski Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 2BA151B24B for ; Thu, 5 Oct 2017 17:47:49 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1506594212-15803-2-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" On Thu, Sep 28, 2017 at 12:23:29PM +0200, Tomasz Duszynski wrote: > Add support for the Marvell Security Crypto Accelerator EIP197. > Driver is based on external, publicly available, Marvell MUSDK > library that provides access to the hardware with minimum overhead > and high performance. > > Driver comes with support for the following features: > > * 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) > > Driver was engineered cooperatively by Semihalf and Marvell teams. > > Semihalf: > Jacek Siuda > Tomasz Duszynski > > Marvell: > Dmitri Epshtein > Natalie Samsonov > > Signed-off-by: Jacek Siuda > Signed-off-by: Tomasz Duszynski > --- > config/common_base | 6 + > drivers/crypto/Makefile | 2 + > drivers/crypto/mrvl/Makefile | 63 ++ > drivers/crypto/mrvl/rte_mrvl_compat.h | 48 ++ > drivers/crypto/mrvl/rte_mrvl_pmd.c | 870 +++++++++++++++++++++++++++ > drivers/crypto/mrvl/rte_mrvl_pmd_ops.c | 787 ++++++++++++++++++++++++ > drivers/crypto/mrvl/rte_mrvl_pmd_private.h | 121 ++++ > drivers/crypto/mrvl/rte_mrvl_pmd_version.map | 3 + The standard convention for naming version files for these drivers is "rte_pmd__version.map". Without this, the new meson build system will have trouble finding the map file. The same convention applies to net drivers too. Regards, /Bruce