DPDK patches and discussions
 help / color / mirror / Atom feed
From: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
To: jerin.jacob@caviumnetworks.com, hemant.agrawal@nxp.com,
	akhil.goyal@nxp.com, dev@dpdk.org
Cc: narender.vangati@intel.com, abhinandan.gujjar@intel.com,
	nikhil.rao@intel.com, gage.eads@intel.com
Subject: [dpdk-dev] [v4,0/5] eventdev: cover letter - crypto adapter
Date: Wed,  9 May 2018 01:15:59 +0530	[thread overview]
Message-ID: <1525808764-109595-1-git-send-email-abhinandan.gujjar@intel.com> (raw)

This patchset introduces the event crypto adapter which is intended
to bridge between event devices and crypto devices. Addition of the
event crypto adapter into eventdev library extends the event driven
programming model with crypto devices.

This patchset has dependency on below cryptodev patchset:
[1] https://dpdk.org/dev/patchwork/patch/38172/
[2] https://dpdk.org/dev/patchwork/patch/38173/
[3] https://dpdk.org/dev/patchwork/patch/38174/


Change log:
===========
v4:
 -Updated header file OP_NEW mode diagram
 -Fixed makefile issue & arranged functions in alphabetical order in map file
 -Renamed adapter MACRO
 -Fixed shared library compilation issue
 -Updated test code with check for HW and start the service cores
 -Fixed checkpatch issues
 -Fixed 32bit library issues
 -Updated the documentation

v3:
 -Changed the adapter mode to OP_NEW & OP_FORWARD
 -Removed struct rte_event_crypto_queue_pair_conf
 -Updated adapter service code
 -Updated the documentation

v2:
 -Added following new capabilities:
  -RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW
  -RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_QP_EV_BIND
  -RTE_EVENT_CRYPTO_ADAPTER_CAP_SESSION_PRIVATE_DATA
 -Updated the service init code
 -Moved adapter mode to the adapter create API
 -Updated the test case for above changes

Abhinandan Gujjar (5):
  eventdev: introduce event crypto adapter
  eventdev: add APIs and PMD callbacks for crypto adapter
  eventdev: add crypto adapter implementation
  test: add event crypto adapter auto-test
  doc: add event crypto adapter documentation

 MAINTAINERS                                        |    7 +
 config/common_base                                 |    1 +
 config/rte_config.h                                |    1 +
 doc/api/doxy-api-index.md                          |    1 +
 doc/guides/prog_guide/event_crypto_adapter.rst     |  290 +++++
 .../img/event_crypto_adapter_op_forward.svg        | 1073 +++++++++++++++++++
 .../prog_guide/img/event_crypto_adapter_op_new.svg |  968 +++++++++++++++++
 doc/guides/prog_guide/index.rst                    |    1 +
 doc/guides/rel_notes/release_18_05.rst             |    6 +
 drivers/event/sw/sw_evdev.c                        |   13 +
 lib/Makefile                                       |    3 +-
 lib/librte_eventdev/Makefile                       |    3 +
 lib/librte_eventdev/meson.build                    |    8 +-
 lib/librte_eventdev/rte_event_crypto_adapter.c     | 1128 ++++++++++++++++++++
 lib/librte_eventdev/rte_event_crypto_adapter.h     |  575 ++++++++++
 lib/librte_eventdev/rte_eventdev.c                 |   25 +
 lib/librte_eventdev/rte_eventdev.h                 |   53 +-
 lib/librte_eventdev/rte_eventdev_pmd.h             |  187 ++++
 lib/librte_eventdev/rte_eventdev_version.map       |   13 +
 test/test/Makefile                                 |    2 +
 test/test/test_event_crypto_adapter.c              |  927 ++++++++++++++++
 21 files changed, 5280 insertions(+), 5 deletions(-)
 create mode 100644 doc/guides/prog_guide/event_crypto_adapter.rst
 create mode 100644 doc/guides/prog_guide/img/event_crypto_adapter_op_forward.svg
 create mode 100644 doc/guides/prog_guide/img/event_crypto_adapter_op_new.svg
 create mode 100644 lib/librte_eventdev/rte_event_crypto_adapter.c
 create mode 100644 lib/librte_eventdev/rte_event_crypto_adapter.h
 create mode 100644 test/test/test_event_crypto_adapter.c

-- 
1.9.1

             reply	other threads:[~2018-05-08 19:45 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-08 19:45 Abhinandan Gujjar [this message]
2018-05-08 19:46 ` [dpdk-dev] [v4,1/5] eventdev: introduce event " Abhinandan Gujjar
2018-05-09  2:34   ` Jerin Jacob
2018-05-09  7:01   ` Akhil Goyal
2018-05-09  7:26     ` Gujjar, Abhinandan S
2018-05-08 19:46 ` [dpdk-dev] [v4, 2/5] eventdev: add APIs and PMD callbacks for " Abhinandan Gujjar
2018-05-09  2:35   ` Jerin Jacob
2018-05-08 19:46 ` [dpdk-dev] [v4,3/5] eventdev: add crypto adapter implementation Abhinandan Gujjar
2018-05-09  2:36   ` [dpdk-dev] [v4, 3/5] " Jerin Jacob
2018-05-08 19:46 ` [dpdk-dev] [v4,4/5] test: add event crypto adapter auto-test Abhinandan Gujjar
2018-05-08 19:46 ` [dpdk-dev] [v4,5/5] doc: add event crypto adapter documentation Abhinandan Gujjar
2018-05-09  2:45   ` [dpdk-dev] [v4, 5/5] " Jerin Jacob

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=1525808764-109595-1-git-send-email-abhinandan.gujjar@intel.com \
    --to=abhinandan.gujjar@intel.com \
    --cc=akhil.goyal@nxp.com \
    --cc=dev@dpdk.org \
    --cc=gage.eads@intel.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=jerin.jacob@caviumnetworks.com \
    --cc=narender.vangati@intel.com \
    --cc=nikhil.rao@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).