Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Driver for the MTX-1 Watchdog. |
| 3 | * |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 4 | * (C) Copyright 2005 4G Systems <info@4g-systems.biz>, |
| 5 | * All Rights Reserved. |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 6 | * http://www.4g-systems.biz |
| 7 | * |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 8 | * (C) Copyright 2007 OpenWrt.org, Florian Fainelli <florian@openwrt.org> |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 9 | * |
| 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. |
| 14 | * |
| 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. |
| 18 | * |
| 19 | * (c) Copyright 2005 4G Systems <info@4g-systems.biz> |
| 20 | * |
| 21 | * Release 0.01. |
| 22 | * Author: Michael Stickel michael.stickel@4g-systems.biz |
| 23 | * |
| 24 | * Release 0.02. |
| 25 | * Author: Florian Fainelli florian@openwrt.org |
| 26 | * use the Linux watchdog/timer APIs |
| 27 | * |
| 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. |
| 31 | * |
| 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. |
| 35 | */ |
| 36 | |
| 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> |
| 42 | #include <linux/fs.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> |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 49 | #include <linux/platform_device.h> |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 50 | #include <linux/io.h> |
| 51 | #include <linux/uaccess.h> |
| 52 | #include <linux/gpio.h> |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 53 | |
| 54 | #include <asm/mach-au1x00/au1000.h> |
| 55 | |
| 56 | #define MTX1_WDT_INTERVAL (5 * HZ) |
| 57 | |
| 58 | static int ticks = 100 * HZ; |
| 59 | |
| 60 | static struct { |
| 61 | struct completion stop; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 62 | spinlock_t lock; |
Florian Fainelli | 996d62d | 2008-02-25 13:39:57 +0100 | [diff] [blame] | 63 | int running; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 64 | struct timer_list timer; |
Florian Fainelli | 996d62d | 2008-02-25 13:39:57 +0100 | [diff] [blame] | 65 | int queue; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 66 | int default_ticks; |
| 67 | unsigned long inuse; |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 68 | unsigned gpio; |
Manuel Lauss | b7f720d | 2011-05-08 10:42:20 +0200 | [diff] [blame] | 69 | int gstate; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 70 | } mtx1_wdt_device; |
| 71 | |
| 72 | static void mtx1_wdt_trigger(unsigned long unused) |
| 73 | { |
| 74 | u32 tmp; |
| 75 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 76 | spin_lock(&mtx1_wdt_device.lock); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 77 | if (mtx1_wdt_device.running) |
| 78 | ticks--; |
Manuel Lauss | b7f720d | 2011-05-08 10:42:20 +0200 | [diff] [blame] | 79 | |
| 80 | /* toggle wdt gpio */ |
| 81 | mtx1_wdt_device.gstate = ~mtx1_wdt_device.gstate; |
| 82 | if (mtx1_wdt_device.gstate) |
| 83 | gpio_direction_output(mtx1_wdt_device.gpio, 1); |
| 84 | else |
| 85 | gpio_direction_input(mtx1_wdt_device.gpio); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 86 | |
| 87 | if (mtx1_wdt_device.queue && ticks) |
| 88 | mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL); |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 89 | else |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 90 | complete(&mtx1_wdt_device.stop); |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 91 | spin_unlock(&mtx1_wdt_device.lock); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void mtx1_wdt_reset(void) |
| 95 | { |
| 96 | ticks = mtx1_wdt_device.default_ticks; |
| 97 | } |
| 98 | |
| 99 | |
| 100 | static void mtx1_wdt_start(void) |
| 101 | { |
Florian Fainelli | f80e919 | 2008-10-24 19:52:56 +0200 | [diff] [blame] | 102 | unsigned long flags; |
| 103 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 104 | spin_lock_irqsave(&mtx1_wdt_device.lock, flags); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 105 | if (!mtx1_wdt_device.queue) { |
| 106 | mtx1_wdt_device.queue = 1; |
Manuel Lauss | b7f720d | 2011-05-08 10:42:20 +0200 | [diff] [blame] | 107 | mtx1_wdt_device.gstate = 1; |
| 108 | gpio_direction_output(mtx1_wdt_device.gpio, 1); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 109 | mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL); |
| 110 | } |
| 111 | mtx1_wdt_device.running++; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 112 | spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | static int mtx1_wdt_stop(void) |
| 116 | { |
Florian Fainelli | f80e919 | 2008-10-24 19:52:56 +0200 | [diff] [blame] | 117 | unsigned long flags; |
| 118 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 119 | spin_lock_irqsave(&mtx1_wdt_device.lock, flags); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 120 | if (mtx1_wdt_device.queue) { |
| 121 | mtx1_wdt_device.queue = 0; |
Manuel Lauss | b7f720d | 2011-05-08 10:42:20 +0200 | [diff] [blame] | 122 | mtx1_wdt_device.gstate = 0; |
| 123 | gpio_direction_output(mtx1_wdt_device.gpio, 0); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 124 | } |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 125 | ticks = mtx1_wdt_device.default_ticks; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 126 | spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | /* Filesystem functions */ |
| 131 | |
| 132 | static int mtx1_wdt_open(struct inode *inode, struct file *file) |
| 133 | { |
| 134 | if (test_and_set_bit(0, &mtx1_wdt_device.inuse)) |
| 135 | return -EBUSY; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 136 | return nonseekable_open(inode, file); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | static int mtx1_wdt_release(struct inode *inode, struct file *file) |
| 141 | { |
| 142 | clear_bit(0, &mtx1_wdt_device.inuse); |
| 143 | return 0; |
| 144 | } |
| 145 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 146 | static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd, |
| 147 | unsigned long arg) |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 148 | { |
| 149 | void __user *argp = (void __user *)arg; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 150 | int __user *p = (int __user *)argp; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 151 | unsigned int value; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 152 | static const struct watchdog_info ident = { |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 153 | .options = WDIOF_CARDRESET, |
| 154 | .identity = "MTX-1 WDT", |
| 155 | }; |
| 156 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 157 | switch (cmd) { |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 158 | case WDIOC_GETSUPPORT: |
| 159 | if (copy_to_user(argp, &ident, sizeof(ident))) |
| 160 | return -EFAULT; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 161 | break; |
| 162 | case WDIOC_GETSTATUS: |
| 163 | case WDIOC_GETBOOTSTATUS: |
| 164 | put_user(0, p); |
| 165 | break; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 166 | case WDIOC_SETOPTIONS: |
| 167 | if (get_user(value, p)) |
| 168 | return -EFAULT; |
| 169 | if (value & WDIOS_ENABLECARD) |
| 170 | mtx1_wdt_start(); |
| 171 | else if (value & WDIOS_DISABLECARD) |
| 172 | mtx1_wdt_stop(); |
| 173 | else |
| 174 | return -EINVAL; |
| 175 | return 0; |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 176 | case WDIOC_KEEPALIVE: |
| 177 | mtx1_wdt_reset(); |
| 178 | break; |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 179 | default: |
| 180 | return -ENOTTY; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 181 | } |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 186 | static ssize_t mtx1_wdt_write(struct file *file, const char *buf, |
| 187 | size_t count, loff_t *ppos) |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 188 | { |
| 189 | if (!count) |
| 190 | return -EIO; |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 191 | mtx1_wdt_reset(); |
| 192 | return count; |
| 193 | } |
| 194 | |
Jan Engelhardt | b47a166 | 2008-01-22 20:48:10 +0100 | [diff] [blame] | 195 | static const struct file_operations mtx1_wdt_fops = { |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 196 | .owner = THIS_MODULE, |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 197 | .llseek = no_llseek, |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 198 | .unlocked_ioctl = mtx1_wdt_ioctl, |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 199 | .open = mtx1_wdt_open, |
| 200 | .write = mtx1_wdt_write, |
| 201 | .release = mtx1_wdt_release, |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | |
| 205 | static struct miscdevice mtx1_wdt_misc = { |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 206 | .minor = WATCHDOG_MINOR, |
| 207 | .name = "watchdog", |
| 208 | .fops = &mtx1_wdt_fops, |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 209 | }; |
| 210 | |
| 211 | |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 212 | static int __devinit mtx1_wdt_probe(struct platform_device *pdev) |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 213 | { |
| 214 | int ret; |
| 215 | |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 216 | mtx1_wdt_device.gpio = pdev->resource[0].start; |
| 217 | |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 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; |
| 224 | |
| 225 | ret = misc_register(&mtx1_wdt_misc); |
| 226 | if (ret < 0) { |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 227 | printk(KERN_ERR " mtx-1_wdt : failed to register\n"); |
| 228 | return ret; |
| 229 | } |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 230 | mtx1_wdt_start(); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 231 | printk(KERN_INFO "MTX-1 Watchdog driver\n"); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 232 | return 0; |
| 233 | } |
| 234 | |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 235 | static int __devexit mtx1_wdt_remove(struct platform_device *pdev) |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 236 | { |
Alan Cox | ed78c2d | 2008-05-19 14:07:21 +0100 | [diff] [blame] | 237 | /* FIXME: do we need to lock this test ? */ |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 238 | if (mtx1_wdt_device.queue) { |
| 239 | mtx1_wdt_device.queue = 0; |
| 240 | wait_for_completion(&mtx1_wdt_device.stop); |
| 241 | } |
| 242 | misc_deregister(&mtx1_wdt_misc); |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | static struct platform_driver mtx1_wdt = { |
| 247 | .probe = mtx1_wdt_probe, |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 248 | .remove = __devexit_p(mtx1_wdt_remove), |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 249 | .driver.name = "mtx1-wdt", |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 250 | .driver.owner = THIS_MODULE, |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 251 | }; |
| 252 | |
| 253 | static int __init mtx1_wdt_init(void) |
| 254 | { |
| 255 | return platform_driver_register(&mtx1_wdt); |
| 256 | } |
| 257 | |
| 258 | static void __exit mtx1_wdt_exit(void) |
| 259 | { |
| 260 | platform_driver_unregister(&mtx1_wdt); |
Florian Fainelli | 04bf3b4 | 2007-05-06 12:55:32 +0200 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | module_init(mtx1_wdt_init); |
| 264 | module_exit(mtx1_wdt_exit); |
| 265 | |
| 266 | MODULE_AUTHOR("Michael Stickel, Florian Fainelli"); |
| 267 | MODULE_DESCRIPTION("Driver for the MTX-1 watchdog"); |
| 268 | MODULE_LICENSE("GPL"); |
Florian Fainelli | 6ea8115 | 2008-01-07 19:08:49 +0100 | [diff] [blame] | 269 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 270 | MODULE_ALIAS("platform:mtx1-wdt"); |