dt-bindings: PCI: Document "atu" reg-names
[linux-2.6-block.git] / drivers / watchdog / mpc8xxx_wdt.c
CommitLineData
fabbfb9e 1/*
0d7b1014 2 * mpc8xxx_wdt.c - MPC8xx/MPC83xx/MPC86xx watchdog userspace interface
fabbfb9e
KG
3 *
4 * Authors: Dave Updegraff <dave@cray.org>
5f3b2756
WVS
5 * Kumar Gala <galak@kernel.crashing.org>
6 * Attribution: from 83xx_wst: Florian Schirmer <jolt@tuxbox.org>
7 * ..and from sc520_wdt
500c919e
AV
8 * Copyright (c) 2008 MontaVista Software, Inc.
9 * Anton Vorontsov <avorontsov@ru.mvista.com>
fabbfb9e
KG
10 *
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
fabbfb9e
KG
20#include <linux/fs.h>
21#include <linux/init.h>
22#include <linux/kernel.h>
5af50730 23#include <linux/of_address.h>
ef8ab12e 24#include <linux/of_platform.h>
fabbfb9e
KG
25#include <linux/module.h>
26#include <linux/watchdog.h>
f26ef3dc
AC
27#include <linux/io.h>
28#include <linux/uaccess.h>
ef8ab12e 29#include <sysdev/fsl_soc.h>
fabbfb9e 30
19ce9490
CL
31#define WATCHDOG_TIMEOUT 10
32
59ca1b0d 33struct mpc8xxx_wdt {
fabbfb9e
KG
34 __be32 res0;
35 __be32 swcrr; /* System watchdog control register */
36#define SWCRR_SWTC 0xFFFF0000 /* Software Watchdog Time Count. */
19ce9490 37#define SWCRR_SWF 0x00000008 /* Software Watchdog Freeze (mpc8xx). */
fabbfb9e
KG
38#define SWCRR_SWEN 0x00000004 /* Watchdog Enable bit. */
39#define SWCRR_SWRI 0x00000002 /* Software Watchdog Reset/Interrupt Select bit.*/
40#define SWCRR_SWPR 0x00000001 /* Software Watchdog Counter Prescale bit. */
41 __be32 swcnr; /* System watchdog count register */
42 u8 res1[2];
43 __be16 swsrr; /* System watchdog service register */
44 u8 res2[0xF0];
45};
46
59ca1b0d 47struct mpc8xxx_wdt_type {
500c919e
AV
48 int prescaler;
49 bool hw_enabled;
38e48b71 50 u32 rsr_mask;
500c919e
AV
51};
52
7997ebad
UKK
53struct mpc8xxx_wdt_ddata {
54 struct mpc8xxx_wdt __iomem *base;
55 struct watchdog_device wdd;
7997ebad 56 spinlock_t lock;
19ce9490 57 u16 swtc;
7997ebad 58};
fabbfb9e 59
19ce9490 60static u16 timeout;
fabbfb9e 61module_param(timeout, ushort, 0);
f26ef3dc 62MODULE_PARM_DESC(timeout,
19ce9490
CL
63 "Watchdog timeout in seconds. (1<timeout<65535, default="
64 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
fabbfb9e 65
90ab5ee9 66static bool reset = 1;
fabbfb9e 67module_param(reset, bool, 0);
f26ef3dc
AC
68MODULE_PARM_DESC(reset,
69 "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
fabbfb9e 70
86a1e189
WVS
71static bool nowayout = WATCHDOG_NOWAYOUT;
72module_param(nowayout, bool, 0);
500c919e
AV
73MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
74 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
75
7997ebad 76static void mpc8xxx_wdt_keepalive(struct mpc8xxx_wdt_ddata *ddata)
fabbfb9e
KG
77{
78 /* Ping the WDT */
7997ebad
UKK
79 spin_lock(&ddata->lock);
80 out_be16(&ddata->base->swsrr, 0x556c);
81 out_be16(&ddata->base->swsrr, 0xaa39);
82 spin_unlock(&ddata->lock);
fabbfb9e
KG
83}
84
d5cfaf0a 85static int mpc8xxx_wdt_start(struct watchdog_device *w)
fabbfb9e 86{
7997ebad
UKK
87 struct mpc8xxx_wdt_ddata *ddata =
88 container_of(w, struct mpc8xxx_wdt_ddata, wdd);
19ce9490 89 u32 tmp = in_be32(&ddata->base->swcrr);
fabbfb9e
KG
90
91 /* Good, fire up the show */
19ce9490
CL
92 tmp &= ~(SWCRR_SWTC | SWCRR_SWF | SWCRR_SWEN | SWCRR_SWRI | SWCRR_SWPR);
93 tmp |= SWCRR_SWEN | SWCRR_SWPR | (ddata->swtc << 16);
94
fabbfb9e
KG
95 if (reset)
96 tmp |= SWCRR_SWRI;
97
7997ebad 98 out_be32(&ddata->base->swcrr, tmp);
fabbfb9e 99
19ce9490
CL
100 tmp = in_be32(&ddata->base->swcrr);
101 if (!(tmp & SWCRR_SWEN))
102 return -EOPNOTSUPP;
103
104 ddata->swtc = tmp >> 16;
105 set_bit(WDOG_HW_RUNNING, &ddata->wdd.status);
500c919e 106
d5cfaf0a 107 return 0;
fabbfb9e
KG
108}
109
d5cfaf0a 110static int mpc8xxx_wdt_ping(struct watchdog_device *w)
fabbfb9e 111{
7997ebad
UKK
112 struct mpc8xxx_wdt_ddata *ddata =
113 container_of(w, struct mpc8xxx_wdt_ddata, wdd);
114
115 mpc8xxx_wdt_keepalive(ddata);
fabbfb9e
KG
116 return 0;
117}
118
d5cfaf0a 119static struct watchdog_info mpc8xxx_wdt_info = {
19ce9490 120 .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT,
d5cfaf0a
CL
121 .firmware_version = 1,
122 .identity = "MPC8xxx",
fabbfb9e
KG
123};
124
d5cfaf0a
CL
125static struct watchdog_ops mpc8xxx_wdt_ops = {
126 .owner = THIS_MODULE,
127 .start = mpc8xxx_wdt_start,
128 .ping = mpc8xxx_wdt_ping,
d5cfaf0a
CL
129};
130
2d991a16 131static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
fabbfb9e 132{
fabbfb9e 133 int ret;
de5f7122 134 struct resource *res;
639397e4 135 const struct mpc8xxx_wdt_type *wdt_type;
7997ebad 136 struct mpc8xxx_wdt_ddata *ddata;
ef8ab12e 137 u32 freq = fsl_get_sys_freq();
500c919e 138 bool enabled;
79b10e09 139 struct device *dev = &ofdev->dev;
fabbfb9e 140
79b10e09 141 wdt_type = of_device_get_match_data(dev);
f0ded83b 142 if (!wdt_type)
1c48a5c9 143 return -EINVAL;
1c48a5c9 144
ef8ab12e
AV
145 if (!freq || freq == -1)
146 return -EINVAL;
fabbfb9e 147
79b10e09 148 ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL);
7997ebad
UKK
149 if (!ddata)
150 return -ENOMEM;
151
de5f7122 152 res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
79b10e09 153 ddata->base = devm_ioremap_resource(dev, res);
7997ebad
UKK
154 if (IS_ERR(ddata->base))
155 return PTR_ERR(ddata->base);
fabbfb9e 156
7997ebad 157 enabled = in_be32(&ddata->base->swcrr) & SWCRR_SWEN;
500c919e 158 if (!enabled && wdt_type->hw_enabled) {
79b10e09 159 dev_info(dev, "could not be enabled in software\n");
72cd501e 160 return -ENODEV;
500c919e
AV
161 }
162
38e48b71
CL
163 res = platform_get_resource(ofdev, IORESOURCE_MEM, 1);
164 if (res) {
165 bool status;
166 u32 __iomem *rsr = ioremap(res->start, resource_size(res));
167
168 if (!rsr)
169 return -ENOMEM;
170
171 status = in_be32(rsr) & wdt_type->rsr_mask;
172 ddata->wdd.bootstatus = status ? WDIOF_CARDRESET : 0;
173 /* clear reset status bits related to watchdog timer */
174 out_be32(rsr, wdt_type->rsr_mask);
175 iounmap(rsr);
176
177 dev_info(dev, "Last boot was %scaused by watchdog\n",
178 status ? "" : "not ");
179 }
180
7997ebad 181 spin_lock_init(&ddata->lock);
7997ebad
UKK
182
183 ddata->wdd.info = &mpc8xxx_wdt_info,
184 ddata->wdd.ops = &mpc8xxx_wdt_ops,
185
19ce9490 186 ddata->wdd.timeout = WATCHDOG_TIMEOUT;
79b10e09 187 watchdog_init_timeout(&ddata->wdd, timeout, dev);
50ffb53e 188
7997ebad 189 watchdog_set_nowayout(&ddata->wdd, nowayout);
50ffb53e 190
19ce9490
CL
191 ddata->swtc = min(ddata->wdd.timeout * freq / wdt_type->prescaler,
192 0xffffU);
500c919e
AV
193
194 /*
195 * If the watchdog was previously enabled or we're running on
59ca1b0d 196 * MPC8xxx, we should ping the wdt from the kernel until the
500c919e
AV
197 * userspace handles it.
198 */
199 if (enabled)
19ce9490
CL
200 mpc8xxx_wdt_start(&ddata->wdd);
201
202 ddata->wdd.max_hw_heartbeat_ms = (ddata->swtc * wdt_type->prescaler) /
203 (freq / 1000);
204 ddata->wdd.min_timeout = ddata->wdd.max_hw_heartbeat_ms / 1000;
205 if (ddata->wdd.timeout < ddata->wdd.min_timeout)
206 ddata->wdd.timeout = ddata->wdd.min_timeout;
207
208 ret = watchdog_register_device(&ddata->wdd);
209 if (ret) {
79b10e09 210 dev_err(dev, "cannot register watchdog device (err=%d)\n", ret);
19ce9490
CL
211 return ret;
212 }
213
79b10e09
CL
214 dev_info(dev,
215 "WDT driver for MPC8xxx initialized. mode:%s timeout=%d sec\n",
216 reset ? "reset" : "interrupt", ddata->wdd.timeout);
7997ebad
UKK
217
218 platform_set_drvdata(ofdev, ddata);
fabbfb9e 219 return 0;
fabbfb9e
KG
220}
221
4b12b896 222static int mpc8xxx_wdt_remove(struct platform_device *ofdev)
fabbfb9e 223{
7997ebad
UKK
224 struct mpc8xxx_wdt_ddata *ddata = platform_get_drvdata(ofdev);
225
79b10e09
CL
226 dev_crit(&ofdev->dev, "Watchdog removed, expect the %s soon!\n",
227 reset ? "reset" : "machine check exception");
7997ebad 228 watchdog_unregister_device(&ddata->wdd);
fabbfb9e
KG
229
230 return 0;
231}
232
59ca1b0d 233static const struct of_device_id mpc8xxx_wdt_match[] = {
ef8ab12e
AV
234 {
235 .compatible = "mpc83xx_wdt",
59ca1b0d 236 .data = &(struct mpc8xxx_wdt_type) {
500c919e 237 .prescaler = 0x10000,
38e48b71 238 .rsr_mask = BIT(3), /* RSR Bit SWRS */
500c919e
AV
239 },
240 },
241 {
242 .compatible = "fsl,mpc8610-wdt",
59ca1b0d 243 .data = &(struct mpc8xxx_wdt_type) {
500c919e
AV
244 .prescaler = 0x10000,
245 .hw_enabled = true,
38e48b71 246 .rsr_mask = BIT(20), /* RSTRSCR Bit WDT_RR */
500c919e 247 },
ef8ab12e 248 },
0d7b1014
AV
249 {
250 .compatible = "fsl,mpc823-wdt",
251 .data = &(struct mpc8xxx_wdt_type) {
252 .prescaler = 0x800,
4af897fa 253 .hw_enabled = true,
38e48b71 254 .rsr_mask = BIT(28), /* RSR Bit SWRS */
0d7b1014
AV
255 },
256 },
ef8ab12e
AV
257 {},
258};
59ca1b0d 259MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
ef8ab12e 260
1c48a5c9 261static struct platform_driver mpc8xxx_wdt_driver = {
59ca1b0d 262 .probe = mpc8xxx_wdt_probe,
82268714 263 .remove = mpc8xxx_wdt_remove,
4018294b
GL
264 .driver = {
265 .name = "mpc8xxx_wdt",
4018294b 266 .of_match_table = mpc8xxx_wdt_match,
fabbfb9e
KG
267 },
268};
269
59ca1b0d 270static int __init mpc8xxx_wdt_init(void)
fabbfb9e 271{
1c48a5c9 272 return platform_driver_register(&mpc8xxx_wdt_driver);
fabbfb9e 273}
0d7b1014 274arch_initcall(mpc8xxx_wdt_init);
fabbfb9e 275
59ca1b0d 276static void __exit mpc8xxx_wdt_exit(void)
fabbfb9e 277{
1c48a5c9 278 platform_driver_unregister(&mpc8xxx_wdt_driver);
fabbfb9e 279}
59ca1b0d 280module_exit(mpc8xxx_wdt_exit);
fabbfb9e
KG
281
282MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
0d7b1014
AV
283MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
284 "uProcessors");
fabbfb9e 285MODULE_LICENSE("GPL");