bcm47xx_wdt.c 4.9 KB
Newer Older
1 2 3 4 5
/*
 *  Watchdog driver for Broadcom BCM47XX
 *
 *  Copyright (C) 2008 Aleksandar Radovanovic <biblbroks@sezampro.rs>
 *  Copyright (C) 2009 Matthieu CASTET <castet.matthieu@free.fr>
6
 *  Copyright (C) 2012-2013 Hauke Mehrtens <hauke@hauke-m.de>
7 8 9 10 11 12 13
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version
 *  2 of the License, or (at your option) any later version.
 */

14 15
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

16
#include <linux/bcm47xx_wdt.h>
17 18 19 20 21 22
#include <linux/bitops.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
23
#include <linux/platform_device.h>
24 25 26 27 28 29 30 31 32 33 34 35
#include <linux/reboot.h>
#include <linux/types.h>
#include <linux/watchdog.h>
#include <linux/timer.h>
#include <linux/jiffies.h>

#define DRV_NAME		"bcm47xx_wdt"

#define WDT_DEFAULT_TIME	30	/* seconds */
#define WDT_MAX_TIME		255	/* seconds */

static int wdt_time = WDT_DEFAULT_TIME;
W
Wim Van Sebroeck 已提交
36
static bool nowayout = WATCHDOG_NOWAYOUT;
37 38 39 40 41

module_param(wdt_time, int, 0);
MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default="
				__MODULE_STRING(WDT_DEFAULT_TIME) ")");

W
Wim Van Sebroeck 已提交
42
module_param(nowayout, bool, 0);
43 44 45 46
MODULE_PARM_DESC(nowayout,
		"Watchdog cannot be stopped once started (default="
				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");

47
static inline struct bcm47xx_wdt *bcm47xx_wdt_get(struct watchdog_device *wdd)
48
{
49
	return container_of(wdd, struct bcm47xx_wdt, wdd);
50 51
}

52
static void bcm47xx_timer_tick(unsigned long data)
53
{
54 55
	struct bcm47xx_wdt *wdt = (struct bcm47xx_wdt *)data;
	u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms);
56

57 58 59
	if (!atomic_dec_and_test(&wdt->soft_ticks)) {
		wdt->timer_set_ms(wdt, next_tick);
		mod_timer(&wdt->soft_timer, jiffies + HZ);
60
	} else {
61
		pr_crit("Watchdog will fire soon!!!\n");
62 63 64
	}
}

65
static int bcm47xx_wdt_keepalive(struct watchdog_device *wdd)
66
{
67 68 69
	struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);

	atomic_set(&wdt->soft_ticks, wdd->timeout);
70 71

	return 0;
72 73
}

74
static int bcm47xx_wdt_start(struct watchdog_device *wdd)
75
{
76 77 78 79
	struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);

	bcm47xx_wdt_keepalive(wdd);
	bcm47xx_timer_tick((unsigned long)wdt);
80 81

	return 0;
82 83
}

84
static int bcm47xx_wdt_stop(struct watchdog_device *wdd)
85
{
86 87 88 89
	struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd);

	del_timer_sync(&wdt->soft_timer);
	wdt->timer_set(wdt, 0);
90

91
	return 0;
92 93
}

94 95
static int bcm47xx_wdt_set_timeout(struct watchdog_device *wdd,
				   unsigned int new_time)
96
{
97 98 99
	if (new_time < 1 || new_time > WDT_MAX_TIME) {
		pr_warn("timeout value must be 1<=x<=%d, using %d\n",
			WDT_MAX_TIME, new_time);
100
		return -EINVAL;
101
	}
102

103
	wdd->timeout = new_time;
104 105 106
	return 0;
}

107
static const struct watchdog_info bcm47xx_wdt_info = {
108 109
	.identity	= DRV_NAME,
	.options	= WDIOF_SETTIMEOUT |
110 111 112 113 114
				WDIOF_KEEPALIVEPING |
				WDIOF_MAGICCLOSE,
};

static int bcm47xx_wdt_notify_sys(struct notifier_block *this,
115
				  unsigned long code, void *unused)
116
{
117 118 119
	struct bcm47xx_wdt *wdt;

	wdt = container_of(this, struct bcm47xx_wdt, notifier);
120
	if (code == SYS_DOWN || code == SYS_HALT)
121
		wdt->wdd.ops->stop(&wdt->wdd);
122 123 124
	return NOTIFY_DONE;
}

125
static struct watchdog_ops bcm47xx_wdt_ops = {
126
	.owner		= THIS_MODULE,
127 128 129 130
	.start		= bcm47xx_wdt_start,
	.stop		= bcm47xx_wdt_stop,
	.ping		= bcm47xx_wdt_keepalive,
	.set_timeout	= bcm47xx_wdt_set_timeout,
131 132
};

133
static int bcm47xx_wdt_probe(struct platform_device *pdev)
134 135
{
	int ret;
136
	struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
137

138 139
	if (!wdt)
		return -ENXIO;
140

141 142
	setup_timer(&wdt->soft_timer, bcm47xx_timer_tick,
		    (long unsigned int)wdt);
143

144 145 146 147 148 149 150 151 152
	wdt->wdd.ops = &bcm47xx_wdt_ops;
	wdt->wdd.info = &bcm47xx_wdt_info;
	wdt->wdd.timeout = WDT_DEFAULT_TIME;
	ret = wdt->wdd.ops->set_timeout(&wdt->wdd, timeout);
	if (ret)
		goto err_timer;
	watchdog_set_nowayout(&wdt->wdd, nowayout);

	wdt->notifier.notifier_call = &bcm47xx_wdt_notify_sys;
153

154
	ret = register_reboot_notifier(&wdt->notifier);
155
	if (ret)
156
		goto err_timer;
157

158 159 160
	ret = watchdog_register_device(&wdt->wdd);
	if (ret)
		goto err_notifier;
161

162 163
	pr_info("BCM47xx Watchdog Timer enabled (%d seconds%s)\n",
		wdt_time, nowayout ? ", nowayout" : "");
164
	return 0;
165 166 167 168 169 170 171

err_notifier:
	unregister_reboot_notifier(&wdt->notifier);
err_timer:
	del_timer_sync(&wdt->soft_timer);

	return ret;
172 173
}

174
static int bcm47xx_wdt_remove(struct platform_device *pdev)
175
{
176 177 178 179 180 181 182
	struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);

	if (!wdt)
		return -ENXIO;

	watchdog_unregister_device(&wdt->wdd);
	unregister_reboot_notifier(&wdt->notifier);
183

184
	return 0;
185 186
}

187 188 189 190 191 192 193 194 195 196
static struct platform_driver bcm47xx_wdt_driver = {
	.driver		= {
		.owner	= THIS_MODULE,
		.name	= "bcm47xx-wdt",
	},
	.probe		= bcm47xx_wdt_probe,
	.remove		= bcm47xx_wdt_remove,
};

module_platform_driver(bcm47xx_wdt_driver);
197 198

MODULE_AUTHOR("Aleksandar Radovanovic");
199
MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>");
200 201
MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx");
MODULE_LICENSE("GPL");