xref: /linux/drivers/gpu/drm/xe/xe_sriov_vf.h (revision f6e8dc9edf963dbc99085e54f6ced6da9daa6100)
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 bool xe_sriov_vf_migration_supported(struct xe_device *xe);
17 void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
18 
19 #endif
20