1 // SPDX-License-Identifier: GPL-2.0+
3 * Driver for the MTX-1 Watchdog.
5 * (C) Copyright 2005 4G Systems <info@4g-systems.biz>,
7 * http://www.4g-systems.biz
9 * (C) Copyright 2007 OpenWrt.org, Florian Fainelli <florian@openwrt.org>
10 * (c) Copyright 2005 4G Systems <info@4g-systems.biz>
13 * Author: Michael Stickel michael.stickel@4g-systems.biz
16 * Author: Florian Fainelli florian@openwrt.org
17 * use the Linux watchdog/timer APIs
19 * The Watchdog is configured to reset the MTX-1
20 * if it is not triggered for 100 seconds.
21 * It should not be triggered more often than 1.6 seconds.
23 * A timer triggers the watchdog every 5 seconds, until
24 * it is opened for the first time. After the first open
25 * it MUST be triggered every 2..95 seconds.
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/types.h>
31 #include <linux/errno.h>
32 #include <linux/miscdevice.h>
34 #include <linux/ioport.h>
35 #include <linux/timer.h>
36 #include <linux/completion.h>
37 #include <linux/jiffies.h>
38 #include <linux/watchdog.h>
39 #include <linux/platform_device.h>
41 #include <linux/uaccess.h>
42 #include <linux/gpio/consumer.h>
44 #define MTX1_WDT_INTERVAL (5 * HZ)
46 static int ticks = 100 * HZ;
49 struct completion stop;
52 struct timer_list timer;
56 struct gpio_desc *gpiod;
60 static void mtx1_wdt_trigger(struct timer_list *unused)
62 spin_lock(&mtx1_wdt_device.lock);
63 if (mtx1_wdt_device.running)
67 mtx1_wdt_device.gstate = !mtx1_wdt_device.gstate;
68 gpiod_set_value(mtx1_wdt_device.gpiod, mtx1_wdt_device.gstate);
70 if (mtx1_wdt_device.queue && ticks)
71 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
73 complete(&mtx1_wdt_device.stop);
74 spin_unlock(&mtx1_wdt_device.lock);
77 static void mtx1_wdt_reset(void)
79 ticks = mtx1_wdt_device.default_ticks;
83 static void mtx1_wdt_start(void)
87 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
88 if (!mtx1_wdt_device.queue) {
89 mtx1_wdt_device.queue = 1;
90 mtx1_wdt_device.gstate = 1;
91 gpiod_set_value(mtx1_wdt_device.gpiod, 1);
92 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
94 mtx1_wdt_device.running++;
95 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
98 static int mtx1_wdt_stop(void)
102 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
103 if (mtx1_wdt_device.queue) {
104 mtx1_wdt_device.queue = 0;
105 mtx1_wdt_device.gstate = 0;
106 gpiod_set_value(mtx1_wdt_device.gpiod, 0);
108 ticks = mtx1_wdt_device.default_ticks;
109 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
113 /* Filesystem functions */
115 static int mtx1_wdt_open(struct inode *inode, struct file *file)
117 if (test_and_set_bit(0, &mtx1_wdt_device.inuse))
119 return stream_open(inode, file);
123 static int mtx1_wdt_release(struct inode *inode, struct file *file)
125 clear_bit(0, &mtx1_wdt_device.inuse);
129 static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd,
132 void __user *argp = (void __user *)arg;
133 int __user *p = (int __user *)argp;
135 static const struct watchdog_info ident = {
136 .options = WDIOF_CARDRESET,
137 .identity = "MTX-1 WDT",
141 case WDIOC_GETSUPPORT:
142 if (copy_to_user(argp, &ident, sizeof(ident)))
145 case WDIOC_GETSTATUS:
146 case WDIOC_GETBOOTSTATUS:
149 case WDIOC_SETOPTIONS:
150 if (get_user(value, p))
152 if (value & WDIOS_ENABLECARD)
154 else if (value & WDIOS_DISABLECARD)
159 case WDIOC_KEEPALIVE:
169 static ssize_t mtx1_wdt_write(struct file *file, const char *buf,
170 size_t count, loff_t *ppos)
178 static const struct file_operations mtx1_wdt_fops = {
179 .owner = THIS_MODULE,
181 .unlocked_ioctl = mtx1_wdt_ioctl,
182 .compat_ioctl = compat_ptr_ioctl,
183 .open = mtx1_wdt_open,
184 .write = mtx1_wdt_write,
185 .release = mtx1_wdt_release,
189 static struct miscdevice mtx1_wdt_misc = {
190 .minor = WATCHDOG_MINOR,
192 .fops = &mtx1_wdt_fops,
196 static int mtx1_wdt_probe(struct platform_device *pdev)
200 mtx1_wdt_device.gpiod = devm_gpiod_get(&pdev->dev,
201 NULL, GPIOD_OUT_HIGH);
202 if (IS_ERR(mtx1_wdt_device.gpiod)) {
203 dev_err(&pdev->dev, "failed to request gpio");
204 return PTR_ERR(mtx1_wdt_device.gpiod);
207 spin_lock_init(&mtx1_wdt_device.lock);
208 init_completion(&mtx1_wdt_device.stop);
209 mtx1_wdt_device.queue = 0;
210 clear_bit(0, &mtx1_wdt_device.inuse);
211 timer_setup(&mtx1_wdt_device.timer, mtx1_wdt_trigger, 0);
212 mtx1_wdt_device.default_ticks = ticks;
214 ret = misc_register(&mtx1_wdt_misc);
216 dev_err(&pdev->dev, "failed to register\n");
220 dev_info(&pdev->dev, "MTX-1 Watchdog driver\n");
224 static int mtx1_wdt_remove(struct platform_device *pdev)
226 /* FIXME: do we need to lock this test ? */
227 if (mtx1_wdt_device.queue) {
228 mtx1_wdt_device.queue = 0;
229 wait_for_completion(&mtx1_wdt_device.stop);
232 misc_deregister(&mtx1_wdt_misc);
236 static struct platform_driver mtx1_wdt_driver = {
237 .probe = mtx1_wdt_probe,
238 .remove = mtx1_wdt_remove,
239 .driver.name = "mtx1-wdt",
240 .driver.owner = THIS_MODULE,
243 module_platform_driver(mtx1_wdt_driver);
245 MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
246 MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
247 MODULE_LICENSE("GPL");
248 MODULE_ALIAS("platform:mtx1-wdt");