DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <akhil.goyal@nxp.com>
To: <dev@dpdk.org>, <pablo.de.lara.guarch@intel.com>
Cc: <declan.doherty@intel.com>, <john.mcnamara@intel.com>,
	<hemant.agrawal@nxp.com>
Subject: Re: [dpdk-dev] [PATCH 0/4] Introducing NXP dpaa_sec based cryptodev pmd
Date: Thu, 24 Aug 2017 05:38:51 +0530	[thread overview]
Message-ID: <93200477-f9d1-8940-34ec-3ae2477d873a@nxp.com> (raw)
In-Reply-To: <20170824000117.32186-1-akhil.goyal@nxp.com>

On 8/24/2017 5:31 AM, Akhil Goyal wrote:
> Based over the DPAA PMD driver [1], this series of patches introduces the
> DPAA_SEC PMD which provides DPDK crypto driver for NXP's DPAA CAAM
> Hardware accelerator.
> 
> SEC is NXP DPAA SoC's security engine for cryptographic acceleration and
> offloading. It implements block encryption, stream cipher, hashing and
> public key algorithms. It also supports run-time integrity checking, and a
> hardware random number generator.
> 
>   :: Patch Layout ::
> 
>   0001     : Bus scan for dpaa sec device
>   0002     : Cryptodev PMD
>   0003     : Performance and Functional tests
>   0004     : Documentation
> 
>   :: Future Work To Do ::
> 
> - More functionality and algorithms are still work in progress
>          -- Hash followed by Cipher mode
>          -- session-less API
> 	-- Chained mbufs
> 
:: References ::

[1] http://dpdk.org/ml/archives/dev/2017-August/073269.html

> 
> 
> Akhil Goyal (4):
>    bus/dpaa: scan for DPAA Crypto devices
>    crypto/dpaa_sec: add crypto driver for NXP DPAA platform
>    test/crypto: add dpaa crypto test cases
>    doc: add NXP DPAA SEC
> 
>   MAINTAINERS                                        |    7 +
>   config/common_base                                 |    8 +
>   config/defconfig_arm64-dpaa-linuxapp-gcc           |   17 +
>   doc/guides/cryptodevs/dpaa_sec.rst                 |  182 +++
>   doc/guides/cryptodevs/features/dpaa_sec.ini        |   40 +
>   doc/guides/cryptodevs/index.rst                    |    1 +
>   doc/guides/rel_notes/release_17_11.rst             |    6 +
>   drivers/Makefile                                   |    2 +-
>   drivers/bus/dpaa/dpaa_bus.c                        |   51 +
>   drivers/crypto/Makefile                            |    2 +
>   drivers/crypto/dpaa_sec/Makefile                   |   71 +
>   drivers/crypto/dpaa_sec/dpaa_sec.c                 | 1552 ++++++++++++++++++++
>   drivers/crypto/dpaa_sec/dpaa_sec.h                 |  403 +++++
>   drivers/crypto/dpaa_sec/dpaa_sec_log.h             |   70 +
>   .../crypto/dpaa_sec/rte_pmd_dpaa_sec_version.map   |    4 +
>   mk/rte.app.mk                                      |    6 +
>   test/test/test_cryptodev.c                         |  203 ++-
>   test/test/test_cryptodev_aes_test_vectors.h        |   78 +-
>   test/test/test_cryptodev_blockcipher.c             |    7 +
>   test/test/test_cryptodev_blockcipher.h             |    1 +
>   test/test/test_cryptodev_des_test_vectors.h        |   24 +-
>   test/test/test_cryptodev_hash_test_vectors.h       |   12 +
>   test/test/test_cryptodev_perf.c                    |   37 +-
>   23 files changed, 2746 insertions(+), 38 deletions(-)
>   create mode 100644 doc/guides/cryptodevs/dpaa_sec.rst
>   create mode 100644 doc/guides/cryptodevs/features/dpaa_sec.ini
>   create mode 100644 drivers/crypto/dpaa_sec/Makefile
>   create mode 100644 drivers/crypto/dpaa_sec/dpaa_sec.c
>   create mode 100644 drivers/crypto/dpaa_sec/dpaa_sec.h
>   create mode 100644 drivers/crypto/dpaa_sec/dpaa_sec_log.h
>   create mode 100644 drivers/crypto/dpaa_sec/rte_pmd_dpaa_sec_version.map
> 

Forgot to mention the Reference to DPAA PMD

