This series adds lookaside IPsec support in OCTEON TX2 PMD. Features supported: * IPv4 * ESP * Tunnel mode * AES-128/192/256-GCM
This series is on top of http://patches.dpdk.org/patch/71638/ Tejasree Kondoj (4): 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 (4): crypto/octeontx2: add cryptodev sec misc callbacks crypto/octeontx2: add cryptodev sec session create crypto/octeontx2: add cryptodev sec enqueue routine crypto/octeontx2: add cryptodev sec dequeue routine drivers/crypto/octeontx2/Makefile | 1 + drivers/crypto/octeontx2/meson.build | 3 +- drivers/crypto/octeontx2/otx2_cryptodev.c | 12 +- drivers/crypto/octeontx2/otx2_cryptodev.h | 8 + .../octeontx2/otx2_cryptodev_capabilities.c | 108 ++++ .../octeontx2/otx2_cryptodev_capabilities.h | 3 + drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 73 ++- drivers/crypto/octeontx2/otx2_cryptodev_sec.c | 538 ++++++++++++++++++ drivers/crypto/octeontx2/otx2_cryptodev_sec.h | 58 ++ drivers/crypto/octeontx2/otx2_ipsec_po.h | 450 +++++++++++++++ drivers/crypto/octeontx2/otx2_ipsec_po_ops.h | 179 ++++++ drivers/crypto/octeontx2/otx2_security.h | 32 ++ drivers/net/octeontx2/otx2_ethdev_sec.c | 10 +- drivers/net/octeontx2/otx2_ethdev_sec.h | 11 +- drivers/net/octeontx2/otx2_ethdev_sec_tx.h | 1 + 15 files changed, 1465 insertions(+), 22 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 -- 2.27.0