DPDK patches and discussions
 help / color / mirror / Atom feed
From: Hanxiao Li <li.hanxiao@zte.com.cn>
To: dev@dpdk.org
Cc: wang.yong19@zte.com.cn, Hanxiao Li <li.hanxiao@zte.com.cn>
Subject: [PATCH v7 0/8] drivers/zsda: introduce zsda drivers
Date: Fri, 27 Sep 2024 21:09:39 +0800	[thread overview]
Message-ID: <20240927131000.738277-1-li.hanxiao@zte.com.cn> (raw)
In-Reply-To: <20240927130158.737934-1-li.hanxiao@zte.com.cn>


[-- Attachment #1.1.1: Type: text/plain, Size: 4081 bytes --]

v7: 

- add release notes and some documentations.
- add MAINTAINERS context in the patch where the file/folder is added.
- add files in meason.build which are included in the patch only.
- add a check for unsupported on Windows
- notice the implicit cast in C.
- add cover letter.
- compile each of the patches individually

Hanxiao Li (8):
  common/zsda: add common function and log macro
  common/zsda: configure device
  common/zsda: configure queues
  compress/zsda: configure drivers of compressdev
  crypto/zsda: configure drivers, sessions, capabilities of cryptodev
  lib/cryptodev: add sm4 xts for crypto
  app/test: add sm4-xts test.
  doc/guides: add documents and release notes for two drivers

 MAINTAINERS                                 |   7 +
 app/test/test_cryptodev_blockcipher.c       |   3 +-
 app/test/test_cryptodev_sm4_test_vectors.h  |  58 ++
 config/rte_config.h                         |   4 +
 doc/guides/compressdevs/features/zsda.ini   |  15 +
 doc/guides/compressdevs/index.rst           |   1 +
 doc/guides/compressdevs/zsda.rst            |  45 ++
 doc/guides/cryptodevs/features/zsda.ini     |  53 ++
 doc/guides/cryptodevs/index.rst             |   1 +
 doc/guides/cryptodevs/zsda.rst              | 260 +++++++
 doc/guides/rel_notes/release_24_11.rst      |   8 +
 drivers/common/zsda/meson.build             |  39 +
 drivers/common/zsda/zsda_common.c           | 167 +++++
 drivers/common/zsda/zsda_common.h           | 326 ++++++++
 drivers/common/zsda/zsda_device.c           | 444 +++++++++++
 drivers/common/zsda/zsda_device.h           | 117 +++
 drivers/common/zsda/zsda_logs.c             |  21 +
 drivers/common/zsda/zsda_logs.h             |  32 +
 drivers/common/zsda/zsda_qp.c               | 780 ++++++++++++++++++++
 drivers/common/zsda/zsda_qp.h               | 159 ++++
 drivers/compress/zsda/zsda_comp.c           | 392 ++++++++++
 drivers/compress/zsda/zsda_comp.h           |  52 ++
 drivers/compress/zsda/zsda_comp_pmd.c       | 451 +++++++++++
 drivers/compress/zsda/zsda_comp_pmd.h       |  39 +
 drivers/crypto/zsda/zsda_sym.c              | 285 +++++++
 drivers/crypto/zsda/zsda_sym.h              |  50 ++
 drivers/crypto/zsda/zsda_sym_capabilities.h | 112 +++
 drivers/crypto/zsda/zsda_sym_pmd.c          | 429 +++++++++++
 drivers/crypto/zsda/zsda_sym_pmd.h          |  35 +
 drivers/crypto/zsda/zsda_sym_session.c      | 503 +++++++++++++
 drivers/crypto/zsda/zsda_sym_session.h      |  82 ++
 drivers/meson.build                         |   1 +
 lib/cryptodev/rte_crypto_sym.h              |   4 +-
 lib/cryptodev/rte_cryptodev.c               |   3 +-
 34 files changed, 4975 insertions(+), 3 deletions(-)
 create mode 100644 doc/guides/compressdevs/features/zsda.ini
 create mode 100644 doc/guides/compressdevs/zsda.rst
 create mode 100644 doc/guides/cryptodevs/features/zsda.ini
 create mode 100644 doc/guides/cryptodevs/zsda.rst
 create mode 100644 drivers/common/zsda/meson.build
 create mode 100644 drivers/common/zsda/zsda_common.c
 create mode 100644 drivers/common/zsda/zsda_common.h
 create mode 100644 drivers/common/zsda/zsda_device.c
 create mode 100644 drivers/common/zsda/zsda_device.h
 create mode 100644 drivers/common/zsda/zsda_logs.c
 create mode 100644 drivers/common/zsda/zsda_logs.h
 create mode 100644 drivers/common/zsda/zsda_qp.c
 create mode 100644 drivers/common/zsda/zsda_qp.h
 create mode 100644 drivers/compress/zsda/zsda_comp.c
 create mode 100644 drivers/compress/zsda/zsda_comp.h
 create mode 100644 drivers/compress/zsda/zsda_comp_pmd.c
 create mode 100644 drivers/compress/zsda/zsda_comp_pmd.h
 create mode 100644 drivers/crypto/zsda/zsda_sym.c
 create mode 100644 drivers/crypto/zsda/zsda_sym.h
 create mode 100644 drivers/crypto/zsda/zsda_sym_capabilities.h
 create mode 100644 drivers/crypto/zsda/zsda_sym_pmd.c
 create mode 100644 drivers/crypto/zsda/zsda_sym_pmd.h
 create mode 100644 drivers/crypto/zsda/zsda_sym_session.c
 create mode 100644 drivers/crypto/zsda/zsda_sym_session.h

-- 
2.27.0

[-- Attachment #1.1.2: Type: text/html , Size: 8103 bytes --]

  reply	other threads:[~2024-09-27 13:12 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-01  8:27 [PATCH] zsda:introduce zsda drivers and examples lhx
2024-07-02  8:52 ` David Marchand
2024-07-02 13:11 ` [EXTERNAL] " Akhil Goyal
2024-09-09  8:08 ` [PATCH v4 1/8] zsda: Introduce zsda device drivers Hanxiao Li
2024-09-10  9:15 ` [PATCH v5 " Hanxiao Li
2024-09-10  9:18   ` [PATCH v5 2/8] zsda: add support for zsdadev operations Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 3/8] zsda: add support for queue operation Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 4/8] zsda: add zsda compressdev driver and interface Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 5/8] zsda: modify files for introducing zsda cryptodev Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 6/8] zsda: add zsda crypto-pmd Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 7/8] zsda: add zsda crypto-sym Hanxiao Li
2024-09-10  9:18     ` [PATCH v5 8/8] zsda: add zsda crypto-session and compile file Hanxiao Li
2024-09-11  7:52   ` [PATCH v6 1/8] zsda: Introduce zsda device drivers Hanxiao Li
2024-09-11  7:54     ` [PATCH v6 2/8] zsda: add support for zsdadev operations Hanxiao Li
2024-09-11  7:54       ` [PATCH v6 3/8] zsda: add support for queue operation Hanxiao Li
2024-09-11 16:01         ` Stephen Hemminger
2024-09-11  7:54       ` [PATCH v6 4/8] zsda: add zsda compressdev driver and interface Hanxiao Li
2024-09-11  7:54       ` [PATCH v6 5/8] zsda: modify files for introducing zsda cryptodev Hanxiao Li
2024-09-17 18:22         ` [EXTERNAL] " Akhil Goyal
2024-09-11  7:54       ` [PATCH v6 6/8] zsda: add zsda crypto-pmd Hanxiao Li
2024-09-17 18:25         ` [EXTERNAL] " Akhil Goyal
2024-09-11  7:54       ` [PATCH v6 7/8] zsda: add zsda crypto-sym Hanxiao Li
2024-09-11  7:54       ` [PATCH v6 8/8] zsda: add zsda crypto-session and compile file Hanxiao Li
2024-09-17 18:33         ` [EXTERNAL] " Akhil Goyal
2024-09-17 18:13     ` [EXTERNAL] [PATCH v6 1/8] zsda: Introduce zsda device drivers Akhil Goyal
2024-09-27 12:44     ` [PATCH v7 0/8] drivers/zsda: introduce zsda drivers Hanxiao Li
2024-09-27 13:01     ` [PATCH v7 1/8] common/zsda: add common function and log macro Hanxiao Li
2024-09-27 13:09       ` Hanxiao Li [this message]
2024-09-27 13:09         ` [PATCH v7 2/8] common/zsda: configure device Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 3/8] common/zsda: configure queues Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 4/8] compress/zsda: configure drivers of compressdev Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 5/8] crypto/zsda: configure drivers, sessions, capabilities of cryptodev Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 6/8] lib/cryptodev: add sm4 xts for crypto Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 7/8] app/test: add sm4-xts test Hanxiao Li
2024-09-27 13:09         ` [PATCH v7 8/8] doc/guides: add documents and release notes for two drivers Hanxiao Li

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=20240927131000.738277-1-li.hanxiao@zte.com.cn \
    --to=li.hanxiao@zte.com.cn \
    --cc=dev@dpdk.org \
    --cc=wang.yong19@zte.com.cn \
    /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).