aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/i915/intel_hdmi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c
index 6efc3cb8c471..52f0b2d5fad2 100644
--- a/drivers/gpu/drm/i915/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/intel_hdmi.c
@@ -1327,6 +1327,11 @@ static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
1327 return false; 1327 return false;
1328 } 1328 }
1329 1329
1330 /* Display Wa #1139 */
1331 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1) &&
1332 crtc_state->base.adjusted_mode.htotal > 5460)
1333 return false;
1334
1330 return true; 1335 return true;
1331} 1336}
1332 1337