Regards,
Akhil

  parent reply	other threads:[~2017-08-24  0:08 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-24  0:01 Akhil Goyal
2017-08-24  0:01 ` [dpdk-dev] [PATCH 1/4] bus/dpaa: scan for DPAA Crypto devices Akhil Goyal
2017-09-18 14:24   ` De Lara Guarch, Pablo
2017-08-24  0:01 ` [dpdk-dev] [PATCH 2/4] crypto/dpaa_sec: add crypto driver for NXP DPAA platform Akhil Goyal
2017-09-18 18:11   ` De Lara Guarch, Pablo
2017-10-03  8:45     ` Akhil Goyal
2017-08-24  0:01 ` [dpdk-dev] [PATCH 3/4] test/crypto: add dpaa crypto test cases Akhil Goyal
2017-09-18 18:19   ` De Lara Guarch, Pablo
2017-10-03  8:45     ` Akhil Goyal
2017-08-24  0:01 ` [dpdk-dev] [PATCH 4/4] doc: add NXP DPAA SEC Akhil Goyal
2017-09-18 14:32   ` De Lara Guarch, Pablo
2017-09-19 14:44   ` Mcnamara, John
2017-08-24  0:08 ` Akhil Goyal [this message]
2017-10-03  8:50 ` [dpdk-dev] [PATCH v2 0/4] Introducing NXP dpaa_sec based cryptodev pmd Akhil Goyal
2017-10-03  8:50   ` [dpdk-dev] [PATCH v2 1/4] bus/dpaa: scan for DPAA Crypto devices Akhil Goyal
2017-10-03  8:50   ` [dpdk-dev] [PATCH v2 2/4] crypto/dpaa_sec: add crypto driver for NXP DPAA platform Akhil Goyal
2017-10-03  8:50   ` [dpdk-dev] [PATCH v2 3/4] test/crypto: add dpaa crypto test cases Akhil Goyal
2017-10-03  8:50   ` [dpdk-dev] [PATCH v2 4/4] doc: add NXP DPAA SEC Akhil Goyal
2017-10-03  9:40 ` [dpdk-dev] [PATCH v3 0/4] Introducing NXP dpaa_sec based cryptodev pmd akhil.goyal
2017-10-03  9:40   ` [dpdk-dev] [PATCH v3 1/4] bus/dpaa: scan for DPAA Crypto devices akhil.goyal
2017-10-03  9:40   ` [dpdk-dev] [PATCH v3 2/4] crypto/dpaa_sec: add crypto driver for NXP DPAA platform akhil.goyal
2017-10-03  9:40   ` [dpdk-dev] [PATCH v3 3/4] test/crypto: add dpaa crypto test cases akhil.goyal
2017-10-03  9:40   ` [dpdk-dev] [PATCH v3 4/4] doc: add NXP DPAA SEC akhil.goyal
2017-10-05 13:33   ` [dpdk-dev] [PATCH v4 0/4] Introducing NXP dpaa_sec based cryptodev pmd akhil.goyal
2017-10-05 13:33     ` [dpdk-dev] [PATCH v4 1/4] bus/dpaa: scan for DPAA Crypto devices akhil.goyal
2017-10-05 13:33     ` [dpdk-dev] [PATCH v4 2/4] crypto/dpaa_sec: add crypto driver for NXP DPAA platform akhil.goyal
2017-10-05 13:33     ` [dpdk-dev] [PATCH v4 3/4] test/crypto: add dpaa crypto test cases akhil.goyal
2017-10-05 13:33     ` [dpdk-dev] [PATCH v4 4/4] doc: add NXP DPAA SEC akhil.goyal
2017-10-09 14:21     ` [dpdk-dev] [PATCH v5 0/4] Introducing NXP dpaa_sec based cryptodev pmd akhil.goyal
2017-10-09 14:21       ` [dpdk-dev] [PATCH v5 1/4] bus/dpaa: scan for DPAA Crypto devices akhil.goyal
2017-10-09 14:21       ` [dpdk-dev] [PATCH v5 2/4] crypto/dpaa_sec: add crypto driver for NXP DPAA platform akhil.goyal
2017-10-09 14:21       ` [dpdk-dev] [PATCH v5 3/4] test/crypto: add dpaa crypto test cases akhil.goyal
2017-10-09 14:21       ` [dpdk-dev] [PATCH v5 4/4] doc: add NXP DPAA SEC akhil.goyal
2017-10-09 15:28       ` [dpdk-dev] [PATCH v5 0/4] Introducing NXP dpaa_sec based cryptodev pmd De Lara Guarch, Pablo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=93200477-f9d1-8940-34ec-3ae2477d873a@nxp.com \
    --to=akhil.goyal@nxp.com \
    --cc=declan.doherty@intel.com \
    --cc=dev@dpdk.org \
    --cc=hemant.agrawal@nxp.com \
    --cc=john.mcnamara@intel.com \
    --cc=pablo.de.lara.guarch@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).