diff options
author | Stefano Babic <sbabic@denx.de> | 2012-10-20 23:56:07 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-25 11:30:50 -0700 |
commit | 8f1fae26a7fb4c0c2897f2f086fe8a3e1da58a9a (patch) | |
tree | 1eab7343b4fbe934e170b8cb93e7cf79d281caa0 /include/configs/mcx.h | |
parent | 60c41d907e234871b40f14283dc2e18abc324461 (diff) | |
download | u-boot-imx-8f1fae26a7fb4c0c2897f2f086fe8a3e1da58a9a.zip u-boot-imx-8f1fae26a7fb4c0c2897f2f086fe8a3e1da58a9a.tar.gz u-boot-imx-8f1fae26a7fb4c0c2897f2f086fe8a3e1da58a9a.tar.bz2 |
OMAP3: add video support to the mcx board
Add video support to the board with the display
focaltech etm070003dh6.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs/mcx.h')
-rw-r--r-- | include/configs/mcx.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/include/configs/mcx.h b/include/configs/mcx.h index 96e1059..bf49cc1 100644 --- a/include/configs/mcx.h +++ b/include/configs/mcx.h @@ -181,7 +181,7 @@ #define CONFIG_JFFS2_PART_SIZE 0xf980000 /* sz of jffs2 part */ /* Environment information */ -#define CONFIG_BOOTDELAY 10 +#define CONFIG_BOOTDELAY 3 #define CONFIG_BOOTFILE "uImage" @@ -257,6 +257,10 @@ "ubi readvol ${loadaddr} kernel;" \ "run addtty addmtd addfb addeth addmisc;" \ "bootm ${loadaddr}\0" \ + "preboot=ubi part nand0,7;" \ + "ubi readvol ${loadaddr} splash;" \ + "bmp display ${loadaddr};" \ + "gpio set 55\0" \ "swupdate_args=setenv bootargs root=/dev/ram " \ "quiet loglevel=1 " \ "consoleblank=0 ${swupdate_misc}\0" \ @@ -303,6 +307,7 @@ #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */ /* address */ +#define CONFIG_PREBOOT /* * AM3517 has 12 GP timers, they can be driven by the system clock @@ -422,4 +427,13 @@ #define CONFIG_NET_RETRY_COUNT 10 #endif +#define CONFIG_VIDEO +#define CONFIG_CFB_CONSOLE +#define CONFIG_VGA_AS_SINGLE_DEVICE +#define CONFIG_SPLASH_SCREEN +#define CONFIG_VIDEO_BMP_RLE8 +#define CONFIG_CMD_BMP +#define CONFIG_VIDEO_OMAP3 +#define CONFIG_SYS_CONSOLE_IS_IN_ENV + #endif /* __CONFIG_H */ |