From: "Kusztal, ArkadiuszX" <arkadiuszx.kusztal@intel.com>
To: "Ji, Kai" <kai.ji@intel.com>,
"Power, Ciara" <ciara.power@intel.com>,
"dev@dpdk.org" <dev@dpdk.org>
Cc: "gakhil@marvell.com" <gakhil@marvell.com>
Subject: RE: [PATCH v2 0/4] add new QAT gen3 and gen5
Date: Thu, 29 Feb 2024 09:48:28 +0000 [thread overview]
Message-ID: <PH0PR11MB50130743BB29394F20E4CAFB9F5F2@PH0PR11MB5013.namprd11.prod.outlook.com> (raw)
In-Reply-To: <DS0PR11MB745809B3EFC4AAE391C3F6A5815A2@DS0PR11MB7458.namprd11.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 3178 bytes --]
Series-acked-by: Arkadiusz Kusztal arkadiuszx.kusztal@intel.com<mailto:arkadiuszx.kusztal@intel.com>
Series-acked-by: Kai Ji <kai.ji@intel.com<mailto:kai.ji@intel.com>>
________________________________
From: Power, Ciara <ciara.power@intel.com<mailto:ciara.power@intel.com>>
Sent: 23 February 2024 15:12
To: dev@dpdk.org<mailto:dev@dpdk.org> <dev@dpdk.org<mailto:dev@dpdk.org>>
Cc: gakhil@marvell.com<mailto:gakhil@marvell.com> <gakhil@marvell.com<mailto:gakhil@marvell.com>>; Ji, Kai <kai.ji@intel.com<mailto:kai.ji@intel.com>>; Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com<mailto:arkadiuszx.kusztal@intel.com>>; Power, Ciara <ciara.power@intel.com<mailto:ciara.power@intel.com>>
Subject: [PATCH v2 0/4] add new QAT gen3 and gen5
This patchset adds support for two new QAT devices.
A new GEN3 device, and a GEN5 device, both of which have
wireless slice support for algorithms such as ZUC-256.
Symmetric, asymmetric and compression are all supported
for these devices.
v2:
- New patch added for gen5 device that reuses gen4 code,
and new gen3 wireless slice changes.
- Removed patch to disable asymmetric and compression.
- Documentation updates added.
- Fixed ZUC-256 IV modification for raw API path.
- Fixed setting extended protocol flag bit position.
- Added check for ZUC-256 wireless slice in slice map.
Ciara Power (4):
common/qat: add new gen3 device
common/qat: add zuc256 wireless slice for gen3
common/qat: add new gen3 CMAC macros
common/qat: add gen5 device
doc/guides/compressdevs/qat_comp.rst | 1 +
doc/guides/cryptodevs/qat.rst | 6 +
doc/guides/rel_notes/release_24_03.rst | 7 +
drivers/common/qat/dev/qat_dev_gen4.c | 31 ++-
drivers/common/qat/dev/qat_dev_gen5.c | 51 ++++
drivers/common/qat/dev/qat_dev_gens.h | 54 ++++
drivers/common/qat/meson.build | 3 +
drivers/common/qat/qat_adf/icp_qat_fw.h | 6 +-
drivers/common/qat/qat_adf/icp_qat_fw_la.h | 24 ++
drivers/common/qat/qat_adf/icp_qat_hw.h | 26 +-
drivers/common/qat/qat_common.h | 1 +
drivers/common/qat/qat_device.c | 19 ++
drivers/common/qat/qat_device.h | 2 +
drivers/compress/qat/dev/qat_comp_pmd_gen4.c | 8 +-
drivers/compress/qat/dev/qat_comp_pmd_gen5.c | 73 +++++
drivers/compress/qat/dev/qat_comp_pmd_gens.h | 14 +
drivers/crypto/qat/dev/qat_crypto_pmd_gen2.c | 7 +-
drivers/crypto/qat/dev/qat_crypto_pmd_gen3.c | 63 ++++-
drivers/crypto/qat/dev/qat_crypto_pmd_gen4.c | 4 +-
drivers/crypto/qat/dev/qat_crypto_pmd_gen5.c | 278 +++++++++++++++++++
drivers/crypto/qat/dev/qat_crypto_pmd_gens.h | 40 ++-
drivers/crypto/qat/dev/qat_sym_pmd_gen1.c | 43 +++
drivers/crypto/qat/qat_sym_session.c | 177 ++++++++++--
drivers/crypto/qat/qat_sym_session.h | 2 +
24 files changed, 889 insertions(+), 51 deletions(-)
create mode 100644 drivers/common/qat/dev/qat_dev_gen5.c
create mode 100644 drivers/compress/qat/dev/qat_comp_pmd_gen5.c
create mode 100644 drivers/crypto/qat/dev/qat_crypto_pmd_gen5.c
--
2.25.1
[-- Attachment #2: Type: text/html, Size: 7257 bytes --]
next prev parent reply other threads:[~2024-02-29 9:48 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-19 15:51 [PATCH 0/4] add new QAT gen3 device Ciara Power
2023-12-19 15:51 ` [PATCH 1/4] crypto/qat: add new " Ciara Power
2023-12-19 15:51 ` [PATCH 2/4] crypto/qat: add zuc256 wireless slice for gen3 Ciara Power
2023-12-19 15:51 ` [PATCH 3/4] crypto/qat: add new gen3 CMAC macros Ciara Power
2023-12-19 15:51 ` [PATCH 4/4] crypto/qat: disable asym and compression for new gen3 device Ciara Power
2024-02-23 15:12 ` [PATCH v2 0/4] add new QAT gen3 and gen5 Ciara Power
2024-02-23 15:12 ` [PATCH v2 1/4] common/qat: add new gen3 device Ciara Power
2024-02-23 15:12 ` [PATCH v2 2/4] common/qat: add zuc256 wireless slice for gen3 Ciara Power
2024-02-23 15:12 ` [PATCH v2 3/4] common/qat: add new gen3 CMAC macros Ciara Power
2024-02-23 15:12 ` [PATCH v2 4/4] common/qat: add gen5 device Ciara Power
2024-02-26 13:32 ` [PATCH v2 0/4] add new QAT gen3 and gen5 Ji, Kai
2024-02-29 9:48 ` Kusztal, ArkadiuszX [this message]
2024-02-26 17:08 ` [PATCH v3 " Ciara Power
2024-02-26 17:08 ` [PATCH v3 1/4] common/qat: add new gen3 device Ciara Power
2024-02-26 17:08 ` [PATCH v3 2/4] common/qat: add zuc256 wireless slice for gen3 Ciara Power
2024-02-26 17:08 ` [PATCH v3 3/4] common/qat: add new gen3 CMAC macros Ciara Power
2024-02-26 17:08 ` [PATCH v3 4/4] common/qat: add gen5 device Ciara Power
2024-02-29 18:53 ` [EXT] [PATCH v3 0/4] add new QAT gen3 and gen5 Akhil Goyal
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=PH0PR11MB50130743BB29394F20E4CAFB9F5F2@PH0PR11MB5013.namprd11.prod.outlook.com \
--to=arkadiuszx.kusztal@intel.com \
--cc=ciara.power@intel.com \
--cc=dev@dpdk.org \
--cc=gakhil@marvell.com \
--cc=kai.ji@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).