Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2021 Intel Corporation
0004  */
0005 
0006 #ifndef __INTEL_DPT_H__
0007 #define __INTEL_DPT_H__
0008 
0009 struct drm_i915_private;
0010 
0011 struct i915_address_space;
0012 struct i915_vma;
0013 struct intel_framebuffer;
0014 
0015 void intel_dpt_destroy(struct i915_address_space *vm);
0016 struct i915_vma *intel_dpt_pin(struct i915_address_space *vm);
0017 void intel_dpt_unpin(struct i915_address_space *vm);
0018 void intel_dpt_suspend(struct drm_i915_private *i915);
0019 void intel_dpt_resume(struct drm_i915_private *i915);
0020 struct i915_address_space *
0021 intel_dpt_create(struct intel_framebuffer *fb);
0022 
0023 #endif /* __INTEL_DPT_H__ */