v19:
- delete cryptodev drivers and prepare to submit it next time.
- only submit compressdev driver this time.
- resplit the patches.
v18:
- add code in drivers/meson.build to compile zsda drivers.
- make every patch compile without any warnings or errors.
v17:
- fix some spelling errors
v16:
- resplit patches.
- complete documentation which is yet there in that patch.
- every patch should compile without any warnings or errors.
- delete unused comments.
v15:
- split to more patches.
v14:
- Uniform Byte Alignment.
v13:
- resolve some comiler warnings that are being suppressed.
v12:
- use RTE_LOG_LINE_PREFIX in logging macro.
- delete the check for null with rte_mempool_free.
- delete some unused initial values.
v11:
- use RTE_LOG_LINE in logging macro.
- fix some known bugs.
v10:
- delete new blank line at EOF
- Cleaning up some code in zsda_log.h
v9:
- add a new feature in default.ini.
- Re-split the patch according to the new PMD guidelines
https://patches.dpdk.org/project/dpdk/patch/20241006184
254.53499-1-nandinipersad361@gmail.com/
- Split SM4-XTS tests into a new series to releases.
- Separate out datapath(enqueue/dequeue) as a separate patch.
v8:
- fix some errors in cryptodevs/features/zsda.ini.
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 (13):
config: add zsda device number
common/zsda: add zsdadev driver
common/zsda: add logging macros
common/zsda: add functions to operate hardware queue
common/zsda: add definition and use of msg chan.
compress/zsda: add zsda compressdev driver skeleton
compress/zsda: add zsda compressdev dev ops
compress/zsda: add zsda compressdev stats ops
compress/zsda: add zsda compressdev xform ops
compress/zsda: add zsda compressdev qp ops
compress/zsda: add zsda compressdev enqueue datapath
compress/zsda: add zsda compressdev dequeue datapath
compress/zsda: add zsda cryptodev capabilities
MAINTAINERS | 6 +
config/rte_config.h | 4 +
doc/guides/compressdevs/features/zsda.ini | 15 +
doc/guides/compressdevs/index.rst | 1 +
doc/guides/compressdevs/zsda.rst | 222 +++++
drivers/common/zsda/meson.build | 26 +
drivers/common/zsda/zsda_device.c | 206 +++++
drivers/common/zsda/zsda_device.h | 60 ++
drivers/common/zsda/zsda_logs.c | 19 +
drivers/common/zsda/zsda_logs.h | 27 +
drivers/common/zsda/zsda_qp.c | 935 ++++++++++++++++++++++
drivers/common/zsda/zsda_qp.h | 182 +++++
drivers/common/zsda/zsda_qp_common.c | 192 +++++
drivers/common/zsda/zsda_qp_common.h | 198 +++++
drivers/compress/zsda/zsda_comp.c | 388 +++++++++
drivers/compress/zsda/zsda_comp.h | 45 ++
drivers/compress/zsda/zsda_comp_pmd.c | 465 +++++++++++
drivers/compress/zsda/zsda_comp_pmd.h | 42 +
drivers/meson.build | 1 +
19 files changed, 3034 insertions(+)
create mode 100644 doc/guides/compressdevs/features/zsda.ini
create mode 100644 doc/guides/compressdevs/zsda.rst
create mode 100644 drivers/common/zsda/meson.build
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/common/zsda/zsda_qp_common.c
create mode 100644 drivers/common/zsda/zsda_qp_common.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
--
2.27.0