summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2016-03-14 16:50:44 +0800
committerYe Li <ye.li@nxp.com>2017-04-05 14:04:42 +0800
commitd0560c22be07a9257307be43c75ce1492396643d (patch)
tree5845777aba9eae44ce4dfd97cb186e4c2ffbeb43 /board
parentb5c6277890e12b5fab86d1f49681fa6efe2f40ac (diff)
downloadu-boot-imx-d0560c22be07a9257307be43c75ce1492396643d.zip
u-boot-imx-d0560c22be07a9257307be43c75ce1492396643d.tar.gz
u-boot-imx-d0560c22be07a9257307be43c75ce1492396643d.tar.bz2
MLK-12555-2 mx6ulevk: 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 <ye.li@nxp.com> (cherry picked from commit 8a713e8cd1500ecc6daa02a14a63763a548095b4)
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 656b532..f7556bb 100644
--- a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
+++ b/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
@@ -809,6 +809,8 @@ int board_late_init(void)
board_late_mmc_env_init();
#endif
+ set_wdog_reset((struct wdog_regs *)WDOG1_BASE_ADDR);
+
return 0;
}