From af1db4a39034ae15a91f0dae7da9548f0501febf Mon Sep 17 00:00:00 2001
From: Tim Harvey <tharvey@gateworks.com>
Date: Thu, 14 May 2015 06:22:07 -0700
Subject: [PATCH] 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: Tim Harvey <tharvey@gateworks.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 board/gateworks/gw_ventana/gw_ventana_spl.c | 3 ---
 configs/gwventana_defconfig                 | 2 ++
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/board/gateworks/gw_ventana/gw_ventana_spl.c b/board/gateworks/gw_ventana/gw_ventana_spl.c
index 84d027d441..79cb5943d0 100644
--- a/board/gateworks/gw_ventana/gw_ventana_spl.c
+++ b/board/gateworks/gw_ventana/gw_ventana_spl.c
@@ -529,9 +529,6 @@ void board_init_f(ulong dummy)
 
 	/* disable boot watchdog */
 	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 */
diff --git a/configs/gwventana_defconfig b/configs/gwventana_defconfig
index c7882aca3f..2d6552fef7 100644
--- a/configs/gwventana_defconfig
+++ b/configs/gwventana_defconfig
@@ -3,3 +3,5 @@ CONFIG_TARGET_GW_VENTANA=y
 CONFIG_SYS_MALLOC_F=y
 CONFIG_SPL=y
 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
-- 
2.39.5