mbox

[v3,0/8] add OCTEON TX2 lookaside IPsec support

Message ID 20200716083931.29092-1-ktejasree@marvell.com (mailing list archive)
Headers

Message

Tejasree Kondoj July 16, 2020, 8:39 a.m. UTC
  This series adds lookaside IPsec support in OCTEON TX2 PMD.

Features supported:
* IPv4
* ESP
* Tunnel mode
* AES-128/192/256-GCM

v3:
* Fixed PMD documentation and release notes updates
* Squashed enqueue and dequeue patches
* Removed unused code

v2:
* Updated PMD documentation and release notes
* Moved capabilities initialization into probe
* Added patch description to all patches
* Renamed few structures and macros
* Cosmetics and code style fixes

Tejasree Kondoj (5):
  crypto/octeontx2: move capabilities initialization into probe
  net/octeontx2: move otx2_sec_session struct to otx2_security.h
  crypto/octeontx2: add lookaside SA context definitions
  crypto/octeontx2: add cryptodev sec registration
  crypto/octeontx2: add cryptodev sec capabilities

Vamsi Attunuru (3):
  crypto/octeontx2: add cryptodev sec misc callbacks
  crypto/octeontx2: add cryptodev sec session create
  crypto/octeontx2: add cryptodev sec enqueue and dequeue routines

 doc/guides/cryptodevs/features/octeontx2.ini  |   1 +
 doc/guides/cryptodevs/octeontx2.rst           |  21 +
 doc/guides/rel_notes/release_20_08.rst        |   5 +
 drivers/crypto/octeontx2/Makefile             |   1 +
 drivers/crypto/octeontx2/meson.build          |   3 +-
 drivers/crypto/octeontx2/otx2_cryptodev.c     |  15 +-
 drivers/crypto/octeontx2/otx2_cryptodev.h     |   8 +
 .../octeontx2/otx2_cryptodev_capabilities.c   | 110 +++-
 .../octeontx2/otx2_cryptodev_capabilities.h   |  21 +-
 drivers/crypto/octeontx2/otx2_cryptodev_ops.c |  75 ++-
 drivers/crypto/octeontx2/otx2_cryptodev_sec.c | 540 ++++++++++++++++++
 drivers/crypto/octeontx2/otx2_cryptodev_sec.h |  64 +++
 drivers/crypto/octeontx2/otx2_ipsec_po.h      | 413 ++++++++++++++
 drivers/crypto/octeontx2/otx2_ipsec_po_ops.h  | 175 ++++++
 drivers/crypto/octeontx2/otx2_security.h      |  31 +
 drivers/net/octeontx2/otx2_ethdev_sec.c       |  24 +-
 drivers/net/octeontx2/otx2_ethdev_sec.h       |  11 +-
 drivers/net/octeontx2/otx2_ethdev_sec_tx.h    |   1 +
 18 files changed, 1485 insertions(+), 34 deletions(-)
 create mode 100644 drivers/crypto/octeontx2/otx2_cryptodev_sec.c
 create mode 100644 drivers/crypto/octeontx2/otx2_cryptodev_sec.h
 create mode 100644 drivers/crypto/octeontx2/otx2_ipsec_po.h
 create mode 100644 drivers/crypto/octeontx2/otx2_ipsec_po_ops.h
 create mode 100644 drivers/crypto/octeontx2/otx2_security.h