From: Tejasree Kondoj <ktejasree@marvell.com>
To: Akhil Goyal <gakhil@marvell.com>
Cc: Anoob Joseph <anoobj@marvell.com>,
Vidya Sagar Velumuri <vvelumuri@marvell.com>, <dev@dpdk.org>
Subject: [PATCH 25/25] doc: update CN20K CPT documentation
Date: Tue, 27 May 2025 16:32:05 +0530 [thread overview]
Message-ID: <20250527110205.2300800-26-ktejasree@marvell.com> (raw)
In-Reply-To: <20250527110205.2300800-1-ktejasree@marvell.com>
Updating documentation for CN20K CPT support.
Signed-off-by: Tejasree Kondoj <ktejasree@marvell.com>
---
doc/guides/cryptodevs/cnxk.rst | 26 +++++-
doc/guides/cryptodevs/features/cn20k.ini | 113 +++++++++++++++++++++++
2 files changed, 134 insertions(+), 5 deletions(-)
create mode 100644 doc/guides/cryptodevs/features/cn20k.ini
diff --git a/doc/guides/cryptodevs/cnxk.rst b/doc/guides/cryptodevs/cnxk.rst
index ac843ddc53..1799161fdf 100644
--- a/doc/guides/cryptodevs/cnxk.rst
+++ b/doc/guides/cryptodevs/cnxk.rst
@@ -9,8 +9,8 @@ cryptographic operations to cryptographic accelerator units on the
**Marvell OCTEON cnxk** SoC family.
The cnxk crypto PMD code is organized into different sets of files.
-The file names starting with cn9k and cn10k provides support for CN9XX
-and CN10XX respectively. The common code between the SoCs is present
+The file names starting with cn9k, cn10k and cn20k provides support for CN9XX,
+CN10XX and CN20XX respectively. The common code between the SoCs is present
in file names starting with cnxk.
More information about OCTEON cnxk SoCs may be obtained from `<https://www.marvell.com>`_
@@ -20,6 +20,7 @@ Supported OCTEON cnxk SoCs
- CN9XX
- CN10XX
+- CN20XX
Features
--------
@@ -144,7 +145,7 @@ Bind the CPT VF device to the vfio_pci driver:
Refer to :ref:`linux_gsg_hugepages` for more details.
-``CN10K Initialization``
+``CN10K/CN20K Initialization``
List the CPT PF devices available on cn10k platform:
@@ -232,6 +233,13 @@ running the test application:
./dpdk-test
RTE>>cryptodev_cn10k_autotest
+``CN20K``
+
+.. code-block:: console
+
+ ./dpdk-test
+ RTE>>cryptodev_cn20k_autotest
+
The asymmetric crypto operations on OCTEON cnxk crypto PMD may be verified by
running the test application:
@@ -249,6 +257,13 @@ running the test application:
./dpdk-test
RTE>>cryptodev_cn10k_asym_autotest
+``CN20K``
+
+.. code-block:: console
+
+ ./dpdk-test
+ RTE>>cryptodev_cn20k_asym_autotest
+
Lookaside IPsec Support
-----------------------
@@ -265,6 +280,7 @@ Supported OCTEON cnxk SoCs
- CN9XX
- CN10XX
+- CN20XX
CN9XX Features supported
~~~~~~~~~~~~~~~~~~~~~~~~
@@ -301,8 +317,8 @@ Auth algorithms
* AES-XCBC-96
* AES-GMAC
-CN10XX Features supported
-~~~~~~~~~~~~~~~~~~~~~~~~~
+CN10XX/CN20XX Features supported
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* IPv4
* ESP
diff --git a/doc/guides/cryptodevs/features/cn20k.ini b/doc/guides/cryptodevs/features/cn20k.ini
new file mode 100644
index 0000000000..76553d190e
--- /dev/null
+++ b/doc/guides/cryptodevs/features/cn20k.ini
@@ -0,0 +1,113 @@
+;
+; Supported features of the 'cn20k' crypto driver.
+;
+; Refer to default.ini for the full list of available PMD features.
+;
+[Features]
+Symmetric crypto = Y
+Asymmetric crypto = Y
+Sym operation chaining = Y
+HW Accelerated = Y
+Protocol offload = Y
+In Place SGL = Y
+OOP SGL In LB Out = Y
+OOP SGL In SGL Out = Y
+OOP LB In LB Out = Y
+Symmetric sessionless = Y
+RSA PRIV OP KEY EXP = Y
+RSA PRIV OP KEY QT = Y
+Digest encrypted = Y
+Sym raw data path API = Y
+Inner checksum = Y
+Rx inject = Y
+
+;
+; Supported crypto algorithms of 'cn20k' crypto driver.
+;
+[Cipher]
+NULL = Y
+3DES CBC = Y
+3DES ECB = Y
+AES CBC (128) = Y
+AES CBC (192) = Y
+AES CBC (256) = Y
+AES CTR (128) = Y
+AES CTR (192) = Y
+AES CTR (256) = Y
+AES XTS (128) = Y
+AES XTS (256) = Y
+DES CBC = Y
+KASUMI F8 = Y
+SNOW3G UEA2 = Y
+ZUC EEA3 = Y
+SM4 ECB = Y
+SM4 CBC = Y
+SM4 CTR = Y
+SM4 CFB = Y
+SM4 OFB = Y
+
+;
+; Supported authentication algorithms of 'cn20k' crypto driver.
+;
+[Auth]
+NULL = Y
+AES GMAC = Y
+KASUMI F9 = Y
+MD5 = Y
+MD5 HMAC = Y
+SHA1 = Y
+SHA1 HMAC = Y
+SHA224 = Y
+SHA224 HMAC = Y
+SHA256 = Y
+SHA256 HMAC = Y
+SHA384 = Y
+SHA384 HMAC = Y
+SHA512 = Y
+SHA512 HMAC = Y
+SNOW3G UIA2 = Y
+ZUC EIA3 = Y
+AES CMAC (128) = Y
+AES CMAC (192) = Y
+AES CMAC (256) = Y
+SHA3_224 = Y
+SHA3_224 HMAC = Y
+SHA3_256 = Y
+SHA3_256 HMAC = Y
+SHA3_384 = Y
+SHA3_384 HMAC = Y
+SHA3_512 = Y
+SHA3_512 HMAC = Y
+SHAKE_128 = Y
+SHAKE_256 = Y
+SM3 = Y
+
+;
+; Supported AEAD algorithms of 'cn20k' crypto driver.
+;
+[AEAD]
+AES GCM (128) = Y
+AES GCM (192) = Y
+AES GCM (256) = Y
+AES CCM (128) = Y
+AES CCM (192) = Y
+AES CCM (256) = Y
+CHACHA20-POLY1305 = Y
+
+;
+; Supported Asymmetric algorithms of the 'cn20k' crypto driver.
+;
+[Asymmetric]
+RSA = Y
+Modular Exponentiation = Y
+ECDH = Y
+ECDSA = Y
+ECPM = Y
+SM2 = Y
+EdDSA = Y
+
+;
+; Supported Operating systems of the 'cn20k' crypto driver.
+;
+[OS]
+Linux = Y
--
2.25.1
prev parent reply other threads:[~2025-05-27 11:05 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-27 11:01 [PATCH 00/25] add CN20K support to cnxk crypto PMD Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 01/25] crypto/cnxk: add probe for cn20k crypto device Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 02/25] crypto/cnxk: add ops skeleton for cn20k Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 03/25] crypto/cnxk: add dev info get Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 04/25] crypto/cnxk: add skeletion for enq deq functions Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 05/25] crypto/cnxk: add lmtst routines for cn20k Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 06/25] crypto/cnxk: add enqueue function support Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 07/25] crypto/cnxk: add cryptodev dequeue support for cn20k Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 08/25] crypto/cnxk: move debug dumps to common Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 09/25] crypto/cnxk: add rte security skeletion for cn20k Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 10/25] crypto/cnxk: add security session creation Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 11/25] crypto/cnxk: add security session destroy Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 12/25] crypto/cnxk: move code to common Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 13/25] crypto/cnxk: add rte sec session update Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 14/25] crypto/cnxk: add rte security datapath handling Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 15/25] crypto/cnxk: add Rx inject in security lookaside Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 16/25] crypto/cnxk: add skeleton for tls Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 17/25] crypto/cnxk: add tls write session creation Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 18/25] crypto/cnxk: add tls read " Tejasree Kondoj
2025-05-27 11:01 ` [PATCH 19/25] crypto/cnxk: add tls session destroy Tejasree Kondoj
2025-05-27 11:02 ` [PATCH 20/25] crypto/cnxk: add enq and dequeue support for TLS Tejasree Kondoj
2025-05-27 11:02 ` [PATCH 21/25] crypto/cnxk: tls post process Tejasree Kondoj
2025-05-27 11:02 ` [PATCH 22/25] crypto/cnxk: add tls session update Tejasree Kondoj
2025-05-27 11:02 ` [PATCH 23/25] crypto/cnxk: support raw API for cn20k Tejasree Kondoj
2025-05-27 11:02 ` [PATCH 24/25] crypto/cnxk: add model check " Tejasree Kondoj
2025-05-27 11:02 ` Tejasree Kondoj [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=20250527110205.2300800-26-ktejasree@marvell.com \
--to=ktejasree@marvell.com \
--cc=anoobj@marvell.com \
--cc=dev@dpdk.org \
--cc=gakhil@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).