[dpdk-dev] [PATCH v3 00/15] Introducing the NXP CAAM job ring driver

Gagandeep Singh G.Singh at nxp.com
Mon Oct 22 15:31:00 CEST 2018


v2->v3 change-log:
* fix CONFIG_RTE_LIBRTE_SECURITY=n compilation.

v1->v2 change-log:
* Most of the checkpatch warnings and erros are removed
* CONFIG_RTE_CAAM_JR_PMD_MAX_NB_SESSIONS and
  CONFIG_RTE_PMD_CAAM_JR_DEBUG flags removed
* local unlikely macro removed
* extra spaces removed and functions format fixed
* indentation fixed
* documentation is updated
* dead code removed
* device capabilities added in separate file and 
  functions added to access them.
* missing PMD_INIT_FUNC_TRACE() added to the respective
  functions
* description added to the all patches
* some patches splited (sg support, uio, capabilities, hw)

v1:
The caam_jr PMD provides poll mode crypto driver
support for NXP SEC 4.x+ (CAAM) hardware accelerator.

Gagandeep Singh (10):
  crypto/caam_jr: introduce basic driver
  crypto/caam_jr: add HW tuning options
  crypto/caam_jr: add routines to configure HW
  crypto/caam_jr: add UIO specific operations
  crypto/caam_jr: add basic job ring routines
  crypto/caam_jr: add device basic ops
  crypto/caam_jr: add session configuration methods
  crypto/caam_jr: add device cababilities
  crypto/caam_jr: add enqueue dequeue operations
  crypto/caam_jr: add scatter gather

Hemant Agrawal (5):
  crypto/caam_jr: add queue pair config ops
  crypto/caam_jr: add statistics ops
  crypto/caam_jr: add security offload
  doc: add caam jr cryptodev details
  test/crypto: add CAAM JR driver validation test cases

 MAINTAINERS                                   |    7 +
 config/common_base                            |    6 +
 config/common_linuxapp                        |    1 +
 config/defconfig_arm64-dpaa-linuxapp-gcc      |    3 +
 doc/guides/cryptodevs/caam_jr.rst             |  150 +
 doc/guides/cryptodevs/features/caam_jr.ini    |   46 +
 doc/guides/cryptodevs/index.rst               |    1 +
 doc/guides/rel_notes/release_18_11.rst        |    5 +
 drivers/crypto/Makefile                       |    1 +
 drivers/crypto/caam_jr/Makefile               |   44 +
 drivers/crypto/caam_jr/caam_jr.c              | 2568 +++++++++++++++++
 drivers/crypto/caam_jr/caam_jr_capabilities.c |  268 ++
 drivers/crypto/caam_jr/caam_jr_capabilities.h |   21 +
 drivers/crypto/caam_jr/caam_jr_config.h       |  207 ++
 drivers/crypto/caam_jr/caam_jr_desc.h         |  285 ++
 drivers/crypto/caam_jr/caam_jr_hw.c           |  369 +++
 drivers/crypto/caam_jr/caam_jr_hw_specific.h  |  503 ++++
 drivers/crypto/caam_jr/caam_jr_log.h          |   42 +
 drivers/crypto/caam_jr/caam_jr_pvt.h          |  295 ++
 drivers/crypto/caam_jr/caam_jr_uio.c          |  503 ++++
 drivers/crypto/caam_jr/meson.build            |   17 +
 .../caam_jr/rte_pmd_caam_jr_version.map       |    4 +
 drivers/crypto/meson.build                    |    5 +-
 test/test/test_cryptodev.c                    |  138 +
 test/test/test_cryptodev.h                    |    1 +
 test/test/test_cryptodev_aes_test_vectors.h   |   33 +
 test/test/test_cryptodev_blockcipher.c        |    7 +
 test/test/test_cryptodev_blockcipher.h        |    1 +
 test/test/test_cryptodev_des_test_vectors.h   |   14 +-
 test/test/test_cryptodev_hash_test_vectors.h  |   14 +
 30 files changed, 5555 insertions(+), 4 deletions(-)
 create mode 100644 doc/guides/cryptodevs/caam_jr.rst
 create mode 100644 doc/guides/cryptodevs/features/caam_jr.ini
 create mode 100644 drivers/crypto/caam_jr/Makefile
 create mode 100644 drivers/crypto/caam_jr/caam_jr.c
 create mode 100644 drivers/crypto/caam_jr/caam_jr_capabilities.c
 create mode 100644 drivers/crypto/caam_jr/caam_jr_capabilities.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_config.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_desc.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_hw.c
 create mode 100644 drivers/crypto/caam_jr/caam_jr_hw_specific.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_log.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_pvt.h
 create mode 100644 drivers/crypto/caam_jr/caam_jr_uio.c
 create mode 100644 drivers/crypto/caam_jr/meson.build
 create mode 100644 drivers/crypto/caam_jr/rte_pmd_caam_jr_version.map

-- 
2.17.1



More information about the dev mailing list