1 // SPDX-License-Identifier: GPL-2.0+
3 * Driver for the MTX-1 Watchdog.
7 * http://www.4g-systems.biz
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 #include <asm/mach-au1x00/au1000.h>
46 #define MTX1_WDT_INTERVAL (5 * HZ)
48 static int ticks = 100 * HZ;
51 struct completion stop;
54 struct timer_list timer;
58 struct gpio_desc *gpiod;
62 static void mtx1_wdt_trigger(struct timer_list *unused)
64 spin_lock(&mtx1_wdt_device.lock);
65 if (mtx1_wdt_device.running)
69 mtx1_wdt_device.gstate = !mtx1_wdt_device.gstate;
70 gpiod_set_value(mtx1_wdt_device.gpiod, mtx1_wdt_device.gstate);
72 if (mtx1_wdt_device.queue && ticks)
73 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
75 complete(&mtx1_wdt_device.stop);
76 spin_unlock(&mtx1_wdt_device.lock);
79 static void mtx1_wdt_reset(void)
81 ticks = mtx1_wdt_device.default_ticks;
85 static void mtx1_wdt_start(void)
89 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
90 if (!mtx1_wdt_device.queue) {
91 mtx1_wdt_device.queue = 1;
92 mtx1_wdt_device.gstate = 1;
93 gpiod_set_value(mtx1_wdt_device.gpiod, 1);
94 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
96 mtx1_wdt_device.running++;
97 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
100 static int mtx1_wdt_stop(void)
104 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
105 if (mtx1_wdt_device.queue) {
106 mtx1_wdt_device.queue = 0;
107 mtx1_wdt_device.gstate = 0;
108 gpiod_set_value(mtx1_wdt_device.gpiod, 0);
110 ticks = mtx1_wdt_device.default_ticks;
111 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
115 /* Filesystem functions */
117 static int mtx1_wdt_open(struct inode *inode, struct file *file)
119 if (test_and_set_bit(0, &mtx1_wdt_device.inuse))
121 return stream_open(inode, file);
125 static int mtx1_wdt_release(struct inode *inode, struct file *file)
127 clear_bit(0, &mtx1_wdt_device.inuse);
131 static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd,
134 void __user *argp = (void __user *)arg;
135 int __user *p = (int __user *)argp;
137 static const struct watchdog_info ident = {
138 .options = WDIOF_CARDRESET,
139 .identity = "MTX-1 WDT",
143 case WDIOC_GETSUPPORT:
144 if (copy_to_user(argp, &ident, sizeof(ident)))
147 case WDIOC_GETSTATUS:
148 case WDIOC_GETBOOTSTATUS:
151 case WDIOC_SETOPTIONS:
152 if (get_user(value, p))
154 if (value & WDIOS_ENABLECARD)
156 else if (value & WDIOS_DISABLECARD)
161 case WDIOC_KEEPALIVE:
171 static ssize_t mtx1_wdt_write(struct file *file, const char *buf,
172 size_t count, loff_t *ppos)
180 static const struct file_operations mtx1_wdt_fops = {
181 .owner = THIS_MODULE,
183 .unlocked_ioctl = mtx1_wdt_ioctl,
184 .compat_ioctl = compat_ptr_ioctl,
185 .open = mtx1_wdt_open,
186 .write = mtx1_wdt_write,
187 .release = mtx1_wdt_release,
191 static struct miscdevice mtx1_wdt_misc = {
192 .minor = WATCHDOG_MINOR,
194 .fops = &mtx1_wdt_fops,
198 static int mtx1_wdt_probe(struct platform_device *pdev)
202 mtx1_wdt_device.gpiod = devm_gpiod_get(&pdev->dev,
203 NULL, GPIOD_OUT_HIGH);
204 if (IS_ERR(mtx1_wdt_device.gpiod)) {
205 dev_err(&pdev->dev, "failed to request gpio");
206 return PTR_ERR(mtx1_wdt_device.gpiod);
209 spin_lock_init(&mtx1_wdt_device.lock);
210 init_completion(&mtx1_wdt_device.stop);
211 mtx1_wdt_device.queue = 0;
212 clear_bit(0, &mtx1_wdt_device.inuse);
213 timer_setup(&mtx1_wdt_device.timer, mtx1_wdt_trigger, 0);
214 mtx1_wdt_device.default_ticks = ticks;
216 ret = misc_register(&mtx1_wdt_misc);
218 dev_err(&pdev->dev, "failed to register\n");
222 dev_info(&pdev->dev, "MTX-1 Watchdog driver\n");
226 static int mtx1_wdt_remove(struct platform_device *pdev)
228 /* FIXME: do we need to lock this test ? */
229 if (mtx1_wdt_device.queue) {
230 mtx1_wdt_device.queue = 0;
231 wait_for_completion(&mtx1_wdt_device.stop);
234 misc_deregister(&mtx1_wdt_misc);
238 static struct platform_driver mtx1_wdt_driver = {
239 .probe = mtx1_wdt_probe,
240 .remove = mtx1_wdt_remove,
241 .driver.name = "mtx1-wdt",
242 .driver.owner = THIS_MODULE,
245 module_platform_driver(mtx1_wdt_driver);
247 MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
248 MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
249 MODULE_LICENSE("GPL");
250 MODULE_ALIAS("platform:mtx1-wdt");