net/mlx5: Kconfig: Fix MLX5_EN/VXLAN build issue
[deliverable/linux.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
27c766aa
JP
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
fabbfb9e
KG
22#include <linux/fs.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
500c919e 25#include <linux/timer.h>
fabbfb9e 26#include <linux/miscdevice.h>
5af50730 27#include <linux/of_address.h>
ef8ab12e 28#include <linux/of_platform.h>
fabbfb9e
KG
29#include <linux/module.h>
30#include <linux/watchdog.h>
f26ef3dc
AC
31#include <linux/io.h>
32#include <linux/uaccess.h>
ef8ab12e 33#include <sysdev/fsl_soc.h>
fabbfb9e 34
59ca1b0d 35struct mpc8xxx_wdt {
fabbfb9e
KG
36 __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
59ca1b0d 48struct mpc8xxx_wdt_type {
500c919e
AV
49 int prescaler;
50 bool hw_enabled;
51};
52
7997ebad
UKK
53struct mpc8xxx_wdt_ddata {
54 struct mpc8xxx_wdt __iomem *base;
55 struct watchdog_device wdd;
56 struct timer_list timer;
57 spinlock_t lock;
58};
fabbfb9e
KG
59
60static u16 timeout = 0xffff;
61module_param(timeout, ushort, 0);
f26ef3dc 62MODULE_PARM_DESC(timeout,
76550d32 63 "Watchdog timeout in ticks. (0<timeout<65536, default=65535)");
fabbfb9e 64
90ab5ee9 65static bool reset = 1;
fabbfb9e 66module_param(reset, bool, 0);
f26ef3dc
AC
67MODULE_PARM_DESC(reset,
68 "Watchdog Interrupt/Reset Mode. 0 = interrupt, 1 = reset");
fabbfb9e 69
86a1e189
WVS
70static bool nowayout = WATCHDOG_NOWAYOUT;
71module_param(nowayout, bool, 0);
500c919e
AV
72MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
73 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
74
7997ebad 75static void mpc8xxx_wdt_keepalive(struct mpc8xxx_wdt_ddata *ddata)
fabbfb9e
KG
76{
77 /* Ping the WDT */
7997ebad
UKK
78 spin_lock(&ddata->lock);
79 out_be16(&ddata->base->swsrr, 0x556c);
80 out_be16(&ddata->base->swsrr, 0xaa39);
81 spin_unlock(&ddata->lock);
fabbfb9e
KG
82}
83
59ca1b0d 84static void mpc8xxx_wdt_timer_ping(unsigned long arg)
500c919e 85{
7997ebad 86 struct mpc8xxx_wdt_ddata *ddata = (void *)arg;
d5cfaf0a 87
7997ebad 88 mpc8xxx_wdt_keepalive(ddata);
500c919e 89 /* We're pinging it twice faster than needed, just to be sure. */
7997ebad 90 mod_timer(&ddata->timer, jiffies + HZ * ddata->wdd.timeout / 2);
500c919e
AV
91}
92
d5cfaf0a 93static int mpc8xxx_wdt_start(struct watchdog_device *w)
fabbfb9e 94{
7997ebad
UKK
95 struct mpc8xxx_wdt_ddata *ddata =
96 container_of(w, struct mpc8xxx_wdt_ddata, wdd);
97
a57e06f7 98 u32 tmp = SWCRR_SWEN | SWCRR_SWPR;
fabbfb9e
KG
99
100 /* Good, fire up the show */
fabbfb9e
KG
101 if (reset)
102 tmp |= SWCRR_SWRI;
103
104 tmp |= timeout << 16;
105
7997ebad 106 out_be32(&ddata->base->swcrr, tmp);
fabbfb9e 107
7997ebad 108 del_timer_sync(&ddata->timer);
500c919e 109
d5cfaf0a 110 return 0;
fabbfb9e
KG
111}
112
d5cfaf0a 113static int mpc8xxx_wdt_ping(struct watchdog_device *w)
fabbfb9e 114{
7997ebad
UKK
115 struct mpc8xxx_wdt_ddata *ddata =
116 container_of(w, struct mpc8xxx_wdt_ddata, wdd);
117
118 mpc8xxx_wdt_keepalive(ddata);
fabbfb9e
KG
119 return 0;
120}
121
d5cfaf0a 122static int mpc8xxx_wdt_stop(struct watchdog_device *w)
fabbfb9e 123{
7997ebad
UKK
124 struct mpc8xxx_wdt_ddata *ddata =
125 container_of(w, struct mpc8xxx_wdt_ddata, wdd);
126
127 mod_timer(&ddata->timer, jiffies);
d5cfaf0a 128 return 0;
fabbfb9e
KG
129}
130
d5cfaf0a
CL
131static struct watchdog_info mpc8xxx_wdt_info = {
132 .options = WDIOF_KEEPALIVEPING,
133 .firmware_version = 1,
134 .identity = "MPC8xxx",
fabbfb9e
KG
135};
136
d5cfaf0a
CL
137static struct watchdog_ops mpc8xxx_wdt_ops = {
138 .owner = THIS_MODULE,
139 .start = mpc8xxx_wdt_start,
140 .ping = mpc8xxx_wdt_ping,
141 .stop = mpc8xxx_wdt_stop,
142};
143
2d991a16 144static int mpc8xxx_wdt_probe(struct platform_device *ofdev)
fabbfb9e 145{
fabbfb9e 146 int ret;
de5f7122 147 struct resource *res;
639397e4 148 const struct mpc8xxx_wdt_type *wdt_type;
7997ebad 149 struct mpc8xxx_wdt_ddata *ddata;
ef8ab12e 150 u32 freq = fsl_get_sys_freq();
500c919e 151 bool enabled;
d5cfaf0a 152 unsigned int timeout_sec;
fabbfb9e 153
f0ded83b
UKK
154 wdt_type = of_device_get_match_data(&ofdev->dev);
155 if (!wdt_type)
1c48a5c9 156 return -EINVAL;
1c48a5c9 157
ef8ab12e
AV
158 if (!freq || freq == -1)
159 return -EINVAL;
fabbfb9e 160
7997ebad
UKK
161 ddata = devm_kzalloc(&ofdev->dev, sizeof(*ddata), GFP_KERNEL);
162 if (!ddata)
163 return -ENOMEM;
164
de5f7122 165 res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
7997ebad
UKK
166 ddata->base = devm_ioremap_resource(&ofdev->dev, res);
167 if (IS_ERR(ddata->base))
168 return PTR_ERR(ddata->base);
fabbfb9e 169
7997ebad 170 enabled = in_be32(&ddata->base->swcrr) & SWCRR_SWEN;
500c919e 171 if (!enabled && wdt_type->hw_enabled) {
27c766aa 172 pr_info("could not be enabled in software\n");
72cd501e 173 return -ENODEV;
500c919e
AV
174 }
175
7997ebad
UKK
176 spin_lock_init(&ddata->lock);
177 setup_timer(&ddata->timer, mpc8xxx_wdt_timer_ping,
178 (unsigned long)ddata);
179
180 ddata->wdd.info = &mpc8xxx_wdt_info,
181 ddata->wdd.ops = &mpc8xxx_wdt_ops,
182
fabbfb9e 183 /* Calculate the timeout in seconds */
a57e06f7 184 timeout_sec = (timeout * wdt_type->prescaler) / freq;
fabbfb9e 185
7997ebad 186 ddata->wdd.timeout = timeout_sec;
50ffb53e 187
7997ebad 188 watchdog_set_nowayout(&ddata->wdd, nowayout);
50ffb53e 189
7997ebad 190 ret = watchdog_register_device(&ddata->wdd);
50ffb53e
UKK
191 if (ret) {
192 pr_err("cannot register watchdog device (err=%d)\n", ret);
de5f7122 193 return ret;
50ffb53e 194 }
593fc178 195
27c766aa
JP
196 pr_info("WDT driver for MPC8xxx initialized. mode:%s timeout=%d (%d seconds)\n",
197 reset ? "reset" : "interrupt", timeout, timeout_sec);
500c919e
AV
198
199 /*
200 * If the watchdog was previously enabled or we're running on
59ca1b0d 201 * MPC8xxx, we should ping the wdt from the kernel until the
500c919e
AV
202 * userspace handles it.
203 */
204 if (enabled)
7997ebad
UKK
205 mod_timer(&ddata->timer, jiffies);
206
207 platform_set_drvdata(ofdev, ddata);
fabbfb9e 208 return 0;
fabbfb9e
KG
209}
210
4b12b896 211static int mpc8xxx_wdt_remove(struct platform_device *ofdev)
fabbfb9e 212{
7997ebad
UKK
213 struct mpc8xxx_wdt_ddata *ddata = platform_get_drvdata(ofdev);
214
d5cfaf0a
CL
215 pr_crit("Watchdog removed, expect the %s soon!\n",
216 reset ? "reset" : "machine check exception");
7997ebad
UKK
217 del_timer_sync(&ddata->timer);
218 watchdog_unregister_device(&ddata->wdd);
fabbfb9e
KG
219
220 return 0;
221}
222
59ca1b0d 223static const struct of_device_id mpc8xxx_wdt_match[] = {
ef8ab12e
AV
224 {
225 .compatible = "mpc83xx_wdt",
59ca1b0d 226 .data = &(struct mpc8xxx_wdt_type) {
500c919e
AV
227 .prescaler = 0x10000,
228 },
229 },
230 {
231 .compatible = "fsl,mpc8610-wdt",
59ca1b0d 232 .data = &(struct mpc8xxx_wdt_type) {
500c919e
AV
233 .prescaler = 0x10000,
234 .hw_enabled = true,
235 },
ef8ab12e 236 },
0d7b1014
AV
237 {
238 .compatible = "fsl,mpc823-wdt",
239 .data = &(struct mpc8xxx_wdt_type) {
240 .prescaler = 0x800,
4af897fa 241 .hw_enabled = true,
0d7b1014
AV
242 },
243 },
ef8ab12e
AV
244 {},
245};
59ca1b0d 246MODULE_DEVICE_TABLE(of, mpc8xxx_wdt_match);
ef8ab12e 247
1c48a5c9 248static struct platform_driver mpc8xxx_wdt_driver = {
59ca1b0d 249 .probe = mpc8xxx_wdt_probe,
82268714 250 .remove = mpc8xxx_wdt_remove,
4018294b
GL
251 .driver = {
252 .name = "mpc8xxx_wdt",
4018294b 253 .of_match_table = mpc8xxx_wdt_match,
fabbfb9e
KG
254 },
255};
256
59ca1b0d 257static int __init mpc8xxx_wdt_init(void)
fabbfb9e 258{
1c48a5c9 259 return platform_driver_register(&mpc8xxx_wdt_driver);
fabbfb9e 260}
0d7b1014 261arch_initcall(mpc8xxx_wdt_init);
fabbfb9e 262
59ca1b0d 263static void __exit mpc8xxx_wdt_exit(void)
fabbfb9e 264{
1c48a5c9 265 platform_driver_unregister(&mpc8xxx_wdt_driver);
fabbfb9e 266}
59ca1b0d 267module_exit(mpc8xxx_wdt_exit);
fabbfb9e
KG
268
269MODULE_AUTHOR("Dave Updegraff, Kumar Gala");
0d7b1014
AV
270MODULE_DESCRIPTION("Driver for watchdog timer in MPC8xx/MPC83xx/MPC86xx "
271 "uProcessors");
fabbfb9e 272MODULE_LICENSE("GPL");
This page took 0.733725 seconds and 5 git commands to generate.