From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Oct 2017 08:47:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,481,1500966000"; d="scan'208";a="1202623242" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.37]) by fmsmga001.fm.intel.com with SMTP; 05 Oct 2017 08:47:37 -0700 Received: by (sSMTP sendmail emulation); Thu, 05 Oct 2017 16:47:37 +0100 Date: Thu, 5 Oct 2017 16:47:37 +0100 From: Bruce Richardson To: Tomasz Duszynski Cc: dev@dpdk.org, mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@linaro.org, Jacek Siuda 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 Content-Disposition: inline In-Reply-To: <1506594212-15803-2-git-send-email-tdu@semihalf.com> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.8.3 (2017-05-23) Subject: Re: [dpdk-dev] [PATCH v2 1/4] crypto/mrvl: add mrvl crypto 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, 05 Oct 2017 15:47:50 -0000 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