diff options
author | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2015-07-12 02:31:18 +0200 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2015-07-12 02:31:18 +0200 |
commit | 201cc6d4e4c8213fbd103e74b0f2f2ca591edf54 (patch) | |
tree | fc1ead28a5f852fad9eece0a8841edbbd1441e01 /include/configs | |
parent | 5a472ddd7a2a017747d6c05c65eba2cd3804c02f (diff) |
colibri_t30: enable display driver
On popular request enable the display driver on Colibri T30. A few
notes about some things encountered during porting: While analogue VGA
(e.g. via the on-carrier RAMDAC) worked just fine from the beginning
the EDT display flickered like crazy which turned out to be a pin
muxing issue. Unfortunately the PWM pin muxing wasn't any good neither
which made that display stay dark. Enjoy.
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/colibri_t30.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/configs/colibri_t30.h b/include/configs/colibri_t30.h index d05bd628f5f..832fef58749 100644 --- a/include/configs/colibri_t30.h +++ b/include/configs/colibri_t30.h @@ -76,6 +76,16 @@ #define CONFIG_TFTP_BLOCKSIZE 16384 #define CONFIG_TFTP_TSIZE +/* LCD support */ +#define CONFIG_LCD +#define CONFIG_PWM_TEGRA +#define CONFIG_VIDEO_TEGRA +#define LCD_BPP LCD_COLOR16 +#define CONFIG_SYS_WHITE_ON_BLACK +#define CONFIG_CONSOLE_SCROLL_LINES 10 +#define CONFIG_CMD_BMP +#define CONFIG_LCD_LOGO + /* Miscellaneous commands */ #define CONFIG_CMD_SETEXPR #define CONFIG_FAT_WRITE |