Commit 0bf25146 authored by Tomi Valkeinen's avatar Tomi Valkeinen Committed by Andrzej Hajda

drm/bridge: tc358767: cleanup LT result check

The driver has a loop after ending link training, where it reads the
DPCD link status and prints an error if that status is not ok.

The loop is unnecessary, as far as I can understand from DP specs, so
let's remove it. We can also print the more specific errors to help
debugging.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: default avatarAndrzej Hajda <a.hajda@samsung.com>
Signed-off-by: default avatarAndrzej Hajda <a.hajda@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190528082747.3631-16-tomi.valkeinen@ti.com
parent 0776a269
...@@ -980,34 +980,42 @@ static int tc_main_link_enable(struct tc_data *tc) ...@@ -980,34 +980,42 @@ static int tc_main_link_enable(struct tc_data *tc)
if (ret < 0) if (ret < 0)
goto err_dpcd_write; goto err_dpcd_write;
/* Wait */ /* Check link status */
timeout = 100; ret = drm_dp_dpcd_read_link_status(aux, tmp);
do { if (ret < 0)
udelay(1); goto err_dpcd_read;
/* Read DPCD 0x202-0x207 */
ret = drm_dp_dpcd_read_link_status(aux, tmp + 2);
if (ret < 0)
goto err_dpcd_read;
} while ((--timeout) &&
!(drm_dp_channel_eq_ok(tmp + 2, tc->link.base.num_lanes)));
if (timeout == 0) { ret = 0;
/* Read DPCD 0x200-0x201 */
ret = drm_dp_dpcd_read(aux, DP_SINK_COUNT, tmp, 2); value = tmp[0] & DP_CHANNEL_EQ_BITS;
if (ret < 0)
goto err_dpcd_read; if (value != DP_CHANNEL_EQ_BITS) {
dev_err(dev, "channel(s) EQ not ok\n"); dev_err(tc->dev, "Lane 0 failed: %x\n", value);
dev_info(dev, "0x0200 SINK_COUNT: 0x%02x\n", tmp[0]); ret = -ENODEV;
dev_info(dev, "0x0201 DEVICE_SERVICE_IRQ_VECTOR: 0x%02x\n", }
tmp[1]);
dev_info(dev, "0x0202 LANE0_1_STATUS: 0x%02x\n", tmp[2]); if (tc->link.base.num_lanes == 2) {
dev_info(dev, "0x0204 LANE_ALIGN_STATUS_UPDATED: 0x%02x\n", value = (tmp[0] >> 4) & DP_CHANNEL_EQ_BITS;
tmp[4]);
dev_info(dev, "0x0205 SINK_STATUS: 0x%02x\n", tmp[5]); if (value != DP_CHANNEL_EQ_BITS) {
dev_info(dev, "0x0206 ADJUST_REQUEST_LANE0_1: 0x%02x\n", dev_err(tc->dev, "Lane 1 failed: %x\n", value);
tmp[6]); ret = -ENODEV;
}
return -EAGAIN;
if (!(tmp[2] & DP_INTERLANE_ALIGN_DONE)) {
dev_err(tc->dev, "Interlane align failed\n");
ret = -ENODEV;
}
}
if (ret) {
dev_err(dev, "0x0202 LANE0_1_STATUS: 0x%02x\n", tmp[0]);
dev_err(dev, "0x0203 LANE2_3_STATUS 0x%02x\n", tmp[1]);
dev_err(dev, "0x0204 LANE_ALIGN_STATUS_UPDATED: 0x%02x\n", tmp[2]);
dev_err(dev, "0x0205 SINK_STATUS: 0x%02x\n", tmp[3]);
dev_err(dev, "0x0206 ADJUST_REQUEST_LANE0_1: 0x%02x\n", tmp[4]);
dev_err(dev, "0x0207 ADJUST_REQUEST_LANE2_3: 0x%02x\n", tmp[5]);
goto err;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment