drm/rockchip: dw-hdmi: Fix yuv422 display err

When switching from another color to yuv422, neither
encoder input color nor encoder output color is rgb.
CSC coeff will be incorrectly selected as
csc_coeff_full_to_limited, which causes the display
turn to green. To solve this problem, choose
csc_coeff_full_to_limited only if the input and output
colors are both RGB.

Change-Id: If09f53fb2a5aa20359efb548b1a8b7da2c79310d
Signed-off-by: Algea Cao <algea.cao@rock-chips.com>
This commit is contained in:
Algea Cao 2019-07-09 08:36:13 +08:00 committed by Jianhong Chen
parent b5016cf2d5
commit 3f6d16ab3d
1 changed files with 1 additions and 1 deletions

View File

@ -1170,7 +1170,7 @@ static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
enc_in_rgb = hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format);
if (is_color_space_conversion(hdmi)) {
if (enc_out_rgb == enc_in_rgb) {
if (enc_out_rgb && enc_in_rgb) {
csc_coeff = &csc_coeff_full_to_limited;
csc_scale = 0;
} else if (enc_out_rgb) {