cryptodev: introduce API and framework for crypto devices
authorDeclan Doherty <declan.doherty@intel.com>
Wed, 25 Nov 2015 13:25:12 +0000 (13:25 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 25 Nov 2015 18:18:04 +0000 (19:18 +0100)
commitd11b0f30df88c1ecb12e5bdaa467ca246a14b422
tree008a2d8448f4a261a06fc875aef337eff397b724
parent0781e8a7ac52863e970ec84abd3e1f95720a5105
cryptodev: introduce API and framework for crypto devices

This patch contains the initial proposed APIs and device framework for
integrating crypto packet processing into DPDK.

features include:
 - Crypto device configuration / management APIs
 - Definitions of supported cipher algorithms and operations.
 - Definitions of supported hash/authentication algorithms and
   operations.
 - Crypto session management APIs
 - Crypto operation data structures and APIs allocation of crypto
   operation structure used to specify the crypto operations to
   be performed  on a particular mbuf.
 - Extension of mbuf to contain crypto operation data pointer and
   extra flags.
 - Burst enqueue / dequeue APIs for processing of crypto operations.

Signed-off-by: Des O Dea <des.j.o.dea@intel.com>
Signed-off-by: John Griffin <john.griffin@intel.com>
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
Signed-off-by: Declan Doherty <declan.doherty@intel.com>
Acked-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
14 files changed:
MAINTAINERS
config/common_bsdapp
config/common_linuxapp
doc/api/doxy-api-index.md
doc/api/doxy-api.conf
lib/Makefile
lib/librte_cryptodev/Makefile [new file with mode: 0644]
lib/librte_cryptodev/rte_crypto.h [new file with mode: 0644]
lib/librte_cryptodev/rte_cryptodev.c [new file with mode: 0644]
lib/librte_cryptodev/rte_cryptodev.h [new file with mode: 0644]
lib/librte_cryptodev/rte_cryptodev_pmd.h [new file with mode: 0644]
lib/librte_cryptodev/rte_cryptodev_version.map [new file with mode: 0644]
lib/librte_eal/common/include/rte_log.h
mk/rte.app.mk