2 * drivers/char/watchdog/max63xx_wdt.c
4 * Driver for max63{69,70,71,72,73,74} watchdog timers
6 * Copyright (C) 2009 Marc Zyngier <maz@misterjones.org>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
12 * This driver assumes the watchdog pins are memory mapped (as it is
13 * the case for the Arcom Zeus). Should it be connected over GPIOs or
14 * another interface, some abstraction will have to be introduced.
17 #include <linux/err.h>
18 #include <linux/module.h>
19 #include <linux/moduleparam.h>
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/watchdog.h>
23 #include <linux/bitops.h>
24 #include <linux/platform_device.h>
25 #include <linux/spinlock.h>
27 #include <linux/slab.h>
29 #define DEFAULT_HEARTBEAT 60
30 #define MAX_HEARTBEAT 60
32 static unsigned int heartbeat
= DEFAULT_HEARTBEAT
;
33 static bool nowayout
= WATCHDOG_NOWAYOUT
;
36 * Memory mapping: a single byte, 3 first lower bits to select bit 3
37 * to ping the watchdog.
39 #define MAX6369_WDSET (7 << 0)
40 #define MAX6369_WDI (1 << 3)
42 #define MAX6369_WDSET_DISABLED 3
47 struct watchdog_device wdd
;
48 const struct max63xx_timeout
*timeout
;
54 /* WDI and WSET bits write access routines */
55 void (*ping
)(struct max63xx_wdt
*wdt
);
56 void (*set
)(struct max63xx_wdt
*wdt
, u8 set
);
60 * The timeout values used are actually the absolute minimum the chip
61 * offers. Typical values on my board are slightly over twice as long
62 * (10s setting ends up with a 25s timeout), and can be up to 3 times
63 * the nominal setting (according to the datasheet). So please take
64 * these values with a grain of salt. Same goes for the initial delay
65 * "feature". Only max6373/74 have a few settings without this initial
66 * delay (selected with the "nodelay" parameter).
68 * I also decided to remove from the tables any timeout smaller than a
69 * second, as it looked completly overkill...
72 /* Timeouts in second */
73 struct max63xx_timeout
{
79 static const struct max63xx_timeout max6369_table
[] = {
86 static const struct max63xx_timeout max6371_table
[] = {
92 static const struct max63xx_timeout max6373_table
[] = {
101 static struct max63xx_timeout
*
102 max63xx_select_timeout(struct max63xx_timeout
*table
, int value
)
105 if (value
<= table
->twd
) {
106 if (nodelay
&& table
->tdelay
== 0)
119 static int max63xx_wdt_ping(struct watchdog_device
*wdd
)
121 struct max63xx_wdt
*wdt
= watchdog_get_drvdata(wdd
);
127 static int max63xx_wdt_start(struct watchdog_device
*wdd
)
129 struct max63xx_wdt
*wdt
= watchdog_get_drvdata(wdd
);
131 wdt
->set(wdt
, wdt
->timeout
->wdset
);
133 /* check for a edge triggered startup */
134 if (wdt
->timeout
->tdelay
== 0)
139 static int max63xx_wdt_stop(struct watchdog_device
*wdd
)
141 struct max63xx_wdt
*wdt
= watchdog_get_drvdata(wdd
);
143 wdt
->set(wdt
, MAX6369_WDSET_DISABLED
);
147 static const struct watchdog_ops max63xx_wdt_ops
= {
148 .owner
= THIS_MODULE
,
149 .start
= max63xx_wdt_start
,
150 .stop
= max63xx_wdt_stop
,
151 .ping
= max63xx_wdt_ping
,
154 static const struct watchdog_info max63xx_wdt_info
= {
155 .options
= WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
156 .identity
= "max63xx Watchdog",
159 static void max63xx_mmap_ping(struct max63xx_wdt
*wdt
)
163 spin_lock(&wdt
->lock
);
165 val
= __raw_readb(wdt
->base
);
167 __raw_writeb(val
| MAX6369_WDI
, wdt
->base
);
168 __raw_writeb(val
& ~MAX6369_WDI
, wdt
->base
);
170 spin_unlock(&wdt
->lock
);
173 static void max63xx_mmap_set(struct max63xx_wdt
*wdt
, u8 set
)
177 spin_lock(&wdt
->lock
);
179 val
= __raw_readb(wdt
->base
);
180 val
&= ~MAX6369_WDSET
;
181 val
|= set
& MAX6369_WDSET
;
182 __raw_writeb(val
, wdt
->base
);
184 spin_unlock(&wdt
->lock
);
187 static int max63xx_mmap_init(struct platform_device
*p
, struct max63xx_wdt
*wdt
)
189 struct resource
*mem
= platform_get_resource(p
, IORESOURCE_MEM
, 0);
191 wdt
->base
= devm_ioremap_resource(&p
->dev
, mem
);
192 if (IS_ERR(wdt
->base
))
193 return PTR_ERR(wdt
->base
);
195 spin_lock_init(&wdt
->lock
);
197 wdt
->ping
= max63xx_mmap_ping
;
198 wdt
->set
= max63xx_mmap_set
;
202 static int max63xx_wdt_probe(struct platform_device
*pdev
)
204 struct max63xx_wdt
*wdt
;
205 struct max63xx_timeout
*table
;
208 wdt
= devm_kzalloc(&pdev
->dev
, sizeof(*wdt
), GFP_KERNEL
);
212 table
= (struct max63xx_timeout
*)pdev
->id_entry
->driver_data
;
214 if (heartbeat
< 1 || heartbeat
> MAX_HEARTBEAT
)
215 heartbeat
= DEFAULT_HEARTBEAT
;
217 wdt
->timeout
= max63xx_select_timeout(table
, heartbeat
);
219 dev_err(&pdev
->dev
, "unable to satisfy %ds heartbeat request\n",
224 err
= max63xx_mmap_init(pdev
, wdt
);
228 platform_set_drvdata(pdev
, &wdt
->wdd
);
229 watchdog_set_drvdata(&wdt
->wdd
, wdt
);
231 wdt
->wdd
.parent
= &pdev
->dev
;
232 wdt
->wdd
.timeout
= wdt
->timeout
->twd
;
233 wdt
->wdd
.info
= &max63xx_wdt_info
;
234 wdt
->wdd
.ops
= &max63xx_wdt_ops
;
236 watchdog_set_nowayout(&wdt
->wdd
, nowayout
);
238 err
= watchdog_register_device(&wdt
->wdd
);
242 dev_info(&pdev
->dev
, "using %ds heartbeat with %ds initial delay\n",
243 wdt
->timeout
->twd
, wdt
->timeout
->tdelay
);
247 static int max63xx_wdt_remove(struct platform_device
*pdev
)
249 struct watchdog_device
*wdd
= platform_get_drvdata(pdev
);
251 watchdog_unregister_device(wdd
);
255 static const struct platform_device_id max63xx_id_table
[] = {
256 { "max6369_wdt", (kernel_ulong_t
)max6369_table
, },
257 { "max6370_wdt", (kernel_ulong_t
)max6369_table
, },
258 { "max6371_wdt", (kernel_ulong_t
)max6371_table
, },
259 { "max6372_wdt", (kernel_ulong_t
)max6371_table
, },
260 { "max6373_wdt", (kernel_ulong_t
)max6373_table
, },
261 { "max6374_wdt", (kernel_ulong_t
)max6373_table
, },
264 MODULE_DEVICE_TABLE(platform
, max63xx_id_table
);
266 static struct platform_driver max63xx_wdt_driver
= {
267 .probe
= max63xx_wdt_probe
,
268 .remove
= max63xx_wdt_remove
,
269 .id_table
= max63xx_id_table
,
271 .name
= "max63xx_wdt",
275 module_platform_driver(max63xx_wdt_driver
);
277 MODULE_AUTHOR("Marc Zyngier <maz@misterjones.org>");
278 MODULE_DESCRIPTION("max63xx Watchdog Driver");
280 module_param(heartbeat
, int, 0);
281 MODULE_PARM_DESC(heartbeat
,
282 "Watchdog heartbeat period in seconds from 1 to "
283 __MODULE_STRING(MAX_HEARTBEAT
) ", default "
284 __MODULE_STRING(DEFAULT_HEARTBEAT
));
286 module_param(nowayout
, bool, 0);
287 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
288 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
290 module_param(nodelay
, int, 0);
291 MODULE_PARM_DESC(nodelay
,
292 "Force selection of a timeout setting without initial delay "
293 "(max6373/74 only, default=0)");
295 MODULE_LICENSE("GPL v2");