Commit 2587c63a authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: Fix CHV CGM CSC coefficient sign handling

The CHV CGM CSC coefficients are in s4.12 two's complement
format. Fix the CTM->CGM conversion to handle that correctly
instead of pretending that the hw coefficients are also
in some sign-magnitude format.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230413164916.4221-4-ville.syrjala@linux.intel.comReviewed-by: default avatarUma Shankar <uma.shankar@intel.com>
parent d9ce4e43
...@@ -568,29 +568,41 @@ static void icl_load_csc_matrix(const struct intel_crtc_state *crtc_state) ...@@ -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); icl_update_output_csc(crtc, &crtc_state->output_csc);
} }
static void chv_cgm_csc_convert_ctm(const struct intel_crtc_state *crtc_state, static u16 ctm_to_twos_complement(u64 coeff, int int_bits, int frac_bits)
struct intel_csc_matrix *csc)
{ {
const struct drm_color_ctm *ctm = crtc_state->hw.ctm->data; s64 c = CTM_COEFF_ABS(coeff);
int i;
for (i = 0; i < 9; i++) { /* leave an extra bit for rounding */
u64 abs_coeff = ((1ULL << 63) - 1) & ctm->matrix[i]; c >>= 32 - frac_bits - 1;
/* Round coefficient. */ /* round and drop the extra bit */
abs_coeff += 1 << (32 - 13); c = (c + 1) >> 1;
/* Clamp to hardware limits. */
abs_coeff = clamp_val(abs_coeff, 0, CTM_COEFF_8_0 - 1);
csc->coeff[i] = 0; if (CTM_COEFF_NEGATIVE(coeff))
c = -c;
/* Write coefficients in S3.12 format. */ c = clamp(c, -(s64)BIT(int_bits + frac_bits - 1),
if (ctm->matrix[i] & (1ULL << 63)) (s64)(BIT(int_bits + frac_bits - 1) - 1));
csc->coeff[i] |= 1 << 15;
csc->coeff[i] |= ((abs_coeff >> 32) & 7) << 12; return c & (BIT(int_bits + frac_bits) - 1);
csc->coeff[i] |= (abs_coeff >> 20) & 0xfff; }
}
/*
* 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, static void chv_load_cgm_csc(struct intel_crtc *crtc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment