summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2016-02-22 15:37:03 +0800
committerYe Li <ye.li@nxp.com>2017-04-05 14:04:28 +0800
commitc8389a3f9f0efbb4916e8f8c3f87c25e053909b1 (patch)
tree0ac17cf0f7b4c61cb359feaa8fe0d5beeffb0806 /include
parent79a86adf2279336617ad7d4f0813f040b17318d4 (diff)
downloadu-boot-imx-c8389a3f9f0efbb4916e8f8c3f87c25e053909b1.zip
u-boot-imx-c8389a3f9f0efbb4916e8f8c3f87c25e053909b1.tar.gz
u-boot-imx-c8389a3f9f0efbb4916e8f8c3f87c25e053909b1.tar.bz2
MLK-12425-3: mx6slevk: support epdc
Support epdc for mx6slevk board. Introduce a new configuration file mx6slevk_epdc_defconfig. Add related settings. Signed-off-by: Peng Fan <peng.fan@nxp.com> (cherry picked from commit 8e4304c2ab95928fb6fbb24ba83115cf1cd1e6d2)
Diffstat (limited to 'include')
-rw-r--r--include/configs/mx6slevk.h26
1 files changed, 24 insertions, 2 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h
index 9ceceda..5d8274d 100644
--- a/include/configs/mx6slevk.h
+++ b/include/configs/mx6slevk.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2013 Freescale Semiconductor, Inc.
+ * Copyright 2013-2016 Freescale Semiconductor, Inc.
*
* Configuration settings for the Freescale i.MX6SL EVK board.
*
@@ -18,7 +18,7 @@
#define CONFIG_MACH_TYPE MACH_TYPE_MX6SL_EVK
/* Size of malloc() pool */
-#define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M)
+#define CONFIG_SYS_MALLOC_LEN (16 * SZ_1M)
#define CONFIG_MXC_UART
#define CONFIG_MXC_UART_BASE UART1_BASE
@@ -50,6 +50,7 @@
#define CONFIG_PHY_SMSC
#define CONFIG_EXTRA_ENV_SETTINGS \
+ "epdc_waveform=epdc_splash.bin\0" \
"script=boot.scr\0" \
"image=zImage\0" \
"console=ttymxc0\0" \
@@ -185,4 +186,25 @@
#define CONFIG_IMX_THERMAL
+/*#define CONFIG_SPLASH_SCREEN*/
+
+/*
+ * SPLASH SCREEN Configs
+ */
+#ifdef CONFIG_SPLASH_SCREEN
+ /*
+ * Framebuffer and LCD
+ */
+ #define CONFIG_CMD_BMP
+ #define CONFIG_MXC_EPDC 1
+ #define CONFIG_LCD
+ #define CONFIG_SYS_CONSOLE_IS_IN_ENV
+#ifdef CONFIG_MXC_EPDC
+ #undef LCD_TEST_PATTERN
+ #define LCD_BPP LCD_MONOCHROME
+
+ #define CONFIG_WAVEFORM_BUF_SIZE 0x200000
+#endif
+#endif /* CONFIG_SPLASH_SCREEN */
+
#endif /* __CONFIG_H */