xref: /linux/drivers/crypto/intel/qat/qat_common/adf_gen6_shared.h (revision ab93e0dd72c37d378dd936f031ffb83ff2bd87ce)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Copyright(c) 2025 Intel Corporation */
3 #ifndef ADF_GEN6_SHARED_H_
4 #define ADF_GEN6_SHARED_H_
5 
6 struct adf_hw_csr_ops;
7 struct qat_migdev_ops;
8 struct adf_accel_dev;
9 struct adf_pfvf_ops;
10 
11 void adf_gen6_init_pf_pfvf_ops(struct adf_pfvf_ops *pfvf_ops);
12 void adf_gen6_init_hw_csr_ops(struct adf_hw_csr_ops *csr_ops);
13 int adf_gen6_cfg_dev_init(struct adf_accel_dev *accel_dev);
14 int adf_gen6_comp_dev_config(struct adf_accel_dev *accel_dev);
15 int adf_gen6_no_dev_config(struct adf_accel_dev *accel_dev);
16 void adf_gen6_init_vf_mig_ops(struct qat_migdev_ops *vfmig_ops);
17 #endif/* ADF_GEN6_SHARED_H_ */
18