blob: a6790fcfa69b977497ae1d191e334a8a26f6d78a [file] [log] [blame]
Kumar Galafabbfb92006-01-14 13:20:50 -08001/*
Anton Vorontsov0d7b1012008-07-03 23:51:36 -07002 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface
Kumar Galafabbfb92006-01-14 13:20:50 -08003 *
4 * Authors: Dave Updegraff <dave@cray.org>
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +00005 * Kumar Gala <galak@kernel.crashing.org>
6 * Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
7 * ..and from sc520_wdt
Anton Vorontsov500c9192008-07-03 23:51:34 -07008 * Copyright (c) 2008 MontaVista Software, Inc.
9 * Anton Vorontsov <avorontsov@ru.mvista.com>
Kumar Galafabbfb92006-01-14 13:20:50 -080010 *
11 * Note: it appears that you can only actually ENABLE or DISABLE the thing
12 * once after POR. Once enabled, you cannot disable, and vice versa.
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 */
19
Joe Perches27c766a2012-02-15 15:06:19 -080020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Kumar Galafabbfb92006-01-14 13:20:50 -080022#include <linux/fs.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
Anton Vorontsov500c9192008-07-03 23:51:34 -070025#include <linux/timer.h>
Kumar Galafabbfb92006-01-14 13:20:50 -080026#include <linux/miscdevice.h>
Rob Herring5af50732013-09-17 14:28:33 -050027#include <linux/of_address.h>
Anton Vorontsovef8ab122008-07-03 23:51:32 -070028#include <linux/of_platform.h>
Kumar Galafabbfb92006-01-14 13:20:50 -080029#include <linux/module.h>
30#include <linux/watchdog.h>
Alan Coxf26ef3d2008-05-19 14:07:09 +010031#include <linux/io.h>
32#include <linux/uaccess.h>
Anton Vorontsovef8ab122008-07-03 23:51:32 -070033#include <sysdev/fsl_soc.h>
Kumar Galafabbfb92006-01-14 13:20:50 -080034
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070035struct mpc8xxx_wdt {
Kumar Galafabbfb92006-01-14 13:20:50 -080036 __be32 res0;
37 __be32 swcrr; /* System watchdog control register */
38#define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
39#define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
40#define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
41#define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
42 __be32 swcnr; /* System watchdog count register */
43 u8 res1[2];
44 __be16 swsrr; /* System watchdog service register */
45 u8 res2[0xF0];
46};
47
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070048struct mpc8xxx_wdt_type {
Anton Vorontsov500c9192008-07-03 23:51:34 -070049 int prescaler;
50 bool hw_enabled;
51};
52
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070053static struct mpc8xxx_wdt __iomem *wd_base;
Kumar Galafabbfb92006-01-14 13:20:50 -080054
55static u16 timeout = 0xffff;
56module_param(timeout, ushort, 0);
Alan Coxf26ef3d2008-05-19 14:07:09 +010057MODULE_PARM_DESC(timeout,
Randy Dunlap76550d32010-05-01 09:46:15 -070058 "Watchdog timeout in ticks. (0<timeout<65536, default=65535)");
Kumar Galafabbfb92006-01-14 13:20:50 -080059
Rusty Russell90ab5ee2012-01-13 09:32:20 +103060static bool reset = 1;
Kumar Galafabbfb92006-01-14 13:20:50 -080061module_param(reset, bool, 0);
Alan Coxf26ef3d2008-05-19 14:07:09 +010062MODULE_PARM_DESC(reset,
63 "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
Kumar Galafabbfb92006-01-14 13:20:50 -080064
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010065static bool nowayout = WATCHDOG_NOWAYOUT;
66module_param(nowayout, bool, 0);
Anton Vorontsov500c9192008-07-03 23:51:34 -070067MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
68 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
69
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070070static DEFINE_SPINLOCK(wdt_spinlock);
Kumar Galafabbfb92006-01-14 13:20:50 -080071
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070072static void mpc8xxx_wdt_keepalive(void)
Kumar Galafabbfb92006-01-14 13:20:50 -080073{
74 /* Ping the WDT */
75 spin_lock(&wdt_spinlock);
76 out_be16(&wd_base->swsrr, 0x556c);
77 out_be16(&wd_base->swsrr, 0xaa39);
78 spin_unlock(&wdt_spinlock);
79}
80
Christophe Leroyd5cfaf02013-12-04 07:32:14 +010081static struct watchdog_device mpc8xxx_wdt_dev;
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070082static void mpc8xxx_wdt_timer_ping(unsigned long arg);
Christophe Leroyd5cfaf02013-12-04 07:32:14 +010083static DEFINE_TIMER(wdt_timer, mpc8xxx_wdt_timer_ping, 0,
84 (unsigned long)&mpc8xxx_wdt_dev);
Anton Vorontsov500c9192008-07-03 23:51:34 -070085
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070086static void mpc8xxx_wdt_timer_ping(unsigned long arg)
Anton Vorontsov500c9192008-07-03 23:51:34 -070087{
Christophe Leroyd5cfaf02013-12-04 07:32:14 +010088 struct watchdog_device *w = (struct watchdog_device *)arg;
89
Anton Vorontsov59ca1b02008-07-03 23:51:35 -070090 mpc8xxx_wdt_keepalive();
Anton Vorontsov500c9192008-07-03 23:51:34 -070091 /* We're pinging it twice faster than needed, just to be sure. */
Christophe Leroyd5cfaf02013-12-04 07:32:14 +010092 mod_timer(&wdt_timer, jiffies + HZ * w->timeout / 2);
Anton Vorontsov500c9192008-07-03 23:51:34 -070093}
94
Christophe Leroyd5cfaf02013-12-04 07:32:14 +010095static int mpc8xxx_wdt_start(struct watchdog_device *w)
Kumar Galafabbfb92006-01-14 13:20:50 -080096{
Uwe Kleine-Königa57e06f2015-08-12 10:15:52 +020097 u32 tmp = SWCRR_SWEN | SWCRR_SWPR;
Kumar Galafabbfb92006-01-14 13:20:50 -080098
99 /* Good, fire up the show */
Kumar Galafabbfb92006-01-14 13:20:50 -0800100 if (reset)
101 tmp |= SWCRR_SWRI;
102
103 tmp |= timeout << 16;
104
105 out_be32(&wd_base->swcrr, tmp);
106
Anton Vorontsov500c9192008-07-03 23:51:34 -0700107 del_timer_sync(&wdt_timer);
108
Kumar Galafabbfb92006-01-14 13:20:50 -0800109 return 0;
110}
111
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100112static int mpc8xxx_wdt_ping(struct watchdog_device *w)
Kumar Galafabbfb92006-01-14 13:20:50 -0800113{
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100114 mpc8xxx_wdt_keepalive();
115 return 0;
Kumar Galafabbfb92006-01-14 13:20:50 -0800116}
117
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100118static int mpc8xxx_wdt_stop(struct watchdog_device *w)
119{
120 mod_timer(&wdt_timer, jiffies);
121 return 0;
122}
123
124static struct watchdog_info mpc8xxx_wdt_info = {
125 .options = WDIOF_KEEPALIVEPING,
126 .firmware_version = 1,
127 .identity = "MPC8xxx",
Kumar Galafabbfb92006-01-14 13:20:50 -0800128};
129
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100130static struct watchdog_ops mpc8xxx_wdt_ops = {
131 .owner = THIS_MODULE,
132 .start = mpc8xxx_wdt_start,
133 .ping = mpc8xxx_wdt_ping,
134 .stop = mpc8xxx_wdt_stop,
135};
136
137static struct watchdog_device mpc8xxx_wdt_dev = {
138 .info = &mpc8xxx_wdt_info,
139 .ops = &mpc8xxx_wdt_ops,
Kumar Galafabbfb92006-01-14 13:20:50 -0800140};
141
Bill Pemberton2d991a12012-11-19 13:21:41 -0500142static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
Kumar Galafabbfb92006-01-14 13:20:50 -0800143{
Kumar Galafabbfb92006-01-14 13:20:50 -0800144 int ret;
Uwe Kleine-Königde5f7122015-08-12 10:15:55 +0200145 struct resource *res;
Arnd Bergmann639397e2012-05-21 21:57:39 +0200146 const struct mpc8xxx_wdt_type *wdt_type;
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700147 u32 freq = fsl_get_sys_freq();
Anton Vorontsov500c9192008-07-03 23:51:34 -0700148 bool enabled;
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100149 unsigned int timeout_sec;
Kumar Galafabbfb92006-01-14 13:20:50 -0800150
Uwe Kleine-Königf0ded832015-08-12 10:15:54 +0200151 wdt_type = of_device_get_match_data(&ofdev->dev);
152 if (!wdt_type)
Grant Likely1c48a5c2011-02-17 02:43:24 -0700153 return -EINVAL;
Grant Likely1c48a5c2011-02-17 02:43:24 -0700154
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700155 if (!freq || freq == -1)
156 return -EINVAL;
Kumar Galafabbfb92006-01-14 13:20:50 -0800157
Uwe Kleine-Königde5f7122015-08-12 10:15:55 +0200158 res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
159 wd_base = devm_ioremap_resource(&ofdev->dev, res);
160 if (IS_ERR(wd_base))
161 return PTR_ERR(wd_base);
Kumar Galafabbfb92006-01-14 13:20:50 -0800162
Anton Vorontsov500c9192008-07-03 23:51:34 -0700163 enabled = in_be32(&wd_base->swcrr) & SWCRR_SWEN;
164 if (!enabled && wdt_type->hw_enabled) {
Joe Perches27c766a2012-02-15 15:06:19 -0800165 pr_info("could not be enabled in software\n");
Uwe Kleine-Königde5f7122015-08-12 10:15:55 +0200166 return -ENOSYS;
Anton Vorontsov500c9192008-07-03 23:51:34 -0700167 }
168
Kumar Galafabbfb92006-01-14 13:20:50 -0800169 /* Calculate the timeout in seconds */
Uwe Kleine-Königa57e06f2015-08-12 10:15:52 +0200170 timeout_sec = (timeout * wdt_type->prescaler) / freq;
Kumar Galafabbfb92006-01-14 13:20:50 -0800171
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100172 mpc8xxx_wdt_dev.timeout = timeout_sec;
Uwe Kleine-König50ffb532015-08-12 10:15:53 +0200173
174 watchdog_set_nowayout(&mpc8xxx_wdt_dev, nowayout);
175
176 ret = watchdog_register_device(&mpc8xxx_wdt_dev);
177 if (ret) {
178 pr_err("cannot register watchdog device (err=%d)\n", ret);
Uwe Kleine-Königde5f7122015-08-12 10:15:55 +0200179 return ret;
Uwe Kleine-König50ffb532015-08-12 10:15:53 +0200180 }
Anton Vorontsov593fc172008-08-20 16:38:36 -0700181
Joe Perches27c766a2012-02-15 15:06:19 -0800182 pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n",
183 reset ? "reset" : "interrupt", timeout, timeout_sec);
Anton Vorontsov500c9192008-07-03 23:51:34 -0700184
185 /*
186 * If the watchdog was previously enabled or we're running on
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700187 * MPC8xxx, we should ping the wdt from the kernel until the
Anton Vorontsov500c9192008-07-03 23:51:34 -0700188 * userspace handles it.
189 */
190 if (enabled)
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100191 mod_timer(&wdt_timer, jiffies);
Kumar Galafabbfb92006-01-14 13:20:50 -0800192 return 0;
Kumar Galafabbfb92006-01-14 13:20:50 -0800193}
194
Bill Pemberton4b12b892012-11-19 13:26:24 -0500195static int mpc8xxx_wdt_remove(struct platform_device *ofdev)
Kumar Galafabbfb92006-01-14 13:20:50 -0800196{
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100197 pr_crit("Watchdog removed, expect the %s soon!\n",
198 reset ? "reset" : "machine check exception");
Anton Vorontsov500c9192008-07-03 23:51:34 -0700199 del_timer_sync(&wdt_timer);
Christophe Leroyd5cfaf02013-12-04 07:32:14 +0100200 watchdog_unregister_device(&mpc8xxx_wdt_dev);
Kumar Galafabbfb92006-01-14 13:20:50 -0800201
202 return 0;
203}
204
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700205static const struct of_device_id mpc8xxx_wdt_match[] = {
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700206 {
207 .compatible = "mpc83xx_wdt",
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700208 .data = &(struct mpc8xxx_wdt_type) {
Anton Vorontsov500c9192008-07-03 23:51:34 -0700209 .prescaler = 0x10000,
210 },
211 },
212 {
213 .compatible = "fsl,mpc8610-wdt",
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700214 .data = &(struct mpc8xxx_wdt_type) {
Anton Vorontsov500c9192008-07-03 23:51:34 -0700215 .prescaler = 0x10000,
216 .hw_enabled = true,
217 },
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700218 },
Anton Vorontsov0d7b1012008-07-03 23:51:36 -0700219 {
220 .compatible = "fsl,mpc823-wdt",
221 .data = &(struct mpc8xxx_wdt_type) {
222 .prescaler = 0x800,
Christophe Leroy4af897f2013-11-30 16:45:40 +0100223 .hw_enabled = true,
Anton Vorontsov0d7b1012008-07-03 23:51:36 -0700224 },
225 },
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700226 {},
227};
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700228MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
Anton Vorontsovef8ab122008-07-03 23:51:32 -0700229
Grant Likely1c48a5c2011-02-17 02:43:24 -0700230static struct platform_driver mpc8xxx_wdt_driver = {
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700231 .probe = mpc8xxx_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500232 .remove = mpc8xxx_wdt_remove,
Grant Likely40182942010-04-13 16:13:02 -0700233 .driver = {
234 .name = "mpc8xxx_wdt",
Grant Likely40182942010-04-13 16:13:02 -0700235 .of_match_table = mpc8xxx_wdt_match,
Kumar Galafabbfb92006-01-14 13:20:50 -0800236 },
237};
238
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700239static int __init mpc8xxx_wdt_init(void)
Kumar Galafabbfb92006-01-14 13:20:50 -0800240{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700241 return platform_driver_register(&mpc8xxx_wdt_driver);
Kumar Galafabbfb92006-01-14 13:20:50 -0800242}
Anton Vorontsov0d7b1012008-07-03 23:51:36 -0700243arch_initcall(mpc8xxx_wdt_init);
Kumar Galafabbfb92006-01-14 13:20:50 -0800244
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700245static void __exit mpc8xxx_wdt_exit(void)
Kumar Galafabbfb92006-01-14 13:20:50 -0800246{
Grant Likely1c48a5c2011-02-17 02:43:24 -0700247 platform_driver_unregister(&mpc8xxx_wdt_driver);
Kumar Galafabbfb92006-01-14 13:20:50 -0800248}
Anton Vorontsov59ca1b02008-07-03 23:51:35 -0700249module_exit(mpc8xxx_wdt_exit);
Kumar Galafabbfb92006-01-14 13:20:50 -0800250
251MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
Anton Vorontsov0d7b1012008-07-03 23:51:36 -0700252MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
253 "uProcessors");
Kumar Galafabbfb92006-01-14 13:20:50 -0800254MODULE_LICENSE("GPL");