blob: ff27c4ac96e442dadec4129ecb98931ddc2ca150 [file] [log] [blame]
Florian Fainelli04bf3b42007-05-06 12:55:32 +02001/*
2 * Driver for the MTX-1 Watchdog.
3 *
Alan Coxed78c2d2008-05-19 14:07:21 +01004 * (C) Copyright 2005 4G Systems <info@4g-systems.biz>,
5 * All Rights Reserved.
Florian Fainelli04bf3b42007-05-06 12:55:32 +02006 * http://www.4g-systems.biz
7 *
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +00008 * (C) Copyright 2007 OpenWrt.org, Florian Fainelli <florian@openwrt.org>
Florian Fainelli04bf3b42007-05-06 12:55:32 +02009 *
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>
Florian Fainelli04bf3b42007-05-06 12:55:32 +020043#include <linux/ioport.h>
44#include <linux/timer.h>
45#include <linux/completion.h>
46#include <linux/jiffies.h>
47#include <linux/watchdog.h>
Florian Fainelli6ea81152008-01-07 19:08:49 +010048#include <linux/platform_device.h>
Alan Coxed78c2d2008-05-19 14:07:21 +010049#include <linux/io.h>
50#include <linux/uaccess.h>
51#include <linux/gpio.h>
Florian Fainelli04bf3b42007-05-06 12:55:32 +020052
53#include <asm/mach-au1x00/au1000.h>
54
55#define MTX1_WDT_INTERVAL (5 * HZ)
56
57static int ticks = 100 * HZ;
58
59static struct {
60 struct completion stop;
Alan Coxed78c2d2008-05-19 14:07:21 +010061 spinlock_t lock;
Florian Fainelli996d62d2008-02-25 13:39:57 +010062 int running;
Florian Fainelli04bf3b42007-05-06 12:55:32 +020063 struct timer_list timer;
Florian Fainelli996d62d2008-02-25 13:39:57 +010064 int queue;
Florian Fainelli04bf3b42007-05-06 12:55:32 +020065 int default_ticks;
66 unsigned long inuse;
Florian Fainelli6ea81152008-01-07 19:08:49 +010067 unsigned gpio;
Florian Fainelli2ea4e762011-06-15 19:15:41 +020068 unsigned int gstate;
Florian Fainelli04bf3b42007-05-06 12:55:32 +020069} mtx1_wdt_device;
70
71static void mtx1_wdt_trigger(unsigned long unused)
72{
Alan Coxed78c2d2008-05-19 14:07:21 +010073 spin_lock(&mtx1_wdt_device.lock);
Florian Fainelli04bf3b42007-05-06 12:55:32 +020074 if (mtx1_wdt_device.running)
75 ticks--;
Manuel Laussb7f720d2011-05-08 10:42:20 +020076
77 /* toggle wdt gpio */
Florian Fainelli2ea4e762011-06-15 19:15:41 +020078 mtx1_wdt_device.gstate = !mtx1_wdt_device.gstate;
79 gpio_set_value(mtx1_wdt_device.gpio, mtx1_wdt_device.gstate);
Florian Fainelli04bf3b42007-05-06 12:55:32 +020080
81 if (mtx1_wdt_device.queue && ticks)
82 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
Alan Coxed78c2d2008-05-19 14:07:21 +010083 else
Florian Fainelli04bf3b42007-05-06 12:55:32 +020084 complete(&mtx1_wdt_device.stop);
Alan Coxed78c2d2008-05-19 14:07:21 +010085 spin_unlock(&mtx1_wdt_device.lock);
Florian Fainelli04bf3b42007-05-06 12:55:32 +020086}
87
88static void mtx1_wdt_reset(void)
89{
90 ticks = mtx1_wdt_device.default_ticks;
91}
92
93
94static void mtx1_wdt_start(void)
95{
Florian Fainellif80e9192008-10-24 19:52:56 +020096 unsigned long flags;
97
Alan Coxed78c2d2008-05-19 14:07:21 +010098 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
Florian Fainelli04bf3b42007-05-06 12:55:32 +020099 if (!mtx1_wdt_device.queue) {
100 mtx1_wdt_device.queue = 1;
Manuel Laussb7f720d2011-05-08 10:42:20 +0200101 mtx1_wdt_device.gstate = 1;
Florian Fainelli2ea4e762011-06-15 19:15:41 +0200102 gpio_set_value(mtx1_wdt_device.gpio, 1);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200103 mod_timer(&mtx1_wdt_device.timer, jiffies + MTX1_WDT_INTERVAL);
104 }
105 mtx1_wdt_device.running++;
Alan Coxed78c2d2008-05-19 14:07:21 +0100106 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200107}
108
109static int mtx1_wdt_stop(void)
110{
Florian Fainellif80e9192008-10-24 19:52:56 +0200111 unsigned long flags;
112
Alan Coxed78c2d2008-05-19 14:07:21 +0100113 spin_lock_irqsave(&mtx1_wdt_device.lock, flags);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200114 if (mtx1_wdt_device.queue) {
115 mtx1_wdt_device.queue = 0;
Manuel Laussb7f720d2011-05-08 10:42:20 +0200116 mtx1_wdt_device.gstate = 0;
Florian Fainelli2ea4e762011-06-15 19:15:41 +0200117 gpio_set_value(mtx1_wdt_device.gpio, 0);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200118 }
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200119 ticks = mtx1_wdt_device.default_ticks;
Alan Coxed78c2d2008-05-19 14:07:21 +0100120 spin_unlock_irqrestore(&mtx1_wdt_device.lock, flags);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200121 return 0;
122}
123
124/* Filesystem functions */
125
126static int mtx1_wdt_open(struct inode *inode, struct file *file)
127{
128 if (test_and_set_bit(0, &mtx1_wdt_device.inuse))
129 return -EBUSY;
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200130 return nonseekable_open(inode, file);
131}
132
133
134static int mtx1_wdt_release(struct inode *inode, struct file *file)
135{
136 clear_bit(0, &mtx1_wdt_device.inuse);
137 return 0;
138}
139
Alan Coxed78c2d2008-05-19 14:07:21 +0100140static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd,
141 unsigned long arg)
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200142{
143 void __user *argp = (void __user *)arg;
Alan Coxed78c2d2008-05-19 14:07:21 +0100144 int __user *p = (int __user *)argp;
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200145 unsigned int value;
Alan Coxed78c2d2008-05-19 14:07:21 +0100146 static const struct watchdog_info ident = {
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200147 .options = WDIOF_CARDRESET,
148 .identity = "MTX-1 WDT",
149 };
150
Alan Coxed78c2d2008-05-19 14:07:21 +0100151 switch (cmd) {
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000152 case WDIOC_GETSUPPORT:
153 if (copy_to_user(argp, &ident, sizeof(ident)))
154 return -EFAULT;
Alan Coxed78c2d2008-05-19 14:07:21 +0100155 break;
156 case WDIOC_GETSTATUS:
157 case WDIOC_GETBOOTSTATUS:
158 put_user(0, p);
159 break;
Alan Coxed78c2d2008-05-19 14:07:21 +0100160 case WDIOC_SETOPTIONS:
161 if (get_user(value, p))
162 return -EFAULT;
163 if (value & WDIOS_ENABLECARD)
164 mtx1_wdt_start();
165 else if (value & WDIOS_DISABLECARD)
166 mtx1_wdt_stop();
167 else
168 return -EINVAL;
169 return 0;
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000170 case WDIOC_KEEPALIVE:
171 mtx1_wdt_reset();
172 break;
Alan Coxed78c2d2008-05-19 14:07:21 +0100173 default:
174 return -ENOTTY;
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200175 }
176 return 0;
177}
178
179
Alan Coxed78c2d2008-05-19 14:07:21 +0100180static ssize_t mtx1_wdt_write(struct file *file, const char *buf,
181 size_t count, loff_t *ppos)
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200182{
183 if (!count)
184 return -EIO;
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200185 mtx1_wdt_reset();
186 return count;
187}
188
Jan Engelhardtb47a1662008-01-22 20:48:10 +0100189static const struct file_operations mtx1_wdt_fops = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000190 .owner = THIS_MODULE,
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200191 .llseek = no_llseek,
Alan Coxed78c2d2008-05-19 14:07:21 +0100192 .unlocked_ioctl = mtx1_wdt_ioctl,
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000193 .open = mtx1_wdt_open,
194 .write = mtx1_wdt_write,
195 .release = mtx1_wdt_release,
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200196};
197
198
199static struct miscdevice mtx1_wdt_misc = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000200 .minor = WATCHDOG_MINOR,
201 .name = "watchdog",
202 .fops = &mtx1_wdt_fops,
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200203};
204
205
Bill Pemberton2d991a12012-11-19 13:21:41 -0500206static int mtx1_wdt_probe(struct platform_device *pdev)
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200207{
208 int ret;
209
Florian Fainelli6ea81152008-01-07 19:08:49 +0100210 mtx1_wdt_device.gpio = pdev->resource[0].start;
Jingoo Hand3a33a9502013-04-29 18:30:43 +0900211 ret = devm_gpio_request_one(&pdev->dev, mtx1_wdt_device.gpio,
Florian Fainelli9b19d402011-06-15 19:15:23 +0200212 GPIOF_OUT_INIT_HIGH, "mtx1-wdt");
213 if (ret < 0) {
214 dev_err(&pdev->dev, "failed to request gpio");
215 return ret;
216 }
Florian Fainelli6ea81152008-01-07 19:08:49 +0100217
Alan Coxed78c2d2008-05-19 14:07:21 +0100218 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 Fainellifad0a9d2011-06-15 19:15:09 +0200227 dev_err(&pdev->dev, "failed to register\n");
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200228 return ret;
229 }
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200230 mtx1_wdt_start();
Florian Fainellifad0a9d2011-06-15 19:15:09 +0200231 dev_info(&pdev->dev, "MTX-1 Watchdog driver\n");
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200232 return 0;
233}
234
Bill Pemberton4b12b892012-11-19 13:26:24 -0500235static int mtx1_wdt_remove(struct platform_device *pdev)
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200236{
Alan Coxed78c2d2008-05-19 14:07:21 +0100237 /* FIXME: do we need to lock this test ? */
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200238 if (mtx1_wdt_device.queue) {
239 mtx1_wdt_device.queue = 0;
240 wait_for_completion(&mtx1_wdt_device.stop);
241 }
Florian Fainelli9b19d402011-06-15 19:15:23 +0200242
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200243 misc_deregister(&mtx1_wdt_misc);
Florian Fainelli6ea81152008-01-07 19:08:49 +0100244 return 0;
245}
246
Florian Fainellidb98f89a2011-06-15 19:15:52 +0200247static struct platform_driver mtx1_wdt_driver = {
Florian Fainelli6ea81152008-01-07 19:08:49 +0100248 .probe = mtx1_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500249 .remove = mtx1_wdt_remove,
Florian Fainelli6ea81152008-01-07 19:08:49 +0100250 .driver.name = "mtx1-wdt",
Kay Sieversf37d1932008-04-10 21:29:23 -0700251 .driver.owner = THIS_MODULE,
Florian Fainelli6ea81152008-01-07 19:08:49 +0100252};
253
Axel Linb8ec6112011-11-29 13:56:27 +0800254module_platform_driver(mtx1_wdt_driver);
Florian Fainelli04bf3b42007-05-06 12:55:32 +0200255
256MODULE_AUTHOR("Michael Stickel, Florian Fainelli");
257MODULE_DESCRIPTION("Driver for the MTX-1 watchdog");
258MODULE_LICENSE("GPL");
Kay Sieversf37d1932008-04-10 21:29:23 -0700259MODULE_ALIAS("platform:mtx1-wdt");