Skip to content
Snippets Groups Projects
Commit af1db4a3 authored by Tim Harvey's avatar Tim Harvey Committed by Stefano Babic
Browse files

imx: ventana: use stack relocation


Certain features we desire require a larger stack than is available by using
iRAM (most notably for us, env_mmc). Relocate the stack to DRAM so that
we can use these features.

Signed-off-by: default avatarTim Harvey <tharvey@gateworks.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent ea7a3c44
No related branches found
No related tags found
No related merge requests found
...@@ -529,9 +529,6 @@ void board_init_f(ulong dummy) ...@@ -529,9 +529,6 @@ void board_init_f(ulong dummy)
/* disable boot watchdog */ /* disable boot watchdog */
gsc_boot_wd_disable(); gsc_boot_wd_disable();
/* load/boot image from boot device */
board_init_r(NULL, 0);
} }
/* called from board_init_r after gd setup if CONFIG_SPL_BOARD_INIT defined */ /* called from board_init_r after gd setup if CONFIG_SPL_BOARD_INIT defined */
......
...@@ -3,3 +3,5 @@ CONFIG_TARGET_GW_VENTANA=y ...@@ -3,3 +3,5 @@ CONFIG_TARGET_GW_VENTANA=y
CONFIG_SYS_MALLOC_F=y CONFIG_SYS_MALLOC_F=y
CONFIG_SPL=y CONFIG_SPL=y
CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/imx-common/spl_sd.cfg,MX6QDL" CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/imx-common/spl_sd.cfg,MX6QDL"
CONFIG_SPL_STACK_R=y
CONFIG_SPL_STACK_R_ADDR=0x18000000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment