blob: 788aa158e78c054eef91dabae21de96fa3e20d32 [file] [log] [blame]
Sylver Bruneau22ac9232008-06-26 10:47:45 +02001/*
Nicolas Pitre3b937a72009-06-01 13:56:02 -04002 * drivers/watchdog/orion_wdt.c
Sylver Bruneau22ac9232008-06-26 10:47:45 +02003 *
Nicolas Pitre3b937a72009-06-01 13:56:02 -04004 * Watchdog driver for Orion/Kirkwood processors
Sylver Bruneau22ac9232008-06-26 10:47:45 +02005 *
6 * Author: Sylver Bruneau <sylver.bruneau@googlemail.com>
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
Joe Perches27c766a2012-02-15 15:06:19 -080013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Sylver Bruneau22ac9232008-06-26 10:47:45 +020015#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
19#include <linux/fs.h>
20#include <linux/miscdevice.h>
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080021#include <linux/platform_device.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020022#include <linux/watchdog.h>
23#include <linux/init.h>
24#include <linux/uaccess.h>
25#include <linux/io.h>
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000026#include <linux/spinlock.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010027#include <mach/bridge-regs.h>
Nicolas Pitre3b937a72009-06-01 13:56:02 -040028#include <plat/orion_wdt.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020029
30/*
31 * Watchdog timer block registers.
32 */
Jason Coopera855a7c2012-03-15 00:33:26 +000033#define TIMER_CTRL 0x0000
Sylver Bruneau22ac9232008-06-26 10:47:45 +020034#define WDT_EN 0x0010
Jason Coopera855a7c2012-03-15 00:33:26 +000035#define WDT_VAL 0x0024
Sylver Bruneau22ac9232008-06-26 10:47:45 +020036
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080037#define WDT_MAX_CYCLE_COUNT 0xffffffff
Sylver Bruneau22ac9232008-06-26 10:47:45 +020038#define WDT_IN_USE 0
39#define WDT_OK_TO_CLOSE 1
40
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010041static bool nowayout = WATCHDOG_NOWAYOUT;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080042static int heartbeat = -1; /* module parameter (seconds) */
43static unsigned int wdt_max_duration; /* (seconds) */
44static unsigned int wdt_tclk;
Jason Coopera855a7c2012-03-15 00:33:26 +000045static void __iomem *wdt_reg;
Sylver Bruneau22ac9232008-06-26 10:47:45 +020046static unsigned long wdt_status;
Axel Lin1334f322011-11-29 13:54:01 +080047static DEFINE_SPINLOCK(wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020048
Nicolas Pitre3b937a72009-06-01 13:56:02 -040049static void orion_wdt_ping(void)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010050{
51 spin_lock(&wdt_lock);
52
53 /* Reload watchdog duration */
Jason Coopera855a7c2012-03-15 00:33:26 +000054 writel(wdt_tclk * heartbeat, wdt_reg + WDT_VAL);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010055
56 spin_unlock(&wdt_lock);
57}
58
Nicolas Pitre3b937a72009-06-01 13:56:02 -040059static void orion_wdt_enable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020060{
61 u32 reg;
62
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000063 spin_lock(&wdt_lock);
64
Sylver Bruneau22ac9232008-06-26 10:47:45 +020065 /* Set watchdog duration */
Jason Coopera855a7c2012-03-15 00:33:26 +000066 writel(wdt_tclk * heartbeat, wdt_reg + WDT_VAL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020067
68 /* Clear watchdog timer interrupt */
69 reg = readl(BRIDGE_CAUSE);
70 reg &= ~WDT_INT_REQ;
71 writel(reg, BRIDGE_CAUSE);
72
73 /* Enable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000074 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020075 reg |= WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +000076 writel(reg, wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020077
78 /* Enable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020079 reg = readl(RSTOUTn_MASK);
80 reg |= WDT_RESET_OUT_EN;
81 writel(reg, RSTOUTn_MASK);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000082
83 spin_unlock(&wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020084}
85
Nicolas Pitre3b937a72009-06-01 13:56:02 -040086static void orion_wdt_disable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020087{
88 u32 reg;
89
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000090 spin_lock(&wdt_lock);
91
Sylver Bruneau22ac9232008-06-26 10:47:45 +020092 /* Disable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020093 reg = readl(RSTOUTn_MASK);
94 reg &= ~WDT_RESET_OUT_EN;
95 writel(reg, RSTOUTn_MASK);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020096
97 /* Disable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000098 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020099 reg &= ~WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +0000100 writel(reg, wdt_reg + TIMER_CTRL);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000101
102 spin_unlock(&wdt_lock);
103}
104
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400105static int orion_wdt_get_timeleft(int *time_left)
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000106{
107 spin_lock(&wdt_lock);
Jason Coopera855a7c2012-03-15 00:33:26 +0000108 *time_left = readl(wdt_reg + WDT_VAL) / wdt_tclk;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000109 spin_unlock(&wdt_lock);
110 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200111}
112
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400113static int orion_wdt_open(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200114{
115 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
116 return -EBUSY;
117 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400118 orion_wdt_enable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200119 return nonseekable_open(inode, file);
120}
121
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400122static ssize_t orion_wdt_write(struct file *file, const char *data,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200123 size_t len, loff_t *ppos)
124{
125 if (len) {
126 if (!nowayout) {
127 size_t i;
128
129 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
130 for (i = 0; i != len; i++) {
131 char c;
132
133 if (get_user(c, data + i))
134 return -EFAULT;
135 if (c == 'V')
136 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
137 }
138 }
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400139 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200140 }
141 return len;
142}
143
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400144static int orion_wdt_settimeout(int new_time)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100145{
146 if ((new_time <= 0) || (new_time > wdt_max_duration))
147 return -EINVAL;
148
149 /* Set new watchdog time to be used when
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400150 * orion_wdt_enable() or orion_wdt_ping() is called. */
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100151 heartbeat = new_time;
152 return 0;
153}
154
155static const struct watchdog_info ident = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200156 .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT |
157 WDIOF_KEEPALIVEPING,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400158 .identity = "Orion Watchdog",
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200159};
160
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400161static long orion_wdt_ioctl(struct file *file, unsigned int cmd,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200162 unsigned long arg)
163{
164 int ret = -ENOTTY;
165 int time;
166
167 switch (cmd) {
168 case WDIOC_GETSUPPORT:
169 ret = copy_to_user((struct watchdog_info *)arg, &ident,
170 sizeof(ident)) ? -EFAULT : 0;
171 break;
172
173 case WDIOC_GETSTATUS:
174 case WDIOC_GETBOOTSTATUS:
175 ret = put_user(0, (int *)arg);
176 break;
177
178 case WDIOC_KEEPALIVE:
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400179 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200180 ret = 0;
181 break;
182
183 case WDIOC_SETTIMEOUT:
184 ret = get_user(time, (int *)arg);
185 if (ret)
186 break;
187
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400188 if (orion_wdt_settimeout(time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200189 ret = -EINVAL;
190 break;
191 }
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400192 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200193 /* Fall through */
194
195 case WDIOC_GETTIMEOUT:
196 ret = put_user(heartbeat, (int *)arg);
197 break;
198
199 case WDIOC_GETTIMELEFT:
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400200 if (orion_wdt_get_timeleft(&time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200201 ret = -EINVAL;
202 break;
203 }
204 ret = put_user(time, (int *)arg);
205 break;
206 }
207 return ret;
208}
209
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400210static int orion_wdt_release(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200211{
212 if (test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400213 orion_wdt_disable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200214 else
Joe Perches27c766a2012-02-15 15:06:19 -0800215 pr_crit("Device closed unexpectedly - timer will not stop\n");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200216 clear_bit(WDT_IN_USE, &wdt_status);
217 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
218
219 return 0;
220}
221
222
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400223static const struct file_operations orion_wdt_fops = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200224 .owner = THIS_MODULE,
225 .llseek = no_llseek,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400226 .write = orion_wdt_write,
227 .unlocked_ioctl = orion_wdt_ioctl,
228 .open = orion_wdt_open,
229 .release = orion_wdt_release,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200230};
231
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400232static struct miscdevice orion_wdt_miscdev = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200233 .minor = WATCHDOG_MINOR,
234 .name = "watchdog",
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400235 .fops = &orion_wdt_fops,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200236};
237
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400238static int __devinit orion_wdt_probe(struct platform_device *pdev)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800239{
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400240 struct orion_wdt_platform_data *pdata = pdev->dev.platform_data;
Jason Coopera855a7c2012-03-15 00:33:26 +0000241 struct resource *res;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800242 int ret;
243
244 if (pdata) {
245 wdt_tclk = pdata->tclk;
246 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800247 pr_err("misses platform data\n");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800248 return -ENODEV;
249 }
250
Jason Coopera855a7c2012-03-15 00:33:26 +0000251 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
252
253 wdt_reg = ioremap(res->start, resource_size(res));
254
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400255 if (orion_wdt_miscdev.parent)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800256 return -EBUSY;
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400257 orion_wdt_miscdev.parent = &pdev->dev;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800258
259 wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk;
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400260 if (orion_wdt_settimeout(heartbeat))
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800261 heartbeat = wdt_max_duration;
262
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400263 ret = misc_register(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800264 if (ret)
265 return ret;
266
Joe Perches27c766a2012-02-15 15:06:19 -0800267 pr_info("Initial timeout %d sec%s\n",
268 heartbeat, nowayout ? ", nowayout" : "");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800269 return 0;
270}
271
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400272static int __devexit orion_wdt_remove(struct platform_device *pdev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200273{
274 int ret;
275
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800276 if (test_bit(WDT_IN_USE, &wdt_status)) {
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400277 orion_wdt_disable();
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800278 clear_bit(WDT_IN_USE, &wdt_status);
279 }
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000280
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400281 ret = misc_deregister(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800282 if (!ret)
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400283 orion_wdt_miscdev.parent = NULL;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200284
285 return ret;
286}
287
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400288static void orion_wdt_shutdown(struct platform_device *pdev)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100289{
290 if (test_bit(WDT_IN_USE, &wdt_status))
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400291 orion_wdt_disable();
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100292}
293
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400294static struct platform_driver orion_wdt_driver = {
295 .probe = orion_wdt_probe,
296 .remove = __devexit_p(orion_wdt_remove),
297 .shutdown = orion_wdt_shutdown,
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800298 .driver = {
299 .owner = THIS_MODULE,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400300 .name = "orion_wdt",
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800301 },
302};
303
Axel Linb8ec6112011-11-29 13:56:27 +0800304module_platform_driver(orion_wdt_driver);
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200305
306MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400307MODULE_DESCRIPTION("Orion Processor Watchdog");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200308
309module_param(heartbeat, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100310MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200311
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100312module_param(nowayout, bool, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100313MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
314 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200315
316MODULE_LICENSE("GPL");
317MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);