DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <gakhil@marvell.com>
To: Anoob Joseph <anoobj@marvell.com>,
	Jerin Jacob Kollanukkaran <jerinj@marvell.com>
Cc: Archana Muniganti <marchana@marvell.com>,
	Tejasree Kondoj <ktejasree@marvell.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH v2 00/18] Fixes and improvements in cnxk crypto PMDs
Date: Sun, 28 Aug 2022 13:25:57 +0000	[thread overview]
Message-ID: <CO6PR18MB448454112BD343741DDCB98ED8779@CO6PR18MB4484.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20220809105356.561-1-anoobj@marvell.com>

> New features added:
>  - AES-CCM with lookaside IPsec operations
>  - DOCSIS algos with lookaside crypto operations
>  - Redesigned datapath for improved performance
> 
> Changes in v2:
> - Addressed failures with GCC 4.8
> 
> Anoob Joseph (11):
>   crypto/cnxk: remove zero IV
>   crypto/cnxk: limit the meta buf cache to 128
>   crypto/cnxk: add separate path for pdcp chain opcode
>   crypto/cnxk: add separate datapath for pdcp cipher operation
>   crypto/cnxk: remove MAC len check for AEAD
>   crypto/cnxk: remove extra indirection for FC and Kasumi
>   crypto/cnxk: remove extra digest len check
>   crypto/cnxk: avoid accessing se ctx in aes gcm path
>   crypto/cnxk: remove auth iv from kasumi cipher
>   crypto/cnxk: use dedicated dp threads depending on operation
>   crypto/cnxk: remove unused ctx buf len
> 
> Archana Muniganti (1):
>   crypto/cnxk: add AES-CCM support
> 
> Shijith Thotton (1):
>   drivers: change crypto adapter datapath error print to debug
> 
> Tejasree Kondoj (2):
>   crypto/cnxk: fix endianness in anti-replay
>   crypto/cnxk: enable IE engine for Chacha-Poly
> 
> Vamsi Attunuru (1):
>   crypto/cnxk: update flow label copy capability
> 
> Volodymyr Fialko (2):
>   crypto/cnxk: add burst enqueue for event crypto
>   crypto/cnxk: add support for DOCSIS algorithm
> 
>  doc/guides/cryptodevs/features/cn9k.ini       |   2 +
>  doc/guides/rel_notes/release_22_11.rst        |   5 +
>  drivers/common/cnxk/cnxk_security.c           |  38 +-
>  drivers/common/cnxk/roc_cpt.h                 |  13 +-
>  drivers/common/cnxk/roc_platform.h            |   2 +
>  drivers/common/cnxk/roc_se.c                  |  25 +-
>  drivers/common/cnxk/roc_se.h                  |  56 +-
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.c     | 160 ++++--
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.h     |   7 +-
>  drivers/crypto/cnxk/cn10k_ipsec_la_ops.h      |   1 +
>  drivers/crypto/cnxk/cn9k_cryptodev_ops.c      |  47 +-
>  drivers/crypto/cnxk/cnxk_cryptodev.h          |   4 +-
>  .../crypto/cnxk/cnxk_cryptodev_capabilities.c | 102 +++-
>  drivers/crypto/cnxk/cnxk_cryptodev_ops.c      |  40 +-
>  drivers/crypto/cnxk/cnxk_ipsec.h              |   3 +-
>  drivers/crypto/cnxk/cnxk_se.h                 | 537 +++++++++++++-----
>  drivers/crypto/cnxk/meson.build               |   6 +-
>  drivers/event/cnxk/cn10k_eventdev.c           |   2 +-
>  drivers/event/cnxk/cn10k_worker.c             |  10 -
>  drivers/event/cnxk/cn10k_worker.h             |   2 -
>  20 files changed, 766 insertions(+), 296 deletions(-)
> 
Series Acked-by: Akhil Goyal <gakhil@marvell.com>

Applied to dpdk-next-crypto

