blob: b4021a2b459b6c0889173a30f89d4d365eb8e9f2 [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/init.h>
20#include <linux/kernel.h>
matthieu castet90074dc2009-06-05 18:57:18 +020021#include <linux/module.h>
22#include <linux/moduleparam.h>
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010023#include <linux/platform_device.h>
matthieu castet90074dc2009-06-05 18:57:18 +020024#include <linux/reboot.h>
25#include <linux/types.h>
matthieu castet90074dc2009-06-05 18:57:18 +020026#include <linux/watchdog.h>
27#include <linux/timer.h>
28#include <linux/jiffies.h>
matthieu castet90074dc2009-06-05 18:57:18 +020029
30#define DRV_NAME "bcm47xx_wdt"
31
32#define WDT_DEFAULT_TIME 30 /* seconds */
Hauke Mehrtensa3906892013-01-12 18:14:09 +010033#define WDT_SOFTTIMER_MAX 255 /* seconds */
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010034#define WDT_SOFTTIMER_THRESHOLD 60 /* seconds */
matthieu castet90074dc2009-06-05 18:57:18 +020035
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010036static int timeout = WDT_DEFAULT_TIME;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010037static bool nowayout = WATCHDOG_NOWAYOUT;
matthieu castet90074dc2009-06-05 18:57:18 +020038
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010039module_param(timeout, int, 0);
40MODULE_PARM_DESC(timeout, "Watchdog time in seconds. (default="
matthieu castet90074dc2009-06-05 18:57:18 +020041 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
42
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010043module_param(nowayout, bool, 0);
matthieu castet90074dc2009-06-05 18:57:18 +020044MODULE_PARM_DESC(nowayout,
45 "Watchdog cannot be stopped once started (default="
46 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
matthieu castet90074dc2009-06-05 18:57:18 +020047
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010048static inline struct bcm47xx_wdt *bcm47xx_wdt_get(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +020049{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010050 return container_of(wdd, struct bcm47xx_wdt, wdd);
matthieu castet90074dc2009-06-05 18:57:18 +020051}
52
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010053static int bcm47xx_wdt_hard_keepalive(struct watchdog_device *wdd)
54{
55 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
56
57 wdt->timer_set_ms(wdt, wdd->timeout * 1000);
58
59 return 0;
60}
61
62static int bcm47xx_wdt_hard_start(struct watchdog_device *wdd)
63{
64 return 0;
65}
66
67static int bcm47xx_wdt_hard_stop(struct watchdog_device *wdd)
68{
69 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
70
71 wdt->timer_set(wdt, 0);
72
73 return 0;
74}
75
76static int bcm47xx_wdt_hard_set_timeout(struct watchdog_device *wdd,
77 unsigned int new_time)
78{
79 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
80 u32 max_timer = wdt->max_timer_ms;
81
82 if (new_time < 1 || new_time > max_timer / 1000) {
83 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
84 max_timer / 1000, new_time);
85 return -EINVAL;
86 }
87
88 wdd->timeout = new_time;
89 return 0;
90}
91
92static struct watchdog_ops bcm47xx_wdt_hard_ops = {
93 .owner = THIS_MODULE,
94 .start = bcm47xx_wdt_hard_start,
95 .stop = bcm47xx_wdt_hard_stop,
96 .ping = bcm47xx_wdt_hard_keepalive,
97 .set_timeout = bcm47xx_wdt_hard_set_timeout,
98};
99
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100100static void bcm47xx_wdt_soft_timer_tick(unsigned long data)
matthieu castet90074dc2009-06-05 18:57:18 +0200101{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100102 struct bcm47xx_wdt *wdt = (struct bcm47xx_wdt *)data;
103 u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms);
matthieu castet90074dc2009-06-05 18:57:18 +0200104
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100105 if (!atomic_dec_and_test(&wdt->soft_ticks)) {
106 wdt->timer_set_ms(wdt, next_tick);
107 mod_timer(&wdt->soft_timer, jiffies + HZ);
matthieu castet90074dc2009-06-05 18:57:18 +0200108 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800109 pr_crit("Watchdog will fire soon!!!\n");
matthieu castet90074dc2009-06-05 18:57:18 +0200110 }
111}
112
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100113static int bcm47xx_wdt_soft_keepalive(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200114{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100115 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
116
117 atomic_set(&wdt->soft_ticks, wdd->timeout);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100118
119 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200120}
121
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100122static int bcm47xx_wdt_soft_start(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200123{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100124 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
125
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100126 bcm47xx_wdt_soft_keepalive(wdd);
127 bcm47xx_wdt_soft_timer_tick((unsigned long)wdt);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100128
129 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200130}
131
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100132static int bcm47xx_wdt_soft_stop(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200133{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100134 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
135
136 del_timer_sync(&wdt->soft_timer);
137 wdt->timer_set(wdt, 0);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100138
139 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200140}
141
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100142static int bcm47xx_wdt_soft_set_timeout(struct watchdog_device *wdd,
143 unsigned int new_time)
matthieu castet90074dc2009-06-05 18:57:18 +0200144{
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100145 if (new_time < 1 || new_time > WDT_SOFTTIMER_MAX) {
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100146 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100147 WDT_SOFTTIMER_MAX, new_time);
matthieu castet90074dc2009-06-05 18:57:18 +0200148 return -EINVAL;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100149 }
matthieu castet90074dc2009-06-05 18:57:18 +0200150
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100151 wdd->timeout = new_time;
matthieu castet90074dc2009-06-05 18:57:18 +0200152 return 0;
153}
154
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000155static const struct watchdog_info bcm47xx_wdt_info = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000156 .identity = DRV_NAME,
157 .options = WDIOF_SETTIMEOUT |
matthieu castet90074dc2009-06-05 18:57:18 +0200158 WDIOF_KEEPALIVEPING |
159 WDIOF_MAGICCLOSE,
160};
161
matthieu castet90074dc2009-06-05 18:57:18 +0200162static int bcm47xx_wdt_notify_sys(struct notifier_block *this,
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100163 unsigned long code, void *unused)
matthieu castet90074dc2009-06-05 18:57:18 +0200164{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100165 struct bcm47xx_wdt *wdt;
166
167 wdt = container_of(this, struct bcm47xx_wdt, notifier);
matthieu castet90074dc2009-06-05 18:57:18 +0200168 if (code == SYS_DOWN || code == SYS_HALT)
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100169 wdt->wdd.ops->stop(&wdt->wdd);
matthieu castet90074dc2009-06-05 18:57:18 +0200170 return NOTIFY_DONE;
171}
172
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100173static struct watchdog_ops bcm47xx_wdt_soft_ops = {
matthieu castet90074dc2009-06-05 18:57:18 +0200174 .owner = THIS_MODULE,
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100175 .start = bcm47xx_wdt_soft_start,
176 .stop = bcm47xx_wdt_soft_stop,
177 .ping = bcm47xx_wdt_soft_keepalive,
178 .set_timeout = bcm47xx_wdt_soft_set_timeout,
matthieu castet90074dc2009-06-05 18:57:18 +0200179};
180
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100181static int bcm47xx_wdt_probe(struct platform_device *pdev)
matthieu castet90074dc2009-06-05 18:57:18 +0200182{
183 int ret;
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100184 bool soft;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100185 struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
matthieu castet90074dc2009-06-05 18:57:18 +0200186
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100187 if (!wdt)
188 return -ENXIO;
matthieu castet90074dc2009-06-05 18:57:18 +0200189
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100190 soft = wdt->max_timer_ms < WDT_SOFTTIMER_THRESHOLD * 1000;
matthieu castet90074dc2009-06-05 18:57:18 +0200191
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100192 if (soft) {
193 wdt->wdd.ops = &bcm47xx_wdt_soft_ops;
194 setup_timer(&wdt->soft_timer, bcm47xx_wdt_soft_timer_tick,
195 (long unsigned int)wdt);
196 } else {
197 wdt->wdd.ops = &bcm47xx_wdt_hard_ops;
198 }
199
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100200 wdt->wdd.info = &bcm47xx_wdt_info;
201 wdt->wdd.timeout = WDT_DEFAULT_TIME;
202 ret = wdt->wdd.ops->set_timeout(&wdt->wdd, timeout);
matthieu castet90074dc2009-06-05 18:57:18 +0200203 if (ret)
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100204 goto err_timer;
205 watchdog_set_nowayout(&wdt->wdd, nowayout);
matthieu castet90074dc2009-06-05 18:57:18 +0200206
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100207 wdt->notifier.notifier_call = &bcm47xx_wdt_notify_sys;
208
209 ret = register_reboot_notifier(&wdt->notifier);
210 if (ret)
211 goto err_timer;
212
213 ret = watchdog_register_device(&wdt->wdd);
214 if (ret)
215 goto err_notifier;
matthieu castet90074dc2009-06-05 18:57:18 +0200216
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100217 dev_info(&pdev->dev, "BCM47xx Watchdog Timer enabled (%d seconds%s%s)\n",
218 timeout, nowayout ? ", nowayout" : "",
219 soft ? ", Software Timer" : "");
matthieu castet90074dc2009-06-05 18:57:18 +0200220 return 0;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100221
222err_notifier:
223 unregister_reboot_notifier(&wdt->notifier);
224err_timer:
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100225 if (soft)
226 del_timer_sync(&wdt->soft_timer);
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100227
228 return ret;
matthieu castet90074dc2009-06-05 18:57:18 +0200229}
230
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100231static int bcm47xx_wdt_remove(struct platform_device *pdev)
matthieu castet90074dc2009-06-05 18:57:18 +0200232{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100233 struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
matthieu castet90074dc2009-06-05 18:57:18 +0200234
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100235 if (!wdt)
236 return -ENXIO;
237
238 watchdog_unregister_device(&wdt->wdd);
239 unregister_reboot_notifier(&wdt->notifier);
240
241 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200242}
243
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100244static struct platform_driver bcm47xx_wdt_driver = {
245 .driver = {
246 .owner = THIS_MODULE,
247 .name = "bcm47xx-wdt",
248 },
249 .probe = bcm47xx_wdt_probe,
250 .remove = bcm47xx_wdt_remove,
251};
252
253module_platform_driver(bcm47xx_wdt_driver);
matthieu castet90074dc2009-06-05 18:57:18 +0200254
255MODULE_AUTHOR("Aleksandar Radovanovic");
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100256MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>");
matthieu castet90074dc2009-06-05 18:57:18 +0200257MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
258MODULE_LICENSE("GPL");