We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3c3e7 commit 2689390Copy full SHA for 2689390
drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -1784,7 +1784,9 @@ static int intel_hdmi_source_max_tmds_clock(struct intel_encoder *encoder)
1784
struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1785
int max_tmds_clock, vbt_max_tmds_clock;
1786
1787
- if (DISPLAY_VER(dev_priv) >= 10)
+ if (DISPLAY_VER(dev_priv) >= 13 || IS_ALDERLAKE_S(dev_priv))
1788
+ max_tmds_clock = 600000;
1789
+ else if (DISPLAY_VER(dev_priv) >= 10)
1790
max_tmds_clock = 594000;
1791
else if (DISPLAY_VER(dev_priv) >= 8 || IS_HASWELL(dev_priv))
1792
max_tmds_clock = 300000;
0 commit comments