2 * Watchdog driver for IMX2 and later processors
4 * Copyright (C) 2010 Wolfram Sang, Pengutronix e.K. <w.sang@pengutronix.de>
5 * Copyright (C) 2014 Freescale Semiconductor, Inc.
7 * some parts adapted by similar drivers from Darius Augulis and Vladimir
8 * Zapolskiy, additional improvements by Wim Van Sebroeck.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
14 * NOTE: MX1 has a slightly different Watchdog than MX2 and later:
18 * Registers: 32-bit 16-bit
19 * Stopable timer: Yes No
20 * Need to enable clk: No Yes
21 * Halt on suspend: Manual Can be automatic
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/miscdevice.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/platform_device.h>
30 #include <linux/watchdog.h>
31 #include <linux/clk.h>
34 #include <linux/uaccess.h>
35 #include <linux/timer.h>
36 #include <linux/jiffies.h>
38 #define DRIVER_NAME "imx2-wdt"
40 #define IMX2_WDT_WCR 0x00 /* Control Register */
41 #define IMX2_WDT_WCR_WT (0xFF << 8) /* -> Watchdog Timeout Field */
42 #define IMX2_WDT_WCR_WRE (1 << 3) /* -> WDOG Reset Enable */
43 #define IMX2_WDT_WCR_WDE (1 << 2) /* -> Watchdog Enable */
44 #define IMX2_WDT_WCR_WDZST (1 << 0) /* -> Watchdog timer Suspend */
46 #define IMX2_WDT_WSR 0x02 /* Service Register */
47 #define IMX2_WDT_SEQ1 0x5555 /* -> service sequence 1 */
48 #define IMX2_WDT_SEQ2 0xAAAA /* -> service sequence 2 */
50 #define IMX2_WDT_WRSR 0x04 /* Reset Status Register */
51 #define IMX2_WDT_WRSR_TOUT (1 << 1) /* -> Reset due to Timeout */
53 #define IMX2_WDT_MAX_TIME 128
54 #define IMX2_WDT_DEFAULT_TIME 60 /* in seconds */
56 #define WDOG_SEC_TO_COUNT(s) ((s * 2 - 1) << 8)
58 #define IMX2_WDT_STATUS_OPEN 0
59 #define IMX2_WDT_STATUS_STARTED 1
60 #define IMX2_WDT_EXPECT_CLOSE 2
67 struct timer_list timer
; /* Pings the watchdog when closed */
70 static struct miscdevice imx2_wdt_miscdev
;
72 static bool nowayout
= WATCHDOG_NOWAYOUT
;
73 module_param(nowayout
, bool, 0);
74 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
75 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
78 static unsigned timeout
= IMX2_WDT_DEFAULT_TIME
;
79 module_param(timeout
, uint
, 0);
80 MODULE_PARM_DESC(timeout
, "Watchdog timeout in seconds (default="
81 __MODULE_STRING(IMX2_WDT_DEFAULT_TIME
) ")");
83 static const struct watchdog_info imx2_wdt_info
= {
84 .identity
= "imx2+ watchdog",
85 .options
= WDIOF_KEEPALIVEPING
| WDIOF_SETTIMEOUT
| WDIOF_MAGICCLOSE
,
88 static inline void imx2_wdt_setup(void)
90 u16 val
= __raw_readw(imx2_wdt
.base
+ IMX2_WDT_WCR
);
92 /* Suspend timer in low power mode, write once-only */
93 val
|= IMX2_WDT_WCR_WDZST
;
94 /* Strip the old watchdog Time-Out value */
95 val
&= ~IMX2_WDT_WCR_WT
;
96 /* Generate reset if WDOG times out */
97 val
&= ~IMX2_WDT_WCR_WRE
;
98 /* Keep Watchdog Disabled */
99 val
&= ~IMX2_WDT_WCR_WDE
;
100 /* Set the watchdog's Time-Out value */
101 val
|= WDOG_SEC_TO_COUNT(imx2_wdt
.timeout
);
103 __raw_writew(val
, imx2_wdt
.base
+ IMX2_WDT_WCR
);
105 /* enable the watchdog */
106 val
|= IMX2_WDT_WCR_WDE
;
107 __raw_writew(val
, imx2_wdt
.base
+ IMX2_WDT_WCR
);
110 static inline void imx2_wdt_ping(void)
112 __raw_writew(IMX2_WDT_SEQ1
, imx2_wdt
.base
+ IMX2_WDT_WSR
);
113 __raw_writew(IMX2_WDT_SEQ2
, imx2_wdt
.base
+ IMX2_WDT_WSR
);
116 static void imx2_wdt_timer_ping(unsigned long arg
)
118 /* ping it every imx2_wdt.timeout / 2 seconds to prevent reboot */
120 mod_timer(&imx2_wdt
.timer
, jiffies
+ imx2_wdt
.timeout
* HZ
/ 2);
123 static void imx2_wdt_start(void)
125 if (!test_and_set_bit(IMX2_WDT_STATUS_STARTED
, &imx2_wdt
.status
)) {
126 /* at our first start we enable clock and do initialisations */
127 clk_prepare_enable(imx2_wdt
.clk
);
130 } else /* delete the timer that pings the watchdog after close */
131 del_timer_sync(&imx2_wdt
.timer
);
133 /* Watchdog is enabled - time to reload the timeout value */
137 static void imx2_wdt_stop(void)
139 /* we don't need a clk_disable, it cannot be disabled once started.
140 * We use a timer to ping the watchdog while /dev/watchdog is closed */
141 imx2_wdt_timer_ping(0);
144 static void imx2_wdt_set_timeout(int new_timeout
)
146 u16 val
= __raw_readw(imx2_wdt
.base
+ IMX2_WDT_WCR
);
148 /* set the new timeout value in the WSR */
149 val
&= ~IMX2_WDT_WCR_WT
;
150 val
|= WDOG_SEC_TO_COUNT(new_timeout
);
151 __raw_writew(val
, imx2_wdt
.base
+ IMX2_WDT_WCR
);
154 static int imx2_wdt_open(struct inode
*inode
, struct file
*file
)
156 if (test_and_set_bit(IMX2_WDT_STATUS_OPEN
, &imx2_wdt
.status
))
160 return nonseekable_open(inode
, file
);
163 static int imx2_wdt_close(struct inode
*inode
, struct file
*file
)
165 if (test_bit(IMX2_WDT_EXPECT_CLOSE
, &imx2_wdt
.status
) && !nowayout
)
168 dev_crit(imx2_wdt_miscdev
.parent
,
169 "Unexpected close: Expect reboot!\n");
173 clear_bit(IMX2_WDT_EXPECT_CLOSE
, &imx2_wdt
.status
);
174 clear_bit(IMX2_WDT_STATUS_OPEN
, &imx2_wdt
.status
);
178 static long imx2_wdt_ioctl(struct file
*file
, unsigned int cmd
,
181 void __user
*argp
= (void __user
*)arg
;
182 int __user
*p
= argp
;
187 case WDIOC_GETSUPPORT
:
188 return copy_to_user(argp
, &imx2_wdt_info
,
189 sizeof(struct watchdog_info
)) ? -EFAULT
: 0;
191 case WDIOC_GETSTATUS
:
192 return put_user(0, p
);
194 case WDIOC_GETBOOTSTATUS
:
195 val
= __raw_readw(imx2_wdt
.base
+ IMX2_WDT_WRSR
);
196 new_value
= val
& IMX2_WDT_WRSR_TOUT
? WDIOF_CARDRESET
: 0;
197 return put_user(new_value
, p
);
199 case WDIOC_KEEPALIVE
:
203 case WDIOC_SETTIMEOUT
:
204 if (get_user(new_value
, p
))
206 if ((new_value
< 1) || (new_value
> IMX2_WDT_MAX_TIME
))
208 imx2_wdt_set_timeout(new_value
);
209 imx2_wdt
.timeout
= new_value
;
212 /* Fallthrough to return current value */
213 case WDIOC_GETTIMEOUT
:
214 return put_user(imx2_wdt
.timeout
, p
);
221 static ssize_t
imx2_wdt_write(struct file
*file
, const char __user
*data
,
222 size_t len
, loff_t
*ppos
)
227 if (len
== 0) /* Can we see this even ? */
230 clear_bit(IMX2_WDT_EXPECT_CLOSE
, &imx2_wdt
.status
);
231 /* scan to see whether or not we got the magic character */
232 for (i
= 0; i
!= len
; i
++) {
233 if (get_user(c
, data
+ i
))
236 set_bit(IMX2_WDT_EXPECT_CLOSE
, &imx2_wdt
.status
);
243 static const struct file_operations imx2_wdt_fops
= {
244 .owner
= THIS_MODULE
,
246 .unlocked_ioctl
= imx2_wdt_ioctl
,
247 .open
= imx2_wdt_open
,
248 .release
= imx2_wdt_close
,
249 .write
= imx2_wdt_write
,
252 static struct miscdevice imx2_wdt_miscdev
= {
253 .minor
= WATCHDOG_MINOR
,
255 .fops
= &imx2_wdt_fops
,
258 static int __init
imx2_wdt_probe(struct platform_device
*pdev
)
261 struct resource
*res
;
263 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
264 imx2_wdt
.base
= devm_ioremap_resource(&pdev
->dev
, res
);
265 if (IS_ERR(imx2_wdt
.base
))
266 return PTR_ERR(imx2_wdt
.base
);
268 imx2_wdt
.clk
= devm_clk_get(&pdev
->dev
, NULL
);
269 if (IS_ERR(imx2_wdt
.clk
)) {
270 dev_err(&pdev
->dev
, "can't get Watchdog clock\n");
271 return PTR_ERR(imx2_wdt
.clk
);
274 imx2_wdt
.timeout
= clamp_t(unsigned, timeout
, 1, IMX2_WDT_MAX_TIME
);
275 if (imx2_wdt
.timeout
!= timeout
)
276 dev_warn(&pdev
->dev
, "Initial timeout out of range! "
277 "Clamped from %u to %u\n", timeout
, imx2_wdt
.timeout
);
279 setup_timer(&imx2_wdt
.timer
, imx2_wdt_timer_ping
, 0);
281 imx2_wdt_miscdev
.parent
= &pdev
->dev
;
282 ret
= misc_register(&imx2_wdt_miscdev
);
287 "IMX2+ Watchdog Timer enabled. timeout=%ds (nowayout=%d)\n",
288 imx2_wdt
.timeout
, nowayout
);
292 imx2_wdt_miscdev
.parent
= NULL
;
296 static int __exit
imx2_wdt_remove(struct platform_device
*pdev
)
298 misc_deregister(&imx2_wdt_miscdev
);
300 if (test_bit(IMX2_WDT_STATUS_STARTED
, &imx2_wdt
.status
)) {
301 del_timer_sync(&imx2_wdt
.timer
);
303 dev_crit(imx2_wdt_miscdev
.parent
,
304 "Device removed: Expect reboot!\n");
307 imx2_wdt_miscdev
.parent
= NULL
;
311 static void imx2_wdt_shutdown(struct platform_device
*pdev
)
313 if (test_bit(IMX2_WDT_STATUS_STARTED
, &imx2_wdt
.status
)) {
314 /* we are running, we need to delete the timer but will give
315 * max timeout before reboot will take place */
316 del_timer_sync(&imx2_wdt
.timer
);
317 imx2_wdt_set_timeout(IMX2_WDT_MAX_TIME
);
320 dev_crit(imx2_wdt_miscdev
.parent
,
321 "Device shutdown: Expect reboot!\n");
325 static const struct of_device_id imx2_wdt_dt_ids
[] = {
326 { .compatible
= "fsl,imx21-wdt", },
329 MODULE_DEVICE_TABLE(of
, imx2_wdt_dt_ids
);
331 static struct platform_driver imx2_wdt_driver
= {
332 .remove
= __exit_p(imx2_wdt_remove
),
333 .shutdown
= imx2_wdt_shutdown
,
336 .owner
= THIS_MODULE
,
337 .of_match_table
= imx2_wdt_dt_ids
,
341 module_platform_driver_probe(imx2_wdt_driver
, imx2_wdt_probe
);
343 MODULE_AUTHOR("Wolfram Sang");
344 MODULE_DESCRIPTION("Watchdog driver for IMX2 and later");
345 MODULE_LICENSE("GPL v2");
346 MODULE_ALIAS("platform:" DRIVER_NAME
);