1 // SPDX-License-Identifier: GPL-2.0-only
3 * Atheros AR71XX/AR724X/AR913X built-in hardware watchdog timer.
5 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
8 * This driver was based on: drivers/watchdog/ixp4xx_wdt.c
9 * Author: Deepak Saxena <dsaxena@plexity.net>
10 * Copyright 2004 (c) MontaVista, Software, Inc.
12 * which again was based on sa1100 driver,
13 * Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18 #include <linux/bitops.h>
19 #include <linux/delay.h>
20 #include <linux/errno.h>
23 #include <linux/kernel.h>
24 #include <linux/miscdevice.h>
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/platform_device.h>
28 #include <linux/types.h>
29 #include <linux/watchdog.h>
30 #include <linux/clk.h>
31 #include <linux/err.h>
33 #include <linux/of_platform.h>
34 #include <linux/uaccess.h>
36 #define DRIVER_NAME "ath79-wdt"
38 #define WDT_TIMEOUT 15 /* seconds */
40 #define WDOG_REG_CTRL 0x00
41 #define WDOG_REG_TIMER 0x04
43 #define WDOG_CTRL_LAST_RESET BIT(31)
44 #define WDOG_CTRL_ACTION_MASK 3
45 #define WDOG_CTRL_ACTION_NONE 0 /* no action */
46 #define WDOG_CTRL_ACTION_GPI 1 /* general purpose interrupt */
47 #define WDOG_CTRL_ACTION_NMI 2 /* NMI */
48 #define WDOG_CTRL_ACTION_FCR 3 /* full chip reset */
50 static bool nowayout = WATCHDOG_NOWAYOUT;
51 module_param(nowayout, bool, 0);
52 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
53 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
55 static int timeout = WDT_TIMEOUT;
56 module_param(timeout, int, 0);
57 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds "
58 "(default=" __MODULE_STRING(WDT_TIMEOUT) "s)");
60 static unsigned long wdt_flags;
62 #define WDT_FLAGS_BUSY 0
63 #define WDT_FLAGS_EXPECT_CLOSE 1
65 static struct clk *wdt_clk;
66 static unsigned long wdt_freq;
67 static int boot_status;
68 static int max_timeout;
69 static void __iomem *wdt_base;
71 static inline void ath79_wdt_wr(unsigned reg, u32 val)
73 iowrite32(val, wdt_base + reg);
76 static inline u32 ath79_wdt_rr(unsigned reg)
78 return ioread32(wdt_base + reg);
81 static inline void ath79_wdt_keepalive(void)
83 ath79_wdt_wr(WDOG_REG_TIMER, wdt_freq * timeout);
85 ath79_wdt_rr(WDOG_REG_TIMER);
88 static inline void ath79_wdt_enable(void)
90 ath79_wdt_keepalive();
93 * Updating the TIMER register requires a few microseconds
94 * on the AR934x SoCs at least. Use a small delay to ensure
95 * that the TIMER register is updated within the hardware
96 * before enabling the watchdog.
100 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_FCR);
102 ath79_wdt_rr(WDOG_REG_CTRL);
105 static inline void ath79_wdt_disable(void)
107 ath79_wdt_wr(WDOG_REG_CTRL, WDOG_CTRL_ACTION_NONE);
109 ath79_wdt_rr(WDOG_REG_CTRL);
112 static int ath79_wdt_set_timeout(int val)
114 if (val < 1 || val > max_timeout)
118 ath79_wdt_keepalive();
123 static int ath79_wdt_open(struct inode *inode, struct file *file)
125 if (test_and_set_bit(WDT_FLAGS_BUSY, &wdt_flags))
128 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
131 return stream_open(inode, file);
134 static int ath79_wdt_release(struct inode *inode, struct file *file)
136 if (test_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags))
139 pr_crit("device closed unexpectedly, watchdog timer will not stop!\n");
140 ath79_wdt_keepalive();
143 clear_bit(WDT_FLAGS_BUSY, &wdt_flags);
144 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
149 static ssize_t ath79_wdt_write(struct file *file, const char *data,
150 size_t len, loff_t *ppos)
156 clear_bit(WDT_FLAGS_EXPECT_CLOSE, &wdt_flags);
158 for (i = 0; i != len; i++) {
161 if (get_user(c, data + i))
165 set_bit(WDT_FLAGS_EXPECT_CLOSE,
170 ath79_wdt_keepalive();
176 static const struct watchdog_info ath79_wdt_info = {
177 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
178 WDIOF_MAGICCLOSE | WDIOF_CARDRESET,
179 .firmware_version = 0,
180 .identity = "ATH79 watchdog",
183 static long ath79_wdt_ioctl(struct file *file, unsigned int cmd,
186 void __user *argp = (void __user *)arg;
187 int __user *p = argp;
192 case WDIOC_GETSUPPORT:
193 err = copy_to_user(argp, &ath79_wdt_info,
194 sizeof(ath79_wdt_info)) ? -EFAULT : 0;
197 case WDIOC_GETSTATUS:
198 err = put_user(0, p);
201 case WDIOC_GETBOOTSTATUS:
202 err = put_user(boot_status, p);
205 case WDIOC_KEEPALIVE:
206 ath79_wdt_keepalive();
210 case WDIOC_SETTIMEOUT:
211 err = get_user(t, p);
215 err = ath79_wdt_set_timeout(t);
220 case WDIOC_GETTIMEOUT:
221 err = put_user(timeout, p);
232 static const struct file_operations ath79_wdt_fops = {
233 .owner = THIS_MODULE,
235 .write = ath79_wdt_write,
236 .unlocked_ioctl = ath79_wdt_ioctl,
237 .compat_ioctl = compat_ptr_ioctl,
238 .open = ath79_wdt_open,
239 .release = ath79_wdt_release,
242 static struct miscdevice ath79_wdt_miscdev = {
243 .minor = WATCHDOG_MINOR,
245 .fops = &ath79_wdt_fops,
248 static int ath79_wdt_probe(struct platform_device *pdev)
256 wdt_base = devm_platform_ioremap_resource(pdev, 0);
257 if (IS_ERR(wdt_base))
258 return PTR_ERR(wdt_base);
260 wdt_clk = devm_clk_get(&pdev->dev, "wdt");
262 return PTR_ERR(wdt_clk);
264 err = clk_prepare_enable(wdt_clk);
268 wdt_freq = clk_get_rate(wdt_clk);
271 goto err_clk_disable;
274 max_timeout = (0xfffffffful / wdt_freq);
275 if (timeout < 1 || timeout > max_timeout) {
276 timeout = max_timeout;
278 "timeout value must be 0 < timeout < %d, using %d\n",
279 max_timeout, timeout);
282 ctrl = ath79_wdt_rr(WDOG_REG_CTRL);
283 boot_status = (ctrl & WDOG_CTRL_LAST_RESET) ? WDIOF_CARDRESET : 0;
285 err = misc_register(&ath79_wdt_miscdev);
288 "unable to register misc device, err=%d\n", err);
289 goto err_clk_disable;
295 clk_disable_unprepare(wdt_clk);
299 static int ath79_wdt_remove(struct platform_device *pdev)
301 misc_deregister(&ath79_wdt_miscdev);
302 clk_disable_unprepare(wdt_clk);
306 static void ath79_wdt_shutdown(struct platform_device *pdev)
312 static const struct of_device_id ath79_wdt_match[] = {
313 { .compatible = "qca,ar7130-wdt" },
316 MODULE_DEVICE_TABLE(of, ath79_wdt_match);
319 static struct platform_driver ath79_wdt_driver = {
320 .probe = ath79_wdt_probe,
321 .remove = ath79_wdt_remove,
322 .shutdown = ath79_wdt_shutdown,
325 .of_match_table = of_match_ptr(ath79_wdt_match),
329 module_platform_driver(ath79_wdt_driver);
331 MODULE_DESCRIPTION("Atheros AR71XX/AR724X/AR913X hardware watchdog driver");
332 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org");
333 MODULE_AUTHOR("Imre Kaloz <kaloz@openwrt.org");
334 MODULE_LICENSE("GPL v2");
335 MODULE_ALIAS("platform:" DRIVER_NAME);