All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavan Nikhilesh Bhagavatula <pbhagavatula@marvell.com>
To: Ankur Dwivedi <adwivedi@marvell.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: Jerin Jacob Kollanukkaran <jerinj@marvell.com>,
	"akhil.goyal@nxp.com" <akhil.goyal@nxp.com>,
	Anoob Joseph <anoobj@marvell.com>,
	Ankur Dwivedi <adwivedi@marvell.com>
Subject: Re: [dpdk-dev] [PATCH v4 0/3] event/octeontx2: add support for event crypto adapter
Date: Thu, 8 Oct 2020 15:05:00 +0000	[thread overview]
Message-ID: <CY4PR18MB11429B50FDEA0EC37C636690DE0B0@CY4PR18MB1142.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20201008103435.19187-1-adwivedi@marvell.com>

Series-Acked-by: Pavan Nikhilesh <pbhagavatula@marvell.com>

>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


  parent reply	other threads:[~2020-10-08 15:05 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-08 10:09 [dpdk-dev] [PATCH 0/3] event/octeontx2: add support for event crypto adapter 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       ` Pavan Nikhilesh Bhagavatula [this message]
2020-10-08 16:21         ` [dpdk-dev] [PATCH v4 0/3] event/octeontx2: add support for event crypto adapter 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=CY4PR18MB11429B50FDEA0EC37C636690DE0B0@CY4PR18MB1142.namprd18.prod.outlook.com \
    --to=pbhagavatula@marvell.com \
    --cc=adwivedi@marvell.com \
    --cc=akhil.goyal@nxp.com \
    --cc=anoobj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.