1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (C) 2022, Intel Corporation. */ 3 4 #ifndef _ICE_VIRT_QUEUES_H_ 5 #define _ICE_VIRT_QUEUES_H_ 6 7 #include <linux/types.h> 8 9 struct ice_vf; 10 11 u16 ice_vc_get_max_frame_size(struct ice_vf *vf); 12 int ice_vc_ena_qs_msg(struct ice_vf *vf, u8 *msg); 13 int ice_vc_dis_qs_msg(struct ice_vf *vf, u8 *msg); 14 int ice_vc_cfg_irq_map_msg(struct ice_vf *vf, u8 *msg); 15 int ice_vc_cfg_q_bw(struct ice_vf *vf, u8 *msg); 16 int ice_vc_cfg_q_quanta(struct ice_vf *vf, u8 *msg); 17 int ice_vc_cfg_qs_msg(struct ice_vf *vf, u8 *msg); 18 int ice_vc_request_qs_msg(struct ice_vf *vf, u8 *msg); 19 20 #endif /* _ICE_VIRT_QUEUES_H_ */ 21