From: Tim Harvey Date: Sat, 9 May 2015 01:28:41 +0000 (-0700) Subject: imx: ventana: add GSC boot watchdog disable to SPL X-Git-Tag: v2015.07-rc2~143 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea7a3c446b9f117a07fe17276eac44f07952bfff;p=pandora-u-boot.git imx: ventana: add GSC boot watchdog disable to SPL If the SPL is to be used for Falcon mode then we need to make sure the SPL disable the GSC boot watchdog. Signed-off-by: Tim Harvey --- diff --git a/board/gateworks/gw_ventana/gw_ventana_spl.c b/board/gateworks/gw_ventana/gw_ventana_spl.c index cde04cfacc2..84d027d441a 100644 --- a/board/gateworks/gw_ventana/gw_ventana_spl.c +++ b/board/gateworks/gw_ventana/gw_ventana_spl.c @@ -527,6 +527,9 @@ void board_init_f(ulong dummy) /* Clear the BSS. */ memset(__bss_start, 0, __bss_end - __bss_start); + /* disable boot watchdog */ + gsc_boot_wd_disable(); + /* load/boot image from boot device */ board_init_r(NULL, 0); }