Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit aeefacb

Browse files
ideakgregkh
authored andcommittedOct 22, 2024
drm/i915/dp_mst: Don't require DSC hblank quirk for a non-DSC compatible mode
commit 2f54e71 upstream. If an MST branch device doesn't support DSC for a given mode, but the MST link has enough BW for the mode, assume that the branch device does support the mode using an uncompressed stream. Fixes: 55eaef1 ("drm/i915/dp_mst: Handle the Synaptics HBlank expansion quirk") Cc: stable@vger.kernel.org # v6.8+ Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com> Signed-off-by: Imre Deak <imre.deak@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20241009110135.1216498-2-imre.deak@intel.com (cherry picked from commit 4e75c3e) Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 6fc24ab commit aeefacb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎drivers/gpu/drm/i915/display/intel_dp_mst.c

+3
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,9 @@ hblank_expansion_quirk_needs_dsc(const struct intel_connector *connector,
465465
if (mode_hblank_period_ns(adjusted_mode) > hblank_limit)
466466
return false;
467467

468+
if (!intel_dp_mst_dsc_get_slice_count(connector, crtc_state))
469+
return false;
470+
468471
return true;
469472
}
470473

0 commit comments

Comments
 (0)
This repository has been archived.