DPDK patches and discussions
 help / color / mirror / Atom feed
From: Akhil Goyal <gakhil@marvell.com>
To: Hemant Agrawal <hemant.agrawal@nxp.com>,
	Franck Lenormand <franck.lenormand@nxp.com>,
	Apeksha Gupta <apeksha.gupta@nxp.com>,
	Vanshika Shukla <vanshika.shukla@nxp.com>,
	Gagandeep Singh <g.singh@nxp.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [EXT] [PATCH v2 00/13] crypto/dpaax_sec: misc enhancements
Date: Thu, 21 Sep 2023 08:05:05 +0000	[thread overview]
Message-ID: <CO6PR18MB44840AC9D7172AA2AE29756FD8F8A@CO6PR18MB4484.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20230920133403.6420-1-hemant.agrawal@nxp.com>

> v2: compilation fixes
> 
> This series include misc enhancements in dpaax_sec drivers.
> 
> - improving the IPsec protocol offload features
> - enhancing PDCP protocol processing
> - code optimization and cleanup
> 
> Apeksha Gupta (1):
>   crypto/dpaa2_sec: enhance dpaa FD FL FMT offset set
> 
> Gagandeep Singh (3):
>   common/dpaax: update IPsec base descriptor length
>   common/dpaax: change mode to wait in shared desc
>   crypto/dpaax_sec: set the authdata in non-auth case
> 
> Hemant Agrawal (8):
>   crypto/dpaa2_sec: supporting null cipher and auth
>   crypto/dpaa_sec: supporting null cipher and auth
>   crypto/dpaa2_sec: support copy df and dscp in proto offload
>   crypto/dpaa2_sec: increase the anti replay window size
>   crypto/dpaa2_sec: enable esn support
>   crypto/dpaa2_sec: add NAT-T support in IPsec offload
>   crypto/dpaa2_sec: add support to set df and diffserv
>   crypto/dpaax_sec: enable sha224-hmac support for IPsec
> 
> Vanshika Shukla (1):
>   crypto/dpaa2_sec: initialize the pdcp alg to null
> 
>  drivers/common/dpaax/caamflib/desc.h          |   5 +-
>  drivers/common/dpaax/caamflib/desc/ipsec.h    |   9 +-
>  drivers/common/dpaax/caamflib/desc/pdcp.h     |  82 +++---
>  .../common/dpaax/caamflib/rta/protocol_cmd.h  |   5 +-
>  .../dpaax/caamflib/rta/sec_run_time_asm.h     |   2 +-
>  drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c   | 245 +++++++++++-------
>  drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h     |  64 ++++-
>  drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c   |  47 +---
>  drivers/crypto/dpaa_sec/dpaa_sec.c            |  15 +-
>  drivers/crypto/dpaa_sec/dpaa_sec.h            |  42 ++-
>  drivers/net/dpaa2/dpaa2_rxtx.c                |   3 +-
>  11 files changed, 326 insertions(+), 193 deletions(-)
> 
Please improve writing the title and description of patches.
Applied to dpdk-next-crypto.
Please review the patches applied. Make sure not to repeat these things.

crypto/dpaax_sec: support SHA224-HMAC for IPsec
crypto/dpaa2_sec: support copy DF and diffserv
crypto/dpaa2_sec: support NAT-T in IPsec offload
crypto/dpaa2_sec: support ESN
crypto/dpaa2_sec: increase anti replay window size
crypto/dpaa2_sec: support copy DF and DSCP in IPsec
crypto/dpaa2_sec: prevent FLE offset overflow
crypto/dpaax_sec: set authdata in non-auth case
crypto/dpaa_sec: support null cipher and auth
crypto/dpaa2_sec: support null cipher and auth
crypto/dpaa2_sec: initialize PDCP alg to null
common/dpaax: change mode to wait in shared desc
common/dpaax: update IPsec base descriptor length

