diff options
author | Andrey Skvortsov <andrej.skvortzov@gmail.com> | 2015-12-20 21:09:58 +0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-01-07 17:54:53 +0100 |
commit | 587c3f8ebe356b558f1876414885c1b4a31294ab (patch) | |
tree | 6194dc359a4751eceeb4eae8df9d73c9ce9cab83 /include | |
parent | 88f91d1375aaf4d21d77a2f2daa351dea9132a58 (diff) | |
download | u-boot-587c3f8ebe356b558f1876414885c1b4a31294ab.zip u-boot-587c3f8ebe356b558f1876414885c1b4a31294ab.tar.gz u-boot-587c3f8ebe356b558f1876414885c1b4a31294ab.tar.bz2 |
imx_watchdog: always set minimal timeout in reset_cpu
The problem is that timeout bits in WCR register were leaved unchanged.
So previously set timeout value was applied and therefore 'reset'
command takes any value up to two minutes, depending on previous
watchdog settings, instead of minimal 0.5 seconds.
Signed-off-by: Andrey Skvortsov <andrej.skvortzov@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/fsl_wdog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fsl_wdog.h b/include/fsl_wdog.h index d15a70c..f698d4d 100644 --- a/include/fsl_wdog.h +++ b/include/fsl_wdog.h @@ -16,3 +16,4 @@ struct watchdog_regs { #define WCR_WDT 0x08 #define WCR_SRS 0x10 #define SET_WCR_WT(x) (x << 8) +#define WCR_WT_MSK SET_WCR_WT(0xFF) |