/* SPDX-License-Identifier: MIT */ /* * Copyright © 2022 Intel Corporation */ #ifndef _XE_PT_TYPES_H_ #define _XE_PT_TYPES_H_ #include <linux/types.h> #include "xe_pt_walk.h" struct xe_bo; struct xe_device; struct xe_vma; enum xe_cache_level { … }; #define XE_VM_MAX_LEVEL … struct xe_pt { … }; struct xe_pt_ops { … }; struct xe_pt_entry { … }; struct xe_vm_pgtable_update { … }; #endif