Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b34f1f09 authored by Keith Packard's avatar Keith Packard
Browse files

drm/i915: Initiate DP link training only on the lanes we'll be using



Limit the link training setting command to the lanes needed for the
current mode. It seems vaguely possible that a monitor will try to
train the other lanes and fail in some way, so this seems like the
safer plan.

Signed-off-by: default avatarKeith Packard <keithp@keithp.com>
Reviewed-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent f2e8b18a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1564,8 +1564,9 @@ intel_dp_set_link_train(struct intel_dp *intel_dp,

	ret = intel_dp_aux_native_write(intel_dp,
					DP_TRAINING_LANE0_SET,
					intel_dp->train_set, 4);
	if (ret != 4)
					intel_dp->train_set,
					intel_dp->lane_count);
	if (ret != intel_dp->lane_count)
		return false;

	return true;