mpc8xxx_wdt.c 7.2 KB
Newer Older
1
/*
2
 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface
3 4
 *
 * Authors: Dave Updegraff <dave@cray.org>
5 6 7
 *	    Kumar Gala <galak@kernel.crashing.org>
 *		Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
 *				..and from sc520_wdt
8 9
 * Copyright (c) 2008  MontaVista Software, Inc.
 *                     Anton Vorontsov <avorontsov@ru.mvista.com>
10 11 12 13 14 15 16 17 18 19
 *
 * Note: it appears that you can only actually ENABLE or DISABLE the thing
 * once after POR. Once enabled, you cannot disable, and vice versa.
 *
 * 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.
 */

20 21
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

22 23 24
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/kernel.h>
25
#include <linux/timer.h>
26
#include <linux/miscdevice.h>
27
#include <linux/of_address.h>
28
#include <linux/of_platform.h>
29 30
#include <linux/module.h>
#include <linux/watchdog.h>
31 32
#include <linux/io.h>
#include <linux/uaccess.h>
33
#include <sysdev/fsl_soc.h>
34

35
struct mpc8xxx_wdt {
36 37 38 39 40 41 42 43 44 45 46 47
	__be32 res0;
	__be32 swcrr; /* System watchdog control register */
#define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
#define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
#define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
#define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
	__be32 swcnr; /* System watchdog count register */
	u8 res1[2];
	__be16 swsrr; /* System watchdog service register */
	u8 res2[0xF0];
};

48
struct mpc8xxx_wdt_type {
49 50 51 52
	int prescaler;
	bool hw_enabled;
};

53
static struct mpc8xxx_wdt __iomem *wd_base;
54
static int mpc8xxx_wdt_init_late(void);
55 56 57

static u16 timeout = 0xffff;
module_param(timeout, ushort, 0);
58
MODULE_PARM_DESC(timeout,
59
	"Watchdog timeout in ticks. (0<timeout<65536, default=65535)");
60

61
static bool reset = 1;
62
module_param(reset, bool, 0);
63 64
MODULE_PARM_DESC(reset,
	"Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
65

W
Wim Van Sebroeck 已提交
66 67
static bool nowayout = WATCHDOG_NOWAYOUT;
module_param(nowayout, bool, 0);
68 69 70
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
		 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");

71 72 73 74 75 76
/*
 * We always prescale, but if someone really doesn't want to they can set this
 * to 0
 */
static int prescale = 1;

77
static DEFINE_SPINLOCK(wdt_spinlock);
78

79
static void mpc8xxx_wdt_keepalive(void)
80 81 82 83 84 85 86 87
{
	/* Ping the WDT */
	spin_lock(&wdt_spinlock);
	out_be16(&wd_base->swsrr, 0x556c);
	out_be16(&wd_base->swsrr, 0xaa39);
	spin_unlock(&wdt_spinlock);
}

88
static struct watchdog_device mpc8xxx_wdt_dev;
89
static void mpc8xxx_wdt_timer_ping(unsigned long arg);
90 91
static DEFINE_TIMER(wdt_timer, mpc8xxx_wdt_timer_ping, 0,
		(unsigned long)&mpc8xxx_wdt_dev);
92

93
static void mpc8xxx_wdt_timer_ping(unsigned long arg)
94
{
95 96
	struct watchdog_device *w = (struct watchdog_device *)arg;

97
	mpc8xxx_wdt_keepalive();
98
	/* We're pinging it twice faster than needed, just to be sure. */
99
	mod_timer(&wdt_timer, jiffies + HZ * w->timeout / 2);
100 101
}

102
static int mpc8xxx_wdt_start(struct watchdog_device *w)
103 104 105 106 107 108 109 110 111 112 113 114 115
{
	u32 tmp = SWCRR_SWEN;

	/* Good, fire up the show */
	if (prescale)
		tmp |= SWCRR_SWPR;
	if (reset)
		tmp |= SWCRR_SWRI;

	tmp |= timeout << 16;

	out_be32(&wd_base->swcrr, tmp);

116 117
	del_timer_sync(&wdt_timer);

118
	return 0;
119 120
}

121
static int mpc8xxx_wdt_ping(struct watchdog_device *w)
122
{
123
	mpc8xxx_wdt_keepalive();
124 125 126
	return 0;
}

127
static int mpc8xxx_wdt_stop(struct watchdog_device *w)
128
{
129 130
	mod_timer(&wdt_timer, jiffies);
	return 0;
131 132
}

133 134 135 136
static struct watchdog_info mpc8xxx_wdt_info = {
	.options = WDIOF_KEEPALIVEPING,
	.firmware_version = 1,
	.identity = "MPC8xxx",
137 138
};

139 140 141 142 143 144 145 146 147 148
static struct watchdog_ops mpc8xxx_wdt_ops = {
	.owner = THIS_MODULE,
	.start = mpc8xxx_wdt_start,
	.ping = mpc8xxx_wdt_ping,
	.stop = mpc8xxx_wdt_stop,
};

static struct watchdog_device mpc8xxx_wdt_dev = {
	.info = &mpc8xxx_wdt_info,
	.ops = &mpc8xxx_wdt_ops,
149 150
};

151
static const struct of_device_id mpc8xxx_wdt_match[];
B
Bill Pemberton 已提交
152
static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
153 154
{
	int ret;
155
	const struct of_device_id *match;
156
	struct device_node *np = ofdev->dev.of_node;
157
	const struct mpc8xxx_wdt_type *wdt_type;
158
	u32 freq = fsl_get_sys_freq();
159
	bool enabled;
160
	unsigned int timeout_sec;
161

162 163
	match = of_match_device(mpc8xxx_wdt_match, &ofdev->dev);
	if (!match)
164
		return -EINVAL;
165
	wdt_type = match->data;
166

167 168
	if (!freq || freq == -1)
		return -EINVAL;
169

170
	wd_base = of_iomap(np, 0);
171 172
	if (!wd_base)
		return -ENOMEM;
173

174 175
	enabled = in_be32(&wd_base->swcrr) & SWCRR_SWEN;
	if (!enabled && wdt_type->hw_enabled) {
176
		pr_info("could not be enabled in software\n");
177 178 179 180
		ret = -ENOSYS;
		goto err_unmap;
	}

181 182
	/* Calculate the timeout in seconds */
	if (prescale)
183
		timeout_sec = (timeout * wdt_type->prescaler) / freq;
184
	else
185
		timeout_sec = timeout / freq;
186

187
	mpc8xxx_wdt_dev.timeout = timeout_sec;
188 189 190 191 192 193
#ifdef MODULE
	ret = mpc8xxx_wdt_init_late();
	if (ret)
		goto err_unmap;
#endif

194 195
	pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n",
		reset ? "reset" : "interrupt", timeout, timeout_sec);
196 197 198

	/*
	 * If the watchdog was previously enabled or we're running on
199
	 * MPC8xxx, we should ping the wdt from the kernel until the
200 201 202
	 * userspace handles it.
	 */
	if (enabled)
203
		mod_timer(&wdt_timer, jiffies);
204 205 206
	return 0;
err_unmap:
	iounmap(wd_base);
207
	wd_base = NULL;
208 209 210
	return ret;
}

