1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 3 /* $FreeBSD$ */ 4 #ifndef ADF_CFG_INSTANCE_H_ 5 #define ADF_CFG_INSTANCE_H_ 6 7 #include "adf_accel_devices.h" 8 #include "adf_cfg_common.h" 9 #include "adf_cfg_bundle.h" 10 11 void crypto_instance_init(struct adf_cfg_instance *instance, 12 struct adf_cfg_bundle *bundle); 13 void dc_instance_init(struct adf_cfg_instance *instance, 14 struct adf_cfg_bundle *bundle); 15 void asym_instance_init(struct adf_cfg_instance *instance, 16 struct adf_cfg_bundle *bundle); 17 void sym_instance_init(struct adf_cfg_instance *instance, 18 struct adf_cfg_bundle *bundle); 19 #endif 20