diff options
author | Leonid Iziumtsev <leonid.iziumtsev@se.atlascopco.com> | 2016-03-20 13:10:55 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-03-25 13:03:28 (GMT) |
commit | f7440928e609734f6d24d6769927539762270e1e (patch) | |
tree | 03ad13dbf662b6193c9b69d3b7f2f471da24162c /arch/arm/cpu | |
parent | 8fb9eea5653796fea69a45b82cacb6d378a569f0 (diff) | |
download | u-boot-f7440928e609734f6d24d6769927539762270e1e.tar.xz |
mx27: 16-bit wide watchdog registers
Make the watchdog registers 16-bit wide, as they are according to TRM.
Signed-off-by: Leonid Iziumtsev <leonid.iziumtsev@se.atlascopco.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm926ejs/mx27/reset.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/cpu/arm926ejs/mx27/reset.c b/arch/arm/cpu/arm926ejs/mx27/reset.c index f7b4a1c..e764986 100644 --- a/arch/arm/cpu/arm926ejs/mx27/reset.c +++ b/arch/arm/cpu/arm926ejs/mx27/reset.c @@ -27,14 +27,14 @@ void reset_cpu(ulong ignored) { struct wdog_regs *regs = (struct wdog_regs *)IMX_WDT_BASE; /* Disable watchdog and set Time-Out field to 0 */ - writel(0x00000000, ®s->wcr); + writew(0x0000, ®s->wcr); /* Write Service Sequence */ - writel(0x00005555, ®s->wsr); - writel(0x0000AAAA, ®s->wsr); + writew(0x5555, ®s->wsr); + writew(0xAAAA, ®s->wsr); /* Enable watchdog */ - writel(WCR_WDE, ®s->wcr); + writew(WCR_WDE, ®s->wcr); while (1); /*NOTREACHED*/ |