blob: 9816485f68252254907b60e744058bc32d1f3065 [file] [log] [blame]
matthieu castet90074dc2009-06-05 18:57:18 +02001/*
2 * Watchdog driver for Broadcom BCM47XX
3 *
4 * Copyright (C) 2008 Aleksandar Radovanovic <biblbroks@sezampro.rs>
5 * Copyright (C) 2009 Matthieu CASTET <castet.matthieu@free.fr>
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +01006 * Copyright (C) 2012-2013 Hauke Mehrtens <hauke@hauke-m.de>
matthieu castet90074dc2009-06-05 18:57:18 +02007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Joe Perches27c766a2012-02-15 15:06:19 -080014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010016#include <linux/bcm47xx_wdt.h>
matthieu castet90074dc2009-06-05 18:57:18 +020017#include <linux/bitops.h>
18#include <linux/errno.h>
matthieu castet90074dc2009-06-05 18:57:18 +020019#include <linux/kernel.h>
matthieu castet90074dc2009-06-05 18:57:18 +020020#include <linux/module.h>
21#include <linux/moduleparam.h>
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010022#include <linux/platform_device.h>
matthieu castet90074dc2009-06-05 18:57:18 +020023#include <linux/reboot.h>
24#include <linux/types.h>
matthieu castet90074dc2009-06-05 18:57:18 +020025#include <linux/watchdog.h>
26#include <linux/timer.h>
27#include <linux/jiffies.h>
matthieu castet90074dc2009-06-05 18:57:18 +020028
29#define DRV_NAME "bcm47xx_wdt"
30
31#define WDT_DEFAULT_TIME 30 /* seconds */
Hauke Mehrtensa3906892013-01-12 18:14:09 +010032#define WDT_SOFTTIMER_MAX 255 /* seconds */
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010033#define WDT_SOFTTIMER_THRESHOLD 60 /* seconds */
matthieu castet90074dc2009-06-05 18:57:18 +020034
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010035static int timeout = WDT_DEFAULT_TIME;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010036static bool nowayout = WATCHDOG_NOWAYOUT;
matthieu castet90074dc2009-06-05 18:57:18 +020037
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010038module_param(timeout, int, 0);
39MODULE_PARM_DESC(timeout, "Watchdog time in seconds. (default="
matthieu castet90074dc2009-06-05 18:57:18 +020040 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
41
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010042module_param(nowayout, bool, 0);
matthieu castet90074dc2009-06-05 18:57:18 +020043MODULE_PARM_DESC(nowayout,
44 "Watchdog cannot be stopped once started (default="
45 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
matthieu castet90074dc2009-06-05 18:57:18 +020046
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010047static inline struct bcm47xx_wdt *bcm47xx_wdt_get(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +020048{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010049 return container_of(wdd, struct bcm47xx_wdt, wdd);
matthieu castet90074dc2009-06-05 18:57:18 +020050}
51
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010052static int bcm47xx_wdt_hard_keepalive(struct watchdog_device *wdd)
53{
54 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
55
56 wdt->timer_set_ms(wdt, wdd->timeout * 1000);
57
58 return 0;
59}
60
61static int bcm47xx_wdt_hard_start(struct watchdog_device *wdd)
62{
63 return 0;
64}
65
66static int bcm47xx_wdt_hard_stop(struct watchdog_device *wdd)
67{
68 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
69
70 wdt->timer_set(wdt, 0);
71
72 return 0;
73}
74
75static int bcm47xx_wdt_hard_set_timeout(struct watchdog_device *wdd,
76 unsigned int new_time)
77{
78 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
79 u32 max_timer = wdt->max_timer_ms;
80
81 if (new_time < 1 || new_time > max_timer / 1000) {
82 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
83 max_timer / 1000, new_time);
84 return -EINVAL;
85 }
86
87 wdd->timeout = new_time;
88 return 0;
89}
90
91static struct watchdog_ops bcm47xx_wdt_hard_ops = {
92 .owner = THIS_MODULE,
93 .start = bcm47xx_wdt_hard_start,
94 .stop = bcm47xx_wdt_hard_stop,
95 .ping = bcm47xx_wdt_hard_keepalive,
96 .set_timeout = bcm47xx_wdt_hard_set_timeout,
97};
98
Hauke Mehrtensa3906892013-01-12 18:14:09 +010099static void bcm47xx_wdt_soft_timer_tick(unsigned long data)
matthieu castet90074dc2009-06-05 18:57:18 +0200100{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100101 struct bcm47xx_wdt *wdt = (struct bcm47xx_wdt *)data;
102 u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms);
matthieu castet90074dc2009-06-05 18:57:18 +0200103
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100104 if (!atomic_dec_and_test(&wdt->soft_ticks)) {
105 wdt->timer_set_ms(wdt, next_tick);
106 mod_timer(&wdt->soft_timer, jiffies + HZ);
matthieu castet90074dc2009-06-05 18:57:18 +0200107 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800108 pr_crit("Watchdog will fire soon!!!\n");
matthieu castet90074dc2009-06-05 18:57:18 +0200109 }
110}
111
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100112static int bcm47xx_wdt_soft_keepalive(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200113{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100114 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
115
116 atomic_set(&wdt->soft_ticks, wdd->timeout);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100117
118 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200119}
120
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100121static int bcm47xx_wdt_soft_start(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200122{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100123 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
124
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100125 bcm47xx_wdt_soft_keepalive(wdd);
126 bcm47xx_wdt_soft_timer_tick((unsigned long)wdt);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100127
128 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200129}
130
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100131static int bcm47xx_wdt_soft_stop(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200132{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100133 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
134
135 del_timer_sync(&wdt->soft_timer);
136 wdt->timer_set(wdt, 0);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100137
138 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200139}
140
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100141static int bcm47xx_wdt_soft_set_timeout(struct watchdog_device *wdd,
142 unsigned int new_time)
matthieu castet90074dc2009-06-05 18:57:18 +0200143{
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100144 if (new_time < 1 || new_time > WDT_SOFTTIMER_MAX) {
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100145 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100146 WDT_SOFTTIMER_MAX, new_time);
matthieu castet90074dc2009-06-05 18:57:18 +0200147 return -EINVAL;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100148 }
matthieu castet90074dc2009-06-05 18:57:18 +0200149
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100150 wdd->timeout = new_time;
matthieu castet90074dc2009-06-05 18:57:18 +0200151 return 0;
152}
153
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000154static const struct watchdog_info bcm47xx_wdt_info = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000155 .identity = DRV_NAME,
156 .options = WDIOF_SETTIMEOUT |
matthieu castet90074dc2009-06-05 18:57:18 +0200157 WDIOF_KEEPALIVEPING |
158 WDIOF_MAGICCLOSE,
159};
160
matthieu castet90074dc2009-06-05 18:57:18 +0200161static int bcm47xx_wdt_notify_sys(struct notifier_block *this,
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100162 unsigned long code, void *unused)
matthieu castet90074dc2009-06-05 18:57:18 +0200163{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100164 struct bcm47xx_wdt *wdt;
165
166 wdt = container_of(this, struct bcm47xx_wdt, notifier);
matthieu castet90074dc2009-06-05 18:57:18 +0200167 if (code == SYS_DOWN || code == SYS_HALT)
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100168 wdt->wdd.ops->stop(&wdt->wdd);
matthieu castet90074dc2009-06-05 18:57:18 +0200169 return NOTIFY_DONE;
170}
171
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100172static struct watchdog_ops bcm47xx_wdt_soft_ops = {
matthieu castet90074dc2009-06-05 18:57:18 +0200173 .owner = THIS_MODULE,
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100174 .start = bcm47xx_wdt_soft_start,
175 .stop = bcm47xx_wdt_soft_stop,
176 .ping = bcm47xx_wdt_soft_keepalive,
177 .set_timeout = bcm47xx_wdt_soft_set_timeout,
matthieu castet90074dc2009-06-05 18:57:18 +0200178};
179
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100180static int bcm47xx_wdt_probe(struct platform_device *pdev)
matthieu castet90074dc2009-06-05 18:57:18 +0200181{
182 int ret;
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100183 bool soft;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100184 struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
matthieu castet90074dc2009-06-05 18:57:18 +0200185
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100186 if (!wdt)
187 return -ENXIO;
matthieu castet90074dc2009-06-05 18:57:18 +0200188
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100189 soft = wdt->max_timer_ms < WDT_SOFTTIMER_THRESHOLD * 1000;
matthieu castet90074dc2009-06-05 18:57:18 +0200190
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100191 if (soft) {
192 wdt->wdd.ops = &bcm47xx_wdt_soft_ops;
193 setup_timer(&wdt->soft_timer, bcm47xx_wdt_soft_timer_tick,
194 (long unsigned int)wdt);
195 } else {
196 wdt->wdd.ops = &bcm47xx_wdt_hard_ops;
197 }
198
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100199 wdt->wdd.info = &bcm47xx_wdt_info;
200 wdt->wdd.timeout = WDT_DEFAULT_TIME;
201 ret = wdt->wdd.ops->set_timeout(&wdt->wdd, timeout);
matthieu castet90074dc2009-06-05 18:57:18 +0200202 if (ret)
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100203 goto err_timer;
204 watchdog_set_nowayout(&wdt->wdd, nowayout);
matthieu castet90074dc2009-06-05 18:57:18 +0200205
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100206 wdt->notifier.notifier_call = &bcm47xx_wdt_notify_sys;
207
208 ret = register_reboot_notifier(&wdt->notifier);
209 if (ret)
210 goto err_timer;
211
212 ret = watchdog_register_device(&wdt->wdd);
213 if (ret)
214 goto err_notifier;
matthieu castet90074dc2009-06-05 18:57:18 +0200215
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100216 dev_info(&pdev->dev, "BCM47xx Watchdog Timer enabled (%d seconds%s%s)\n",
217 timeout, nowayout ? ", nowayout" : "",
218 soft ? ", Software Timer" : "");
matthieu castet90074dc2009-06-05 18:57:18 +0200219 return 0;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100220
221err_notifier:
222 unregister_reboot_notifier(&wdt->notifier);
223err_timer:
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100224 if (soft)
225 del_timer_sync(&wdt->soft_timer);
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100226
227 return ret;
matthieu castet90074dc2009-06-05 18:57:18 +0200228}
229
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100230static int bcm47xx_wdt_remove(struct platform_device *pdev)
matthieu castet90074dc2009-06-05 18:57:18 +0200231{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100232 struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
matthieu castet90074dc2009-06-05 18:57:18 +0200233
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100234 if (!wdt)
235 return -ENXIO;
236
237 watchdog_unregister_device(&wdt->wdd);
238 unregister_reboot_notifier(&wdt->notifier);
239
240 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200241}
242
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100243static struct platform_driver bcm47xx_wdt_driver = {
244 .driver = {
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100245 .name = "bcm47xx-wdt",
246 },
247 .probe = bcm47xx_wdt_probe,
248 .remove = bcm47xx_wdt_remove,
249};
250
251module_platform_driver(bcm47xx_wdt_driver);
matthieu castet90074dc2009-06-05 18:57:18 +0200252
253MODULE_AUTHOR("Aleksandar Radovanovic");
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100254MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>");
matthieu castet90074dc2009-06-05 18:57:18 +0200255MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
256MODULE_LICENSE("GPL");