B
Bill Pemberton 已提交
211
static int mpc8xxx_wdt_remove(struct platform_device *ofdev)
212
{
213 214
	pr_crit("Watchdog removed, expect the %s soon!\n",
		reset ? "reset" : "machine check exception");
215
	del_timer_sync(&wdt_timer);
216
	watchdog_unregister_device(&mpc8xxx_wdt_dev);
217 218 219 220 221
	iounmap(wd_base);

	return 0;
}

222
static const struct of_device_id mpc8xxx_wdt_match[] = {
223 224
	{
		.compatible = "mpc83xx_wdt",
225
		.data = &(struct mpc8xxx_wdt_type) {
226 227 228 229 230
			.prescaler = 0x10000,
		},
	},
	{
		.compatible = "fsl,mpc8610-wdt",
231
		.data = &(struct mpc8xxx_wdt_type) {
232 233 234
			.prescaler = 0x10000,
			.hw_enabled = true,
		},
235
	},
236 237 238 239 240 241
	{
		.compatible = "fsl,mpc823-wdt",
		.data = &(struct mpc8xxx_wdt_type) {
			.prescaler = 0x800,
		},
	},
242 243
	{},
};
244
MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
245

246
static struct platform_driver mpc8xxx_wdt_driver = {
247
	.probe		= mpc8xxx_wdt_probe,
248
	.remove		= mpc8xxx_wdt_remove,
249 250 251 252
	.driver = {
		.name = "mpc8xxx_wdt",
		.owner = THIS_MODULE,
		.of_match_table = mpc8xxx_wdt_match,
253 254 255
	},
};

256 257 258 259 260
/*
 * We do wdt initialization in two steps: arch_initcall probes the wdt
 * very early to start pinging the watchdog (misc devices are not yet
 * available), and later module_init() just registers the misc device.
 */
261
static int mpc8xxx_wdt_init_late(void)
262 263 264 265 266 267
{
	int ret;

	if (!wd_base)
		return -ENODEV;

268 269 270
	watchdog_set_nowayout(&mpc8xxx_wdt_dev, nowayout);

	ret = watchdog_register_device(&mpc8xxx_wdt_dev);
271
	if (ret) {
272
		pr_err("cannot register watchdog device (err=%d)\n", ret);
273 274 275 276
		return ret;
	}
	return 0;
}
277
#ifndef MODULE
278
module_init(mpc8xxx_wdt_init_late);
279
#endif
280

281
static int __init mpc8xxx_wdt_init(void)
282
{
283
	return platform_driver_register(&mpc8xxx_wdt_driver);
284
}
285
arch_initcall(mpc8xxx_wdt_init);
286

287
static void __exit mpc8xxx_wdt_exit(void)
288
{
289
	platform_driver_unregister(&mpc8xxx_wdt_driver);
290
}
291
module_exit(mpc8xxx_wdt_exit);
292 293

MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
294 295
MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
		   "uProcessors");
296
MODULE_LICENSE("GPL");