1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/types.h>
31#include <linux/timer.h>
32#include <linux/miscdevice.h>
33#include <linux/watchdog.h>
34#include <linux/init.h>
35#include <linux/platform_device.h>
36#include <linux/interrupt.h>
37#include <linux/clk.h>
38#include <linux/uaccess.h>
39#include <linux/io.h>
40#include <linux/cpufreq.h>
41#include <linux/slab.h>
42#include <linux/err.h>
43#include <linux/of.h>
44
45#include <mach/map.h>
46
47#undef S3C_VA_WATCHDOG
48#define S3C_VA_WATCHDOG (0)
49
50#include <plat/regs-watchdog.h>
51
52#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
53#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
54
55static bool nowayout = WATCHDOG_NOWAYOUT;
56static int tmr_margin;
57static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
58static int soft_noboot;
59static int debug;
60
61module_param(tmr_margin, int, 0);
62module_param(tmr_atboot, int, 0);
63module_param(nowayout, bool, 0);
64module_param(soft_noboot, int, 0);
65module_param(debug, int, 0);
66
67MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
68 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
69MODULE_PARM_DESC(tmr_atboot,
70 "Watchdog is started at boot time if set to 1, default="
71 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
72MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
73 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
74MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
75 "0 to reboot (default 0)");
76MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
77
78static struct device *wdt_dev;
79static struct resource *wdt_mem;
80static struct resource *wdt_irq;
81static struct clk *wdt_clock;
82static void __iomem *wdt_base;
83static unsigned int wdt_count;
84static DEFINE_SPINLOCK(wdt_lock);
85
86
87
88#define DBG(fmt, ...) \
89do { \
90 if (debug) \
91 pr_info(fmt, ##__VA_ARGS__); \
92} while (0)
93
94
95
96static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
97{
98 spin_lock(&wdt_lock);
99 writel(wdt_count, wdt_base + S3C2410_WTCNT);
100 spin_unlock(&wdt_lock);
101
102 return 0;
103}
104
105static void __s3c2410wdt_stop(void)
106{
107 unsigned long wtcon;
108
109 wtcon = readl(wdt_base + S3C2410_WTCON);
110 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
111 writel(wtcon, wdt_base + S3C2410_WTCON);
112}
113
114static int s3c2410wdt_stop(struct watchdog_device *wdd)
115{
116 spin_lock(&wdt_lock);
117 __s3c2410wdt_stop();
118 spin_unlock(&wdt_lock);
119
120 return 0;
121}
122
123static int s3c2410wdt_start(struct watchdog_device *wdd)
124{
125 unsigned long wtcon;
126
127 spin_lock(&wdt_lock);
128
129 __s3c2410wdt_stop();
130
131 wtcon = readl(wdt_base + S3C2410_WTCON);
132 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
133
134 if (soft_noboot) {
135 wtcon |= S3C2410_WTCON_INTEN;
136 wtcon &= ~S3C2410_WTCON_RSTEN;
137 } else {
138 wtcon &= ~S3C2410_WTCON_INTEN;
139 wtcon |= S3C2410_WTCON_RSTEN;
140 }
141
142 DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n",
143 __func__, wdt_count, wtcon);
144
145 writel(wdt_count, wdt_base + S3C2410_WTDAT);
146 writel(wdt_count, wdt_base + S3C2410_WTCNT);
147 writel(wtcon, wdt_base + S3C2410_WTCON);
148 spin_unlock(&wdt_lock);
149
150 return 0;
151}
152
153static inline int s3c2410wdt_is_running(void)
154{
155 return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
156}
157
158static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
159{
160 unsigned long freq = clk_get_rate(wdt_clock);
161 unsigned int count;
162 unsigned int divisor = 1;
163 unsigned long wtcon;
164
165 if (timeout < 1)
166 return -EINVAL;
167
168 freq /= 128;
169 count = timeout * freq;
170
171 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
172 __func__, count, timeout, freq);
173
174
175
176
177
178
179 if (count >= 0x10000) {
180 for (divisor = 1; divisor <= 0x100; divisor++) {
181 if ((count / divisor) < 0x10000)
182 break;
183 }
184
185 if ((count / divisor) >= 0x10000) {
186 dev_err(wdt_dev, "timeout %d too big\n", timeout);
187 return -EINVAL;
188 }
189 }
190
191 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
192 __func__, timeout, divisor, count, count/divisor);
193
194 count /= divisor;
195 wdt_count = count;
196
197
198 wtcon = readl(wdt_base + S3C2410_WTCON);
199 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
200 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
201
202 writel(count, wdt_base + S3C2410_WTDAT);
203 writel(wtcon, wdt_base + S3C2410_WTCON);
204
205 wdd->timeout = (count * divisor) / freq;
206
207 return 0;
208}
209
210#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
211
212static const struct watchdog_info s3c2410_wdt_ident = {
213 .options = OPTIONS,
214 .firmware_version = 0,
215 .identity = "S3C2410 Watchdog",
216};
217
218static struct watchdog_ops s3c2410wdt_ops = {
219 .owner = THIS_MODULE,
220 .start = s3c2410wdt_start,
221 .stop = s3c2410wdt_stop,
222 .ping = s3c2410wdt_keepalive,
223 .set_timeout = s3c2410wdt_set_heartbeat,
224};
225
226static struct watchdog_device s3c2410_wdd = {
227 .info = &s3c2410_wdt_ident,
228 .ops = &s3c2410wdt_ops,
229 .timeout = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME,
230};
231
232
233
234static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
235{
236 dev_info(wdt_dev, "watchdog timer expired (irq)\n");
237
238 s3c2410wdt_keepalive(&s3c2410_wdd);
239 return IRQ_HANDLED;
240}
241
242
243#ifdef CONFIG_CPU_FREQ
244
245static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
246 unsigned long val, void *data)
247{
248 int ret;
249
250 if (!s3c2410wdt_is_running())
251 goto done;
252
253 if (val == CPUFREQ_PRECHANGE) {
254
255
256
257
258
259 s3c2410wdt_keepalive(&s3c2410_wdd);
260 } else if (val == CPUFREQ_POSTCHANGE) {
261 s3c2410wdt_stop(&s3c2410_wdd);
262
263 ret = s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout);
264
265 if (ret >= 0)
266 s3c2410wdt_start(&s3c2410_wdd);
267 else
268 goto err;
269 }
270
271done:
272 return 0;
273
274 err:
275 dev_err(wdt_dev, "cannot set new value for timeout %d\n",
276 s3c2410_wdd.timeout);
277 return ret;
278}
279
280static struct notifier_block s3c2410wdt_cpufreq_transition_nb = {
281 .notifier_call = s3c2410wdt_cpufreq_transition,
282};
283
284static inline int s3c2410wdt_cpufreq_register(void)
285{
286 return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb,
287 CPUFREQ_TRANSITION_NOTIFIER);
288}
289
290static inline void s3c2410wdt_cpufreq_deregister(void)
291{
292 cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb,
293 CPUFREQ_TRANSITION_NOTIFIER);
294}
295
296#else
297static inline int s3c2410wdt_cpufreq_register(void)
298{
299 return 0;
300}
301
302static inline void s3c2410wdt_cpufreq_deregister(void)
303{
304}
305#endif
306
307static int s3c2410wdt_probe(struct platform_device *pdev)
308{
309 struct device *dev;
310 unsigned int wtcon;
311 int started = 0;
312 int ret;
313
314 DBG("%s: probe=%p\n", __func__, pdev);
315
316 dev = &pdev->dev;
317 wdt_dev = &pdev->dev;
318
319 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
320 if (wdt_mem == NULL) {
321 dev_err(dev, "no memory resource specified\n");
322 return -ENOENT;
323 }
324
325 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
326 if (wdt_irq == NULL) {
327 dev_err(dev, "no irq resource specified\n");
328 ret = -ENOENT;
329 goto err;
330 }
331
332
333 wdt_base = devm_request_and_ioremap(dev, wdt_mem);
334 if (wdt_base == NULL) {
335 dev_err(dev, "failed to devm_request_and_ioremap() region\n");
336 ret = -ENOMEM;
337 goto err;
338 }
339
340 DBG("probe: mapped wdt_base=%p\n", wdt_base);
341
342 wdt_clock = devm_clk_get(dev, "watchdog");
343 if (IS_ERR(wdt_clock)) {
344 dev_err(dev, "failed to find watchdog clock source\n");
345 ret = PTR_ERR(wdt_clock);
346 goto err;
347 }
348
349 clk_prepare_enable(wdt_clock);
350
351 ret = s3c2410wdt_cpufreq_register();
352 if (ret < 0) {
353 pr_err("failed to register cpufreq\n");
354 goto err_clk;
355 }
356
357
358
359
360 watchdog_init_timeout(&s3c2410_wdd, tmr_margin, &pdev->dev);
361 if (s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout)) {
362 started = s3c2410wdt_set_heartbeat(&s3c2410_wdd,
363 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
364
365 if (started == 0)
366 dev_info(dev,
367 "tmr_margin value out of range, default %d used\n",
368 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
369 else
370 dev_info(dev, "default timer value is out of range, "
371 "cannot start\n");
372 }
373
374 ret = devm_request_irq(dev, wdt_irq->start, s3c2410wdt_irq, 0,
375 pdev->name, pdev);
376 if (ret != 0) {
377 dev_err(dev, "failed to install irq (%d)\n", ret);
378 goto err_cpufreq;
379 }
380
381 watchdog_set_nowayout(&s3c2410_wdd, nowayout);
382
383 ret = watchdog_register_device(&s3c2410_wdd);
384 if (ret) {
385 dev_err(dev, "cannot register watchdog (%d)\n", ret);
386 goto err_cpufreq;
387 }
388
389 if (tmr_atboot && started == 0) {
390 dev_info(dev, "starting watchdog timer\n");
391 s3c2410wdt_start(&s3c2410_wdd);
392 } else if (!tmr_atboot) {
393
394
395
396
397 s3c2410wdt_stop(&s3c2410_wdd);
398 }
399
400
401
402 wtcon = readl(wdt_base + S3C2410_WTCON);
403
404 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
405 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
406 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
407 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
408
409 return 0;
410
411 err_cpufreq:
412 s3c2410wdt_cpufreq_deregister();
413
414 err_clk:
415 clk_disable_unprepare(wdt_clock);
416 wdt_clock = NULL;
417
418 err:
419 wdt_irq = NULL;
420 wdt_mem = NULL;
421 return ret;
422}
423
424static int s3c2410wdt_remove(struct platform_device *dev)
425{
426 watchdog_unregister_device(&s3c2410_wdd);
427
428 s3c2410wdt_cpufreq_deregister();
429
430 clk_disable_unprepare(wdt_clock);
431 wdt_clock = NULL;
432
433 wdt_irq = NULL;
434 wdt_mem = NULL;
435 return 0;
436}
437
438static void s3c2410wdt_shutdown(struct platform_device *dev)
439{
440 s3c2410wdt_stop(&s3c2410_wdd);
441}
442
443#ifdef CONFIG_PM
444
445static unsigned long wtcon_save;
446static unsigned long wtdat_save;
447
448static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
449{
450
451 wtcon_save = readl(wdt_base + S3C2410_WTCON);
452 wtdat_save = readl(wdt_base + S3C2410_WTDAT);
453
454
455 s3c2410wdt_stop(&s3c2410_wdd);
456
457 return 0;
458}
459
460static int s3c2410wdt_resume(struct platform_device *dev)
461{
462
463
464 writel(wtdat_save, wdt_base + S3C2410_WTDAT);
465 writel(wtdat_save, wdt_base + S3C2410_WTCNT);
466 writel(wtcon_save, wdt_base + S3C2410_WTCON);
467
468 pr_info("watchdog %sabled\n",
469 (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
470
471 return 0;
472}
473
474#else
475#define s3c2410wdt_suspend NULL
476#define s3c2410wdt_resume NULL
477#endif
478
479#ifdef CONFIG_OF
480static const struct of_device_id s3c2410_wdt_match[] = {
481 { .compatible = "samsung,s3c2410-wdt" },
482 {},
483};
484MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
485#endif
486
487static struct platform_driver s3c2410wdt_driver = {
488 .probe = s3c2410wdt_probe,
489 .remove = s3c2410wdt_remove,
490 .shutdown = s3c2410wdt_shutdown,
491 .suspend = s3c2410wdt_suspend,
492 .resume = s3c2410wdt_resume,
493 .driver = {
494 .owner = THIS_MODULE,
495 .name = "s3c2410-wdt",
496 .of_match_table = of_match_ptr(s3c2410_wdt_match),
497 },
498};
499
500module_platform_driver(s3c2410wdt_driver);
501
502MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
503 "Dimitry Andric <dimitry.andric@tomtom.com>");
504MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
505MODULE_LICENSE("GPL");
506MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
507MODULE_ALIAS("platform:s3c2410-wdt");
508