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 19E2B2B93 for ; Fri, 30 Sep 2016 02:57:24 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 29 Sep 2016 17:57:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,417,1473145200"; d="scan'208";a="1058541487" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by orsmga002.jf.intel.com with ESMTP; 29 Sep 2016 17:57:24 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by irsmsx105.ger.corp.intel.com (163.33.3.28) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Sep 2016 01:57:22 +0100 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.164]) by irsmsx155.ger.corp.intel.com ([169.254.14.133]) with mapi id 14.03.0248.002; Fri, 30 Sep 2016 01:57:22 +0100 From: "De Lara Guarch, Pablo" To: "dev@dpdk.org" CC: "Doherty, Declan" Thread-Topic: [PATCH v2 0/4] Add new ZUC SW PMD Thread-Index: AQHSGf1pCGvOnWxGWkKT7HPxzl8IK6CRNwuQ Date: Fri, 30 Sep 2016 00:57:21 +0000 Message-ID: References: <1472180955-42960-1-git-send-email-pablo.de.lara.guarch@intel.com> <1475117990-66664-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1475117990-66664-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-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTk1NGI0N2ItZGJmZi00ZGM5LTk4YzEtMGRkNDQxMWMxZDM3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6InMwZGdvQTY1Wmlra1c3UW53MmV4dHRlb3VOZ3grZlZEdG4yaHczbnlNXC8wPSJ9 x-ctpclassification: CTP_IC 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 v2 0/4] Add new ZUC 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: Fri, 30 Sep 2016 00:57:25 -0000 > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Wednesday, September 28, 2016 8:00 PM > To: dev@dpdk.org > Cc: Doherty, Declan; De Lara Guarch, Pablo > Subject: [PATCH v2 0/4] Add new ZUC SW PMD >=20 > Added new SW PMD which makes use of the libsso SW library, > which provides wireless algorithms ZUC EEA3 and EIA3 > in software. >=20 > This PMD supports cipher-only, hash-only and chained operations > ("cipher then hash" and "hash then cipher") of the following > algorithms: > - RTE_CRYPTO_SYM_CIPHER_ZUC_EEA3 > - RTE_CRYPTO_SYM_AUTH_ZUC_EIA3 >=20 > The patchset also adds unit tests for this new PMD and > rename some common functions in the test application, > as they are used by all the wireless algorithms. >=20 > Changes in v2: > - Added documentation > - Fixed icc issue > - Rebased against latest dpdk-next-crypto > - Added support for ZUC EEA3 and EIA3 in l2fwd-crypto >=20 >=20 > Pablo de Lara (4): > crypto/zuc: add driver for ZUC library > app/test: rename some functions > app/test: add test cases for ZUC PMD > examples/l2fwd-crypto: enable ZUC EEA3 and EIA3 algos >=20 > MAINTAINERS | 5 + > app/test/test_cryptodev.c | 331 ++++++++++++-- > app/test/test_cryptodev_zuc_hash_test_vectors.h | 359 +++++++++++++++ > app/test/test_cryptodev_zuc_test_vectors.h | 582 > ++++++++++++++++++++++++ > config/common_base | 6 + > config/defconfig_i686-native-linuxapp-gcc | 5 + > config/defconfig_i686-native-linuxapp-icc | 5 + > doc/guides/cryptodevs/index.rst | 1 + > doc/guides/cryptodevs/zuc.rst | 108 +++++ > drivers/crypto/Makefile | 1 + > drivers/crypto/zuc/Makefile | 69 +++ > drivers/crypto/zuc/rte_pmd_zuc_version.map | 3 + > drivers/crypto/zuc/rte_zuc_pmd.c | 551 ++++++++++++++++++= ++++ > drivers/crypto/zuc/rte_zuc_pmd_ops.c | 342 ++++++++++++++ > drivers/crypto/zuc/rte_zuc_pmd_private.h | 108 +++++ > examples/l2fwd-crypto/main.c | 12 +- > lib/librte_cryptodev/rte_crypto_sym.h | 20 +- > lib/librte_cryptodev/rte_cryptodev.h | 3 + > mk/rte.app.mk | 2 + > scripts/test-build.sh | 4 + > 20 files changed, 2462 insertions(+), 55 deletions(-) > create mode 100644 app/test/test_cryptodev_zuc_hash_test_vectors.h > create mode 100644 app/test/test_cryptodev_zuc_test_vectors.h > create mode 100644 doc/guides/cryptodevs/zuc.rst > create mode 100644 drivers/crypto/zuc/Makefile > create mode 100644 drivers/crypto/zuc/rte_pmd_zuc_version.map > create mode 100644 drivers/crypto/zuc/rte_zuc_pmd.c > create mode 100644 drivers/crypto/zuc/rte_zuc_pmd_ops.c > create mode 100644 drivers/crypto/zuc/rte_zuc_pmd_private.h >=20 > -- > 2.7.4 Applied to dpdk-next-crypto. Pablo