Skip to content

Commit 36c119c

Browse files
vsyrjalajnikula
authored andcommitted
drm/i915: Disable LTTPR detection on GLK once again
The glk display version change is causing us to again attempt LTTPR detection on glk. We must not do tha since glk doesn't have a long enough AUX timeout. Restore the correct logic to skip the detection. Cc: Matt Roper <[email protected]> Fixes: 2b5a456 ("drm/i915/display: Simplify GLK display version tests") Reviewed-by: Jani Nikula <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Signed-off-by: Jani Nikula <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] (cherry picked from commit 543d592) Signed-off-by: Jani Nikula <[email protected]>
1 parent bc40cf6 commit 36c119c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static bool intel_dp_read_lttpr_common_caps(struct intel_dp *intel_dp)
9696
* Detecting LTTPRs must be avoided on platforms with an AUX timeout
9797
* period < 3.2ms. (see DP Standard v2.0, 2.11.2, 3.6.6.1).
9898
*/
99-
if (DISPLAY_VER(i915) < 10)
99+
if (DISPLAY_VER(i915) < 10 || IS_GEMINILAKE(i915))
100100
return false;
101101

102102
if (drm_dp_read_lttpr_common_caps(&intel_dp->aux,

0 commit comments

Comments
 (0)