summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSumit Semwal <sumit.semwal@ti.com>2009-11-11 03:49:12 -0600
committerSantosh Shilimkar <santosh.shilimkar@ti.com>2009-11-11 12:21:17 +0100
commit7fedee4ce78bc41586d532e2ee1ebcd090ae8e46 (patch)
treefd40eb17879b1cc8e9332ee2d5ebcbe6ea1f5f02 /drivers
parent5349ea366b70bd4f6494832addf29861deadf337 (diff)
OMAP4: DSS: Setup DSI taal panel as primary display; corrected fifo threshold values for video pipelines. Signed-off-by: Sumit Semwal <sumit.semwal@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/omap2/dss/dsi.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c
index 20fb284f8edd..71d043ae5445 100644
--- a/drivers/video/omap2/dss/dsi.c
+++ b/drivers/video/omap2/dss/dsi.c
@@ -3951,12 +3951,14 @@ void dsi_get_overlay_fifo_thresholds(enum omap_plane plane,
#ifndef CONFIG_ARCH_OMAP4
*burst_size = OMAP_DSS_BURST_16x32;
burst_size_bytes = 16 * 32 / 8;
+ *fifo_high = fifo_size - burst_size_bytes;
+ *fifo_low = 0;
#else
*burst_size = OMAP_DSS_BURST_4x32; /* OMAP4: same as 2x128*/
burst_size_bytes = 2 * 128 / 8;
+ *fifo_high = 1020; /* check SV comment*/
+ *fifo_low = 956;
#endif
- *fifo_high = fifo_size - burst_size_bytes;
- *fifo_low = 0;
}
int dsi_init_display(struct omap_dss_device *dssdev)