aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Barberiz <[email protected]>2019-01-16 17:21:31 -0500
committerAlex Deucher <[email protected]>2019-02-05 21:16:22 -0500
commit9ca089925f0c318307881eadc0535e7c7a7b5e2d (patch)
treea32ae72da07717bb2e7f17d9ec02b4bb29fd3958
parent1b52f2d5679db90166ea71382211f3c7319aab51 (diff)
drm/amd/display: Use udelay when waiting between aux retries
[Why] "IRQ_HPD Pulse Length Test" DP compliance test fails. Test complains that certain DPCD registers are not read within 100 ms. [How] msleep is inaccurate for small values. Used udelay instead for accuracy. Signed-off-by: John Barberiz <[email protected]> Reviewed-by: Wenjing Liu <[email protected]> Acked-by: Bhawanpreet Lakha <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/dc/dce/dce_aux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce/dce_aux.c b/drivers/gpu/drm/amd/display/dc/dce/dce_aux.c
index adbb22224e1a..4febf4ef7240 100644
--- a/drivers/gpu/drm/amd/display/dc/dce/dce_aux.c
+++ b/drivers/gpu/drm/amd/display/dc/dce/dce_aux.c
@@ -516,7 +516,7 @@ bool dce_aux_transfer_with_retries(struct ddc_service *ddc,
}
}
- msleep(1);
+ udelay(1000);
}
return false;
}