DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <gakhil@marvell.com>
To: Tejasree Kondoj <ktejasree@marvell.com>
Cc: Anoob Joseph <anoobj@marvell.com>,
	Vidya Sagar Velumuri <vvelumuri@marvell.com>,
	Ankur Dwivedi <adwivedi@marvell.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH 00/13] fixes and improvements to cnxk crypto PMD
Date: Fri, 21 Oct 2022 15:00:38 +0000	[thread overview]
Message-ID: <PH0PR18MB44914C43DF37FACD0F910DA6D82D9@PH0PR18MB4491.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20221020111453.1982947-1-ktejasree@marvell.com>

> Subject: [PATCH 00/13] fixes and improvements to cnxk crypto PMD
> 
> This series adds improvements and support for 103XX CPT,
> PDCP AAD, DES and MD5 algorithms in cnxk crypto PMD.
> 
> Anoob Joseph (3):
>   crypto/cnxk: switch to SG when metabuf is allocated
>   crypto/cnxk: verify IV length during session create
>   crypto/cnxk: remove dead code
> 
> Tejasree Kondoj (5):
>   crypto/cnxk: fix length of AES-CMAC algo
>   common/cnxk: set inplace bit of lookaside IPsec
>   crypto/cnxk: change capabilities as per firmware
>   common/cnxk: support 103XX CPT
>   crypto/cnxk: support PDCP AAD in CPT PMD
> 
> Vidya Sagar Velumuri (5):
>   common/cnxk: support custom UDP port values
>   crypto/cnxk: update rlen calculation for lookaside mode
>   crypto/cnxk: add support for DES and MD5
>   common/cnxk: add opad ipad gen for md5
>   crypto/cnxk: acquire lock while updating antireplay
> 
>  drivers/common/cnxk/cnxk_security.c           |   75 +-
>  drivers/common/cnxk/hw/cpt.h                  |   26 +-
>  drivers/common/cnxk/roc_cpt.c                 |   95 -
>  drivers/common/cnxk/roc_cpt.h                 |    3 -
>  drivers/common/cnxk/roc_hash.c                |  155 ++
>  drivers/common/cnxk/roc_hash.h                |    1 +
>  drivers/common/cnxk/roc_ie_on.h               |    3 +-
>  drivers/common/cnxk/roc_ie_ot.h               |    2 +
>  drivers/common/cnxk/roc_mbox.h                |    5 +-
>  drivers/common/cnxk/roc_nix_inl.c             |    6 -
>  drivers/common/cnxk/roc_se.h                  |   11 +
>  drivers/common/cnxk/version.map               |    2 +-
>  drivers/crypto/cnxk/cn10k_cryptodev.c         |    2 +-
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.c     |   67 +-
>  drivers/crypto/cnxk/cn10k_cryptodev_ops.h     |    9 +-
>  drivers/crypto/cnxk/cn10k_ipsec.c             |    4 +-
>  drivers/crypto/cnxk/cn10k_ipsec_la_ops.h      |    2 -
>  drivers/crypto/cnxk/cn9k_cryptodev_ops.c      |    6 +-
>  drivers/crypto/cnxk/cn9k_ipsec.c              |   53 +-
>  drivers/crypto/cnxk/cn9k_ipsec_la_ops.h       |   13 +-
>  drivers/crypto/cnxk/cnxk_cryptodev.h          |    2 +-
>  .../crypto/cnxk/cnxk_cryptodev_capabilities.c |   42 +-
>  drivers/crypto/cnxk/cnxk_cryptodev_ops.c      |   14 +-
>  drivers/crypto/cnxk/cnxk_cryptodev_ops.h      |    4 +-
>  drivers/crypto/cnxk/cnxk_ipsec.h              |    9 +
>  drivers/crypto/cnxk/cnxk_se.h                 | 1734 +++++++++--------
>  drivers/crypto/cnxk/version.map               |    3 +-
>  drivers/event/cnxk/cn10k_eventdev.c           |   13 +-
>  drivers/net/cnxk/cn9k_ethdev_sec.c            |    8 -
>  29 files changed, 1248 insertions(+), 1121 deletions(-)
> 
Series applied to dpdk-next-crypto

Thanks.

      parent reply	other threads:[~2022-10-21 15:00 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-20 11:14 Tejasree Kondoj
2022-10-20 11:14 ` [PATCH 08/13] common/cnxk: add opad ipad gen for md5 Tejasree Kondoj
2022-10-20 11:14 ` [PATCH 09/13] crypto/cnxk: support PDCP AAD in CPT PMD Tejasree Kondoj
2022-10-20 11:14 ` [PATCH 10/13] crypto/cnxk: acquire lock while updating antireplay Tejasree Kondoj
2022-10-20 11:14 ` [PATCH 11/13] crypto/cnxk: switch to SG when metabuf is allocated Tejasree Kondoj
2022-10-25  7:21   ` Akhil Goyal
2022-10-20 11:14 ` [PATCH 12/13] crypto/cnxk: verify IV length during session create Tejasree Kondoj
2022-10-20 11:14 ` [PATCH 13/13] crypto/cnxk: remove dead code Tejasree Kondoj
2022-10-21 15:00 ` 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=PH0PR18MB44914C43DF37FACD0F910DA6D82D9@PH0PR18MB4491.namprd18.prod.outlook.com \
    --to=gakhil@marvell.com \
    --cc=adwivedi@marvell.com \
    --cc=anoobj@marvell.com \
    --cc=dev@dpdk.org \
    --cc=ktejasree@marvell.com \
    --cc=vvelumuri@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).