OSDN Git Service

drm/amd/display: Increase DP blank timeout from 30 ms to 50 ms
authorKen Chalmers <ken.chalmers@amd.com>
Fri, 15 Feb 2019 15:31:52 +0000 (09:31 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 19 Mar 2019 20:36:49 +0000 (15:36 -0500)
[Why]
At 24 Hz, a frame is 41.7 ms, so a 30 ms wait can (and does often)
timeout.

[How]
Bump timeout from 30 ms to 50 ms.

Signed-off-by: Ken Chalmers <ken.chalmers@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_stream_encoder.c

index b082541..d370152 100644 (file)
@@ -797,10 +797,10 @@ void enc1_stream_encoder_dp_blank(
         */
        REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_DIS_DEFER, 2);
        /* Larger delay to wait until VBLANK - use max retry of
-        * 10us*3000=30ms. This covers 16.6ms of typical 60 Hz mode +
+        * 10us*5000=50ms. This covers 41.7ms of minimum 24 Hz mode +
         * a little more because we may not trust delay accuracy.
         */
-       max_retries = DP_BLANK_MAX_RETRY * 150;
+       max_retries = DP_BLANK_MAX_RETRY * 250;
 
        /* disable DP stream */
        REG_UPDATE(DP_VID_STREAM_CNTL, DP_VID_STREAM_ENABLE, 0);