numam-dpdk/drivers/crypto/cnxk/cnxk_cryptodev_capabilities.h
Anoob Joseph 69407e7936 crypto/cnxk: add security capabilities
Add security capabilities supported by crypto cn10k PMD.

Signed-off-by: Anoob Joseph <anoobj@marvell.com>
Signed-off-by: Srujana Challa <schalla@marvell.com>
Signed-off-by: Tejasree Kondoj <ktejasree@marvell.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
2021-07-07 21:15:08 +02:00

33 lines
683 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2021 Marvell.
*/
#ifndef _CNXK_CRYPTODEV_CAPABILITIES_H_
#define _CNXK_CRYPTODEV_CAPABILITIES_H_
#include <rte_cryptodev.h>
#include "cnxk_cryptodev.h"
/*
* Initialize crypto and IPsec capabilities for the device
*
*/
void cnxk_cpt_caps_populate(struct cnxk_cpt_vf *vf);
/*
* Get crypto capabilities list for the device
*
*/
const struct rte_cryptodev_capabilities *
cnxk_crypto_capabilities_get(struct cnxk_cpt_vf *vf);
/*
* Get security capabilities list for the device
*
*/
const struct rte_security_capability *
cnxk_crypto_sec_capabilities_get(void *device);
#endif /* _CNXK_CRYPTODEV_CAPABILITIES_H_ */