Thanks.

      parent reply	other threads:[~2022-08-28 13:26 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-08  8:05 [PATCH " Anoob Joseph
2022-08-08  8:05 ` [PATCH 01/18] crypto/cnxk: add AES-CCM support Anoob Joseph
2022-08-08  8:05 ` [PATCH 02/18] crypto/cnxk: add burst enqueue for event crypto Anoob Joseph
2022-08-08  8:05 ` [PATCH 03/18] crypto/cnxk: remove zero IV Anoob Joseph
2022-08-08  8:05 ` [PATCH 04/18] crypto/cnxk: limit the meta buf cache to 128 Anoob Joseph
2022-08-08  8:05 ` [PATCH 05/18] crypto/cnxk: add separate path for pdcp chain opcode Anoob Joseph
2022-08-08  8:05 ` [PATCH 06/18] crypto/cnxk: add separate datapath for pdcp cipher operation Anoob Joseph
2022-08-08  8:05 ` [PATCH 07/18] crypto/cnxk: remove MAC len check for AEAD Anoob Joseph
2022-08-08  8:05 ` [PATCH 08/18] crypto/cnxk: fix endianness in anti-replay Anoob Joseph
2022-08-08  8:05 ` [PATCH 09/18] crypto/cnxk: remove extra indirection for FC and Kasumi Anoob Joseph
2022-08-08  8:05 ` [PATCH 10/18] crypto/cnxk: remove extra digest len check Anoob Joseph
2022-08-08  8:05 ` [PATCH 11/18] crypto/cnxk: avoid accessing se ctx in aes gcm path Anoob Joseph
2022-08-08  8:06 ` [PATCH 12/18] crypto/cnxk: remove auth iv from kasumi cipher Anoob Joseph
2022-08-08  8:06 ` [PATCH 13/18] crypto/cnxk: enable IE engine for Chacha-Poly Anoob Joseph
2022-08-08  8:06 ` [PATCH 14/18] crypto/cnxk: use dedicated dp threads depending on operation Anoob Joseph
2022-08-08  8:06 ` [PATCH 15/18] crypto/cnxk: remove unused ctx buf len Anoob Joseph
2022-08-08  8:06 ` [PATCH 16/18] drivers: change crypto adapter datapath error print to debug Anoob Joseph
2022-08-08  8:06 ` [PATCH 17/18] crypto/cnxk: update flow label copy capability Anoob Joseph
2022-08-08  8:06 ` [PATCH 18/18] crypto/cnxk: add support for DOCSIS algorithm Anoob Joseph
2022-08-09 10:53 ` [PATCH v2 00/18] Fixes and improvements in cnxk crypto PMDs Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 01/18] crypto/cnxk: add AES-CCM support Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 02/18] crypto/cnxk: add burst enqueue for event crypto Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 03/18] crypto/cnxk: remove zero IV Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 04/18] crypto/cnxk: limit the meta buf cache to 128 Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 05/18] crypto/cnxk: add separate path for pdcp chain opcode Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 06/18] crypto/cnxk: add separate datapath for pdcp cipher operation Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 07/18] crypto/cnxk: remove MAC len check for AEAD Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 08/18] crypto/cnxk: fix endianness in anti-replay Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 09/18] crypto/cnxk: remove extra indirection for FC and Kasumi Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 10/18] crypto/cnxk: remove extra digest len check Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 11/18] crypto/cnxk: avoid accessing se ctx in aes gcm path Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 12/18] crypto/cnxk: remove auth iv from kasumi cipher Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 13/18] crypto/cnxk: enable IE engine for Chacha-Poly Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 14/18] crypto/cnxk: use dedicated dp threads depending on operation Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 15/18] crypto/cnxk: remove unused ctx buf len Anoob Joseph
2022-09-28 10:14     ` Thomas Monjalon
2022-09-28 10:17       ` [EXT] " Anoob Joseph
2022-09-28 11:00         ` Thomas Monjalon
2022-08-09 10:53   ` [PATCH v2 16/18] drivers: change crypto adapter datapath error print to debug Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 17/18] crypto/cnxk: update flow label copy capability Anoob Joseph
2022-08-09 10:53   ` [PATCH v2 18/18] crypto/cnxk: add support for DOCSIS algorithm Anoob Joseph
2022-08-28 13:25   ` Akhil Goyal [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=CO6PR18MB448454112BD343741DDCB98ED8779@CO6PR18MB4484.namprd18.prod.outlook.com \
    --to=gakhil@marvell.com \
    --cc=anoobj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=jerinj@marvell.com \
    --cc=ktejasree@marvell.com \
    --cc=marchana@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).