diff options
author | Mark Jackson <mpfj-list@mimc.co.uk> | 2009-07-21 11:35:22 +0100 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2009-07-26 13:14:33 +0200 |
commit | f68378d60a905d43155f2e89bf81999d3c93a90a (patch) | |
tree | db88aa8c65cba2620ed7cc8c4c8c4e53209829f7 /include/configs/mimc200.h | |
parent | 69f32e6c24d41fcdf347ff64e9c13b25059ace58 (diff) | |
download | u-boot-imx-f68378d60a905d43155f2e89bf81999d3c93a90a.zip u-boot-imx-f68378d60a905d43155f2e89bf81999d3c93a90a.tar.gz u-boot-imx-f68378d60a905d43155f2e89bf81999d3c93a90a.tar.bz2 |
Add LCD support to MIMC200 board
This patch updates the MIMC200 files to enable the LCD.
Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
Diffstat (limited to 'include/configs/mimc200.h')
-rw-r--r-- | include/configs/mimc200.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/configs/mimc200.h b/include/configs/mimc200.h index 8ff2f8a..8f71664 100644 --- a/include/configs/mimc200.h +++ b/include/configs/mimc200.h @@ -82,6 +82,8 @@ #define CONFIG_DISABLE_CONSOLE 1 /* disable console */ #define CONFIG_SYS_DEVICE_NULLDEV 1 /* include nulldev device */ +#define CONFIG_LCD 1 + /* * Only interrupt autoboot if <space> is pressed. Otherwise, garbage * data on the serial line may interrupt the boot sequence. @@ -127,6 +129,20 @@ #define CONFIG_MMC 1 #define CONFIG_ATMEL_MCI 1 +#if defined(CONFIG_LCD) +#define CONFIG_CMD_BMP +#define CONFIG_ATMEL_LCD 1 +#define LCD_BPP LCD_COLOR16 +#define CONFIG_BMP_16BPP 1 +#define CONFIG_FB_ADDR 0x10600000 +#define CONFIG_WHITE_ON_BLACK 1 +#define CONFIG_VIDEO_BMP_GZIP 1 +#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 262144 +#define CONFIG_ATMEL_LCD_BGR555 1 +#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1 +#define CONFIG_SPLASH_SCREEN 1 +#endif + #define CONFIG_SYS_DCACHE_LINESZ 32 #define CONFIG_SYS_ICACHE_LINESZ 32 |