diff options
author | Liu Ying <b17645@freescale.com> | 2010-12-10 16:03:10 +0800 |
---|---|---|
committer | Liu Ying <b17645@freescale.com> | 2010-12-16 09:58:44 +0800 |
commit | 00bcc7e6fb772a0d195c997287c6795ed0c58fb4 (patch) | |
tree | c521ddcbf279634d88e102eb858b512f2267f6a6 /lib_arm/board.c | |
parent | dca35697e3758ac81894ca305c3f206ff552b697 (diff) | |
download | u-boot-imx-00bcc7e6fb772a0d195c997287c6795ed0c58fb4.zip u-boot-imx-00bcc7e6fb772a0d195c997287c6795ed0c58fb4.tar.gz u-boot-imx-00bcc7e6fb772a0d195c997287c6795ed0c58fb4.tar.bz2 |
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/board.c')
-rw-r--r-- | lib_arm/board.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index ead4452..d97d37b 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 (); |