DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jerin Jacob <jerinjacobk@gmail.com>
To: Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>
Cc: Ankur Dwivedi <adwivedi@marvell.com>,
	"dev@dpdk.org" <dev@dpdk.org>,
	 Jerin Jacob Kollanukkaran <jerinj@marvell.com>,
	"akhil.goyal@nxp.com" <akhil.goyal@nxp.com>,
	 Anoob Joseph <anoobj@marvell.com>
Subject: Re: [dpdk-dev] [PATCH v4 0/3] event/octeontx2: add support for event crypto adapter
Date: Thu, 8 Oct 2020 21:51:20 +0530	[thread overview]
Message-ID: <CALBAE1OKRRPvCuRr8GHdfoWG+O1gZMeYdmVZ=gbLqqMvjzL79w@mail.gmail.com> (raw)
In-Reply-To: <CY4PR18MB11429B50FDEA0EC37C636690DE0B0@CY4PR18MB1142.namprd18.prod.outlook.com>

On Thu, Oct 8, 2020 at 8:35 PM Pavan Nikhilesh Bhagavatula
<pbhagavatula@marvell.com> wrote:
>
> Series-Acked-by: Pavan Nikhilesh <pbhagavatula@marvell.com>


Series applied to dpdk-next-eventdev/for-main. Thanks.


> >This patch series adds support for event crypto adapter in op new
> >mode in the OCTEON TX2 event PMD. The functionality has been
> >verified with event crypto adapter test application. Build with
> >meson and ninja is supported.
> >
> >v4:
> >* In the "event/octeontx2: add crypto adapter datapath" patch,
> >  replaced rte_cio_wmb with rte_io_wmb, to resolve compilation
> >  error.
> >
> >v3:
> >* In the "event/octeontx2: add crypto adapter framework" patch,
> >  the following changes were made:
> >  - Moved the crypto adapter files from crypto/octeontx2 to
> >    event/octeontx2 directory.
> >  - Reused the security flag for crypto adapter implementation.
> >
> >* In the "event/octeontx2: add crypto adapter datapath" patch,
> >  the following changes were made:
> >  - In otx2_ssogws_get_work() and otx2_ssogws_dual_get_work(),
> >    the crypto adapter function is called if offload flag has
> >    security enabled. This is an additional check apart from
> >    checking event type.
> >
> >v2:
> >* In the "event/octeontx2: add crypto adapter datapath" patch, right
> >  shifting the req pointer by 3 bits before submit during enqueue.
> >  Because of this the right shift during dequeue is not required.
> >
> >Ankur Dwivedi (3):
> >  crypto/octeontx2: move functions to helper file
> >  event/octeontx2: add crypto adapter framework
> >  event/octeontx2: add crypto adapter datapath
> >
> > drivers/common/cpt/cpt_common.h               |  1 +
> > drivers/crypto/octeontx2/meson.build          |  1 +
> > .../octeontx2/otx2_cryptodev_hw_access.h      | 12 +++
> > .../crypto/octeontx2/otx2_cryptodev_mbox.h    |  2 +
> > drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 96 ++++++++---------
> >--
> > .../octeontx2/otx2_cryptodev_ops_helper.h     | 74 ++++++++++++++
> > drivers/crypto/octeontx2/otx2_cryptodev_qp.h  |  7 ++
> > .../rte_pmd_octeontx2_crypto_version.map      | 10 ++
> > drivers/event/octeontx2/meson.build           |  4 +-
> > drivers/event/octeontx2/otx2_evdev.c          |  4 +
> > drivers/event/octeontx2/otx2_evdev.h          | 11 +++
> > .../event/octeontx2/otx2_evdev_crypto_adptr.c | 81
> >++++++++++++++++
> > .../octeontx2/otx2_evdev_crypto_adptr_dp.h    | 75 +++++++++++++++
> > drivers/event/octeontx2/otx2_worker.h         | 28 ++++--
> > drivers/event/octeontx2/otx2_worker_dual.h    | 44 +++++----
> > 15 files changed, 365 insertions(+), 85 deletions(-)
> > create mode 100644
> >drivers/crypto/octeontx2/otx2_cryptodev_ops_helper.h
> > create mode 100644
> >drivers/event/octeontx2/otx2_evdev_crypto_adptr.c
> > create mode 100644
> >drivers/event/octeontx2/otx2_evdev_crypto_adptr_dp.h
> >
> >--
> >2.28.0
>

      reply	other threads:[~2020-10-08 16:21 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-08 10:09 [dpdk-dev] [PATCH " Ankur Dwivedi
2020-09-08 10:09 ` [dpdk-dev] [PATCH 1/3] crypto/octeontx2: move functions to helper file Ankur Dwivedi
2020-09-08 10:09 ` [dpdk-dev] [PATCH 2/3] event/octeontx2: add crypto adapter framework Ankur Dwivedi
2020-09-08 10:09 ` [dpdk-dev] [PATCH 3/3] event/octeontx2: add crypto adapter datapath Ankur Dwivedi
2020-09-17  5:16 ` [dpdk-dev] [PATCH v2 0/3] event/octeontx2: add support for event crypto adapter Ankur Dwivedi
2020-09-17  5:16   ` [dpdk-dev] [PATCH v2 1/3] crypto/octeontx2: move functions to helper file Ankur Dwivedi
2020-09-17  5:16   ` [dpdk-dev] [PATCH v2 2/3] event/octeontx2: add crypto adapter framework Ankur Dwivedi
2020-09-17  5:16   ` [dpdk-dev] [PATCH v2 3/3] event/octeontx2: add crypto adapter datapath Ankur Dwivedi
2020-09-27 12:27     ` Jerin Jacob
2020-10-08  5:54   ` [dpdk-dev] [PATCH v3 0/3] event/octeontx2: add support for event crypto adapter Ankur Dwivedi
2020-10-08  5:54     ` [dpdk-dev] [PATCH v3 1/3] crypto/octeontx2: move functions to helper file Ankur Dwivedi
2020-10-08  5:54     ` [dpdk-dev] [PATCH v3 2/3] event/octeontx2: add crypto adapter framework Ankur Dwivedi
2020-10-08  5:54     ` [dpdk-dev] [PATCH v3 3/3] event/octeontx2: add crypto adapter datapath Ankur Dwivedi
2020-10-08 10:34     ` [dpdk-dev] [PATCH v4 0/3] event/octeontx2: add support for event crypto adapter Ankur Dwivedi
2020-10-08 10:34       ` [dpdk-dev] [PATCH v4 1/3] crypto/octeontx2: move functions to helper file Ankur Dwivedi
2020-10-08 10:34       ` [dpdk-dev] [PATCH v4 2/3] event/octeontx2: add crypto adapter framework Ankur Dwivedi
2020-10-08 10:34       ` [dpdk-dev] [PATCH v4 3/3] event/octeontx2: add crypto adapter datapath Ankur Dwivedi
2020-10-08 15:05       ` [dpdk-dev] [PATCH v4 0/3] event/octeontx2: add support for event crypto adapter Pavan Nikhilesh Bhagavatula
2020-10-08 16:21         ` Jerin Jacob [this message]

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='CALBAE1OKRRPvCuRr8GHdfoWG+O1gZMeYdmVZ=gbLqqMvjzL79w@mail.gmail.com' \
    --to=jerinjacobk@gmail.com \
    --cc=adwivedi@marvell.com \
    --cc=akhil.goyal@nxp.com \
    --cc=anoobj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@marvell.com \
    --cc=pbhagavatula@marvell.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).