From: Ville Syrjälä <ville.syrj...@linux.intel.com>

We now have all the code necessary for gamma/degamma readout on
ivb/hsw. Plug it all in.

Signed-off-by: Ville Syrjälä <ville.syrj...@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_color.c | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_color.c 
b/drivers/gpu/drm/i915/display/intel_color.c
index 9f01fb316efa..886f3f0d873a 100644
--- a/drivers/gpu/drm/i915/display/intel_color.c
+++ b/drivers/gpu/drm/i915/display/intel_color.c
@@ -1999,6 +1999,37 @@ static struct drm_property_blob *ivb_read_lut_10(struct 
intel_crtc *crtc,
        return blob;
 }
 
+static void ivb_read_luts(struct intel_crtc_state *crtc_state)
+{
+       struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+       struct drm_property_blob **blob =
+               crtc_state->csc_mode & CSC_POSITION_BEFORE_GAMMA ?
+               &crtc_state->hw.gamma_lut : &crtc_state->hw.degamma_lut;
+
+       if (!crtc_state->gamma_enable)
+               return;
+
+       switch (crtc_state->gamma_mode) {
+       case GAMMA_MODE_MODE_8BIT:
+               *blob = ilk_read_lut_8(crtc);
+               break;
+       case GAMMA_MODE_MODE_SPLIT:
+               crtc_state->hw.degamma_lut =
+                       ivb_read_lut_10(crtc, PAL_PREC_SPLIT_MODE |
+                                       PAL_PREC_INDEX_VALUE(0));
+               crtc_state->hw.gamma_lut =
+                       ivb_read_lut_10(crtc, PAL_PREC_SPLIT_MODE |
+                                       PAL_PREC_INDEX_VALUE(512));
+               break;
+       case GAMMA_MODE_MODE_10BIT:
+               *blob = ivb_read_lut_10(crtc, PAL_PREC_INDEX_VALUE(0));
+               break;
+       default:
+               MISSING_CASE(crtc_state->gamma_mode);
+               break;
+       }
+}
+
 /* On BDW+ the index auto increment mode actually works */
 static struct drm_property_blob *bdw_read_lut_10(struct intel_crtc *crtc,
                                                 u32 prec_index)
@@ -2236,6 +2267,7 @@ void intel_color_init(struct intel_crtc *crtc)
                        dev_priv->display.read_luts = bdw_read_luts;
                } else if (INTEL_GEN(dev_priv) >= 7) {
                        dev_priv->display.load_luts = ivb_load_luts;
+                       dev_priv->display.read_luts = ivb_read_luts;
                } else {
                        dev_priv->display.load_luts = ilk_load_luts;
                        dev_priv->display.read_luts = ilk_read_luts;
-- 
2.26.2

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to