From: Arek Kusztal <arkadiuszx.kusztal@intel.com>
To: dev@dpdk.org
Cc: gakhil@marvell.com, fiona.trahe@intel.com,
roy.fan.zhang@intel.com,
Arek Kusztal <arkadiuszx.kusztal@intel.com>
Subject: [dpdk-dev] [PATCH 00/15] Add support for fourth generation of Intel QuickAssist Technology devices
Date: Mon, 31 May 2021 15:10:12 +0100 [thread overview]
Message-ID: <20210531141027.13289-1-arkadiuszx.kusztal@intel.com> (raw)
This patchset adds support for fourth generation (GEN4) of Intel QuickAssist Technology (QAT) devices.
Symmetric crypto PMD is enabled with following algorithms:
* AES-CBC
* AES-CMAC
* AES-XCBC MAC
* NULL (auth, cipher)
* SHA1-HMAC
* SHA2-HMAC (224, 256, 384, 512)
* Chacha20-Poly1305
* AES-CCM
* AES-GCM
Other services (compression, asymmetric crypto) are not added with this patchset.
Adam Dybkowski (2):
crypto/qat: enable RAW API on QAT GEN1-3 only
test/crypto: check if RAW API is supported
Arek Kusztal (12):
common/qat: rework qp per service function
crypto/qat: add fourth generation qat devices support
crypto/qat: enable gen4 legacy algorithms
crypto/qat: add fourth generation ucs slice type, add ctr mode
crypto/qat: rename content descriptor functions
crypto/qat: add legacy gcm and ccm
crypto/qat: rework init common header function
crypto/qat: add aes gcm in ucs spc mode
crypto/qat: add chacha-poly in ucs spc mode
crypto/qat: add gmac in legacy mode on fourth generation
common/qat: add pf2vf communication in qat
common/qat: reset ring pairs before setting pmd
Fan Zhang (1):
crypto/qat: update raw dp api
app/test/test_cryptodev.c | 34 +-
doc/guides/cryptodevs/qat.rst | 10 +-
doc/guides/rel_notes/release_21_08.rst | 6 +
drivers/common/qat/meson.build | 1 +
drivers/common/qat/qat_adf/adf_pf2vf_msg.h | 154 ++++++
.../adf_transport_access_macros_gen4.h | 52 ++
.../adf_transport_access_macros_gen4vf.h | 48 ++
drivers/common/qat/qat_adf/icp_qat_fw_la.h | 28 ++
drivers/common/qat/qat_adf/icp_qat_hw.h | 10 +
drivers/common/qat/qat_common.h | 3 +-
drivers/common/qat/qat_device.c | 69 +++
drivers/common/qat/qat_device.h | 17 +
drivers/common/qat/qat_pf2vf.c | 80 +++
drivers/common/qat/qat_pf2vf.h | 19 +
drivers/common/qat/qat_qp.c | 246 ++++++---
drivers/common/qat/qat_qp.h | 31 +-
drivers/compress/qat/qat_comp_pmd.c | 16 +-
drivers/crypto/qat/qat_asym_pmd.c | 16 +-
drivers/crypto/qat/qat_sym.c | 57 ++-
drivers/crypto/qat/qat_sym_capabilities.h | 472 ++++++++++++++++++
drivers/crypto/qat/qat_sym_hw_dp.c | 419 ++++++++--------
drivers/crypto/qat/qat_sym_pmd.c | 53 +-
drivers/crypto/qat/qat_sym_session.c | 334 ++++++++-----
drivers/crypto/qat/qat_sym_session.h | 31 +-
24 files changed, 1731 insertions(+), 475 deletions(-)
create mode 100644 drivers/common/qat/qat_adf/adf_pf2vf_msg.h
create mode 100644 drivers/common/qat/qat_adf/adf_transport_access_macros_gen4.h
create mode 100644 drivers/common/qat/qat_adf/adf_transport_access_macros_gen4vf.h
create mode 100644 drivers/common/qat/qat_pf2vf.c
create mode 100644 drivers/common/qat/qat_pf2vf.h
--
2.25.1
next reply other threads:[~2021-05-31 14:10 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-31 14:10 Arek Kusztal [this message]
2021-05-31 14:10 ` [dpdk-dev] [PATCH 01/15] common/qat: rework qp per service function Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 02/15] crypto/qat: add fourth generation qat devices support Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 03/15] crypto/qat: enable gen4 legacy algorithms Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 04/15] crypto/qat: add fourth generation ucs slice type, add ctr mode Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 05/15] crypto/qat: rename content descriptor functions Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 06/15] crypto/qat: add legacy gcm and ccm Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 07/15] crypto/qat: rework init common header function Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 08/15] crypto/qat: add aes gcm in ucs spc mode Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 09/15] crypto/qat: add chacha-poly " Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 10/15] crypto/qat: add gmac in legacy mode on fourth generation Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 11/15] common/qat: add pf2vf communication in qat Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 12/15] common/qat: reset ring pairs before setting pmd Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 13/15] crypto/qat: update raw dp api Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 14/15] crypto/qat: enable RAW API on QAT GEN1-3 only Arek Kusztal
2021-05-31 14:10 ` [dpdk-dev] [PATCH 15/15] test/crypto: check if RAW API is supported Arek Kusztal
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=20210531141027.13289-1-arkadiuszx.kusztal@intel.com \
--to=arkadiuszx.kusztal@intel.com \
--cc=dev@dpdk.org \
--cc=fiona.trahe@intel.com \
--cc=gakhil@marvell.com \
--cc=roy.fan.zhang@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).