aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnson Huang <b20788@freescale.com>2014-01-13 03:17:05 -0500
committerNitin Garg <nitin.garg@freescale.com>2014-04-16 09:57:20 -0400
commit6616b59dd6b8d977d62c1026dc1981953f3258b3 (patch)
treed4354585adb0079a9ad99c7096d96c7e2ed4c4e7
parent6318c75e324781da2bb6c2e87dcd19ad17cb127f (diff)
ENGR00295752: watchdog: imx2_wdt: disable watchdog timer during low power mode
We should set watchdog timer to be disabled in low power mode, as there is no service running in background, otherwise, system will reset unexpected. Signed-off-by: Anson Huang <b20788@freescale.com>
-rw-r--r--drivers/watchdog/imx2_wdt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/watchdog/imx2_wdt.c b/drivers/watchdog/imx2_wdt.c
index 62946c2cb4f8..e0b958062e81 100644
--- a/drivers/watchdog/imx2_wdt.c
+++ b/drivers/watchdog/imx2_wdt.c
@@ -2,6 +2,7 @@
2 * Watchdog driver for IMX2 and later processors 2 * Watchdog driver for IMX2 and later processors
3 * 3 *
4 * Copyright (C) 2010 Wolfram Sang, Pengutronix e.K. <w.sang@pengutronix.de> 4 * Copyright (C) 2010 Wolfram Sang, Pengutronix e.K. <w.sang@pengutronix.de>
5 * Copyright (C) 2014 Freescale Semiconductor, Inc.
5 * 6 *
6 * some parts adapted by similar drivers from Darius Augulis and Vladimir 7 * some parts adapted by similar drivers from Darius Augulis and Vladimir
7 * Zapolskiy, additional improvements by Wim Van Sebroeck. 8 * Zapolskiy, additional improvements by Wim Van Sebroeck.
@@ -40,6 +41,7 @@
40#define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */ 41#define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */
41#define IMX2_WDT_WCR_WRE (1 << 3) /* -> WDOG Reset Enable */ 42#define IMX2_WDT_WCR_WRE (1 << 3) /* -> WDOG Reset Enable */
42#define IMX2_WDT_WCR_WDE (1 << 2) /* -> Watchdog Enable */ 43#define IMX2_WDT_WCR_WDE (1 << 2) /* -> Watchdog Enable */
44#define IMX2_WDT_WCR_WDZST (1 << 0) /* -> Watchdog timer Suspend */
43 45
44#define IMX2_WDT_WSR 0x02 /* Service Register */ 46#define IMX2_WDT_WSR 0x02 /* Service Register */
45#define IMX2_WDT_SEQ1 0x5555 /* -> service sequence 1 */ 47#define IMX2_WDT_SEQ1 0x5555 /* -> service sequence 1 */
@@ -87,6 +89,8 @@ static inline void imx2_wdt_setup(void)
87{ 89{
88 u16 val = __raw_readw(imx2_wdt.base + IMX2_WDT_WCR); 90 u16 val = __raw_readw(imx2_wdt.base + IMX2_WDT_WCR);
89 91
92 /* Suspend timer in low power mode, write once-only */
93 val |= IMX2_WDT_WCR_WDZST;
90 /* Strip the old watchdog Time-Out value */ 94 /* Strip the old watchdog Time-Out value */
91 val &= ~IMX2_WDT_WCR_WT; 95 val &= ~IMX2_WDT_WCR_WT;
92 /* Generate reset if WDOG times out */ 96 /* Generate reset if WDOG times out */