summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2015-06-12 14:39:36 +0800
committerYe.Li <B37916@freescale.com>2015-06-12 15:16:32 +0800
commitd9a363da27c2fe7999ec4de869c81e357f67fa33 (patch)
tree814038617e63876ccd0b287dc24062e55634e5bb /board
parent5cab58016a032ea364c8e5df3994ac51fdf60b0a (diff)
downloadu-boot-imx-d9a363da27c2fe7999ec4de869c81e357f67fa33.zip
u-boot-imx-d9a363da27c2fe7999ec4de869c81e357f67fa33.tar.gz
u-boot-imx-d9a363da27c2fe7999ec4de869c81e357f67fa33.tar.bz2
MLK-11099 imx: mx6ul: Enable the Watchdog WDOG_B signal output
When using watchdog timeout in kernel, the reset does not output the WDOG_B signal, so the power supply won't be reset. To solve the problem, we enable it in u-boot. Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c b/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
index 10e9a35..b9d691a 100644
--- a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
+++ b/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
@@ -870,6 +870,8 @@ int board_late_init(void)
board_late_mmc_init();
#endif
+ set_wdog_reset((struct wdog_regs *)WDOG1_BASE_ADDR);
+
return 0;
}