2 * Atheros AR71XX/AR724X/AR913X built-in hardware watchdog timer.
4 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This driver was based on: drivers/watchdog/ixp4xx_wdt.c
8 * Author: Deepak Saxena <dsaxena@plexity.net>
9 * Copyright 2004 (c) MontaVista, Software, Inc.
11 * which again was based on sa1100 driver,
12 * Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License version 2 as published
16 * by the Free Software Foundation.
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/bitops.h>
23 #include <linux/errno.h>
25 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/miscdevice.h>
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/platform_device.h>
32 #include <linux/types.h>
33 #include <linux/watchdog.h>
34 #include <linux/clk.h>
35 #include <linux/err.h>
37 #include <linux/of_platform.h>
39 #define DRIVER_NAME "ath79-wdt"
41 #define WDT_TIMEOUT 15 /* seconds */
43 #define WDOG_REG_CTRL 0x00
44 #define WDOG_REG_TIMER 0x04
46 #define WDOG_CTRL_LAST_RESET BIT(31)
47 #define WDOG_CTRL_ACTION_MASK 3
48 #define WDOG_CTRL_ACTION_NONE 0 /* no action */
49 #define WDOG_CTRL_ACTION_GPI 1 /* general purpose interrupt */
50 #define WDOG_CTRL_ACTION_NMI 2 /* NMI */
51 #define WDOG_CTRL_ACTION_FCR 3 /* full chip reset */
53 static bool nowayout = WATCHDOG_NOWAYOUT;
54 module_param(nowayout, bool, 0);
55 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
56 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
58 static int timeout = WDT_TIMEOUT;
59 module_param(timeout, int, 0);
60 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds "
61 "(default=" __MODULE_STRING(WDT_TIMEOUT) "s)");
63 static unsigned long wdt_flags;
65 #define WDT_FLAGS_BUSY 0
66 #define WDT_FLAGS_EXPECT_CLOSE 1
68 static struct clk *wdt_clk;
69 static unsigned long wdt_freq;
70 static int boot_status;
71 static int max_timeout;
72 static void __iomem *wdt_base;
74 static inline void ath79_wdt_wr(unsigned reg, u32 val)
76 iowrite32(val, wdt_base + reg);
79 static inline u32 ath79_wdt_rr(unsigned reg)
81 return ioread32(wdt_base + reg);
84 static inline void ath79_wdt_keepalive(void)
86 ath79_wdt_wr(WDOG_REG_TIMER, wdt_freq * timeout);
88 ath79_wdt_rr(WDOG_REG_TIMER);
91 static inline void ath79_wdt_enable(void)
93 ath79_wdt_keepalive();
94 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_FCR);
96 ath79_wdt_rr(WDOG_REG_CTRL);
99 static inline void ath79_wdt_disable(void)
101 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_NONE);
103 ath79_wdt_rr(WDOG_REG_CTRL);
106 static int ath79_wdt_set_timeout(int val)
108 if (val < 1 || val > max_timeout)
112 ath79_wdt_keepalive();
117 static int ath79_wdt_open(struct inode *inode, struct file *file)
119 if (test_and_set_bit(WDT_FLAGS_BUSY, &wdt_flags))
122 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
125 return nonseekable_open(inode, file);
128 static int ath79_wdt_release(struct inode *inode, struct file *file)
130 if (test_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags))
133 pr_crit("device closed unexpectedly, watchdog timer will not stop!\n");
134 ath79_wdt_keepalive();
137 clear_bit(WDT_FLAGS_BUSY, &wdt_flags);
138 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
143 static ssize_t ath79_wdt_write(struct file *file, const char *data,
144 size_t len, loff_t *ppos)
150 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
152 for (i = 0; i != len; i++) {
155 if (get_user(c, data + i))
159 set_bit(WDT_FLAGS_EXPECT_CLOSE,
164 ath79_wdt_keepalive();
170 static const struct watchdog_info ath79_wdt_info = {
171 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
172 WDIOF_MAGICCLOSE | WDIOF_CARDRESET,
173 .firmware_version = 0,
174 .identity = "ATH79 watchdog",
177 static long ath79_wdt_ioctl(struct file *file, unsigned int cmd,
180 void __user *argp = (void __user *)arg;
181 int __user *p = argp;
186 case WDIOC_GETSUPPORT:
187 err = copy_to_user(argp, &ath79_wdt_info,
188 sizeof(ath79_wdt_info)) ? -EFAULT : 0;
191 case WDIOC_GETSTATUS:
192 err = put_user(0, p);
195 case WDIOC_GETBOOTSTATUS:
196 err = put_user(boot_status, p);
199 case WDIOC_KEEPALIVE:
200 ath79_wdt_keepalive();
204 case WDIOC_SETTIMEOUT:
205 err = get_user(t, p);
209 err = ath79_wdt_set_timeout(t);
214 case WDIOC_GETTIMEOUT:
215 err = put_user(timeout, p);
226 static const struct file_operations ath79_wdt_fops = {
227 .owner = THIS_MODULE,
229 .write = ath79_wdt_write,
230 .unlocked_ioctl = ath79_wdt_ioctl,
231 .open = ath79_wdt_open,
232 .release = ath79_wdt_release,
235 static struct miscdevice ath79_wdt_miscdev = {
236 .minor = WATCHDOG_MINOR,
238 .fops = &ath79_wdt_fops,
241 static int ath79_wdt_probe(struct platform_device *pdev)
243 struct resource *res;
250 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
252 dev_err(&pdev->dev, "no memory resource found\n");
256 wdt_base = devm_request_and_ioremap(&pdev->dev, res);
258 dev_err(&pdev->dev, "unable to remap memory region\n");
262 wdt_clk = devm_clk_get(&pdev->dev, "wdt");
264 return PTR_ERR(wdt_clk);
266 err = clk_enable(wdt_clk);
270 wdt_freq = clk_get_rate(wdt_clk);
273 goto err_clk_disable;
276 max_timeout = (0xfffffffful / wdt_freq);
277 if (timeout < 1 || timeout > max_timeout) {
278 timeout = max_timeout;
280 "timeout value must be 0 < timeout < %d, using %d\n",
281 max_timeout, timeout);
284 ctrl = ath79_wdt_rr(WDOG_REG_CTRL);
285 boot_status = (ctrl & WDOG_CTRL_LAST_RESET) ? WDIOF_CARDRESET : 0;
287 err = misc_register(&ath79_wdt_miscdev);
290 "unable to register misc device, err=%d\n", err);
291 goto err_clk_disable;
297 clk_disable(wdt_clk);
301 static int ath79_wdt_remove(struct platform_device *pdev)
303 misc_deregister(&ath79_wdt_miscdev);
304 clk_disable(wdt_clk);
308 static void ath97_wdt_shutdown(struct platform_device *pdev)
314 static const struct of_device_id ath79_wdt_match[] = {
315 { .compatible = "qca,ar7130-wdt" },
318 MODULE_DEVICE_TABLE(of, ath79_wdt_match);
321 static struct platform_driver ath79_wdt_driver = {
322 .probe = ath79_wdt_probe,
323 .remove = ath79_wdt_remove,
324 .shutdown = ath97_wdt_shutdown,
327 .owner = THIS_MODULE,
328 .of_match_table = of_match_ptr(ath79_wdt_match),
332 module_platform_driver(ath79_wdt_driver);
334 MODULE_DESCRIPTION("Atheros AR71XX/AR724X/AR913X hardware watchdog driver");
335 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org");
336 MODULE_AUTHOR("Imre Kaloz <kaloz@openwrt.org");
337 MODULE_LICENSE("GPL v2");
338 MODULE_ALIAS("platform:" DRIVER_NAME);
339 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);