Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/i915/dp: Fail state computation for invalid max throughput BPP value

There is no reason to accept a minimum/maximum link BPP value above the
maximum throughput BPP value, fail the state computation in this case.

Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patch.msgid.link/20251215192357.172201-15-imre.deak@intel.com

Imre Deak 5c2d7994 2018e291

-2
-2
drivers/gpu/drm/i915/display/intel_dp.c
··· 2630 2630 max_link_bpp_x16 = min(max_link_bpp_x16, fxp_q4_from_int(dsc_max_bpp)); 2631 2631 2632 2632 throughput_max_bpp_x16 = dsc_throughput_quirk_max_bpp_x16(connector, crtc_state); 2633 - throughput_max_bpp_x16 = clamp(throughput_max_bpp_x16, 2634 - limits->link.min_bpp_x16, max_link_bpp_x16); 2635 2633 if (throughput_max_bpp_x16 < max_link_bpp_x16) { 2636 2634 max_link_bpp_x16 = throughput_max_bpp_x16; 2637 2635