diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2012-02-03 20:44:54 -0500 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2012-02-03 20:44:54 -0500 | 
| commit | 42c6e9ad1b4bf5a8d071460a614c4d24e6877369 (patch) | |
| tree | 94fe48028dfcf52719643d616cb19bfbb66c3343 /include/configs/bf527-ezkit.h | |
| parent | 66714b1a6df0a5a9f1656a6d4e6eea3c7ecdf7ae (diff) | |
| download | olio-uboot-2014.01-42c6e9ad1b4bf5a8d071460a614c4d24e6877369.tar.xz olio-uboot-2014.01-42c6e9ad1b4bf5a8d071460a614c4d24e6877369.zip | |
Blackfin: easylogo: add lzma logos
The bf527-ezkit boards are getting too big to fit into their reserved
flash space, so we need to use a lzma compressed logo.
Since the video driver code is very similar, add lzma compressed support
to all of the Blackfin video drivers.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/configs/bf527-ezkit.h')
| -rw-r--r-- | include/configs/bf527-ezkit.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/include/configs/bf527-ezkit.h b/include/configs/bf527-ezkit.h index d80eac22d..7b51b53dc 100644 --- a/include/configs/bf527-ezkit.h +++ b/include/configs/bf527-ezkit.h @@ -156,6 +156,15 @@  #ifdef CONFIG_BF527_EZKIT_REV_2_1  # define CONFIG_LQ035Q1_SPI_BUS	0  # define CONFIG_LQ035Q1_SPI_CS	7 +# define CONFIG_LQ035Q1_USE_RGB565_8_BIT_PPI +#else +# define CONFIG_LQ035Q1_USE_RGB888_8_BIT_PPI +#endif + +#ifdef CONFIG_LQ035Q1_USE_RGB565_8_BIT_PPI +# define EASYLOGO_HEADER <asm/bfin_logo_rgb565_230x230_lzma.h> +#else +# define EASYLOGO_HEADER <asm/bfin_logo_230x230_lzma.h>  #endif |