xref: /linux/drivers/gpu/drm/i915/display/intel_color.h (revision d6fd48ef)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2019 Intel Corporation
4  */
5 
6 #ifndef __INTEL_COLOR_H__
7 #define __INTEL_COLOR_H__
8 
9 #include <linux/types.h>
10 
11 struct intel_crtc_state;
12 struct intel_crtc;
13 struct drm_i915_private;
14 struct drm_property_blob;
15 
16 void intel_color_init_hooks(struct drm_i915_private *i915);
17 int intel_color_init(struct drm_i915_private *i915);
18 void intel_color_crtc_init(struct intel_crtc *crtc);
19 int intel_color_check(struct intel_crtc_state *crtc_state);
20 void intel_color_prepare_commit(struct intel_crtc_state *crtc_state);
21 void intel_color_cleanup_commit(struct intel_crtc_state *crtc_state);
22 void intel_color_commit_noarm(const struct intel_crtc_state *crtc_state);
23 void intel_color_commit_arm(const struct intel_crtc_state *crtc_state);
24 void intel_color_load_luts(const struct intel_crtc_state *crtc_state);
25 void intel_color_get_config(struct intel_crtc_state *crtc_state);
26 bool intel_color_lut_equal(const struct intel_crtc_state *crtc_state,
27 			   const struct drm_property_blob *blob1,
28 			   const struct drm_property_blob *blob2,
29 			   bool is_pre_csc_lut);
30 void intel_color_assert_luts(const struct intel_crtc_state *crtc_state);
31 
32 #endif /* __INTEL_COLOR_H__ */
33