ARM: at91/dt: add watchdog properties to kizbox board
[linux-2.6-block.git] / drivers / watchdog / at91sam9_wdt.c
CommitLineData
e6bb42e3
RC
1/*
2 * Watchdog driver for Atmel AT91SAM9x processors.
3 *
4 * Copyright (C) 2008 Renaud CERRATO r.cerrato@til-technologies.fr
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12/*
13 * The Watchdog Timer Mode Register can be only written to once. If the
14 * timeout need to be set from Linux, be sure that the bootstrap or the
15 * bootloader doesn't write to this register.
16 */
17
27c766aa
JP
18#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
e6bb42e3 20#include <linux/errno.h>
e6bb42e3 21#include <linux/init.h>
5161b31d 22#include <linux/interrupt.h>
2af29b78 23#include <linux/io.h>
e6bb42e3 24#include <linux/kernel.h>
e6bb42e3
RC
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/platform_device.h>
5161b31d 28#include <linux/reboot.h>
e6bb42e3
RC
29#include <linux/types.h>
30#include <linux/watchdog.h>
31#include <linux/jiffies.h>
32#include <linux/timer.h>
33#include <linux/bitops.h>
34#include <linux/uaccess.h>
be49bbae 35#include <linux/of.h>
5161b31d 36#include <linux/of_irq.h>
e6bb42e3 37
e7b39145 38#include "at91sam9_wdt.h"
e6bb42e3
RC
39
40#define DRV_NAME "AT91SAM9 Watchdog"
41
5161b31d
BB
42#define wdt_read(wdt, field) \
43 __raw_readl((wdt)->base + (field))
44#define wdt_write(wtd, field, val) \
45 __raw_writel((val), (wdt)->base + (field))
c1c30a29 46
e6bb42e3
RC
47/* AT91SAM9 watchdog runs a 12bit counter @ 256Hz,
48 * use this to convert a watchdog
49 * value from/to milliseconds.
50 */
5161b31d
BB
51#define ticks_to_hz_rounddown(t) ((((t) + 1) * HZ) >> 8)
52#define ticks_to_hz_roundup(t) (((((t) + 1) * HZ) + 255) >> 8)
53#define ticks_to_secs(t) (((t) + 1) >> 8)
54#define secs_to_ticks(s) (((s) << 8) - 1)
55
56#define WDT_MR_RESET 0x3FFF2FFF
57
58/* Watchdog max counter value in ticks */
59#define WDT_COUNTER_MAX_TICKS 0xFFF
60
61/* Watchdog max delta/value in secs */
62#define WDT_COUNTER_MAX_SECS ticks_to_secs(WDT_COUNTER_MAX_TICKS)
e6bb42e3
RC
63
64/* Hardware timeout in seconds */
65#define WDT_HW_TIMEOUT 2
66
67/* Timer heartbeat (500ms) */
68#define WDT_TIMEOUT (HZ/2)
69
70/* User land timeout */
71#define WDT_HEARTBEAT 15
c1fd5f64 72static int heartbeat;
e6bb42e3
RC
73module_param(heartbeat, int, 0);
74MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. "
75 "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")");
76
86a1e189
WVS
77static bool nowayout = WATCHDOG_NOWAYOUT;
78module_param(nowayout, bool, 0);
e6bb42e3
RC
79MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
80 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
81
5161b31d
BB
82#define to_wdt(wdd) container_of(wdd, struct at91wdt, wdd)
83struct at91wdt {
84 struct watchdog_device wdd;
c1c30a29 85 void __iomem *base;
e6bb42e3 86 unsigned long next_heartbeat; /* the next_heartbeat for the timer */
e6bb42e3 87 struct timer_list timer; /* The timer that pings the watchdog */
5161b31d
BB
88 u32 mr;
89 u32 mr_mask;
90 unsigned long heartbeat; /* WDT heartbeat in jiffies */
91 bool nowayout;
92 unsigned int irq;
93};
e6bb42e3
RC
94
95/* ......................................................................... */
96
5161b31d
BB
97static irqreturn_t wdt_interrupt(int irq, void *dev_id)
98{
99 struct at91wdt *wdt = (struct at91wdt *)dev_id;
100
101 if (wdt_read(wdt, AT91_WDT_SR)) {
102 pr_crit("at91sam9 WDT software reset\n");
103 emergency_restart();
104 pr_crit("Reboot didn't ?????\n");
105 }
106
107 return IRQ_HANDLED;
108}
109
e6bb42e3
RC
110/*
111 * Reload the watchdog timer. (ie, pat the watchdog)
112 */
5161b31d 113static inline void at91_wdt_reset(struct at91wdt *wdt)
e6bb42e3 114{
5161b31d 115 wdt_write(wdt, AT91_WDT_CR, AT91_WDT_KEY | AT91_WDT_WDRSTT);
e6bb42e3
RC
116}
117
118/*
119 * Timer tick
120 */
121static void at91_ping(unsigned long data)
122{
5161b31d
BB
123 struct at91wdt *wdt = (struct at91wdt *)data;
124 if (time_before(jiffies, wdt->next_heartbeat) ||
125 !watchdog_active(&wdt->wdd)) {
126 at91_wdt_reset(wdt);
127 mod_timer(&wdt->timer, jiffies + wdt->heartbeat);
128 } else {
27c766aa 129 pr_crit("I will reset your machine !\n");
5161b31d 130 }
490ac7af 131}
e6bb42e3 132
490ac7af
WY
133static int at91_wdt_start(struct watchdog_device *wdd)
134{
5161b31d
BB
135 struct at91wdt *wdt = to_wdt(wdd);
136 /* calculate when the next userspace timeout will be */
137 wdt->next_heartbeat = jiffies + wdd->timeout * HZ;
490ac7af 138 return 0;
e6bb42e3
RC
139}
140
490ac7af 141static int at91_wdt_stop(struct watchdog_device *wdd)
e6bb42e3 142{
490ac7af
WY
143 /* The watchdog timer hardware can not be stopped... */
144 return 0;
145}
e6bb42e3 146
490ac7af
WY
147static int at91_wdt_set_timeout(struct watchdog_device *wdd, unsigned int new_timeout)
148{
149 wdd->timeout = new_timeout;
5161b31d 150 return at91_wdt_start(wdd);
e6bb42e3
RC
151}
152
5161b31d 153static int at91_wdt_init(struct platform_device *pdev, struct at91wdt *wdt)
e6bb42e3 154{
5161b31d
BB
155 u32 tmp;
156 u32 delta;
157 u32 value;
158 int err;
159 u32 mask = wdt->mr_mask;
160 unsigned long min_heartbeat = 1;
161 struct device *dev = &pdev->dev;
162
163 tmp = wdt_read(wdt, AT91_WDT_MR);
164 if ((tmp & mask) != (wdt->mr & mask)) {
165 if (tmp == WDT_MR_RESET) {
166 wdt_write(wdt, AT91_WDT_MR, wdt->mr);
167 tmp = wdt_read(wdt, AT91_WDT_MR);
168 }
169 }
170
171 if (tmp & AT91_WDT_WDDIS) {
172 if (wdt->mr & AT91_WDT_WDDIS)
173 return 0;
174 dev_err(dev, "watchdog is disabled\n");
175 return -EINVAL;
176 }
177
178 value = tmp & AT91_WDT_WDV;
179 delta = (tmp & AT91_WDT_WDD) >> 16;
180
181 if (delta < value)
182 min_heartbeat = ticks_to_hz_roundup(value - delta);
183
184 wdt->heartbeat = ticks_to_hz_rounddown(value);
185 if (!wdt->heartbeat) {
186 dev_err(dev,
187 "heartbeat is too small for the system to handle it correctly\n");
188 return -EINVAL;
189 }
190
191 if (wdt->heartbeat < min_heartbeat + 4) {
192 wdt->heartbeat = min_heartbeat;
193 dev_warn(dev,
194 "min heartbeat and max heartbeat might be too close for the system to handle it correctly\n");
195 if (wdt->heartbeat < 4)
196 dev_warn(dev,
197 "heartbeat might be too small for the system to handle it correctly\n");
198 } else {
199 wdt->heartbeat -= 4;
e6bb42e3
RC
200 }
201
5161b31d
BB
202 if ((tmp & AT91_WDT_WDFIEN) && wdt->irq) {
203 err = request_irq(wdt->irq, wdt_interrupt,
204 IRQF_SHARED | IRQF_IRQPOLL,
205 pdev->name, wdt);
206 if (err)
207 return err;
208 }
209
210 if ((tmp & wdt->mr_mask) != (wdt->mr & wdt->mr_mask))
211 dev_warn(dev,
212 "watchdog already configured differently (mr = %x expecting %x)\n",
213 tmp & wdt->mr_mask, wdt->mr & wdt->mr_mask);
214
215 setup_timer(&wdt->timer, at91_ping, (unsigned long)wdt);
216 mod_timer(&wdt->timer, jiffies + wdt->heartbeat);
217
218 /* Try to set timeout from device tree first */
219 if (watchdog_init_timeout(&wdt->wdd, 0, dev))
220 watchdog_init_timeout(&wdt->wdd, heartbeat, dev);
221 watchdog_set_nowayout(&wdt->wdd, wdt->nowayout);
222 err = watchdog_register_device(&wdt->wdd);
223 if (err)
224 goto out_stop_timer;
225
226 wdt->next_heartbeat = jiffies + wdt->wdd.timeout * HZ;
e6bb42e3
RC
227
228 return 0;
5161b31d
BB
229
230out_stop_timer:
231 del_timer(&wdt->timer);
232 return err;
e6bb42e3
RC
233}
234
490ac7af
WY
235/* ......................................................................... */
236
e6bb42e3
RC
237static const struct watchdog_info at91_wdt_info = {
238 .identity = DRV_NAME,
e73a7802
WVS
239 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
240 WDIOF_MAGICCLOSE,
e6bb42e3
RC
241};
242
490ac7af
WY
243static const struct watchdog_ops at91_wdt_ops = {
244 .owner = THIS_MODULE,
245 .start = at91_wdt_start,
246 .stop = at91_wdt_stop,
490ac7af 247 .set_timeout = at91_wdt_set_timeout,
e6bb42e3
RC
248};
249
5161b31d
BB
250#if defined(CONFIG_OF)
251static int of_at91wdt_init(struct device_node *np, struct at91wdt *wdt)
252{
253 u32 min = 0;
254 u32 max = WDT_COUNTER_MAX_SECS;
255 const char *tmp;
256
257 /* Get the interrupts property */
258 wdt->irq = irq_of_parse_and_map(np, 0);
259 if (!wdt->irq)
260 dev_warn(wdt->wdd.parent, "failed to get IRQ from DT\n");
261
262 if (!of_property_read_u32_index(np, "atmel,max-heartbeat-sec", 0,
263 &max)) {
264 if (!max || max > WDT_COUNTER_MAX_SECS)
265 max = WDT_COUNTER_MAX_SECS;
266
267 if (!of_property_read_u32_index(np, "atmel,min-heartbeat-sec",
268 0, &min)) {
269 if (min >= max)
270 min = max - 1;
271 }
272 }
273
274 min = secs_to_ticks(min);
275 max = secs_to_ticks(max);
276
277 wdt->mr_mask = 0x3FFFFFFF;
278 wdt->mr = 0;
279 if (!of_property_read_string(np, "atmel,watchdog-type", &tmp) &&
280 !strcmp(tmp, "software")) {
281 wdt->mr |= AT91_WDT_WDFIEN;
282 wdt->mr_mask &= ~AT91_WDT_WDRPROC;
283 } else {
284 wdt->mr |= AT91_WDT_WDRSTEN;
285 }
286
287 if (!of_property_read_string(np, "atmel,reset-type", &tmp) &&
288 !strcmp(tmp, "proc"))
289 wdt->mr |= AT91_WDT_WDRPROC;
290
291 if (of_property_read_bool(np, "atmel,disable")) {
292 wdt->mr |= AT91_WDT_WDDIS;
293 wdt->mr_mask &= AT91_WDT_WDDIS;
294 }
295
296 if (of_property_read_bool(np, "atmel,idle-halt"))
297 wdt->mr |= AT91_WDT_WDIDLEHLT;
298
299 if (of_property_read_bool(np, "atmel,dbg-halt"))
300 wdt->mr |= AT91_WDT_WDDBGHLT;
301
302 wdt->mr |= max | ((max - min) << 16);
303
304 return 0;
305}
306#else
307static inline int of_at91wdt_init(struct device_node *np, struct at91wdt *wdt)
308{
309 return 0;
310}
311#endif
e6bb42e3
RC
312
313static int __init at91wdt_probe(struct platform_device *pdev)
314{
c1c30a29 315 struct resource *r;
5161b31d
BB
316 int err;
317 struct at91wdt *wdt;
e6bb42e3 318
5161b31d
BB
319 wdt = devm_kzalloc(&pdev->dev, sizeof(*wdt), GFP_KERNEL);
320 if (!wdt)
c1c30a29 321 return -ENOMEM;
c1c30a29 322
5161b31d
BB
323 wdt->mr = (WDT_HW_TIMEOUT * 256) | AT91_WDT_WDRSTEN | AT91_WDT_WDD |
324 AT91_WDT_WDDBGHLT | AT91_WDT_WDIDLEHLT;
325 wdt->mr_mask = 0x3FFFFFFF;
326 wdt->nowayout = nowayout;
327 wdt->wdd.parent = &pdev->dev;
328 wdt->wdd.info = &at91_wdt_info;
329 wdt->wdd.ops = &at91_wdt_ops;
330 wdt->wdd.timeout = WDT_HEARTBEAT;
331 wdt->wdd.min_timeout = 1;
332 wdt->wdd.max_timeout = 0xFFFF;
490ac7af 333
5161b31d
BB
334 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
335 wdt->base = devm_ioremap_resource(&pdev->dev, r);
336 if (IS_ERR(wdt->base))
337 return PTR_ERR(wdt->base);
338
339 if (pdev->dev.of_node) {
340 err = of_at91wdt_init(pdev->dev.of_node, wdt);
341 if (err)
342 return err;
343 }
e6bb42e3 344
5161b31d
BB
345 err = at91_wdt_init(pdev, wdt);
346 if (err)
347 return err;
e6bb42e3 348
5161b31d 349 platform_set_drvdata(pdev, wdt);
e6bb42e3 350
27c766aa 351 pr_info("enabled (heartbeat=%d sec, nowayout=%d)\n",
5161b31d 352 wdt->wdd.timeout, wdt->nowayout);
e6bb42e3
RC
353
354 return 0;
355}
356
357static int __exit at91wdt_remove(struct platform_device *pdev)
358{
5161b31d
BB
359 struct at91wdt *wdt = platform_get_drvdata(pdev);
360 watchdog_unregister_device(&wdt->wdd);
e6bb42e3 361
490ac7af 362 pr_warn("I quit now, hardware will probably reboot!\n");
5161b31d 363 del_timer(&wdt->timer);
e6bb42e3 364
490ac7af 365 return 0;
e6bb42e3
RC
366}
367
be49bbae 368#if defined(CONFIG_OF)
6c41e474 369static const struct of_device_id at91_wdt_dt_ids[] = {
be49bbae
FP
370 { .compatible = "atmel,at91sam9260-wdt" },
371 { /* sentinel */ }
372};
373
374MODULE_DEVICE_TABLE(of, at91_wdt_dt_ids);
375#endif
376
e6bb42e3
RC
377static struct platform_driver at91wdt_driver = {
378 .remove = __exit_p(at91wdt_remove),
e6bb42e3
RC
379 .driver = {
380 .name = "at91_wdt",
381 .owner = THIS_MODULE,
be49bbae 382 .of_match_table = of_match_ptr(at91_wdt_dt_ids),
e6bb42e3
RC
383 },
384};
385
1cb9204c 386module_platform_driver_probe(at91wdt_driver, at91wdt_probe);
e6bb42e3
RC
387
388MODULE_AUTHOR("Renaud CERRATO <r.cerrato@til-technologies.fr>");
389MODULE_DESCRIPTION("Watchdog driver for Atmel AT91SAM9x processors");
390MODULE_LICENSE("GPL");