1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2025 Intel Corporation 4 */ 5 6 #ifndef _XE_SRIOV_PF_CONTROL_H_ 7 #define _XE_SRIOV_PF_CONTROL_H_ 8 9 struct xe_device; 10 11 int xe_sriov_pf_control_pause_vf(struct xe_device *xe, unsigned int vfid); 12 int xe_sriov_pf_control_resume_vf(struct xe_device *xe, unsigned int vfid); 13 int xe_sriov_pf_control_stop_vf(struct xe_device *xe, unsigned int vfid); 14 int xe_sriov_pf_control_reset_vf(struct xe_device *xe, unsigned int vfid); 15 int xe_sriov_pf_control_sync_flr(struct xe_device *xe, unsigned int vfid); 16 17 #endif 18