blob: 1368e4ca3100db5dc9aa9b42cd85cc7a2d79b455 [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
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/types.h>
16#include <linux/kernel.h>
17#include <linux/fs.h>
18#include <linux/miscdevice.h>
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080019#include <linux/platform_device.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020020#include <linux/watchdog.h>
21#include <linux/init.h>
22#include <linux/uaccess.h>
23#include <linux/io.h>
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000024#include <linux/spinlock.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010025#include <mach/bridge-regs.h>
Nicolas Pitre3b937a72009-06-01 13:56:02 -040026#include <plat/orion_wdt.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020027
28/*
29 * Watchdog timer block registers.
30 */
Jason Coopera855a7c2012-03-15 00:33:26 +000031#define TIMER_CTRL 0x0000
Sylver Bruneau22ac9232008-06-26 10:47:45 +020032#define WDT_EN 0x0010
Jason Coopera855a7c2012-03-15 00:33:26 +000033#define WDT_VAL 0x0024
Sylver Bruneau22ac9232008-06-26 10:47:45 +020034
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080035#define WDT_MAX_CYCLE_COUNT 0xffffffff
Sylver Bruneau22ac9232008-06-26 10:47:45 +020036#define WDT_IN_USE 0
37#define WDT_OK_TO_CLOSE 1
38
39static int nowayout = WATCHDOG_NOWAYOUT;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080040static int heartbeat = -1; /* module parameter (seconds) */
41static unsigned int wdt_max_duration; /* (seconds) */
42static unsigned int wdt_tclk;
Jason Coopera855a7c2012-03-15 00:33:26 +000043static void __iomem *wdt_reg;
Sylver Bruneau22ac9232008-06-26 10:47:45 +020044static unsigned long wdt_status;
Axel Lin1334f322011-11-29 13:54:01 +080045static DEFINE_SPINLOCK(wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020046
Nicolas Pitre3b937a72009-06-01 13:56:02 -040047static void orion_wdt_ping(void)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010048{
49 spin_lock(&wdt_lock);
50
51 /* Reload watchdog duration */
Jason Coopera855a7c2012-03-15 00:33:26 +000052 writel(wdt_tclk * heartbeat, wdt_reg + WDT_VAL);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010053
54 spin_unlock(&wdt_lock);
55}
56
Nicolas Pitre3b937a72009-06-01 13:56:02 -040057static void orion_wdt_enable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020058{
59 u32 reg;
60
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000061 spin_lock(&wdt_lock);
62
Sylver Bruneau22ac9232008-06-26 10:47:45 +020063 /* Set watchdog duration */
Jason Coopera855a7c2012-03-15 00:33:26 +000064 writel(wdt_tclk * heartbeat, wdt_reg + WDT_VAL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020065
66 /* Clear watchdog timer interrupt */
67 reg = readl(BRIDGE_CAUSE);
68 reg &= ~WDT_INT_REQ;
69 writel(reg, BRIDGE_CAUSE);
70
71 /* Enable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000072 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020073 reg |= WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +000074 writel(reg, wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020075
76 /* Enable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020077 reg = readl(RSTOUTn_MASK);
78 reg |= WDT_RESET_OUT_EN;
79 writel(reg, RSTOUTn_MASK);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000080
81 spin_unlock(&wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020082}
83
Nicolas Pitre3b937a72009-06-01 13:56:02 -040084static void orion_wdt_disable(void)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020085{
86 u32 reg;
87
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000088 spin_lock(&wdt_lock);
89
Sylver Bruneau22ac9232008-06-26 10:47:45 +020090 /* Disable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020091 reg = readl(RSTOUTn_MASK);
92 reg &= ~WDT_RESET_OUT_EN;
93 writel(reg, RSTOUTn_MASK);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020094
95 /* Disable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000096 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020097 reg &= ~WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +000098 writel(reg, wdt_reg + TIMER_CTRL);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000099
100 spin_unlock(&wdt_lock);
101}
102
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400103static int orion_wdt_get_timeleft(int *time_left)
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000104{
105 spin_lock(&wdt_lock);
Jason Coopera855a7c2012-03-15 00:33:26 +0000106 *time_left = readl(wdt_reg + WDT_VAL) / wdt_tclk;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000107 spin_unlock(&wdt_lock);
108 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200109}
110
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400111static int orion_wdt_open(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200112{
113 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
114 return -EBUSY;
115 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400116 orion_wdt_enable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200117 return nonseekable_open(inode, file);
118}
119
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400120static ssize_t orion_wdt_write(struct file *file, const char *data,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200121 size_t len, loff_t *ppos)
122{
123 if (len) {
124 if (!nowayout) {
125 size_t i;
126
127 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
128 for (i = 0; i != len; i++) {
129 char c;
130
131 if (get_user(c, data + i))
132 return -EFAULT;
133 if (c == 'V')
134 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
135 }
136 }
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400137 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200138 }
139 return len;
140}
141
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400142static int orion_wdt_settimeout(int new_time)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100143{
144 if ((new_time <= 0) || (new_time > wdt_max_duration))
145 return -EINVAL;
146
147 /* Set new watchdog time to be used when
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400148 * orion_wdt_enable() or orion_wdt_ping() is called. */
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100149 heartbeat = new_time;
150 return 0;
151}
152
153static const struct watchdog_info ident = {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200154 .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT |
155 WDIOF_KEEPALIVEPING,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400156 .identity = "Orion Watchdog",
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200157};
158
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400159static long orion_wdt_ioctl(struct file *file, unsigned int cmd,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200160 unsigned long arg)
161{
162 int ret = -ENOTTY;
163 int time;
164
165 switch (cmd) {
166 case WDIOC_GETSUPPORT:
167 ret = copy_to_user((struct watchdog_info *)arg, &ident,
168 sizeof(ident)) ? -EFAULT : 0;
169 break;
170
171 case WDIOC_GETSTATUS:
172 case WDIOC_GETBOOTSTATUS:
173 ret = put_user(0, (int *)arg);
174 break;
175
176 case WDIOC_KEEPALIVE:
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400177 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200178 ret = 0;
179 break;
180
181 case WDIOC_SETTIMEOUT:
182 ret = get_user(time, (int *)arg);
183 if (ret)
184 break;
185
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400186 if (orion_wdt_settimeout(time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200187 ret = -EINVAL;
188 break;
189 }
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400190 orion_wdt_ping();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200191 /* Fall through */
192
193 case WDIOC_GETTIMEOUT:
194 ret = put_user(heartbeat, (int *)arg);
195 break;
196
197 case WDIOC_GETTIMELEFT:
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400198 if (orion_wdt_get_timeleft(&time)) {
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200199 ret = -EINVAL;
200 break;
201 }
202 ret = put_user(time, (int *)arg);
203 break;
204 }
205 return ret;
206}
207
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400208static int orion_wdt_release(struct inode *inode, struct file *file)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200209{
210 if (test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400211 orion_wdt_disable();
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200212 else
213 printk(KERN_CRIT "WATCHDOG: Device closed unexpectedly - "
214 "timer will not stop\n");
215 clear_bit(WDT_IN_USE, &wdt_status);
216 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
217
218 return 0;
219}
220
221
Nicolas Pitre3b937a72009-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 Pitre3b937a72009-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 Pitre3b937a72009-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 Pitre3b937a72009-06-01 13:56:02 -0400234 .fops = &orion_wdt_fops,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200235};
236
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400237static int __devinit orion_wdt_probe(struct platform_device *pdev)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800238{
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400239 struct orion_wdt_platform_data *pdata = pdev->dev.platform_data;
Jason Coopera855a7c2012-03-15 00:33:26 +0000240 struct resource *res;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800241 int ret;
242
243 if (pdata) {
244 wdt_tclk = pdata->tclk;
245 } else {
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400246 printk(KERN_ERR "Orion Watchdog misses platform data\n");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800247 return -ENODEV;
248 }
249
Jason Coopera855a7c2012-03-15 00:33:26 +0000250 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
251
252 wdt_reg = ioremap(res->start, resource_size(res));
253
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400254 if (orion_wdt_miscdev.parent)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800255 return -EBUSY;
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400256 orion_wdt_miscdev.parent = &pdev->dev;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800257
258 wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk;
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400259 if (orion_wdt_settimeout(heartbeat))
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800260 heartbeat = wdt_max_duration;
261
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400262 ret = misc_register(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800263 if (ret)
264 return ret;
265
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400266 printk(KERN_INFO "Orion Watchdog Timer: Initial timeout %d sec%s\n",
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800267 heartbeat, nowayout ? ", nowayout" : "");
268 return 0;
269}
270
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400271static int __devexit orion_wdt_remove(struct platform_device *pdev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200272{
273 int ret;
274
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800275 if (test_bit(WDT_IN_USE, &wdt_status)) {
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400276 orion_wdt_disable();
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800277 clear_bit(WDT_IN_USE, &wdt_status);
278 }
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000279
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400280 ret = misc_deregister(&orion_wdt_miscdev);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800281 if (!ret)
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400282 orion_wdt_miscdev.parent = NULL;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200283
284 return ret;
285}
286
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400287static void orion_wdt_shutdown(struct platform_device *pdev)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100288{
289 if (test_bit(WDT_IN_USE, &wdt_status))
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400290 orion_wdt_disable();
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100291}
292
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400293static struct platform_driver orion_wdt_driver = {
294 .probe = orion_wdt_probe,
295 .remove = __devexit_p(orion_wdt_remove),
296 .shutdown = orion_wdt_shutdown,
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800297 .driver = {
298 .owner = THIS_MODULE,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400299 .name = "orion_wdt",
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800300 },
301};
302
Axel Linb8ec6112011-11-29 13:56:27 +0800303module_platform_driver(orion_wdt_driver);
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200304
305MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400306MODULE_DESCRIPTION("Orion Processor Watchdog");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200307
308module_param(heartbeat, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100309MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200310
311module_param(nowayout, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100312MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
313 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200314
315MODULE_LICENSE("GPL");
316MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);