blob: a1900b9ab6c4e651b799f39b6c0f80ae62657d05 [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/types.h>
matthieu castet90074dc2009-06-05 18:57:18 +020024#include <linux/watchdog.h>
25#include <linux/timer.h>
26#include <linux/jiffies.h>
matthieu castet90074dc2009-06-05 18:57:18 +020027
28#define DRV_NAME "bcm47xx_wdt"
29
30#define WDT_DEFAULT_TIME 30 /* seconds */
Hauke Mehrtensa3906892013-01-12 18:14:09 +010031#define WDT_SOFTTIMER_MAX 255 /* seconds */
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010032#define WDT_SOFTTIMER_THRESHOLD 60 /* seconds */
matthieu castet90074dc2009-06-05 18:57:18 +020033
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010034static int timeout = WDT_DEFAULT_TIME;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010035static bool nowayout = WATCHDOG_NOWAYOUT;
matthieu castet90074dc2009-06-05 18:57:18 +020036
Hauke Mehrtens93aed1f2013-01-12 18:14:10 +010037module_param(timeout, int, 0);
38MODULE_PARM_DESC(timeout, "Watchdog time in seconds. (default="
matthieu castet90074dc2009-06-05 18:57:18 +020039 __MODULE_STRING(WDT_DEFAULT_TIME) ")");
40
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010041module_param(nowayout, bool, 0);
matthieu castet90074dc2009-06-05 18:57:18 +020042MODULE_PARM_DESC(nowayout,
43 "Watchdog cannot be stopped once started (default="
44 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
matthieu castet90074dc2009-06-05 18:57:18 +020045
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010046static inline struct bcm47xx_wdt *bcm47xx_wdt_get(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +020047{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +010048 return container_of(wdd, struct bcm47xx_wdt, wdd);
matthieu castet90074dc2009-06-05 18:57:18 +020049}
50
Hauke Mehrtense3e83d02013-01-12 18:14:11 +010051static int bcm47xx_wdt_hard_keepalive(struct watchdog_device *wdd)
52{
53 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
54
55 wdt->timer_set_ms(wdt, wdd->timeout * 1000);
56
57 return 0;
58}
59
60static int bcm47xx_wdt_hard_start(struct watchdog_device *wdd)
61{
62 return 0;
63}
64
65static int bcm47xx_wdt_hard_stop(struct watchdog_device *wdd)
66{
67 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
68
69 wdt->timer_set(wdt, 0);
70
71 return 0;
72}
73
74static int bcm47xx_wdt_hard_set_timeout(struct watchdog_device *wdd,
75 unsigned int new_time)
76{
77 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
78 u32 max_timer = wdt->max_timer_ms;
79
80 if (new_time < 1 || new_time > max_timer / 1000) {
81 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
82 max_timer / 1000, new_time);
83 return -EINVAL;
84 }
85
86 wdd->timeout = new_time;
87 return 0;
88}
89
Guenter Roeck4d8b2292016-02-26 17:32:49 -080090static int bcm47xx_wdt_restart(struct watchdog_device *wdd,
91 unsigned long action, void *data)
Damien Riegel65a4a1d2015-11-16 12:28:00 -050092{
93 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
94
95 wdt->timer_set(wdt, 1);
96
97 return 0;
98}
99
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100100static struct watchdog_ops bcm47xx_wdt_hard_ops = {
101 .owner = THIS_MODULE,
102 .start = bcm47xx_wdt_hard_start,
103 .stop = bcm47xx_wdt_hard_stop,
104 .ping = bcm47xx_wdt_hard_keepalive,
105 .set_timeout = bcm47xx_wdt_hard_set_timeout,
Damien Riegel65a4a1d2015-11-16 12:28:00 -0500106 .restart = bcm47xx_wdt_restart,
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100107};
108
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100109static void bcm47xx_wdt_soft_timer_tick(unsigned long data)
matthieu castet90074dc2009-06-05 18:57:18 +0200110{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100111 struct bcm47xx_wdt *wdt = (struct bcm47xx_wdt *)data;
112 u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms);
matthieu castet90074dc2009-06-05 18:57:18 +0200113
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100114 if (!atomic_dec_and_test(&wdt->soft_ticks)) {
115 wdt->timer_set_ms(wdt, next_tick);
116 mod_timer(&wdt->soft_timer, jiffies + HZ);
matthieu castet90074dc2009-06-05 18:57:18 +0200117 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800118 pr_crit("Watchdog will fire soon!!!\n");
matthieu castet90074dc2009-06-05 18:57:18 +0200119 }
120}
121
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100122static int bcm47xx_wdt_soft_keepalive(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
126 atomic_set(&wdt->soft_ticks, wdd->timeout);
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_start(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
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100135 bcm47xx_wdt_soft_keepalive(wdd);
136 bcm47xx_wdt_soft_timer_tick((unsigned long)wdt);
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_stop(struct watchdog_device *wdd)
matthieu castet90074dc2009-06-05 18:57:18 +0200142{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100143 struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);
144
145 del_timer_sync(&wdt->soft_timer);
146 wdt->timer_set(wdt, 0);
Hauke Mehrtens5434a042013-01-12 18:14:07 +0100147
148 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200149}
150
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100151static int bcm47xx_wdt_soft_set_timeout(struct watchdog_device *wdd,
152 unsigned int new_time)
matthieu castet90074dc2009-06-05 18:57:18 +0200153{
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100154 if (new_time < 1 || new_time > WDT_SOFTTIMER_MAX) {
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100155 pr_warn("timeout value must be 1<=x<=%d, using %d\n",
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100156 WDT_SOFTTIMER_MAX, new_time);
matthieu castet90074dc2009-06-05 18:57:18 +0200157 return -EINVAL;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100158 }
matthieu castet90074dc2009-06-05 18:57:18 +0200159
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100160 wdd->timeout = new_time;
matthieu castet90074dc2009-06-05 18:57:18 +0200161 return 0;
162}
163
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000164static const struct watchdog_info bcm47xx_wdt_info = {
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000165 .identity = DRV_NAME,
166 .options = WDIOF_SETTIMEOUT |
matthieu castet90074dc2009-06-05 18:57:18 +0200167 WDIOF_KEEPALIVEPING |
168 WDIOF_MAGICCLOSE,
169};
170
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100171static struct watchdog_ops bcm47xx_wdt_soft_ops = {
matthieu castet90074dc2009-06-05 18:57:18 +0200172 .owner = THIS_MODULE,
Hauke Mehrtensa3906892013-01-12 18:14:09 +0100173 .start = bcm47xx_wdt_soft_start,
174 .stop = bcm47xx_wdt_soft_stop,
175 .ping = bcm47xx_wdt_soft_keepalive,
176 .set_timeout = bcm47xx_wdt_soft_set_timeout,
Damien Riegel65a4a1d2015-11-16 12:28:00 -0500177 .restart = bcm47xx_wdt_restart,
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;
Pratyush Anand65518812015-08-20 14:05:01 +0530201 wdt->wdd.parent = &pdev->dev;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100202 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);
Damien Riegel65a4a1d2015-11-16 12:28:00 -0500206 watchdog_set_restart_priority(&wdt->wdd, 64);
Damien Riegel2786aad2015-11-20 16:54:52 -0500207 watchdog_stop_on_reboot(&wdt->wdd);
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100208
Rafał Miłecki1cc74952015-01-25 11:40:57 +0100209 ret = watchdog_register_device(&wdt->wdd);
210 if (ret)
Damien Riegel2786aad2015-11-20 16:54:52 -0500211 goto err_timer;
Rafał Miłecki1cc74952015-01-25 11:40:57 +0100212
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100213 dev_info(&pdev->dev, "BCM47xx Watchdog Timer enabled (%d seconds%s%s)\n",
214 timeout, nowayout ? ", nowayout" : "",
215 soft ? ", Software Timer" : "");
matthieu castet90074dc2009-06-05 18:57:18 +0200216 return 0;
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100217
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100218err_timer:
Hauke Mehrtense3e83d02013-01-12 18:14:11 +0100219 if (soft)
220 del_timer_sync(&wdt->soft_timer);
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100221
222 return ret;
matthieu castet90074dc2009-06-05 18:57:18 +0200223}
224
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100225static int bcm47xx_wdt_remove(struct platform_device *pdev)
matthieu castet90074dc2009-06-05 18:57:18 +0200226{
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100227 struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
matthieu castet90074dc2009-06-05 18:57:18 +0200228
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100229 if (!wdt)
230 return -ENXIO;
231
232 watchdog_unregister_device(&wdt->wdd);
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100233
234 return 0;
matthieu castet90074dc2009-06-05 18:57:18 +0200235}
236
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100237static struct platform_driver bcm47xx_wdt_driver = {
238 .driver = {
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100239 .name = "bcm47xx-wdt",
240 },
241 .probe = bcm47xx_wdt_probe,
242 .remove = bcm47xx_wdt_remove,
243};
244
245module_platform_driver(bcm47xx_wdt_driver);
matthieu castet90074dc2009-06-05 18:57:18 +0200246
247MODULE_AUTHOR("Aleksandar Radovanovic");
Hauke Mehrtensf82dedf2013-01-24 18:13:34 +0100248MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>");
matthieu castet90074dc2009-06-05 18:57:18 +0200249MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
250MODULE_LICENSE("GPL");