Commit d9a363da27c2fe7999ec4de869c81e357f67fa33

Authored by Ye.Li
1 parent 5cab58016a

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>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
... ... @@ -870,6 +870,8 @@
870 870 board_late_mmc_init();
871 871 #endif
872 872  
  873 + set_wdog_reset((struct wdog_regs *)WDOG1_BASE_ADDR);
  874 +
873 875 return 0;
874 876 }
875 877