1 /* SPDX-License-Identifier: MIT */ 2 /* Copyright © 2026 Intel Corporation */ 3 4 #ifndef _XE_DISPLAY_VMA_H_ 5 #define _XE_DISPLAY_VMA_H_ 6 7 #include <linux/refcount.h> 8 9 struct xe_bo; 10 struct xe_ggtt_node; 11 12 struct i915_vma { 13 refcount_t ref; 14 struct xe_bo *bo, *dpt; 15 struct xe_ggtt_node *node; 16 }; 17 18 #endif 19