]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/i915/intel_color.c
drm/i915: Split broadwell_load_luts() into smaller functions
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / i915 / intel_color.c
CommitLineData
8563b1e8
LL
1/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 */
24
25#include "intel_drv.h"
26
82cf435b
LL
27#define CTM_COEFF_SIGN (1ULL << 63)
28
29#define CTM_COEFF_1_0 (1ULL << 32)
30#define CTM_COEFF_2_0 (CTM_COEFF_1_0 << 1)
31#define CTM_COEFF_4_0 (CTM_COEFF_2_0 << 1)
29dc3739 32#define CTM_COEFF_8_0 (CTM_COEFF_4_0 << 1)
82cf435b
LL
33#define CTM_COEFF_0_5 (CTM_COEFF_1_0 >> 1)
34#define CTM_COEFF_0_25 (CTM_COEFF_0_5 >> 1)
35#define CTM_COEFF_0_125 (CTM_COEFF_0_25 >> 1)
36
37#define CTM_COEFF_LIMITED_RANGE ((235ULL - 16ULL) * CTM_COEFF_1_0 / 255)
38
39#define CTM_COEFF_NEGATIVE(coeff) (((coeff) & CTM_COEFF_SIGN) != 0)
40#define CTM_COEFF_ABS(coeff) ((coeff) & (CTM_COEFF_SIGN - 1))
41
42#define LEGACY_LUT_LENGTH (sizeof(struct drm_color_lut) * 256)
43
8563b1e8 44/*
82cf435b
LL
45 * Extract the CSC coefficient from a CTM coefficient (in U32.32 fixed point
46 * format). This macro takes the coefficient we want transformed and the
47 * number of fractional bits.
8563b1e8 48 *
82cf435b
LL
49 * We only have a 9 bits precision window which slides depending on the value
50 * of the CTM coefficient and we write the value from bit 3. We also round the
51 * value.
8563b1e8 52 */
82cf435b
LL
53#define I9XX_CSC_COEFF_FP(coeff, fbits) \
54 (clamp_val(((coeff) >> (32 - (fbits) - 3)) + 4, 0, 0xfff) & 0xff8)
55
56#define I9XX_CSC_COEFF_LIMITED_RANGE \
57 I9XX_CSC_COEFF_FP(CTM_COEFF_LIMITED_RANGE, 9)
58#define I9XX_CSC_COEFF_1_0 \
59 ((7 << 12) | I9XX_CSC_COEFF_FP(CTM_COEFF_1_0, 8))
60
61static bool crtc_state_is_legacy(struct drm_crtc_state *state)
62{
63 return !state->degamma_lut &&
64 !state->ctm &&
65 state->gamma_lut &&
66 state->gamma_lut->length == LEGACY_LUT_LENGTH;
67}
68
69/*
70 * When using limited range, multiply the matrix given by userspace by
71 * the matrix that we would use for the limited range. We do the
72 * multiplication in U2.30 format.
73 */
74static void ctm_mult_by_limited(uint64_t *result, int64_t *input)
75{
76 int i;
77
78 for (i = 0; i < 9; i++)
79 result[i] = 0;
80
81 for (i = 0; i < 3; i++) {
82 int64_t user_coeff = input[i * 3 + i];
83 uint64_t limited_coeff = CTM_COEFF_LIMITED_RANGE >> 2;
84 uint64_t abs_coeff = clamp_val(CTM_COEFF_ABS(user_coeff),
85 0,
86 CTM_COEFF_4_0 - 1) >> 2;
87
88 result[i * 3 + i] = (limited_coeff * abs_coeff) >> 27;
89 if (CTM_COEFF_NEGATIVE(user_coeff))
90 result[i * 3 + i] |= CTM_COEFF_SIGN;
91 }
92}
93
94/* Set up the pipe CSC unit. */
b95c5321 95static void i9xx_load_csc_matrix(struct drm_crtc_state *crtc_state)
8563b1e8 96{
b95c5321 97 struct drm_crtc *crtc = crtc_state->crtc;
66478475 98 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
8563b1e8 99 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
82cf435b
LL
100 int i, pipe = intel_crtc->pipe;
101 uint16_t coeffs[9] = { 0, };
1f0017f6 102 struct intel_crtc_state *intel_crtc_state = to_intel_crtc_state(crtc_state);
82cf435b
LL
103
104 if (crtc_state->ctm) {
105 struct drm_color_ctm *ctm =
106 (struct drm_color_ctm *)crtc_state->ctm->data;
107 uint64_t input[9] = { 0, };
108
1f0017f6 109 if (intel_crtc_state->limited_color_range) {
82cf435b
LL
110 ctm_mult_by_limited(input, ctm->matrix);
111 } else {
112 for (i = 0; i < ARRAY_SIZE(input); i++)
113 input[i] = ctm->matrix[i];
114 }
115
116 /*
117 * Convert fixed point S31.32 input to format supported by the
118 * hardware.
119 */
120 for (i = 0; i < ARRAY_SIZE(coeffs); i++) {
121 uint64_t abs_coeff = ((1ULL << 63) - 1) & input[i];
122
123 /*
124 * Clamp input value to min/max supported by
125 * hardware.
126 */
127 abs_coeff = clamp_val(abs_coeff, 0, CTM_COEFF_4_0 - 1);
128
129 /* sign bit */
130 if (CTM_COEFF_NEGATIVE(input[i]))
131 coeffs[i] |= 1 << 15;
132
133 if (abs_coeff < CTM_COEFF_0_125)
134 coeffs[i] |= (3 << 12) |
135 I9XX_CSC_COEFF_FP(abs_coeff, 12);
136 else if (abs_coeff < CTM_COEFF_0_25)
137 coeffs[i] |= (2 << 12) |
138 I9XX_CSC_COEFF_FP(abs_coeff, 11);
139 else if (abs_coeff < CTM_COEFF_0_5)
140 coeffs[i] |= (1 << 12) |
141 I9XX_CSC_COEFF_FP(abs_coeff, 10);
142 else if (abs_coeff < CTM_COEFF_1_0)
143 coeffs[i] |= I9XX_CSC_COEFF_FP(abs_coeff, 9);
144 else if (abs_coeff < CTM_COEFF_2_0)
145 coeffs[i] |= (7 << 12) |
146 I9XX_CSC_COEFF_FP(abs_coeff, 8);
147 else
148 coeffs[i] |= (6 << 12) |
149 I9XX_CSC_COEFF_FP(abs_coeff, 7);
150 }
151 } else {
152 /*
153 * Load an identity matrix if no coefficients are provided.
154 *
155 * TODO: Check what kind of values actually come out of the
156 * pipe with these coeff/postoff values and adjust to get the
157 * best accuracy. Perhaps we even need to take the bpc value
158 * into consideration.
159 */
160 for (i = 0; i < 3; i++) {
1f0017f6 161 if (intel_crtc_state->limited_color_range)
82cf435b
LL
162 coeffs[i * 3 + i] =
163 I9XX_CSC_COEFF_LIMITED_RANGE;
164 else
165 coeffs[i * 3 + i] = I9XX_CSC_COEFF_1_0;
166 }
167 }
8563b1e8 168
82cf435b
LL
169 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeffs[0] << 16 | coeffs[1]);
170 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), coeffs[2] << 16);
8563b1e8 171
82cf435b
LL
172 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeffs[3] << 16 | coeffs[4]);
173 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), coeffs[5] << 16);
8563b1e8 174
82cf435b
LL
175 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), coeffs[6] << 16 | coeffs[7]);
176 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeffs[8] << 16);
8563b1e8
LL
177
178 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
179 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
180 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
181
66478475 182 if (INTEL_GEN(dev_priv) > 6) {
8563b1e8
LL
183 uint16_t postoff = 0;
184
1f0017f6 185 if (intel_crtc_state->limited_color_range)
8563b1e8
LL
186 postoff = (16 * (1 << 12) / 255) & 0x1fff;
187
188 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
189 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
190 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
191
192 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
193 } else {
194 uint32_t mode = CSC_MODE_YUV_TO_RGB;
195
1f0017f6 196 if (intel_crtc_state->limited_color_range)
8563b1e8
LL
197 mode |= CSC_BLACK_SCREEN_OFFSET;
198
199 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
200 }
201}
202
29dc3739
LL
203/*
204 * Set up the pipe CSC unit on CherryView.
205 */
b95c5321 206static void cherryview_load_csc_matrix(struct drm_crtc_state *state)
29dc3739 207{
b95c5321 208 struct drm_crtc *crtc = state->crtc;
29dc3739 209 struct drm_device *dev = crtc->dev;
fac5e23e 210 struct drm_i915_private *dev_priv = to_i915(dev);
29dc3739
LL
211 int pipe = to_intel_crtc(crtc)->pipe;
212 uint32_t mode;
213
214 if (state->ctm) {
215 struct drm_color_ctm *ctm =
216 (struct drm_color_ctm *) state->ctm->data;
217 uint16_t coeffs[9] = { 0, };
218 int i;
219
220 for (i = 0; i < ARRAY_SIZE(coeffs); i++) {
221 uint64_t abs_coeff =
222 ((1ULL << 63) - 1) & ctm->matrix[i];
223
224 /* Round coefficient. */
225 abs_coeff += 1 << (32 - 13);
226 /* Clamp to hardware limits. */
227 abs_coeff = clamp_val(abs_coeff, 0, CTM_COEFF_8_0 - 1);
228
229 /* Write coefficients in S3.12 format. */
230 if (ctm->matrix[i] & (1ULL << 63))
231 coeffs[i] = 1 << 15;
232 coeffs[i] |= ((abs_coeff >> 32) & 7) << 12;
233 coeffs[i] |= (abs_coeff >> 20) & 0xfff;
234 }
235
236 I915_WRITE(CGM_PIPE_CSC_COEFF01(pipe),
237 coeffs[1] << 16 | coeffs[0]);
238 I915_WRITE(CGM_PIPE_CSC_COEFF23(pipe),
239 coeffs[3] << 16 | coeffs[2]);
240 I915_WRITE(CGM_PIPE_CSC_COEFF45(pipe),
241 coeffs[5] << 16 | coeffs[4]);
242 I915_WRITE(CGM_PIPE_CSC_COEFF67(pipe),
243 coeffs[7] << 16 | coeffs[6]);
244 I915_WRITE(CGM_PIPE_CSC_COEFF8(pipe), coeffs[8]);
245 }
246
247 mode = (state->ctm ? CGM_PIPE_MODE_CSC : 0);
248 if (!crtc_state_is_legacy(state)) {
249 mode |= (state->degamma_lut ? CGM_PIPE_MODE_DEGAMMA : 0) |
250 (state->gamma_lut ? CGM_PIPE_MODE_GAMMA : 0);
251 }
252 I915_WRITE(CGM_PIPE_MODE(pipe), mode);
253}
254
b95c5321 255void intel_color_set_csc(struct drm_crtc_state *crtc_state)
8563b1e8 256{
b95c5321 257 struct drm_device *dev = crtc_state->crtc->dev;
fac5e23e 258 struct drm_i915_private *dev_priv = to_i915(dev);
82cf435b
LL
259
260 if (dev_priv->display.load_csc_matrix)
b95c5321 261 dev_priv->display.load_csc_matrix(crtc_state);
8563b1e8
LL
262}
263
82cf435b 264/* Loads the legacy palette/gamma unit for the CRTC. */
29dc3739 265static void i9xx_load_luts_internal(struct drm_crtc *crtc,
1f0017f6
ML
266 struct drm_property_blob *blob,
267 struct intel_crtc_state *crtc_state)
8563b1e8
LL
268{
269 struct drm_device *dev = crtc->dev;
fac5e23e 270 struct drm_i915_private *dev_priv = to_i915(dev);
8563b1e8
LL
271 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
272 enum pipe pipe = intel_crtc->pipe;
273 int i;
274
49cff963 275 if (HAS_GMCH_DISPLAY(dev_priv)) {
1f0017f6 276 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DSI))
8563b1e8
LL
277 assert_dsi_pll_enabled(dev_priv);
278 else
279 assert_pll_enabled(dev_priv, pipe);
280 }
281
29dc3739
LL
282 if (blob) {
283 struct drm_color_lut *lut = (struct drm_color_lut *) blob->data;
82cf435b
LL
284 for (i = 0; i < 256; i++) {
285 uint32_t word =
286 (drm_color_lut_extract(lut[i].red, 8) << 16) |
287 (drm_color_lut_extract(lut[i].green, 8) << 8) |
288 drm_color_lut_extract(lut[i].blue, 8);
289
49cff963 290 if (HAS_GMCH_DISPLAY(dev_priv))
82cf435b
LL
291 I915_WRITE(PALETTE(pipe, i), word);
292 else
293 I915_WRITE(LGC_PALETTE(pipe, i), word);
294 }
295 } else {
296 for (i = 0; i < 256; i++) {
297 uint32_t word = (i << 16) | (i << 8) | i;
298
49cff963 299 if (HAS_GMCH_DISPLAY(dev_priv))
82cf435b
LL
300 I915_WRITE(PALETTE(pipe, i), word);
301 else
302 I915_WRITE(LGC_PALETTE(pipe, i), word);
303 }
8563b1e8
LL
304 }
305}
306
b95c5321 307static void i9xx_load_luts(struct drm_crtc_state *crtc_state)
29dc3739 308{
1f0017f6
ML
309 i9xx_load_luts_internal(crtc_state->crtc, crtc_state->gamma_lut,
310 to_intel_crtc_state(crtc_state));
29dc3739
LL
311}
312
82cf435b 313/* Loads the legacy palette/gamma unit for the CRTC on Haswell. */
b95c5321 314static void haswell_load_luts(struct drm_crtc_state *crtc_state)
8563b1e8 315{
b95c5321 316 struct drm_crtc *crtc = crtc_state->crtc;
8563b1e8 317 struct drm_device *dev = crtc->dev;
fac5e23e 318 struct drm_i915_private *dev_priv = to_i915(dev);
8563b1e8 319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05dc698c 320 struct intel_crtc_state *intel_crtc_state =
b95c5321 321 to_intel_crtc_state(crtc_state);
8563b1e8
LL
322 bool reenable_ips = false;
323
324 /*
325 * Workaround : Do not read or write the pipe palette/gamma data while
326 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
327 */
772c2a51 328 if (IS_HASWELL(dev_priv) && intel_crtc_state->ips_enabled &&
05dc698c 329 (intel_crtc_state->gamma_mode == GAMMA_MODE_MODE_SPLIT)) {
8563b1e8
LL
330 hsw_disable_ips(intel_crtc);
331 reenable_ips = true;
332 }
05dc698c
LL
333
334 intel_crtc_state->gamma_mode = GAMMA_MODE_MODE_8BIT;
8563b1e8
LL
335 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
336
b95c5321 337 i9xx_load_luts(crtc_state);
8563b1e8
LL
338
339 if (reenable_ips)
340 hsw_enable_ips(intel_crtc);
341}
342
2fcb2066 343static void bdw_load_degamma_lut(struct drm_crtc_state *state)
82cf435b 344{
2fcb2066
ACO
345 struct drm_i915_private *dev_priv = to_i915(state->crtc->dev);
346 enum pipe pipe = to_intel_crtc(state->crtc)->pipe;
b7f05d4a 347 uint32_t i, lut_size = INTEL_INFO(dev_priv)->color.degamma_lut_size;
82cf435b 348
82cf435b
LL
349 I915_WRITE(PREC_PAL_INDEX(pipe),
350 PAL_PREC_SPLIT_MODE | PAL_PREC_AUTO_INCREMENT);
351
352 if (state->degamma_lut) {
353 struct drm_color_lut *lut =
354 (struct drm_color_lut *) state->degamma_lut->data;
355
356 for (i = 0; i < lut_size; i++) {
357 uint32_t word =
358 drm_color_lut_extract(lut[i].red, 10) << 20 |
359 drm_color_lut_extract(lut[i].green, 10) << 10 |
360 drm_color_lut_extract(lut[i].blue, 10);
361
362 I915_WRITE(PREC_PAL_DATA(pipe), word);
363 }
364 } else {
365 for (i = 0; i < lut_size; i++) {
366 uint32_t v = (i * ((1 << 10) - 1)) / (lut_size - 1);
367
368 I915_WRITE(PREC_PAL_DATA(pipe),
369 (v << 20) | (v << 10) | v);
370 }
371 }
2fcb2066
ACO
372}
373
374static void bdw_load_gamma_lut(struct drm_crtc_state *state, u32 offset)
375{
376 struct drm_i915_private *dev_priv = to_i915(state->crtc->dev);
377 enum pipe pipe = to_intel_crtc(state->crtc)->pipe;
378 uint32_t i, lut_size = INTEL_INFO(dev_priv)->color.gamma_lut_size;
379
380 WARN_ON(offset & ~PAL_PREC_INDEX_VALUE_MASK);
381
382 I915_WRITE(PREC_PAL_INDEX(pipe),
383 PAL_PREC_SPLIT_MODE | PAL_PREC_AUTO_INCREMENT | offset);
82cf435b
LL
384
385 if (state->gamma_lut) {
386 struct drm_color_lut *lut =
387 (struct drm_color_lut *) state->gamma_lut->data;
388
389 for (i = 0; i < lut_size; i++) {
390 uint32_t word =
391 (drm_color_lut_extract(lut[i].red, 10) << 20) |
392 (drm_color_lut_extract(lut[i].green, 10) << 10) |
393 drm_color_lut_extract(lut[i].blue, 10);
394
395 I915_WRITE(PREC_PAL_DATA(pipe), word);
396 }
397
398 /* Program the max register to clamp values > 1.0. */
399 I915_WRITE(PREC_PAL_GC_MAX(pipe, 0),
400 drm_color_lut_extract(lut[i].red, 16));
401 I915_WRITE(PREC_PAL_GC_MAX(pipe, 1),
402 drm_color_lut_extract(lut[i].green, 16));
403 I915_WRITE(PREC_PAL_GC_MAX(pipe, 2),
404 drm_color_lut_extract(lut[i].blue, 16));
405 } else {
406 for (i = 0; i < lut_size; i++) {
407 uint32_t v = (i * ((1 << 10) - 1)) / (lut_size - 1);
408
409 I915_WRITE(PREC_PAL_DATA(pipe),
410 (v << 20) | (v << 10) | v);
411 }
412
413 I915_WRITE(PREC_PAL_GC_MAX(pipe, 0), (1 << 16) - 1);
414 I915_WRITE(PREC_PAL_GC_MAX(pipe, 1), (1 << 16) - 1);
415 I915_WRITE(PREC_PAL_GC_MAX(pipe, 2), (1 << 16) - 1);
416 }
2fcb2066
ACO
417}
418
419/* Loads the palette/gamma unit for the CRTC on Broadwell+. */
420static void broadwell_load_luts(struct drm_crtc_state *state)
421{
422 struct drm_i915_private *dev_priv = to_i915(state->crtc->dev);
423 struct intel_crtc_state *intel_state = to_intel_crtc_state(state);
424 enum pipe pipe = to_intel_crtc(state->crtc)->pipe;
425
426 if (crtc_state_is_legacy(state)) {
427 haswell_load_luts(state);
428 return;
429 }
430
431 bdw_load_degamma_lut(state);
432 bdw_load_gamma_lut(state,
433 INTEL_INFO(dev_priv)->color.degamma_lut_size);
82cf435b
LL
434
435 intel_state->gamma_mode = GAMMA_MODE_MODE_SPLIT;
436 I915_WRITE(GAMMA_MODE(pipe), GAMMA_MODE_MODE_SPLIT);
437 POSTING_READ(GAMMA_MODE(pipe));
438
439 /*
440 * Reset the index, otherwise it prevents the legacy palette to be
441 * written properly.
442 */
443 I915_WRITE(PREC_PAL_INDEX(pipe), 0);
444}
445
29dc3739 446/* Loads the palette/gamma unit for the CRTC on CherryView. */
b95c5321 447static void cherryview_load_luts(struct drm_crtc_state *state)
29dc3739 448{
b95c5321 449 struct drm_crtc *crtc = state->crtc;
b7f05d4a 450 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
29dc3739
LL
451 enum pipe pipe = to_intel_crtc(crtc)->pipe;
452 struct drm_color_lut *lut;
453 uint32_t i, lut_size;
454 uint32_t word0, word1;
455
456 if (crtc_state_is_legacy(state)) {
457 /* Turn off degamma/gamma on CGM block. */
458 I915_WRITE(CGM_PIPE_MODE(pipe),
459 (state->ctm ? CGM_PIPE_MODE_CSC : 0));
1f0017f6
ML
460 i9xx_load_luts_internal(crtc, state->gamma_lut,
461 to_intel_crtc_state(state));
29dc3739
LL
462 return;
463 }
464
465 if (state->degamma_lut) {
466 lut = (struct drm_color_lut *) state->degamma_lut->data;
b7f05d4a 467 lut_size = INTEL_INFO(dev_priv)->color.degamma_lut_size;
29dc3739
LL
468 for (i = 0; i < lut_size; i++) {
469 /* Write LUT in U0.14 format. */
470 word0 =
471 (drm_color_lut_extract(lut[i].green, 14) << 16) |
472 drm_color_lut_extract(lut[i].blue, 14);
473 word1 = drm_color_lut_extract(lut[i].red, 14);
474
475 I915_WRITE(CGM_PIPE_DEGAMMA(pipe, i, 0), word0);
476 I915_WRITE(CGM_PIPE_DEGAMMA(pipe, i, 1), word1);
477 }
478 }
479
480 if (state->gamma_lut) {
481 lut = (struct drm_color_lut *) state->gamma_lut->data;
b7f05d4a 482 lut_size = INTEL_INFO(dev_priv)->color.gamma_lut_size;
29dc3739
LL
483 for (i = 0; i < lut_size; i++) {
484 /* Write LUT in U0.10 format. */
485 word0 =
486 (drm_color_lut_extract(lut[i].green, 10) << 16) |
487 drm_color_lut_extract(lut[i].blue, 10);
488 word1 = drm_color_lut_extract(lut[i].red, 10);
489
490 I915_WRITE(CGM_PIPE_GAMMA(pipe, i, 0), word0);
491 I915_WRITE(CGM_PIPE_GAMMA(pipe, i, 1), word1);
492 }
493 }
494
495 I915_WRITE(CGM_PIPE_MODE(pipe),
496 (state->ctm ? CGM_PIPE_MODE_CSC : 0) |
497 (state->degamma_lut ? CGM_PIPE_MODE_DEGAMMA : 0) |
498 (state->gamma_lut ? CGM_PIPE_MODE_GAMMA : 0));
499
500 /*
501 * Also program a linear LUT in the legacy block (behind the
502 * CGM block).
503 */
1f0017f6 504 i9xx_load_luts_internal(crtc, NULL, to_intel_crtc_state(state));
29dc3739
LL
505}
506
b95c5321 507void intel_color_load_luts(struct drm_crtc_state *crtc_state)
8563b1e8 508{
b95c5321 509 struct drm_device *dev = crtc_state->crtc->dev;
fac5e23e 510 struct drm_i915_private *dev_priv = to_i915(dev);
8563b1e8 511
b95c5321 512 dev_priv->display.load_luts(crtc_state);
8563b1e8
LL
513}
514
82cf435b
LL
515int intel_color_check(struct drm_crtc *crtc,
516 struct drm_crtc_state *crtc_state)
8563b1e8 517{
b7f05d4a 518 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
82cf435b 519 size_t gamma_length, degamma_length;
8563b1e8 520
b7f05d4a 521 degamma_length = INTEL_INFO(dev_priv)->color.degamma_lut_size *
82cf435b 522 sizeof(struct drm_color_lut);
b7f05d4a 523 gamma_length = INTEL_INFO(dev_priv)->color.gamma_lut_size *
82cf435b 524 sizeof(struct drm_color_lut);
8563b1e8 525
82cf435b
LL
526 /*
527 * We allow both degamma & gamma luts at the right size or
528 * NULL.
529 */
530 if ((!crtc_state->degamma_lut ||
531 crtc_state->degamma_lut->length == degamma_length) &&
532 (!crtc_state->gamma_lut ||
533 crtc_state->gamma_lut->length == gamma_length))
534 return 0;
535
536 /*
537 * We also allow no degamma lut and a gamma lut at the legacy
538 * size (256 entries).
539 */
540 if (!crtc_state->degamma_lut &&
541 crtc_state->gamma_lut &&
542 crtc_state->gamma_lut->length == LEGACY_LUT_LENGTH)
543 return 0;
544
545 return -EINVAL;
8563b1e8
LL
546}
547
548void intel_color_init(struct drm_crtc *crtc)
549{
b7f05d4a 550 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
8563b1e8
LL
551
552 drm_mode_crtc_set_gamma_size(crtc, 256);
8563b1e8 553
920a14b2 554 if (IS_CHERRYVIEW(dev_priv)) {
29dc3739
LL
555 dev_priv->display.load_csc_matrix = cherryview_load_csc_matrix;
556 dev_priv->display.load_luts = cherryview_load_luts;
772c2a51 557 } else if (IS_HASWELL(dev_priv)) {
82cf435b 558 dev_priv->display.load_csc_matrix = i9xx_load_csc_matrix;
8563b1e8 559 dev_priv->display.load_luts = haswell_load_luts;
b976dc53
RV
560 } else if (IS_BROADWELL(dev_priv) || IS_GEN9_BC(dev_priv) ||
561 IS_BROXTON(dev_priv)) {
82cf435b
LL
562 dev_priv->display.load_csc_matrix = i9xx_load_csc_matrix;
563 dev_priv->display.load_luts = broadwell_load_luts;
8563b1e8
LL
564 } else {
565 dev_priv->display.load_luts = i9xx_load_luts;
566 }
82cf435b
LL
567
568 /* Enable color management support when we have degamma & gamma LUTs. */
b7f05d4a
TU
569 if (INTEL_INFO(dev_priv)->color.degamma_lut_size != 0 &&
570 INTEL_INFO(dev_priv)->color.gamma_lut_size != 0)
f8ed34ac 571 drm_crtc_enable_color_mgmt(crtc,
b7f05d4a
TU
572 INTEL_INFO(dev_priv)->color.degamma_lut_size,
573 true,
574 INTEL_INFO(dev_priv)->color.gamma_lut_size);
8563b1e8 575}