2 * Driver for the MTX-1 Watchdog.
4 * (C) Copyright 2005 4G Systems <info@4g-systems.biz>,
6 * http://www.4g-systems.biz
8 * (C) Copyright 2007 OpenWrt.org, Florian Fainelli <florian@openwrt.org>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
15 * Neither Michael Stickel nor 4G Systems admit liability nor provide
16 * warranty for any of this software. This material is provided
17 * "AS-IS" and at no charge.
19 * (c) Copyright 2005 4G Systems <info@4g-systems.biz>
22 * Author: Michael Stickel michael.stickel@4g-systems.biz
25 * Author: Florian Fainelli florian@openwrt.org
26 * use the Linux watchdog/timer APIs
28 * The Watchdog is configured to reset the MTX-1
29 * if it is not triggered for 100 seconds.
30 * It should not be triggered more often than 1.6 seconds.
32 * A timer triggers the watchdog every 5 seconds, until
33 * it is opened for the first time. After the first open
34 * it MUST be triggered every 2..95 seconds.
37 #include <linux/module.h>
38 #include <linux/moduleparam.h>
39 #include <linux/types.h>
40 #include <linux/errno.h>
41 #include <linux/miscdevice.h>
43 #include <linux/ioport.h>
44 #include <linux/timer.h>
45 #include <linux/completion.h>
46 #include <linux/jiffies.h>
47 #include <linux/watchdog.h>
48 #include <linux/platform_device.h>
50 #include <linux/uaccess.h>
51 #include <linux/gpio.h>
53 #include <asm/mach-au1x00/au1000.h>
55 #define MTX1_WDT_INTERVAL (5 * HZ)
57 static int ticks
= 100 * HZ
;
60 struct completion stop
;
63 struct timer_list timer
;
71 static void mtx1_wdt_trigger(unsigned long unused
)
73 spin_lock(&mtx1_wdt_device
.lock
);
74 if (mtx1_wdt_device
.running
)
78 mtx1_wdt_device
.gstate
= !mtx1_wdt_device
.gstate
;
79 gpio_set_value(mtx1_wdt_device
.gpio
, mtx1_wdt_device
.gstate
);
81 if (mtx1_wdt_device
.queue
&& ticks
)
82 mod_timer(&mtx1_wdt_device
.timer
, jiffies
+ MTX1_WDT_INTERVAL
);
84 complete(&mtx1_wdt_device
.stop
);
85 spin_unlock(&mtx1_wdt_device
.lock
);
88 static void mtx1_wdt_reset(void)
90 ticks
= mtx1_wdt_device
.default_ticks
;
94 static void mtx1_wdt_start(void)
98 spin_lock_irqsave(&mtx1_wdt_device
.lock
, flags
);
99 if (!mtx1_wdt_device
.queue
) {
100 mtx1_wdt_device
.queue
= 1;
101 mtx1_wdt_device
.gstate
= 1;
102 gpio_set_value(mtx1_wdt_device
.gpio
, 1);
103 mod_timer(&mtx1_wdt_device
.timer
, jiffies
+ MTX1_WDT_INTERVAL
);
105 mtx1_wdt_device
.running
++;
106 spin_unlock_irqrestore(&mtx1_wdt_device
.lock
, flags
);
109 static int mtx1_wdt_stop(void)
113 spin_lock_irqsave(&mtx1_wdt_device
.lock
, flags
);
114 if (mtx1_wdt_device
.queue
) {
115 mtx1_wdt_device
.queue
= 0;
116 mtx1_wdt_device
.gstate
= 0;
117 gpio_set_value(mtx1_wdt_device
.gpio
, 0);
119 ticks
= mtx1_wdt_device
.default_ticks
;
120 spin_unlock_irqrestore(&mtx1_wdt_device
.lock
, flags
);
124 /* Filesystem functions */
126 static int mtx1_wdt_open(struct inode
*inode
, struct file
*file
)
128 if (test_and_set_bit(0, &mtx1_wdt_device
.inuse
))
130 return nonseekable_open(inode
, file
);
134 static int mtx1_wdt_release(struct inode
*inode
, struct file
*file
)
136 clear_bit(0, &mtx1_wdt_device
.inuse
);
140 static long mtx1_wdt_ioctl(struct file
*file
, unsigned int cmd
,
143 void __user
*argp
= (void __user
*)arg
;
144 int __user
*p
= (int __user
*)argp
;
146 static const struct watchdog_info ident
= {
147 .options
= WDIOF_CARDRESET
,
148 .identity
= "MTX-1 WDT",
152 case WDIOC_GETSUPPORT
:
153 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
156 case WDIOC_GETSTATUS
:
157 case WDIOC_GETBOOTSTATUS
:
160 case WDIOC_SETOPTIONS
:
161 if (get_user(value
, p
))
163 if (value
& WDIOS_ENABLECARD
)
165 else if (value
& WDIOS_DISABLECARD
)
170 case WDIOC_KEEPALIVE
:
180 static ssize_t
mtx1_wdt_write(struct file
*file
, const char *buf
,
181 size_t count
, loff_t
*ppos
)
189 static const struct file_operations mtx1_wdt_fops
= {
190 .owner
= THIS_MODULE
,
192 .unlocked_ioctl
= mtx1_wdt_ioctl
,
193 .open
= mtx1_wdt_open
,
194 .write
= mtx1_wdt_write
,
195 .release
= mtx1_wdt_release
,
199 static struct miscdevice mtx1_wdt_misc
= {
200 .minor
= WATCHDOG_MINOR
,
202 .fops
= &mtx1_wdt_fops
,
206 static int mtx1_wdt_probe(struct platform_device
*pdev
)
210 mtx1_wdt_device
.gpio
= pdev
->resource
[0].start
;
211 ret
= devm_gpio_request_one(&pdev
->dev
, mtx1_wdt_device
.gpio
,
212 GPIOF_OUT_INIT_HIGH
, "mtx1-wdt");
214 dev_err(&pdev
->dev
, "failed to request gpio");
218 spin_lock_init(&mtx1_wdt_device
.lock
);
219 init_completion(&mtx1_wdt_device
.stop
);
220 mtx1_wdt_device
.queue
= 0;
221 clear_bit(0, &mtx1_wdt_device
.inuse
);
222 setup_timer(&mtx1_wdt_device
.timer
, mtx1_wdt_trigger
, 0L);
223 mtx1_wdt_device
.default_ticks
= ticks
;
225 ret
= misc_register(&mtx1_wdt_misc
);
227 dev_err(&pdev
->dev
, "failed to register\n");
231 dev_info(&pdev
->dev
, "MTX-1 Watchdog driver\n");
235 static int mtx1_wdt_remove(struct platform_device
*pdev
)
237 /* FIXME: do we need to lock this test ? */
238 if (mtx1_wdt_device
.queue
) {
239 mtx1_wdt_device
.queue
= 0;
240 wait_for_completion(&mtx1_wdt_device
.stop
);
243 misc_deregister(&mtx1_wdt_misc
);
247 static struct platform_driver mtx1_wdt_driver
= {
248 .probe
= mtx1_wdt_probe
,
249 .remove
= mtx1_wdt_remove
,
250 .driver
.name
= "mtx1-wdt",
251 .driver
.owner
= THIS_MODULE
,
254 module_platform_driver(mtx1_wdt_driver
);
256 MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
257 MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
258 MODULE_LICENSE("GPL");
259 MODULE_ALIAS("platform:mtx1-wdt");