1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 #ifndef _XE_SA_TYPES_H_ 6 #define _XE_SA_TYPES_H_ 7 8 #include <drm/drm_suballoc.h> 9 10 struct xe_bo; 11 12 struct xe_sa_manager { 13 struct drm_suballoc_manager base; 14 struct xe_bo *bo; 15 u64 gpu_addr; 16 void *cpu_ptr; 17 bool is_iomem; 18 }; 19 20 #endif 21