1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2021 Intel Corporation 3 */ 4 5 #include "qat_device.h" 6 7 #ifndef QAT_PF2VF_H_ 8 #define QAT_PF2VF_H_ 9 10 struct qat_pf2vf_msg { 11 uint32_t msg_data; 12 int block_hdr; 13 uint16_t msg_type; 14 }; 15 16 int qat_pf2vf_exch_msg(struct qat_pci_device *qat_dev, 17 struct qat_pf2vf_msg pf2vf_msg, int len, uint8_t *ret); 18 19 #endif 20