From: Akhil Goyal <gakhil@marvell.com>
To: Ciara Power <ciara.power@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "kai.ji@intel.com" <kai.ji@intel.com>,
"arkadiuszx.kusztal@intel.com" <arkadiuszx.kusztal@intel.com>,
"rakesh.s.joshi@intel.com" <rakesh.s.joshi@intel.com>
Subject: RE: [EXTERNAL] [PATCH v8 0/3] add QAT GEN LCE device
Date: Fri, 1 Mar 2024 06:12:00 +0000 [thread overview]
Message-ID: <CO6PR18MB4484E2EC343A737FBD7CB83FD85E2@CO6PR18MB4484.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20240229194510.2741004-1-ciara.power@intel.com>
> This patchset adds a new QAT LCE device.
> The device currently only supports symmetric crypto,
> and only the AES-GCM algorithm.
>
> v8: Rebased on latest next-crypto-for-main.
> v7:
> - Squashed patch 1 and 2.
> - Fixed formatting to leverage 100 char line limit.
> - Removed unnecessary whitespace and indent changes.
> - Fixed copyright year typo on new file.
> - Added second developer to commit message signed-off tags.
> v6:
> - Added documentation and release note changes.
> - Removed unused device PCI ID.
> v5:
> - Fixed compilation issue by replacing __u8 with uint8_t.
> v4:
> - Fixed cover letter, v3 included the wrong details relating
> to another patchset.
> v3:
> - Fixed typos in commit and code comments.
> - Replaced use of linux/kernel.h macro with local macro
> to fix ARM compilation in CI.
> v2:
> - Renamed device from GEN 5 to GEN LCE.
> - Removed unused code.
> - Updated macro names.
>
> Nishikant Nayak (3):
> common/qat: add support for GEN LCE device
> crypto/qat: update headers for GEN LCE support
> test/cryptodev: add tests for GCM with 64 byte AAD
>
> .mailmap | 1 +
> app/test/test_cryptodev.c | 43 ++-
> app/test/test_cryptodev_aead_test_vectors.h | 62 ++++
> doc/guides/cryptodevs/qat.rst | 1 +
> doc/guides/rel_notes/release_24_03.rst | 1 +
> drivers/common/qat/dev/qat_dev_gen_lce.c | 295 +++++++++++++++++
> drivers/common/qat/meson.build | 2 +
> .../qat/qat_adf/adf_transport_access_macros.h | 1 +
> .../adf_transport_access_macros_gen_lce.h | 51 +++
> .../adf_transport_access_macros_gen_lcevf.h | 48 +++
> drivers/common/qat/qat_adf/icp_qat_fw.h | 34 ++
> drivers/common/qat/qat_adf/icp_qat_fw_la.h | 59 +++-
> drivers/common/qat/qat_common.h | 1 +
> drivers/common/qat/qat_device.c | 5 +
> .../crypto/qat/dev/qat_crypto_pmd_gen_lce.c | 310 ++++++++++++++++++
> drivers/crypto/qat/qat_sym.c | 14 +-
> drivers/crypto/qat/qat_sym.h | 57 +++-
> drivers/crypto/qat/qat_sym_session.c | 57 +++-
> drivers/crypto/qat/qat_sym_session.h | 10 +-
> 19 files changed, 1037 insertions(+), 15 deletions(-)
> create mode 100644 drivers/common/qat/dev/qat_dev_gen_lce.c
> create mode 100644
> drivers/common/qat/qat_adf/adf_transport_access_macros_gen_lce.h
> create mode 100644
> drivers/common/qat/qat_adf/adf_transport_access_macros_gen_lcevf.h
> create mode 100644 drivers/crypto/qat/dev/qat_crypto_pmd_gen_lce.c
>
Applied to dpdk-next-crypto
Thanks.
prev parent reply other threads:[~2024-03-01 6:12 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-20 13:26 [PATCH 1/4] common/qat: add files specific to GEN5 Nishikant Nayak
2023-12-20 13:26 ` [PATCH 2/4] common/qat: update common driver to support GEN5 Nishikant Nayak
2023-12-20 13:26 ` [PATCH 3/4] crypto/qat: update headers for GEN5 support Nishikant Nayak
2023-12-20 13:26 ` [PATCH 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-23 15:17 ` [PATCH 1/4] common/qat: add files specific to GEN5 Power, Ciara
2024-02-26 13:03 ` [PATCH v2 0/4] add QAT GEN LCE device Nishikant Nayak
2024-02-26 13:03 ` [PATCH v2 1/4] common/qat: add files specific to GEN LCE Nishikant Nayak
2024-02-26 13:03 ` [PATCH v2 2/4] common/qat: update common driver to support " Nishikant Nayak
2024-02-26 13:03 ` [PATCH v2 3/4] crypto/qat: update headers for GEN LCE support Nishikant Nayak
2024-02-26 13:03 ` [PATCH v2 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-27 9:35 ` [PATCH v3 0/4] add new QAT gen3 and gen5 Nishikant Nayak
2024-02-27 9:35 ` [PATCH v3 1/4] common/qat: add files specific to GEN LCE Nishikant Nayak
2024-02-27 9:35 ` [PATCH v3 2/4] common/qat: update common driver to support " Nishikant Nayak
2024-02-27 9:35 ` [PATCH v3 3/4] crypto/qat: update headers for GEN LCE support Nishikant Nayak
2024-02-27 9:35 ` [PATCH v3 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-27 9:40 ` [PATCH v4 0/4] add QAT GEN LCE device Nishikant Nayak
2024-02-27 9:40 ` [PATCH v4 1/4] common/qat: add files specific to GEN LCE Nishikant Nayak
2024-02-27 9:40 ` [PATCH v4 2/4] common/qat: update common driver to support " Nishikant Nayak
2024-02-27 9:40 ` [PATCH v4 3/4] crypto/qat: update headers for GEN LCE support Nishikant Nayak
2024-02-27 9:40 ` [PATCH v4 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-27 9:54 ` [PATCH v4 0/4] add QAT GEN LCE device Power, Ciara
2024-02-29 9:47 ` Kusztal, ArkadiuszX
2024-02-27 11:33 ` [PATCH v5 " Nishikant Nayak
2024-02-27 11:33 ` [PATCH v5 1/4] common/qat: add files specific to GEN LCE Nishikant Nayak
2024-02-27 11:33 ` [PATCH v5 2/4] common/qat: update common driver to support " Nishikant Nayak
2024-02-27 11:33 ` [PATCH v5 3/4] crypto/qat: update headers for GEN LCE support Nishikant Nayak
2024-02-27 11:33 ` [PATCH v5 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-28 14:00 ` [PATCH v6 0/4] add QAT GEN LCE device Nishikant Nayak
2024-02-28 14:00 ` [PATCH v6 1/4] common/qat: add files specific to GEN LCE Nishikant Nayak
2024-02-29 16:09 ` [EXT] " Akhil Goyal
2024-02-29 16:14 ` Akhil Goyal
2024-02-29 16:30 ` Power, Ciara
2024-02-28 14:00 ` [PATCH v6 2/4] common/qat: update common driver to support " Nishikant Nayak
2024-02-28 14:00 ` [PATCH v6 3/4] crypto/qat: update headers for GEN LCE support Nishikant Nayak
2024-02-29 16:04 ` [EXT] " Akhil Goyal
2024-02-28 14:00 ` [PATCH v6 4/4] test/cryptodev: add tests for GCM with AAD Nishikant Nayak
2024-02-29 15:52 ` [EXT] " Akhil Goyal
2024-02-29 16:32 ` Power, Ciara
2024-02-29 18:43 ` [PATCH v7 0/3] add QAT GEN LCE device Ciara Power
2024-02-29 18:43 ` [PATCH v7 1/3] common/qat: add support for " Ciara Power
2024-02-29 18:43 ` [PATCH v7 2/3] crypto/qat: update headers for GEN LCE support Ciara Power
2024-02-29 18:43 ` [PATCH v7 3/3] test/cryptodev: add tests for GCM with 64 byte AAD Ciara Power
2024-02-29 19:45 ` [PATCH v8 0/3] add QAT GEN LCE device Ciara Power
2024-02-29 19:45 ` [PATCH v8 1/3] common/qat: add support for " Ciara Power
2024-02-29 19:45 ` [PATCH v8 2/3] crypto/qat: update headers for GEN LCE support Ciara Power
2024-02-29 19:45 ` [PATCH v8 3/3] test/cryptodev: add tests for GCM with 64 byte AAD Ciara Power
2024-03-01 6:12 ` 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=CO6PR18MB4484E2EC343A737FBD7CB83FD85E2@CO6PR18MB4484.namprd18.prod.outlook.com \
--to=gakhil@marvell.com \
--cc=arkadiuszx.kusztal@intel.com \
--cc=ciara.power@intel.com \
--cc=dev@dpdk.org \
--cc=kai.ji@intel.com \
--cc=rakesh.s.joshi@intel.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).