diff options
author | Guennadi Liakhovetski <lg@denx.de> | 2009-02-24 10:44:02 +0100 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2009-02-24 10:44:02 +0100 |
commit | a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1 (patch) | |
tree | f3f8eee4d1566b4e312049e490f2bed00d4fb969 /include/configs | |
parent | 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f (diff) | |
download | u-boot-imx-a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1.zip u-boot-imx-a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1.tar.gz u-boot-imx-a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1.tar.bz2 |
ARM: add an "eet" variant of the imx31_phycore board
The "eet" variant of the imx31_phycore board has an OLED display, using a
s6e63d6 display controller on the first SPI interface, using GPIO57 as a
chip-select for it. With this configuration you can display 256 colour BMP
images in 16-bit RGB (RGB565) LCD mode.
Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/imx31_phycore.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/configs/imx31_phycore.h b/include/configs/imx31_phycore.h index f0d28ee..2dd9e92 100644 --- a/include/configs/imx31_phycore.h +++ b/include/configs/imx31_phycore.h @@ -178,4 +178,27 @@ #undef CONFIG_JFFS2_CMDLINE #define CONFIG_JFFS2_DEV "nor0" +/* EET platform additions */ +#ifdef CONFIG_IMX31_PHYCORE_EET +#define BOARD_LATE_INIT + +#define CONFIG_MX31_GPIO 1 + +#define CONFIG_HARD_SPI 1 +#define CONFIG_MXC_SPI 1 +#define CONFIG_CMD_SPI + +#define CONFIG_S6E63D6 1 + +#define CONFIG_LCD 1 +#define CONFIG_VIDEO_MX3 1 +#define CONFIG_SYS_WHITE_ON_BLACK 1 +#define LCD_BPP LCD_COLOR8 +#define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE 1 +#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1 + +#define CONFIG_SPLASH_SCREEN 1 +#define CONFIG_CMD_BMP 1 +#endif + #endif /* __CONFIG_H */ |