diff options
| author | Xiaoming Zhou <zhoux@codeaurora.org> | 2013-08-30 15:24:24 -0400 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:20:31 -0700 |
| commit | 09be2be6f5a1dd477358192fdb92fee605a342ca (patch) | |
| tree | 2de9c63a3811c0620710c2e99ea27f7ed2ab599c | |
| parent | e8ee9d5f499b1a96784da44d469926f1196434b7 (diff) | |
msm: mdss: increase the MDP dma stop poll time out on 8x10
The original dma stop poll time out was set to 16ms. The time
out value was on the boundary of per frame time for 60fps panel.
This will cause unintended time out for large panels: e.g. 720p.
Change-Id: I884aadbbfb0b8211ca408249f3dc33b50620cd86
Signed-off-by: Xiaoming Zhou <zhoux@codeaurora.org>
| -rw-r--r-- | drivers/video/fbdev/msm/mdp3_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdp3_dma.c b/drivers/video/fbdev/msm/mdp3_dma.c index f4421f2e0932..31b9deb5d5ae 100644 --- a/drivers/video/fbdev/msm/mdp3_dma.c +++ b/drivers/video/fbdev/msm/mdp3_dma.c @@ -18,7 +18,7 @@ #include "mdp3_hwio.h" #define DMA_STOP_POLL_SLEEP_US 1000 -#define DMA_STOP_POLL_TIMEOUT_US 16000 +#define DMA_STOP_POLL_TIMEOUT_US 32000 #define DMA_HISTO_RESET_TIMEOUT_MS 40 #define DMA_LUT_CONFIG_MASK 0xfffffbe8 #define DMA_CCS_CONFIG_MASK 0xfffffc17 |
