summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-06-12 19:47:27 +0800
committerYe.Li <B37916@freescale.com>2014-06-17 11:14:08 +0800
commita007b00dd8ef9f773dfdebef0b1deb0990281793 (patch)
tree80baa24ad92519d0c4807dbabc8b26ada83483e7 /arch/arm
parent4c6e1f9ed1b2f5c98a34502b44b6414593fdd290 (diff)
downloadu-boot-imx-a007b00dd8ef9f773dfdebef0b1deb0990281793.zip
u-boot-imx-a007b00dd8ef9f773dfdebef0b1deb0990281793.tar.gz
u-boot-imx-a007b00dd8ef9f773dfdebef0b1deb0990281793.tar.bz2
ENGR00315894-81 gis: Add gis module
Add gis module, current gis is support vadc input. Add power down function to lcdif driver. Signed-off-by: Sandor Yu <R01008@freescale.com> Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/imx-common/cpu.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
index c34bed5..9bdb951 100644
--- a/arch/arm/imx-common/cpu.c
+++ b/arch/arm/imx-common/cpu.c
@@ -16,6 +16,10 @@
#include <asm/arch/crm_regs.h>
#include <ipu_pixfmt.h>
+#ifdef CONFIG_VIDEO_GIS
+#include <gis.h>
+#endif
+
#ifdef CONFIG_FSL_ESDHC
#include <fsl_esdhc.h>
#endif
@@ -201,4 +205,8 @@ void arch_preboot_os(void)
/* disable video before launching O/S */
ipuv3_fb_shutdown();
#endif
+#ifdef CONFIG_VIDEO_GIS
+ /* Entry for GIS */
+ mxc_disable_gis();
+#endif
}