xref: /linux/drivers/gpu/drm/xe/xe_tile_sriov_vf.h (revision 8d2b0853add1d7534dc0794e3c8e0b9e8c4ec640)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2025 Intel Corporation
4  */
5 
6 #ifndef _XE_TILE_SRIOV_VF_H_
7 #define _XE_TILE_SRIOV_VF_H_
8 
9 #include <linux/types.h>
10 
11 struct xe_tile;
12 
13 int xe_tile_sriov_vf_prepare_ggtt(struct xe_tile *tile);
14 int xe_tile_sriov_vf_balloon_ggtt_locked(struct xe_tile *tile);
15 void xe_tile_sriov_vf_deballoon_ggtt_locked(struct xe_tile *tile);
16 void xe_tile_sriov_vf_fixup_ggtt_nodes(struct xe_tile *tile, s64 shift);
17 
18 #endif
19