diff options
| author | Peng Fan <[email protected]> | 2015-09-14 13:34:44 +0800 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2015-09-20 09:39:35 +0200 |
| commit | 623d96e89aca64c2762150087f4e872c55481f13 (patch) | |
| tree | 2e5b5b45143720e6352ebe854580eb7f956bc1f6 | |
| parent | c3c8a5748897b24f18618047804317167a531dd3 (diff) | |
imx: wdog: correct wcr register settings
We should not simple use "writew(WCR_WDE, &wdog->wcr)" to set
wcr, since this will override bits set before reset_cpu.
Use clrsetbits_le16 instead of writew to fix this issue.
Signed-off-by: Peng Fan <[email protected]>
Cc: Stefano Babic <[email protected]>
Cc: Fabio Estevam <[email protected]>
Cc: Sebastian Siewior <[email protected]>
Tested-by: Fabio Estevam <[email protected]>
| -rw-r--r-- | drivers/watchdog/imx_watchdog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/watchdog/imx_watchdog.c b/drivers/watchdog/imx_watchdog.c index 1d18d4b269f..9a77a54192b 100644 --- a/drivers/watchdog/imx_watchdog.c +++ b/drivers/watchdog/imx_watchdog.c @@ -55,7 +55,8 @@ void reset_cpu(ulong addr) { struct watchdog_regs *wdog = (struct watchdog_regs *)WDOG1_BASE_ADDR; - writew(WCR_WDE, &wdog->wcr); + clrsetbits_le16(&wdog->wcr, 0, WCR_WDE); + writew(0x5555, &wdog->wsr); writew(0xaaaa, &wdog->wsr); /* load minimum 1/2 second timeout */ while (1) { |