Few capability changes in dpaa2 driver were specific to LX2160.
But are common to other dpaa2 devices. I hope those are taken care of with appropriate checks.


  parent reply	other threads:[~2023-09-21  8:05 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-23  7:08 [PATCH 00/12] " Hemant Agrawal
2023-08-23  7:08 ` [PATCH 01/12] common/dpaax: update IPsec base descriptor length Hemant Agrawal
2023-08-23  7:08 ` [PATCH 02/12] common/dpaax: change mode to wait in shared desc Hemant Agrawal
2023-08-23  7:08 ` [PATCH 03/12] crypto/dpaa2_sec: initialize the pdcp alg to null Hemant Agrawal
2023-08-23  7:08 ` [PATCH 04/12] crypto/dpaa2_sec: supporting null cipher and auth Hemant Agrawal
2023-08-23  7:08 ` [PATCH 05/12] crypto/dpaa_sec: " Hemant Agrawal
2023-08-23  7:08 ` [PATCH 06/12] crypto/dpaax_sec: set the authdata in non-auth case Hemant Agrawal
2023-08-23  7:08 ` [PATCH 07/12] crypto/dpaa2_sec: enhance dpaa FD FL FMT offset set Hemant Agrawal
2023-08-23  7:08 ` [PATCH 08/12] crypto/dpaa2_sec: support copy df and dscp in proto offload Hemant Agrawal
2023-08-23  7:08 ` [PATCH 09/12] crypto/dpaa2_sec: increase the anti replay window size Hemant Agrawal
2023-08-23  7:08 ` [PATCH 10/12] crypto/dpaa2_sec: enable esn support Hemant Agrawal
2023-08-23  7:08 ` [PATCH 11/12] crypto/dpaa2_sec: add NAT-T support in IPsec offload Hemant Agrawal
2023-08-23  7:08 ` [PATCH 12/12] crypto/dpaa2_sec: add support to set df and diffserv Hemant Agrawal
2023-09-18 10:31 ` [EXT] [PATCH 00/12] crypto/dpaax_sec: misc enhancements Akhil Goyal
2023-09-20 13:33 ` [PATCH v2 00/13] " Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 01/13] common/dpaax: update IPsec base descriptor length Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 02/13] common/dpaax: change mode to wait in shared desc Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 03/13] crypto/dpaa2_sec: initialize the pdcp alg to null Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 04/13] crypto/dpaa2_sec: supporting null cipher and auth Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 05/13] crypto/dpaa_sec: " Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 06/13] crypto/dpaax_sec: set the authdata in non-auth case Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 07/13] crypto/dpaa2_sec: enhance dpaa FD FL FMT offset set Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 08/13] crypto/dpaa2_sec: support copy df and dscp in proto offload Hemant Agrawal
2023-09-20 13:33   ` [PATCH v2 09/13] crypto/dpaa2_sec: increase the anti replay window size Hemant Agrawal
2023-09-20 13:34   ` [PATCH v2 10/13] crypto/dpaa2_sec: enable esn support Hemant Agrawal
2023-09-20 13:34   ` [PATCH v2 11/13] crypto/dpaa2_sec: add NAT-T support in IPsec offload Hemant Agrawal
2023-09-20 13:34   ` [PATCH v2 12/13] crypto/dpaa2_sec: add support to set df and diffserv Hemant Agrawal
2023-09-20 13:34   ` [PATCH v2 13/13] crypto/dpaax_sec: enable sha224-hmac support for IPsec Hemant Agrawal
2023-09-21  8:05   ` Akhil Goyal [this message]
2023-09-21  8:55     ` [EXT] [PATCH v2 00/13] crypto/dpaax_sec: misc enhancements Hemant Agrawal

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=CO6PR18MB44840AC9D7172AA2AE29756FD8F8A@CO6PR18MB4484.namprd18.prod.outlook.com \
    --to=gakhil@marvell.com \
    --cc=apeksha.gupta@nxp.com \
    --cc=dev@dpdk.org \
    --cc=franck.lenormand@nxp.com \
    --cc=g.singh@nxp.com \
    --cc=hemant.agrawal@nxp.com \
    --cc=vanshika.shukla@nxp.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).