drivers/drm/i915: Honor limits->max_bpp while computing DSC max input bpp
authorAnkit Nautiyal <ankit.k.nautiyal@intel.com>
Thu, 24 Aug 2023 12:51:21 +0000 (18:21 +0530)
committerJani Nikula <jani.nikula@intel.com>
Wed, 30 Aug 2023 11:50:17 +0000 (14:50 +0300)
Edid specific BPC constraints are stored in limits->max_bpp. Honor these
limits while computing the input bpp for DSC.

v2: Use int instead of u8 for computations. (Jani)
Add closes tag. (Ankit)

Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/9161
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230824125121.840298-3-ankit.k.nautiyal@intel.com
drivers/gpu/drm/i915/display/intel_dp.c

index 05694e0b61430fb4d905dba2e1edb86ba0308474..9d303caf969e01220f124e60fd5749805b19abba 100644 (file)
@@ -2061,9 +2061,10 @@ static int intel_edp_dsc_compute_pipe_bpp(struct intel_dp *intel_dp,
        if (forced_bpp) {
                pipe_bpp = forced_bpp;
        } else {
+               int max_bpc = min(limits->max_bpp / 3, (int)conn_state->max_requested_bpc);
+
                /* For eDP use max bpp that can be supported with DSC. */
-               pipe_bpp = intel_dp_dsc_compute_max_bpp(intel_dp,
-                                                       conn_state->max_requested_bpc);
+               pipe_bpp = intel_dp_dsc_compute_max_bpp(intel_dp, max_bpc);
                if (!is_dsc_pipe_bpp_sufficient(i915, conn_state, limits, pipe_bpp)) {
                        drm_dbg_kms(&i915->drm,
                                    "Computed BPC is not in DSC BPC limits\n");