Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.6.
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2021 Intel Corporation
 4 */
 5
 6#ifndef __INTEL_DPT_H__
 7#define __INTEL_DPT_H__
 8
 9struct drm_i915_private;
10
11struct i915_address_space;
12struct i915_vma;
13struct intel_framebuffer;
14
15void intel_dpt_destroy(struct i915_address_space *vm);
16struct i915_vma *intel_dpt_pin(struct i915_address_space *vm);
17void intel_dpt_unpin(struct i915_address_space *vm);
18void intel_dpt_suspend(struct drm_i915_private *i915);
19void intel_dpt_resume(struct drm_i915_private *i915);
20struct i915_address_space *
21intel_dpt_create(struct intel_framebuffer *fb);
22
23#endif /* __INTEL_DPT_H__ */