blob: 25c954d2ffaa341e14bbe3ee0f6ef144b599bacd [file] [log] [blame]
Sylver Bruneau22ac9232008-06-26 10:47:45 +02001/*
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -04002 * drivers/watchdog/orion_wdt.c
Sylver Bruneau22ac9232008-06-26 10:47:45 +02003 *
Nicolas Pitre3b937a7db2009-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 Pitre3b937a7db2009-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 */
33#define TIMER_CTRL (TIMER_VIRT_BASE + 0x0000)
34#define WDT_EN 0x0010
35#define WDT_VAL (TIMER_VIRT_BASE + 0x0024)
36
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
41static int 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;
Sylver Bruneau22ac9232008-06-26 10:47:45 +020045static unsigned long wdt_status;
Axel Lin1334f322011-11-29 13:54:01 +080046static DEFINE_SPINLOCK(wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020047
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -040048static void orion_wdt_ping(void)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010049{
50 spin_lock(&wdt_lock);
51
52 /* Reload watchdog duration */
53 writel(wdt_tclk * heartbeat, WDT_VAL);
54
55 spin_unlock(&wdt_lock);
56}
57
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -040058static void orion_wdt_enable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020059{
60 u32 reg;
61
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000062 spin_lock(&wdt_lock);
63
Sylver Bruneau22ac9232008-06-26 10:47:45 +020064 /* Set watchdog duration */
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080065 writel(wdt_tclk * heartbeat, WDT_VAL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020066
67 /* Clear watchdog timer interrupt */
68 reg = readl(BRIDGE_CAUSE);
69 reg &= ~WDT_INT_REQ;
70 writel(reg, BRIDGE_CAUSE);
71
72 /* Enable watchdog timer */
73 reg = readl(TIMER_CTRL);
74 reg |= WDT_EN;
75 writel(reg, TIMER_CTRL);
76
77 /* Enable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020078 reg = readl(RSTOUTn_MASK);
79 reg |= WDT_RESET_OUT_EN;
80 writel(reg, RSTOUTn_MASK);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000081
82 spin_unlock(&wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020083}
84
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -040085static void orion_wdt_disable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020086{
87 u32 reg;
88
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000089 spin_lock(&wdt_lock);
90
Sylver Bruneau22ac9232008-06-26 10:47:45 +020091 /* Disable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020092 reg = readl(RSTOUTn_MASK);
93 reg &= ~WDT_RESET_OUT_EN;
94 writel(reg, RSTOUTn_MASK);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020095
96 /* Disable watchdog timer */
97 reg = readl(TIMER_CTRL);
98 reg &= ~WDT_EN;
99 writel(reg, TIMER_CTRL);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000100
101 spin_unlock(&wdt_lock);
102}
103
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400104static int orion_wdt_get_timeleft(int *time_left)
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000105{
106 spin_lock(&wdt_lock);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800107 *time_left = readl(WDT_VAL) / wdt_tclk;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000108 spin_unlock(&wdt_lock);
109 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200110}
111
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400112static int orion_wdt_open(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200113{
114 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
115 return -EBUSY;
116 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400117 orion_wdt_enable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200118 return nonseekable_open(inode, file);
119}
120
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400121static ssize_t orion_wdt_write(struct file *file, const char *data,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200122 size_t len, loff_t *ppos)
123{
124 if (len) {
125 if (!nowayout) {
126 size_t i;
127
128 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
129 for (i = 0; i != len; i++) {
130 char c;
131
132 if (get_user(c, data + i))
133 return -EFAULT;
134 if (c == 'V')
135 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
136 }
137 }
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400138 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200139 }
140 return len;
141}
142
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400143static int orion_wdt_settimeout(int new_time)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100144{
145 if ((new_time <= 0) || (new_time > wdt_max_duration))
146 return -EINVAL;
147
148 /* Set new watchdog time to be used when
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400149 * orion_wdt_enable() or orion_wdt_ping() is called. */
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100150 heartbeat = new_time;
151 return 0;
152}
153
154static const struct watchdog_info ident = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200155 .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT |
156 WDIOF_KEEPALIVEPING,
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400157 .identity = "Orion Watchdog",
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200158};
159
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400160static long orion_wdt_ioctl(struct file *file, unsigned int cmd,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200161 unsigned long arg)
162{
163 int ret = -ENOTTY;
164 int time;
165
166 switch (cmd) {
167 case WDIOC_GETSUPPORT:
168 ret = copy_to_user((struct watchdog_info *)arg, &ident,
169 sizeof(ident)) ? -EFAULT : 0;
170 break;
171
172 case WDIOC_GETSTATUS:
173 case WDIOC_GETBOOTSTATUS:
174 ret = put_user(0, (int *)arg);
175 break;
176
177 case WDIOC_KEEPALIVE:
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400178 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200179 ret = 0;
180 break;
181
182 case WDIOC_SETTIMEOUT:
183 ret = get_user(time, (int *)arg);
184 if (ret)
185 break;
186
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400187 if (orion_wdt_settimeout(time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200188 ret = -EINVAL;
189 break;
190 }
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400191 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200192 /* Fall through */
193
194 case WDIOC_GETTIMEOUT:
195 ret = put_user(heartbeat, (int *)arg);
196 break;
197
198 case WDIOC_GETTIMELEFT:
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400199 if (orion_wdt_get_timeleft(&time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200200 ret = -EINVAL;
201 break;
202 }
203 ret = put_user(time, (int *)arg);
204 break;
205 }
206 return ret;
207}
208
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400209static int orion_wdt_release(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200210{
211 if (test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400212 orion_wdt_disable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200213 else
Joe Perches27c766a2012-02-15 15:06:19 -0800214 pr_crit("Device closed unexpectedly - timer will not stop\n");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200215 clear_bit(WDT_IN_USE, &wdt_status);
216 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
217
218 return 0;
219}
220
221
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400222static const struct file_operations orion_wdt_fops = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200223 .owner = THIS_MODULE,
224 .llseek = no_llseek,
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400225 .write = orion_wdt_write,
226 .unlocked_ioctl = orion_wdt_ioctl,
227 .open = orion_wdt_open,
228 .release = orion_wdt_release,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200229};
230
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400231static struct miscdevice orion_wdt_miscdev = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200232 .minor = WATCHDOG_MINOR,
233 .name = "watchdog",
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400234 .fops = &orion_wdt_fops,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200235};
236
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400237static int __devinit orion_wdt_probe(struct platform_device *pdev)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800238{
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400239 struct orion_wdt_platform_data *pdata = pdev->dev.platform_data;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800240 int ret;
241
242 if (pdata) {
243 wdt_tclk = pdata->tclk;
244 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800245 pr_err("misses platform data\n");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800246 return -ENODEV;
247 }
248
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400249 if (orion_wdt_miscdev.parent)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800250 return -EBUSY;
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400251 orion_wdt_miscdev.parent = &pdev->dev;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800252
253 wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk;
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400254 if (orion_wdt_settimeout(heartbeat))
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800255 heartbeat = wdt_max_duration;
256
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400257 ret = misc_register(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800258 if (ret)
259 return ret;
260
Joe Perches27c766a2012-02-15 15:06:19 -0800261 pr_info("Initial timeout %d sec%s\n",
262 heartbeat, nowayout ? ", nowayout" : "");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800263 return 0;
264}
265
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400266static int __devexit orion_wdt_remove(struct platform_device *pdev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200267{
268 int ret;
269
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800270 if (test_bit(WDT_IN_USE, &wdt_status)) {
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400271 orion_wdt_disable();
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800272 clear_bit(WDT_IN_USE, &wdt_status);
273 }
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000274
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400275 ret = misc_deregister(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800276 if (!ret)
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400277 orion_wdt_miscdev.parent = NULL;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200278
279 return ret;
280}
281
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400282static void orion_wdt_shutdown(struct platform_device *pdev)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100283{
284 if (test_bit(WDT_IN_USE, &wdt_status))
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400285 orion_wdt_disable();
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100286}
287
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400288static struct platform_driver orion_wdt_driver = {
289 .probe = orion_wdt_probe,
290 .remove = __devexit_p(orion_wdt_remove),
291 .shutdown = orion_wdt_shutdown,
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800292 .driver = {
293 .owner = THIS_MODULE,
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400294 .name = "orion_wdt",
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800295 },
296};
297
Axel Linb8ec6112011-11-29 13:56:27 +0800298module_platform_driver(orion_wdt_driver);
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200299
300MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
Nicolas Pitre3b937a7db2009-06-01 13:56:02 -0400301MODULE_DESCRIPTION("Orion Processor Watchdog");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200302
303module_param(heartbeat, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100304MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200305
306module_param(nowayout, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100307MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
308 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200309
310MODULE_LICENSE("GPL");
311MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);