summaryrefslogtreecommitdiff
path: root/lib_arm
diff options
context:
space:
mode:
authorLiu Ying <b17645@freescale.com>2010-12-10 16:03:10 +0800
committerJustin Waters <justin.waters@timesys.com>2012-09-05 14:57:34 -0400
commit6a8e0bb6d0ff9f6b6520ff3773c7d311848bc4de (patch)
treec521ddcbf279634d88e102eb858b512f2267f6a6 /lib_arm
parent3585819c2fc00292827e6e655fa36b283d1f7ef2 (diff)
ENGR00134068 MX51 BBG:Support CLAA WVGA splashimage
1) IOMUX/backlight support for CLAA WVGA LCD panel. 2) Add video mode for CLAA WVGA LCD panel. 3) Support IPU di1 interface for framebuffer. 4) Enhance IPU driver. 5) Add freescale 600x400 8BPP BMP logo. Signed-off-by: Terry Lv <R65388@freescale.com> Signed-off-by: Liu Ying <b17645@freescale.com>
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/board.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c
index ead4452934b..d97d37bb2b0 100644
--- a/lib_arm/board.c
+++ b/lib_arm/board.c
@@ -66,6 +66,10 @@ extern int AT91F_DataflashInit(void);
extern void dataflash_print_info(void);
#endif
+#if defined CONFIG_SPLASH_SCREEN && defined CONFIG_VIDEO_MX5
+extern void setup_splash_image(void);
+#endif
+
#ifndef CONFIG_IDENT_STRING
#define CONFIG_IDENT_STRING ""
#endif
@@ -394,6 +398,10 @@ void start_armboot (void)
/* IP Address */
gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
+#if defined CONFIG_SPLASH_SCREEN && defined CONFIG_VIDEO_MX5
+ setup_splash_image();
+#endif
+
stdio_init (); /* get the devices list going. */
jumptable_init ();