summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeng Fan <[email protected]>2015-10-29 15:54:51 +0800
committerStefano Babic <[email protected]>2015-11-12 17:40:54 +0100
commit623787fd58c2ef2fc5a504eacc99672c464211eb (patch)
tree260e5f7b1bc30cf95edb09f71da0200eb701a8c7
parenteb111bb31d882877e75e6b8083808dcaf6493b92 (diff)
imx: imx-common: power down lcdif before boot os
Need to call lcdif_power_down to make lcdif in initial state before kernel boot. Similar issue for uboot reset with lcdif enabled, system will hang after serveral times resetting. Need to let lcdif initial state to make all go well. Signed-off-by: Peng Fan <[email protected]> Cc: Stefano Babic <[email protected]> Cc: Eric Nelson <[email protected]> Cc: Nikita Kiryanov <[email protected]> Cc: Tim Harvey <[email protected]> Cc: Fabio Estevam <[email protected]>
-rw-r--r--arch/arm/imx-common/cpu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
index d3d1fc5afaf..656bb60bbe2 100644
--- a/arch/arm/imx-common/cpu.c
+++ b/arch/arm/imx-common/cpu.c
@@ -279,6 +279,9 @@ void arch_preboot_os(void)
/* disable video before launching O/S */
ipuv3_fb_shutdown();
#endif
+#if defined(CONFIG_VIDEO_MXS)
+ lcdif_power_down();
+#endif
}
void set_chipselect_size(int const cs_size)