From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id AC6AD2C59 for ; Tue, 8 Mar 2016 15:10:09 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 08 Mar 2016 06:10:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,556,1449561600"; d="scan'208";a="665830091" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by FMSMGA003.fm.intel.com with ESMTP; 08 Mar 2016 06:10:05 -0800 Received: from irsmsx156.ger.corp.intel.com (10.108.20.68) by IRSMSX152.ger.corp.intel.com (163.33.192.66) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 8 Mar 2016 14:10:04 +0000 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.137]) by IRSMSX156.ger.corp.intel.com ([169.254.3.132]) with mapi id 14.03.0248.002; Tue, 8 Mar 2016 14:10:04 +0000 From: "Jain, Deepak K" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v3] pmd/snow3g: add new SNOW 3G SW PMD Thread-Index: AQHReKoGLRBW718Hl0yYQNgrWpJZQ59Plksg Date: Tue, 8 Mar 2016 14:10:03 +0000 Deferred-Delivery: Tue, 8 Mar 2016 14:09:22 +0000 Message-ID: References: <1457359641-29162-1-git-send-email-pablo.de.lara.guarch@intel.com> <1457380086-30391-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1457380086-30391-1-git-send-email-pablo.de.lara.guarch@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjg5MjA0MTUtM2FiYi00NjJhLWE0MjAtZmQ4ZWM2MDFhN2EyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik1hb0pMYVZLM3hMSWtZVlpUY3V4c0VTM1dkN0pCVHdcL1lKUE8zeW82TDRrPSJ9 x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3] pmd/snow3g: add new SNOW 3G SW PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Mar 2016 14:10:10 -0000 -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara Sent: Monday, March 7, 2016 7:48 PM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH v3] pmd/snow3g: add new SNOW 3G SW PMD Added new SW PMD which makes use of the libsso SW library, which provides w= ireless algorithms SNOW 3G UEA2 and UIA2 in software. This PMD supports cipher-only, hash-only and chained operations ("cipher th= en hash" and "hash then cipher") of the following algorithms: - RTE_CRYPTO_SYM_CIPHER_SNOW3G_UEA2 - RTE_CRYPTO_SYM_HASH_SNOW3G_UIA2 The SNOW 3G hash and cipher algorithms, which are enabled by this crypto PM= D are implemented by Intel's libsso software library. For library download = and build instructions, see the documentation included (doc/guides/cryptode= vs/snow3g.rst) The patch also contains the related unit tests function to test the PMD sup= ported operations. Signed-off-by: Pablo de Lara --- This patch depends on "Snow3G support for Intel Quick Assist Devices" patch= set (http://dpdk.org/ml/archives/dev/2016-March/034503.html). Changes in v3: - Corrected patch dependency Changes in v2: - Rebased against crypto API changes - Removed static config options and allow user to provide them as virtual device parameters. - Added unit tests - Changed DPDK version references from 2.3 to 16.04 - Fixed crypto operation status handling - Fixed copyright dates - Fixed enqueue error stats MAINTAINERS | 4 + app/test/test_cryptodev.c | 78 ++++ config/common_base | 6 + doc/guides/cryptodevs/index.rst | 1 + doc/guides/cryptodevs/snow3g.rst | 69 +++ doc/guides/rel_notes/release_16_04.rst | 4 + drivers/crypto/Makefile | 3 +- drivers/crypto/snow3g/Makefile | 64 +++ drivers/crypto/snow3g/rte_pmd_snow3g_version.map | 3 + drivers/crypto/snow3g/rte_snow3g_pmd.c | 531 +++++++++++++++++++= ++++ drivers/crypto/snow3g/rte_snow3g_pmd_ops.c | 291 +++++++++++++ drivers/crypto/snow3g/rte_snow3g_pmd_private.h | 107 +++++ lib/librte_cryptodev/Makefile | 3 +- lib/librte_cryptodev/rte_cryptodev.h | 120 ++++- mk/rte.app.mk | 6 +- 15 files changed, 1286 insertions(+), 4 deletions(-) create mode 100644 d= oc/guides/cryptodevs/snow3g.rst create mode 100644 drivers/crypto/snow3g/M= akefile create mode 100644 drivers/crypto/snow3g/rte_pmd_snow3g_version.ma= p create mode 100644 drivers/crypto/snow3g/rte_snow3g_pmd.c create mode 100644 drivers/crypto/snow3g/rte_snow3g_pmd_ops.c create mode 100644 drivers/crypto/snow3g/rte_snow3g_pmd_private.h --=20 2.5.0 Acked-by: Deepak Kumar JAIN