X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=drivers%2Fgpu%2Fdrm%2Fi915%2Fdisplay%2Fintel_color.c;h=7c14b2aba9e5849d42a664d483354a683214a27b;hb=2587c63aaaf47f6f4ea9d90047910534a3ecf432;hp=0f2c3c22cf59a685ab5ea19ae8f5a8a99c8a370d;hpb=d9ce4e430790ba4f45e5febd7b4bd87b0f23563e;p=platform%2Fkernel%2Flinux-starfive.git diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c index 0f2c3c2..7c14b2a 100644 --- a/drivers/gpu/drm/i915/display/intel_color.c +++ b/drivers/gpu/drm/i915/display/intel_color.c @@ -568,29 +568,41 @@ static void icl_load_csc_matrix(const struct intel_crtc_state *crtc_state) icl_update_output_csc(crtc, &crtc_state->output_csc); } -static void chv_cgm_csc_convert_ctm(const struct intel_crtc_state *crtc_state, - struct intel_csc_matrix *csc) +static u16 ctm_to_twos_complement(u64 coeff, int int_bits, int frac_bits) { - const struct drm_color_ctm *ctm = crtc_state->hw.ctm->data; - int i; + s64 c = CTM_COEFF_ABS(coeff); - for (i = 0; i < 9; i++) { - u64 abs_coeff = ((1ULL << 63) - 1) & ctm->matrix[i]; + /* leave an extra bit for rounding */ + c >>= 32 - frac_bits - 1; - /* Round coefficient. */ - abs_coeff += 1 << (32 - 13); - /* Clamp to hardware limits. */ - abs_coeff = clamp_val(abs_coeff, 0, CTM_COEFF_8_0 - 1); + /* round and drop the extra bit */ + c = (c + 1) >> 1; - csc->coeff[i] = 0; + if (CTM_COEFF_NEGATIVE(coeff)) + c = -c; - /* Write coefficients in S3.12 format. */ - if (ctm->matrix[i] & (1ULL << 63)) - csc->coeff[i] |= 1 << 15; + c = clamp(c, -(s64)BIT(int_bits + frac_bits - 1), + (s64)(BIT(int_bits + frac_bits - 1) - 1)); - csc->coeff[i] |= ((abs_coeff >> 32) & 7) << 12; - csc->coeff[i] |= (abs_coeff >> 20) & 0xfff; - } + return c & (BIT(int_bits + frac_bits) - 1); +} + +/* + * CHV Color Gamut Mapping (CGM) CSC + * |r| | c0 c1 c2 | |r| + * |g| = | c3 c4 c5 | x |g| + * |b| | c6 c7 c8 | |b| + * + * Coefficients are two's complement s4.12. + */ +static void chv_cgm_csc_convert_ctm(const struct intel_crtc_state *crtc_state, + struct intel_csc_matrix *csc) +{ + const struct drm_color_ctm *ctm = crtc_state->hw.ctm->data; + int i; + + for (i = 0; i < 9; i++) + csc->coeff[i] = ctm_to_twos_complement(ctm->matrix[i], 4, 12); } static void chv_load_cgm_csc(struct intel_crtc *crtc,