1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * IDT Interprise 79RC32434 watchdog driver
5 * Copyright (C) 2006, Ondrej Zajicek <santiago@crfreenet.org>
6 * Copyright (C) 2008, Florian Fainelli <florian@openwrt.org>
9 * SoftDog 0.05: A Software Watchdog Device
11 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>,
12 * All Rights Reserved.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/module.h> /* For module specific items */
18 #include <linux/moduleparam.h> /* For new moduleparam's */
19 #include <linux/types.h> /* For standard types (like size_t) */
20 #include <linux/errno.h> /* For the -ENODEV/... values */
21 #include <linux/kernel.h> /* For printk/panic/... */
22 #include <linux/fs.h> /* For file operations */
23 #include <linux/miscdevice.h> /* For struct miscdevice */
24 #include <linux/watchdog.h> /* For the watchdog specific items */
25 #include <linux/init.h> /* For __init/__exit/... */
26 #include <linux/platform_device.h> /* For platform_driver framework */
27 #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
28 #include <linux/uaccess.h> /* For copy_to_user/put_user/... */
29 #include <linux/io.h> /* For devm_ioremap */
31 #include <asm/mach-rc32434/integ.h> /* For the Watchdog registers */
40 static struct integ __iomem *wdt_reg;
42 static int expect_close;
44 /* Board internal clock speed in Hz,
45 * the watchdog timer ticks at. */
46 extern unsigned int idt_cpu_freq;
48 /* translate wtcompare value to seconds and vice versa */
49 #define WTCOMP2SEC(x) (x / idt_cpu_freq)
50 #define SEC2WTCOMP(x) (x * idt_cpu_freq)
52 /* Use a default timeout of 20s. This should be
53 * safe for CPU clock speeds up to 400MHz, as
54 * ((2 ^ 32) - 1) / (400MHz / 2) = 21s. */
55 #define WATCHDOG_TIMEOUT 20
57 static int timeout = WATCHDOG_TIMEOUT;
58 module_param(timeout, int, 0);
59 MODULE_PARM_DESC(timeout, "Watchdog timeout value, in seconds (default="
60 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
62 static bool nowayout = WATCHDOG_NOWAYOUT;
63 module_param(nowayout, bool, 0);
64 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
65 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
67 /* apply or and nand masks to data read from addr and write back */
68 #define SET_BITS(addr, or, nand) \
69 writel((readl(&addr) | or) & ~nand, &addr)
71 static int rc32434_wdt_set(int new_timeout)
73 int max_to = WTCOMP2SEC((u32)-1);
75 if (new_timeout < 0 || new_timeout > max_to) {
76 pr_err("timeout value must be between 0 and %d\n", max_to);
79 timeout = new_timeout;
80 spin_lock(&rc32434_wdt_device.io_lock);
81 writel(SEC2WTCOMP(timeout), &wdt_reg->wtcompare);
82 spin_unlock(&rc32434_wdt_device.io_lock);
87 static void rc32434_wdt_start(void)
91 spin_lock(&rc32434_wdt_device.io_lock);
93 /* zero the counter before enabling */
94 writel(0, &wdt_reg->wtcount);
96 /* don't generate a non-maskable interrupt,
97 * do a warm reset instead */
98 nand = 1 << RC32434_ERR_WNE;
99 or = 1 << RC32434_ERR_WRE;
101 /* reset the ERRCS timeout bit in case it's set */
102 nand |= 1 << RC32434_ERR_WTO;
104 SET_BITS(wdt_reg->errcs, or, nand);
106 /* set the timeout (either default or based on module param) */
107 rc32434_wdt_set(timeout);
109 /* reset WTC timeout bit and enable WDT */
110 nand = 1 << RC32434_WTC_TO;
111 or = 1 << RC32434_WTC_EN;
113 SET_BITS(wdt_reg->wtc, or, nand);
115 spin_unlock(&rc32434_wdt_device.io_lock);
116 pr_info("Started watchdog timer\n");
119 static void rc32434_wdt_stop(void)
121 spin_lock(&rc32434_wdt_device.io_lock);
124 SET_BITS(wdt_reg->wtc, 0, 1 << RC32434_WTC_EN);
126 spin_unlock(&rc32434_wdt_device.io_lock);
127 pr_info("Stopped watchdog timer\n");
130 static void rc32434_wdt_ping(void)
132 spin_lock(&rc32434_wdt_device.io_lock);
133 writel(0, &wdt_reg->wtcount);
134 spin_unlock(&rc32434_wdt_device.io_lock);
137 static int rc32434_wdt_open(struct inode *inode, struct file *file)
139 if (test_and_set_bit(0, &rc32434_wdt_device.inuse))
143 __module_get(THIS_MODULE);
148 return stream_open(inode, file);
151 static int rc32434_wdt_release(struct inode *inode, struct file *file)
153 if (expect_close == 42) {
155 module_put(THIS_MODULE);
157 pr_crit("device closed unexpectedly. WDT will not stop!\n");
160 clear_bit(0, &rc32434_wdt_device.inuse);
164 static ssize_t rc32434_wdt_write(struct file *file, const char *data,
165 size_t len, loff_t *ppos)
171 /* In case it was set long ago */
174 for (i = 0; i != len; i++) {
176 if (get_user(c, data + i))
188 static long rc32434_wdt_ioctl(struct file *file, unsigned int cmd,
191 void __user *argp = (void __user *)arg;
194 static const struct watchdog_info ident = {
195 .options = WDIOF_SETTIMEOUT |
196 WDIOF_KEEPALIVEPING |
198 .identity = "RC32434_WDT Watchdog",
201 case WDIOC_GETSUPPORT:
202 if (copy_to_user(argp, &ident, sizeof(ident)))
205 case WDIOC_GETSTATUS:
206 case WDIOC_GETBOOTSTATUS:
208 if (copy_to_user(argp, &value, sizeof(int)))
211 case WDIOC_SETOPTIONS:
212 if (copy_from_user(&value, argp, sizeof(int)))
215 case WDIOS_ENABLECARD:
218 case WDIOS_DISABLECARD:
225 case WDIOC_KEEPALIVE:
228 case WDIOC_SETTIMEOUT:
229 if (copy_from_user(&new_timeout, argp, sizeof(int)))
231 if (rc32434_wdt_set(new_timeout))
234 case WDIOC_GETTIMEOUT:
235 return copy_to_user(argp, &timeout, sizeof(int)) ? -EFAULT : 0;
243 static const struct file_operations rc32434_wdt_fops = {
244 .owner = THIS_MODULE,
246 .write = rc32434_wdt_write,
247 .unlocked_ioctl = rc32434_wdt_ioctl,
248 .compat_ioctl = compat_ptr_ioctl,
249 .open = rc32434_wdt_open,
250 .release = rc32434_wdt_release,
253 static struct miscdevice rc32434_wdt_miscdev = {
254 .minor = WATCHDOG_MINOR,
256 .fops = &rc32434_wdt_fops,
259 static int rc32434_wdt_probe(struct platform_device *pdev)
264 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rb532_wdt_res");
266 pr_err("failed to retrieve resources\n");
270 wdt_reg = devm_ioremap(&pdev->dev, r->start, resource_size(r));
272 pr_err("failed to remap I/O resources\n");
276 spin_lock_init(&rc32434_wdt_device.io_lock);
278 /* Make sure the watchdog is not running */
281 /* Check that the heartbeat value is within it's range;
282 * if not reset to the default */
283 if (rc32434_wdt_set(timeout)) {
284 rc32434_wdt_set(WATCHDOG_TIMEOUT);
285 pr_info("timeout value must be between 0 and %d\n",
286 WTCOMP2SEC((u32)-1));
289 ret = misc_register(&rc32434_wdt_miscdev);
291 pr_err("failed to register watchdog device\n");
295 pr_info("Watchdog Timer version " VERSION ", timer margin: %d sec\n",
301 static int rc32434_wdt_remove(struct platform_device *pdev)
303 misc_deregister(&rc32434_wdt_miscdev);
307 static void rc32434_wdt_shutdown(struct platform_device *pdev)
312 static struct platform_driver rc32434_wdt_driver = {
313 .probe = rc32434_wdt_probe,
314 .remove = rc32434_wdt_remove,
315 .shutdown = rc32434_wdt_shutdown,
317 .name = "rc32434_wdt",
321 module_platform_driver(rc32434_wdt_driver);
323 MODULE_AUTHOR("Ondrej Zajicek <santiago@crfreenet.org>,"
324 "Florian Fainelli <florian@openwrt.org>");
325 MODULE_DESCRIPTION("Driver for the IDT RC32434 SoC watchdog");
326 MODULE_LICENSE("GPL");