1*42600bbcSGagandeep Singh /* SPDX-License-Identifier: BSD-3-Clause 2*42600bbcSGagandeep Singh * Copyright 2017-2018 NXP 3*42600bbcSGagandeep Singh */ 4*42600bbcSGagandeep Singh 5*42600bbcSGagandeep Singh #ifndef CAAM_JR_CAPABILITIES_H 6*42600bbcSGagandeep Singh #define CAAM_JR_CAPABILITIES_H 7*42600bbcSGagandeep Singh 8*42600bbcSGagandeep Singh #include <rte_cryptodev.h> 9*42600bbcSGagandeep Singh #include <rte_security.h> 10*42600bbcSGagandeep Singh 11*42600bbcSGagandeep Singh /* Get cryptodev capabilities */ 12*42600bbcSGagandeep Singh const struct rte_cryptodev_capabilities * 13*42600bbcSGagandeep Singh caam_jr_get_cryptodev_capabilities(void); 14*42600bbcSGagandeep Singh /* Get security capabilities */ 15*42600bbcSGagandeep Singh const struct rte_security_capability * 16*42600bbcSGagandeep Singh caam_jr_get_security_capabilities(void *device); 17*42600bbcSGagandeep Singh 18*42600bbcSGagandeep Singh #endif 19