1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2019 Intel Corporation
6 #ifndef __INTEL_OVERLAY_H__
7 #define __INTEL_OVERLAY_H__
11 struct drm_i915_error_state_buf;
12 struct drm_i915_private;
14 struct intel_overlay_error_state;
17 void intel_overlay_setup(struct drm_i915_private *dev_priv);
18 void intel_overlay_cleanup(struct drm_i915_private *dev_priv);
19 int intel_overlay_switch_off(struct intel_overlay *overlay);
20 int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
21 struct drm_file *file_priv);
22 int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
23 struct drm_file *file_priv);
24 void intel_overlay_reset(struct drm_i915_private *dev_priv);
25 struct intel_overlay_error_state *
26 intel_overlay_capture_error_state(struct drm_i915_private *dev_priv);
27 void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e,
28 struct intel_overlay_error_state *error);
30 static inline void intel_overlay_setup(struct drm_i915_private *dev_priv)
33 static inline void intel_overlay_cleanup(struct drm_i915_private *dev_priv)
36 static inline int intel_overlay_switch_off(struct intel_overlay *overlay)
40 static inline int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
41 struct drm_file *file_priv)
45 static inline int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
46 struct drm_file *file_priv)
50 static inline void intel_overlay_reset(struct drm_i915_private *dev_priv)
53 static inline struct intel_overlay_error_state *
54 intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
58 static inline void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e,
59 struct intel_overlay_error_state *error)
64 #endif /* __INTEL_OVERLAY_H__ */