summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorYoungJun Cho <yj44.cho@samsung.com>2014-04-11 17:34:30 +0900
committerChanho Park <chanho61.park@samsung.com>2014-11-18 11:59:51 +0900
commit6e67382cba73d350e734121c3e1475077797ef59 (patch)
tree211568619bc2110e422d1e0ab6d01fd3d3ecadf8 /drivers
parent72ff0b4233da1887b44e7992a33a3abaf06ed033 (diff)
downloadlinux-3.10-6e67382cba73d350e734121c3e1475077797ef59.tar.gz
linux-3.10-6e67382cba73d350e734121c3e1475077797ef59.tar.bz2
linux-3.10-6e67382cba73d350e734121c3e1475077797ef59.zip
drm/exynos: dsi: move the EoT packets configuration point
This configuration could be used in MIPI DSI command mode also. Change-Id: I7f0f088296cd56d8b68dc9ae6ff910dd63e84d89 Signed-off-by: YoungJun Cho <yj44.cho@samsung.com> Acked-by: Inki Dae <inki.dae@samsung.com> Acked-by: Kyungmin Park <kyungmin.park@samsung.com> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_dsi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dsi.c b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
index 2d105ce1ee6..bfc6f233952 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
@@ -472,8 +472,6 @@ static int exynos_dsi_init_link(struct exynos_dsi *dsi)
if (!(dsi->mode_flags & MIPI_DSI_MODE_VSYNC_FLUSH))
reg |= DSIM_MFLUSH_VS;
- if (!(dsi->mode_flags & MIPI_DSI_MODE_EOT_PACKET))
- reg |= DSIM_EOT_DISABLE;
if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
reg |= DSIM_SYNC_INFORM;
if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
@@ -490,6 +488,9 @@ static int exynos_dsi_init_link(struct exynos_dsi *dsi)
reg |= DSIM_HSA_MODE;
}
+ if (!(dsi->mode_flags & MIPI_DSI_MODE_EOT_PACKET))
+ reg |= DSIM_EOT_DISABLE;
+
switch (dsi->format) {
case MIPI_DSI_FMT_RGB888:
reg |= DSIM_MAIN_PIX_FORMAT_RGB888;