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
,
180 .unlocked_ioctl
= mtx1_wdt_ioctl
,
181 .compat_ioctl
= compat_ptr_ioctl
,
182 .open
= mtx1_wdt_open
,
183 .write
= mtx1_wdt_write
,
184 .release
= mtx1_wdt_release
,
188 static struct miscdevice mtx1_wdt_misc
= {
189 .minor
= WATCHDOG_MINOR
,
191 .fops
= &mtx1_wdt_fops
,
195 static int mtx1_wdt_probe(struct platform_device
*pdev
)
199 mtx1_wdt_device
.gpiod
= devm_gpiod_get(&pdev
->dev
,
200 NULL
, GPIOD_OUT_HIGH
);
201 if (IS_ERR(mtx1_wdt_device
.gpiod
)) {
202 dev_err(&pdev
->dev
, "failed to request gpio");
203 return PTR_ERR(mtx1_wdt_device
.gpiod
);
206 spin_lock_init(&mtx1_wdt_device
.lock
);
207 init_completion(&mtx1_wdt_device
.stop
);
208 mtx1_wdt_device
.queue
= 0;
209 clear_bit(0, &mtx1_wdt_device
.inuse
);
210 timer_setup(&mtx1_wdt_device
.timer
, mtx1_wdt_trigger
, 0);
211 mtx1_wdt_device
.default_ticks
= ticks
;
213 ret
= misc_register(&mtx1_wdt_misc
);
215 dev_err(&pdev
->dev
, "failed to register\n");
219 dev_info(&pdev
->dev
, "MTX-1 Watchdog driver\n");
223 static void mtx1_wdt_remove(struct platform_device
*pdev
)
225 /* FIXME: do we need to lock this test ? */
226 if (mtx1_wdt_device
.queue
) {
227 mtx1_wdt_device
.queue
= 0;
228 wait_for_completion(&mtx1_wdt_device
.stop
);
231 misc_deregister(&mtx1_wdt_misc
);
234 static struct platform_driver mtx1_wdt_driver
= {
235 .probe
= mtx1_wdt_probe
,
236 .remove
= mtx1_wdt_remove
,
237 .driver
.name
= "mtx1-wdt",
240 module_platform_driver(mtx1_wdt_driver
);
242 MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
243 MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
244 MODULE_LICENSE("GPL");
245 MODULE_ALIAS("platform:mtx1-wdt");