1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023-2024 Intel Corporation 4 */ 5 6 #ifndef _XE_SRIOV_VF_H_ 7 #define _XE_SRIOV_VF_H_ 8 9 #include <linux/types.h> 10 11 struct dentry; 12 struct xe_device; 13 14 void xe_sriov_vf_init_early(struct xe_device *xe); 15 int xe_sriov_vf_init_late(struct xe_device *xe); 16 void xe_sriov_vf_start_migration_recovery(struct xe_device *xe); 17 bool xe_sriov_vf_migration_supported(struct xe_device *xe); 18 void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root); 19 20 #endif 21