From b5a5f3744bd52a251ba7d7c60d5f34e373ac2081 Mon Sep 17 00:00:00 2001 From: Kuninori Morimoto Date: Tue, 8 Nov 2011 20:34:33 -0800 Subject: [PATCH] --- yaml --- r: 284829 b: refs/heads/master c: d07a9d2a5e82ed677971b2e9f3e4cbd49b9ec34e h: refs/heads/master i: 284827: 25f67116a4396e4a3b9eab1e7ab271e324b44a76 v: v3 --- [refs] | 2 +- trunk/drivers/video/sh_mipi_dsi.c | 2 ++ trunk/include/video/sh_mipi_dsi.h | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 687893848fd4..6b621a73dd80 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f7b0af68bc9f5eb5291996706951661d57909137 +refs/heads/master: d07a9d2a5e82ed677971b2e9f3e4cbd49b9ec34e diff --git a/trunk/drivers/video/sh_mipi_dsi.c b/trunk/drivers/video/sh_mipi_dsi.c index c9fac13b03c7..dfd51541e24c 100644 --- a/trunk/drivers/video/sh_mipi_dsi.c +++ b/trunk/drivers/video/sh_mipi_dsi.c @@ -316,6 +316,8 @@ static int __init sh_mipi_setup(struct sh_mipi *mipi, * Non-burst mode with sync pulses: VSE and HSE are output, * HSA period allowed, no commands in LP */ + if (pdata->flags & SH_MIPI_DSI_BL2E) + vmctr2 |= 1 << 17; if (pdata->flags & SH_MIPI_DSI_HSABM) vmctr2 |= 1 << 5; if (pdata->flags & SH_MIPI_DSI_HBPBM) diff --git a/trunk/include/video/sh_mipi_dsi.h b/trunk/include/video/sh_mipi_dsi.h index 86a72c05e9bd..58b78f8c0abd 100644 --- a/trunk/include/video/sh_mipi_dsi.h +++ b/trunk/include/video/sh_mipi_dsi.h @@ -30,6 +30,7 @@ struct sh_mobile_lcdc_chan_cfg; #define SH_MIPI_DSI_HSABM (1 << 0) #define SH_MIPI_DSI_HBPBM (1 << 1) #define SH_MIPI_DSI_HFPBM (1 << 2) +#define SH_MIPI_DSI_BL2E (1 << 3) struct sh_mipi_dsi_info { enum sh_mipi_dsi_data_fmt data_format;