1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6 #ifndef _XE_GGTT_H_ 7 #define _XE_GGTT_H_ 8 9 #include "xe_ggtt_types.h" 10 11 struct drm_printer; 12 13 int xe_ggtt_init_early(struct xe_ggtt *ggtt); 14 int xe_ggtt_init(struct xe_ggtt *ggtt); 15 void xe_ggtt_printk(struct xe_ggtt *ggtt, const char *prefix); 16 17 int xe_ggtt_balloon(struct xe_ggtt *ggtt, u64 start, u64 size, struct drm_mm_node *node); 18 void xe_ggtt_deballoon(struct xe_ggtt *ggtt, struct drm_mm_node *node); 19 20 int xe_ggtt_insert_special_node(struct xe_ggtt *ggtt, struct drm_mm_node *node, 21 u32 size, u32 align); 22 int xe_ggtt_insert_special_node_locked(struct xe_ggtt *ggtt, 23 struct drm_mm_node *node, 24 u32 size, u32 align, u32 mm_flags); 25 void xe_ggtt_remove_node(struct xe_ggtt *ggtt, struct drm_mm_node *node, 26 bool invalidate); 27 void xe_ggtt_map_bo(struct xe_ggtt *ggtt, struct xe_bo *bo); 28 int xe_ggtt_insert_bo(struct xe_ggtt *ggtt, struct xe_bo *bo); 29 int xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo, 30 u64 start, u64 end); 31 void xe_ggtt_remove_bo(struct xe_ggtt *ggtt, struct xe_bo *bo); 32 33 int xe_ggtt_dump(struct xe_ggtt *ggtt, struct drm_printer *p); 34 35 #ifdef CONFIG_PCI_IOV 36 void xe_ggtt_assign(struct xe_ggtt *ggtt, const struct drm_mm_node *node, u16 vfid); 37 #endif 38 39 #endif 40