diff options
author | tang yuantian <Yuantian.Tang@freescale.com> | 2014-12-17 12:58:05 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-01-24 09:12:32 -0600 |
commit | 41ba57d0c7968506ddcc71604bd39131acf6ee23 (patch) | |
tree | bf26f87db9187364bb16418ce264c5d13fb03f84 /include | |
parent | 55d53ab45e3be3442c7b8555ff059df1d28f2838 (diff) | |
download | u-boot-imx-41ba57d0c7968506ddcc71604bd39131acf6ee23.zip u-boot-imx-41ba57d0c7968506ddcc71604bd39131acf6ee23.tar.gz u-boot-imx-41ba57d0c7968506ddcc71604bd39131acf6ee23.tar.bz2 |
fsl/ls1021qds: Add deep sleep support
Add deep sleep support on Freescale LS1021QDS platform.
Signed-off-by: Tang Yuantian <Yuantian.Tang@freescale.com>
[York Sun: Fix conflict in fdt.c]
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ls1021aqds.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/configs/ls1021aqds.h b/include/configs/ls1021aqds.h index 296ded9..2874ccc 100644 --- a/include/configs/ls1021aqds.h +++ b/include/configs/ls1021aqds.h @@ -19,6 +19,11 @@ #define CONFIG_SKIP_LOWLEVEL_INIT #define CONFIG_BOARD_EARLY_INIT_F +#define CONFIG_DEEP_SLEEP +#if defined(CONFIG_DEEP_SLEEP) +#define CONFIG_SILENT_CONSOLE +#endif + /* * Size of malloc() pool */ @@ -72,7 +77,8 @@ unsigned long get_board_ddr_clk(void); #define CONFIG_SPL_PAD_TO 0x1c000 #define CONFIG_SYS_TEXT_BASE 0x82000000 -#define CONFIG_SYS_SPL_MALLOC_START 0x80200000 +#define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SYS_TEXT_BASE + \ + CONFIG_SYS_MONITOR_LEN) #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 #define CONFIG_SPL_BSS_START_ADDR 0x80100000 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 |