drm/i915: Fix intel_dp_mst_compute_link_config
authorStanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Tue, 1 Nov 2022 09:42:18 +0000 (11:42 +0200)
committerStanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Tue, 13 Dec 2022 16:17:52 +0000 (18:17 +0200)
commit9096e36d5ba6a7662b75eb02038dc4cd46ba47b4
tree9179f6ef613664d3ce683e6c267f57de74bfbab1
parent1482ec00be4a3634aeffbcc799791a723df69339
drm/i915: Fix intel_dp_mst_compute_link_config

We currently always exit that bpp loop because
drm_dp_atomic_find_vcpi_slots doesn't care if we actually
can fit those or not.
I think that wasn't the initial intention here, especially when
we keep trying with lower bpps, we are supposed to keep trying
until we actually find some _working_ configuration, which isn't the
case here.
So added that drm_dp_mst_check here, so that we can make sure
that try all the bpps before we fail.

Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221101094222.22091-3-stanislav.lisovskiy@intel.com
drivers/gpu/drm/i915/display/intel_dp_mst.c