Skip to content

Commit 2689390

Browse files
committed
drm/i915: Bump max TMDS bitrate to 6 Gbps on ADL-S/ADL-P/DG2+
Bspec lists the mas TMDS bitrate as 6 Gbps on ADL-S/ADL-P/DG2. Bump our limit to match. v2: Bump for ADL-S as well (Jani) Cc: Jani Nikula <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: Jani Nikula <[email protected]>
1 parent bb3c3e7 commit 2689390

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1784,7 +1784,9 @@ static int intel_hdmi_source_max_tmds_clock(struct intel_encoder *encoder)
17841784
struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
17851785
int max_tmds_clock, vbt_max_tmds_clock;
17861786

1787-
if (DISPLAY_VER(dev_priv) >= 10)
1787+
if (DISPLAY_VER(dev_priv) >= 13 || IS_ALDERLAKE_S(dev_priv))
1788+
max_tmds_clock = 600000;
1789+
else if (DISPLAY_VER(dev_priv) >= 10)
17881790
max_tmds_clock = 594000;
17891791
else if (DISPLAY_VER(dev_priv) >= 8 || IS_HASWELL(dev_priv))
17901792
max_tmds_clock = 300000;

0 commit comments

Comments
 (0)