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: Restrict max source rate for WCL to HBR3

WCL supports a maximum of HBR3 8.1 Gbps for both eDP/DP.
Limit the max source rate to HBR3 for WCL.

v2: Move the check inside mtl_max_source_rate(). (Suraj)

Bspec:74286
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Link: https://patch.msgid.link/20251122053651.759389-1-ankit.k.nautiyal@intel.com

+2 -1
+2 -1
drivers/gpu/drm/i915/display/intel_dp.c
··· 520 520 struct intel_display *display = to_intel_display(intel_dp); 521 521 struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base; 522 522 523 - if (intel_encoder_is_c10phy(encoder)) 523 + if (intel_encoder_is_c10phy(encoder) || 524 + display->platform.pantherlake_wildcatlake) 524 525 return 810000; 525 526 526 527 if (DISPLAY_VERx100(display) == 1401)