blob: 0e9cc6f5a91995ec2731b5f2a9308e85d980a19a [file] [log] [blame]
Marc Zyngier66aaa7a2010-02-04 20:08:56 +00001/*
2 * drivers/char/watchdog/max63xx_wdt.c
3 *
4 * Driver for max63{69,70,71,72,73,74} watchdog timers
5 *
6 * Copyright (C) 2009 Marc Zyngier <maz@misterjones.org>
7 *
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.
11 *
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.
15 */
16
Thierry Reding4c271bb2013-01-21 11:09:25 +010017#include <linux/err.h>
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000018#include <linux/module.h>
19#include <linux/moduleparam.h>
20#include <linux/types.h>
21#include <linux/kernel.h>
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000022#include <linux/watchdog.h>
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000023#include <linux/bitops.h>
24#include <linux/platform_device.h>
25#include <linux/spinlock.h>
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000026#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000028
29#define DEFAULT_HEARTBEAT 60
30#define MAX_HEARTBEAT 60
31
Axel Lina0f36832012-02-08 14:24:10 +080032static unsigned int heartbeat = DEFAULT_HEARTBEAT;
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010033static bool nowayout = WATCHDOG_NOWAYOUT;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000034
35/*
36 * Memory mapping: a single byte, 3 first lower bits to select bit 3
37 * to ping the watchdog.
38 */
39#define MAX6369_WDSET (7 << 0)
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +000040#define MAX6369_WDI (1 << 3)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000041
42static DEFINE_SPINLOCK(io_lock);
43
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000044static int nodelay;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000045static void __iomem *wdt_base;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +000046
47/*
48 * The timeout values used are actually the absolute minimum the chip
49 * offers. Typical values on my board are slightly over twice as long
50 * (10s setting ends up with a 25s timeout), and can be up to 3 times
51 * the nominal setting (according to the datasheet). So please take
52 * these values with a grain of salt. Same goes for the initial delay
53 * "feature". Only max6373/74 have a few settings without this initial
54 * delay (selected with the "nodelay" parameter).
55 *
56 * I also decided to remove from the tables any timeout smaller than a
57 * second, as it looked completly overkill...
58 */
59
60/* Timeouts in second */
61struct max63xx_timeout {
62 u8 wdset;
63 u8 tdelay;
64 u8 twd;
65};
66
67static struct max63xx_timeout max6369_table[] = {
68 { 5, 1, 1 },
69 { 6, 10, 10 },
70 { 7, 60, 60 },
71 { },
72};
73
74static struct max63xx_timeout max6371_table[] = {
75 { 6, 60, 3 },
76 { 7, 60, 60 },
77 { },
78};
79
80static struct max63xx_timeout max6373_table[] = {
81 { 2, 60, 1 },
82 { 5, 0, 1 },
83 { 1, 3, 3 },
84 { 7, 60, 10 },
85 { 6, 0, 10 },
86 { },
87};
88
89static struct max63xx_timeout *current_timeout;
90
91static struct max63xx_timeout *
92max63xx_select_timeout(struct max63xx_timeout *table, int value)
93{
94 while (table->twd) {
95 if (value <= table->twd) {
96 if (nodelay && table->tdelay == 0)
97 return table;
98
99 if (!nodelay)
100 return table;
101 }
102
103 table++;
104 }
105
106 return NULL;
107}
108
Axel Lina0f36832012-02-08 14:24:10 +0800109static int max63xx_wdt_ping(struct watchdog_device *wdd)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000110{
111 u8 val;
112
113 spin_lock(&io_lock);
114
115 val = __raw_readb(wdt_base);
116
117 __raw_writeb(val | MAX6369_WDI, wdt_base);
118 __raw_writeb(val & ~MAX6369_WDI, wdt_base);
119
120 spin_unlock(&io_lock);
Axel Lina0f36832012-02-08 14:24:10 +0800121 return 0;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000122}
123
Axel Lina0f36832012-02-08 14:24:10 +0800124static int max63xx_wdt_start(struct watchdog_device *wdd)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000125{
Axel Lina0f36832012-02-08 14:24:10 +0800126 struct max63xx_timeout *entry = watchdog_get_drvdata(wdd);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000127 u8 val;
128
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000129 spin_lock(&io_lock);
130
131 val = __raw_readb(wdt_base);
132 val &= ~MAX6369_WDSET;
133 val |= entry->wdset;
134 __raw_writeb(val, wdt_base);
135
136 spin_unlock(&io_lock);
137
138 /* check for a edge triggered startup */
139 if (entry->tdelay == 0)
Axel Lina0f36832012-02-08 14:24:10 +0800140 max63xx_wdt_ping(wdd);
141 return 0;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000142}
143
Axel Lina0f36832012-02-08 14:24:10 +0800144static int max63xx_wdt_stop(struct watchdog_device *wdd)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000145{
Marc Zyngierb1183e02010-04-09 17:43:33 +0100146 u8 val;
147
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000148 spin_lock(&io_lock);
149
Marc Zyngierb1183e02010-04-09 17:43:33 +0100150 val = __raw_readb(wdt_base);
151 val &= ~MAX6369_WDSET;
152 val |= 3;
153 __raw_writeb(val, wdt_base);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000154
155 spin_unlock(&io_lock);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000156 return 0;
157}
158
Axel Lina0f36832012-02-08 14:24:10 +0800159static const struct watchdog_info max63xx_wdt_info = {
160 .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
161 .identity = "max63xx Watchdog",
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000162};
163
Axel Lina0f36832012-02-08 14:24:10 +0800164static const struct watchdog_ops max63xx_wdt_ops = {
165 .owner = THIS_MODULE,
166 .start = max63xx_wdt_start,
167 .stop = max63xx_wdt_stop,
168 .ping = max63xx_wdt_ping,
169};
170
171static struct watchdog_device max63xx_wdt_dev = {
172 .info = &max63xx_wdt_info,
173 .ops = &max63xx_wdt_ops,
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000174};
175
Bill Pemberton2d991a12012-11-19 13:21:41 -0500176static int max63xx_wdt_probe(struct platform_device *pdev)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000177{
Axel Lina0f36832012-02-08 14:24:10 +0800178 struct resource *wdt_mem;
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000179 struct max63xx_timeout *table;
180
181 table = (struct max63xx_timeout *)pdev->id_entry->driver_data;
182
183 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
184 heartbeat = DEFAULT_HEARTBEAT;
185
Axel Lina0f36832012-02-08 14:24:10 +0800186 dev_info(&pdev->dev, "requesting %ds heartbeat\n", heartbeat);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000187 current_timeout = max63xx_select_timeout(table, heartbeat);
188
189 if (!current_timeout) {
Axel Lina0f36832012-02-08 14:24:10 +0800190 dev_err(&pdev->dev, "unable to satisfy heartbeat request\n");
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000191 return -EINVAL;
192 }
193
Axel Lina0f36832012-02-08 14:24:10 +0800194 dev_info(&pdev->dev, "using %ds heartbeat with %ds initial delay\n",
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000195 current_timeout->twd, current_timeout->tdelay);
196
197 heartbeat = current_timeout->twd;
198
Julia Lawallf712eac2011-02-26 17:34:39 +0100199 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding4c271bb2013-01-21 11:09:25 +0100200 wdt_base = devm_ioremap_resource(&pdev->dev, wdt_mem);
201 if (IS_ERR(wdt_base))
202 return PTR_ERR(wdt_base);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000203
Axel Lina0f36832012-02-08 14:24:10 +0800204 max63xx_wdt_dev.timeout = heartbeat;
205 watchdog_set_nowayout(&max63xx_wdt_dev, nowayout);
206 watchdog_set_drvdata(&max63xx_wdt_dev, current_timeout);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000207
Axel Lina0f36832012-02-08 14:24:10 +0800208 return watchdog_register_device(&max63xx_wdt_dev);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000209}
210
Bill Pemberton4b12b892012-11-19 13:26:24 -0500211static int max63xx_wdt_remove(struct platform_device *pdev)
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000212{
Axel Lina0f36832012-02-08 14:24:10 +0800213 watchdog_unregister_device(&max63xx_wdt_dev);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000214 return 0;
215}
216
217static struct platform_device_id max63xx_id_table[] = {
218 { "max6369_wdt", (kernel_ulong_t)max6369_table, },
219 { "max6370_wdt", (kernel_ulong_t)max6369_table, },
220 { "max6371_wdt", (kernel_ulong_t)max6371_table, },
221 { "max6372_wdt", (kernel_ulong_t)max6371_table, },
222 { "max6373_wdt", (kernel_ulong_t)max6373_table, },
223 { "max6374_wdt", (kernel_ulong_t)max6373_table, },
224 { },
225};
226MODULE_DEVICE_TABLE(platform, max63xx_id_table);
227
228static struct platform_driver max63xx_wdt_driver = {
229 .probe = max63xx_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500230 .remove = max63xx_wdt_remove,
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000231 .id_table = max63xx_id_table,
232 .driver = {
233 .name = "max63xx_wdt",
234 .owner = THIS_MODULE,
235 },
236};
237
Axel Linb8ec6112011-11-29 13:56:27 +0800238module_platform_driver(max63xx_wdt_driver);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000239
240MODULE_AUTHOR("Marc Zyngier <maz@misterjones.org>");
241MODULE_DESCRIPTION("max63xx Watchdog Driver");
242
243module_param(heartbeat, int, 0);
244MODULE_PARM_DESC(heartbeat,
245 "Watchdog heartbeat period in seconds from 1 to "
246 __MODULE_STRING(MAX_HEARTBEAT) ", default "
247 __MODULE_STRING(DEFAULT_HEARTBEAT));
248
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100249module_param(nowayout, bool, 0);
Marc Zyngier66aaa7a2010-02-04 20:08:56 +0000250MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
251 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
252
253module_param(nodelay, int, 0);
254MODULE_PARM_DESC(nodelay,
255 "Force selection of a timeout setting without initial delay "
256 "(max6373/74 only, default=0)");
257
258MODULE_LICENSE("GPL");