Commit 2a764b7c authored by Vandita Kulkarni's avatar Vandita Kulkarni Committed by Uma Shankar

drm/i915/display: Fix the dsc check while selecting min_cdclk

The right parameter that selects second dsc engine is dsc_split.
Hence use dsc_split instead of slice_count while selecting the
cdclk in order to accommodate 1ppc limitaion of vdsc.

Fixes: fe01883f ("drm/i915: Get proper min cdclk if vDSC enabled")
Suggested-by: default avatarJani Nikula <jani.nikula@intel.com>
Signed-off-by: default avatarVandita Kulkarni <vandita.kulkarni@intel.com>
Reviewed-by: default avatarJani Nikula <jani.nikula@intel.com>
Signed-off-by: default avatarUma Shankar <uma.shankar@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210915054338.29869-1-vandita.kulkarni@intel.com
parent c6b40ee3
...@@ -2140,13 +2140,11 @@ int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state) ...@@ -2140,13 +2140,11 @@ int intel_crtc_compute_min_cdclk(const struct intel_crtc_state *crtc_state)
min_cdclk = max(intel_planes_min_cdclk(crtc_state), min_cdclk); min_cdclk = max(intel_planes_min_cdclk(crtc_state), min_cdclk);
/* /*
* VDSC engine can process only 1 pixel per Cd clock. * When we decide to use only one VDSC engine, since
* In case VDSC is used and max slice count == 1, * each VDSC operates with 1 ppc throughput, pixel clock
* max supported pixel clock should be 100% of CD clock. * cannot be higher than the VDSC clock (cdclk)
* Then do min_cdclk and pixel clock comparison to get cdclk.
*/ */
if (crtc_state->dsc.compression_enable && if (crtc_state->dsc.compression_enable && !crtc_state->dsc.dsc_split)
crtc_state->dsc.slice_count == 1)
min_cdclk = max(min_cdclk, (int)crtc_state->pixel_rate); min_cdclk = max(min_cdclk, (int)crtc_state->pixel_rate);
/* /*
......
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