1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6 #ifndef __INTEL_DPT_H__ 7 #define __INTEL_DPT_H__ 8 9 struct i915_address_space; 10 struct i915_vma; 11 struct intel_framebuffer; 12 13 void intel_dpt_destroy(struct i915_address_space *vm); 14 struct i915_vma *intel_dpt_pin(struct i915_address_space *vm); 15 void intel_dpt_unpin(struct i915_address_space *vm); 16 struct i915_address_space * 17 intel_dpt_create(struct intel_framebuffer *fb); 18 19 #endif /* __INTEL_DPT_H__ */ 20