Skip to content

Commit ce4941c

Browse files
ckborahjnikula
authored andcommitted
drm/i915/mtl: Support HBR3 rate with C10 phy and eDP in MTL
eDP specification supports HBR3 link rate since v1.4a. Moreover, C10 phy can support HBR3 link rate for both DP and eDP. Therefore, do not clamp the supported rates for eDP at 6.75Gbps. Cc: <[email protected]> BSpec: 70073 74224 Signed-off-by: Chaitanya Kumar Borah <[email protected]> Reviewed-by: Mika Kahola <[email protected]> Signed-off-by: Mika Kahola <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] (cherry picked from commit a343165) Signed-off-by: Jani Nikula <[email protected]>
1 parent 7d7a328 commit ce4941c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_dp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ static int mtl_max_source_rate(struct intel_dp *intel_dp)
430430
enum phy phy = intel_port_to_phy(i915, dig_port->base.port);
431431

432432
if (intel_is_c10phy(i915, phy))
433-
return intel_dp_is_edp(intel_dp) ? 675000 : 810000;
433+
return 810000;
434434

435435
return 2000000;
436436
}

0 commit comments

Comments
 (0)