diff options
author | Michal Simek <michal.simek@xilinx.com> | 2017-12-01 13:50:33 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2017-12-14 20:08:15 +0100 |
commit | 52b36fd155c3c860f094272627c466ba4a4f4e26 (patch) | |
tree | 27866874baed7b4bba78369d10f121c1231df5fb /configs/zynq_cc108_defconfig | |
parent | 8b93a92f6d089c8b3a055c8d89492e73137490b7 (diff) | |
download | u-boot-52b36fd155c3c860f094272627c466ba4a4f4e26.tar.gz |
arm: zynq: Fix SPL SD boot mode
This patch is fixing two issues:
1. Insufficient stack size for fat fs buffers
2. Insufficient space in malloc area
Tested on zc702 and zc706.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'configs/zynq_cc108_defconfig')
-rw-r--r-- | configs/zynq_cc108_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/zynq_cc108_defconfig b/configs/zynq_cc108_defconfig index fcf4635e3d..bdba0d1cc9 100644 --- a/configs/zynq_cc108_defconfig +++ b/configs/zynq_cc108_defconfig @@ -1,6 +1,7 @@ CONFIG_ARM=y CONFIG_ARCH_ZYNQ=y CONFIG_SYS_TEXT_BASE=0x4000000 +CONFIG_SPL_STACK_R_ADDR=0x200000 CONFIG_DEFAULT_DEVICE_TREE="zynq-cc108" CONFIG_DEBUG_UART=y CONFIG_FIT=y @@ -8,6 +9,7 @@ CONFIG_FIT_SIGNATURE=y CONFIG_FIT_VERBOSE=y # CONFIG_DISPLAY_CPUINFO is not set CONFIG_SPL=y +CONFIG_SPL_STACK_R=y CONFIG_HUSH_PARSER=y CONFIG_SYS_PROMPT="Zynq> " CONFIG_CMD_BOOTZ=y |