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/init.h>
44 #include <linux/ioport.h>
45 #include <linux/timer.h>
46 #include <linux/completion.h>
47 #include <linux/jiffies.h>
48 #include <linux/watchdog.h>
49 #include <linux/platform_device.h>
51 #include <linux/uaccess.h>
52 #include <linux/gpio.h>
54 #include <asm/mach-au1x00/au1000.h>
56 #define MTX1_WDT_INTERVAL (5 * HZ)
58 static int ticks
= 100 * HZ
;
61 struct completion stop
;
64 struct timer_list timer
;
72 static void mtx1_wdt_trigger(unsigned long unused
)
74 spin_lock(&mtx1_wdt_device
.lock
);
75 if (mtx1_wdt_device
.running
)
79 mtx1_wdt_device
.gstate
= !mtx1_wdt_device
.gstate
;
80 gpio_set_value(mtx1_wdt_device
.gpio
, mtx1_wdt_device
.gstate
);
82 if (mtx1_wdt_device
.queue
&& ticks
)
83 mod_timer(&mtx1_wdt_device
.timer
, jiffies
+ MTX1_WDT_INTERVAL
);
85 complete(&mtx1_wdt_device
.stop
);
86 spin_unlock(&mtx1_wdt_device
.lock
);
89 static void mtx1_wdt_reset(void)
91 ticks
= mtx1_wdt_device
.default_ticks
;
95 static void mtx1_wdt_start(void)
99 spin_lock_irqsave(&mtx1_wdt_device
.lock
, flags
);
100 if (!mtx1_wdt_device
.queue
) {
101 mtx1_wdt_device
.queue
= 1;
102 mtx1_wdt_device
.gstate
= 1;
103 gpio_set_value(mtx1_wdt_device
.gpio
, 1);
104 mod_timer(&mtx1_wdt_device
.timer
, jiffies
+ MTX1_WDT_INTERVAL
);
106 mtx1_wdt_device
.running
++;
107 spin_unlock_irqrestore(&mtx1_wdt_device
.lock
, flags
);
110 static int mtx1_wdt_stop(void)
114 spin_lock_irqsave(&mtx1_wdt_device
.lock
, flags
);
115 if (mtx1_wdt_device
.queue
) {
116 mtx1_wdt_device
.queue
= 0;
117 mtx1_wdt_device
.gstate
= 0;
118 gpio_set_value(mtx1_wdt_device
.gpio
, 0);
120 ticks
= mtx1_wdt_device
.default_ticks
;
121 spin_unlock_irqrestore(&mtx1_wdt_device
.lock
, flags
);
125 /* Filesystem functions */
127 static int mtx1_wdt_open(struct inode
*inode
, struct file
*file
)
129 if (test_and_set_bit(0, &mtx1_wdt_device
.inuse
))
131 return nonseekable_open(inode
, file
);
135 static int mtx1_wdt_release(struct inode
*inode
, struct file
*file
)
137 clear_bit(0, &mtx1_wdt_device
.inuse
);
141 static long mtx1_wdt_ioctl(struct file
*file
, unsigned int cmd
,
144 void __user
*argp
= (void __user
*)arg
;
145 int __user
*p
= (int __user
*)argp
;
147 static const struct watchdog_info ident
= {
148 .options
= WDIOF_CARDRESET
,
149 .identity
= "MTX-1 WDT",
153 case WDIOC_GETSUPPORT
:
154 if (copy_to_user(argp
, &ident
, sizeof(ident
)))
157 case WDIOC_GETSTATUS
:
158 case WDIOC_GETBOOTSTATUS
:
161 case WDIOC_SETOPTIONS
:
162 if (get_user(value
, p
))
164 if (value
& WDIOS_ENABLECARD
)
166 else if (value
& WDIOS_DISABLECARD
)
171 case WDIOC_KEEPALIVE
:
181 static ssize_t
mtx1_wdt_write(struct file
*file
, const char *buf
,
182 size_t count
, loff_t
*ppos
)
190 static const struct file_operations mtx1_wdt_fops
= {
191 .owner
= THIS_MODULE
,
193 .unlocked_ioctl
= mtx1_wdt_ioctl
,
194 .open
= mtx1_wdt_open
,
195 .write
= mtx1_wdt_write
,
196 .release
= mtx1_wdt_release
,
200 static struct miscdevice mtx1_wdt_misc
= {
201 .minor
= WATCHDOG_MINOR
,
203 .fops
= &mtx1_wdt_fops
,
207 static int __devinit
mtx1_wdt_probe(struct platform_device
*pdev
)
211 mtx1_wdt_device
.gpio
= pdev
->resource
[0].start
;
212 ret
= gpio_request_one(mtx1_wdt_device
.gpio
,
213 GPIOF_OUT_INIT_HIGH
, "mtx1-wdt");
215 dev_err(&pdev
->dev
, "failed to request gpio");
219 spin_lock_init(&mtx1_wdt_device
.lock
);
220 init_completion(&mtx1_wdt_device
.stop
);
221 mtx1_wdt_device
.queue
= 0;
222 clear_bit(0, &mtx1_wdt_device
.inuse
);
223 setup_timer(&mtx1_wdt_device
.timer
, mtx1_wdt_trigger
, 0L);
224 mtx1_wdt_device
.default_ticks
= ticks
;
226 ret
= misc_register(&mtx1_wdt_misc
);
228 printk(KERN_ERR
" mtx-1_wdt : failed to register\n");
232 printk(KERN_INFO
"MTX-1 Watchdog driver\n");
236 static int __devexit
mtx1_wdt_remove(struct platform_device
*pdev
)
238 /* FIXME: do we need to lock this test ? */
239 if (mtx1_wdt_device
.queue
) {
240 mtx1_wdt_device
.queue
= 0;
241 wait_for_completion(&mtx1_wdt_device
.stop
);
244 gpio_free(mtx1_wdt_device
.gpio
);
245 misc_deregister(&mtx1_wdt_misc
);
249 static struct platform_driver mtx1_wdt_driver
= {
250 .probe
= mtx1_wdt_probe
,
251 .remove
= __devexit_p(mtx1_wdt_remove
),
252 .driver
.name
= "mtx1-wdt",
253 .driver
.owner
= THIS_MODULE
,
256 static int __init
mtx1_wdt_init(void)
258 return platform_driver_register(&mtx1_wdt_driver
);
261 static void __exit
mtx1_wdt_exit(void)
263 platform_driver_unregister(&mtx1_wdt_driver
);
266 module_init(mtx1_wdt_init
);
267 module_exit(mtx1_wdt_exit
);
269 MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
270 MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
271 MODULE_LICENSE("GPL");
272 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
273 MODULE_ALIAS("platform:mtx1-wdt");