Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 1 | /* |
| 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 Reding | 4c271bb | 2013-01-21 11:09:25 +0100 | [diff] [blame] | 17 | #include <linux/err.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/moduleparam.h> |
Randy Dunlap | ac31672 | 2018-06-19 22:47:28 -0700 | [diff] [blame] | 20 | #include <linux/mod_devicetable.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 21 | #include <linux/types.h> |
| 22 | #include <linux/kernel.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 23 | #include <linux/watchdog.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 24 | #include <linux/bitops.h> |
| 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/spinlock.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 27 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 29 | |
| 30 | #define DEFAULT_HEARTBEAT 60 |
| 31 | #define MAX_HEARTBEAT 60 |
| 32 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 33 | static unsigned int heartbeat = DEFAULT_HEARTBEAT; |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 34 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * Memory mapping: a single byte, 3 first lower bits to select bit 3 |
| 38 | * to ping the watchdog. |
| 39 | */ |
| 40 | #define MAX6369_WDSET (7 << 0) |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 41 | #define MAX6369_WDI (1 << 3) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 42 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 43 | #define MAX6369_WDSET_DISABLED 3 |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 44 | |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 45 | static int nodelay; |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 46 | |
| 47 | struct max63xx_wdt { |
| 48 | struct watchdog_device wdd; |
| 49 | const struct max63xx_timeout *timeout; |
| 50 | |
| 51 | /* memory mapping */ |
| 52 | void __iomem *base; |
| 53 | spinlock_t lock; |
| 54 | |
| 55 | /* WDI and WSET bits write access routines */ |
| 56 | void (*ping)(struct max63xx_wdt *wdt); |
| 57 | void (*set)(struct max63xx_wdt *wdt, u8 set); |
| 58 | }; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * The timeout values used are actually the absolute minimum the chip |
| 62 | * offers. Typical values on my board are slightly over twice as long |
| 63 | * (10s setting ends up with a 25s timeout), and can be up to 3 times |
| 64 | * the nominal setting (according to the datasheet). So please take |
| 65 | * these values with a grain of salt. Same goes for the initial delay |
| 66 | * "feature". Only max6373/74 have a few settings without this initial |
| 67 | * delay (selected with the "nodelay" parameter). |
| 68 | * |
| 69 | * I also decided to remove from the tables any timeout smaller than a |
| 70 | * second, as it looked completly overkill... |
| 71 | */ |
| 72 | |
| 73 | /* Timeouts in second */ |
| 74 | struct max63xx_timeout { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 75 | const u8 wdset; |
| 76 | const u8 tdelay; |
| 77 | const u8 twd; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 80 | static const struct max63xx_timeout max6369_table[] = { |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 81 | { 5, 1, 1 }, |
| 82 | { 6, 10, 10 }, |
| 83 | { 7, 60, 60 }, |
| 84 | { }, |
| 85 | }; |
| 86 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 87 | static const struct max63xx_timeout max6371_table[] = { |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 88 | { 6, 60, 3 }, |
| 89 | { 7, 60, 60 }, |
| 90 | { }, |
| 91 | }; |
| 92 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 93 | static const struct max63xx_timeout max6373_table[] = { |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 94 | { 2, 60, 1 }, |
| 95 | { 5, 0, 1 }, |
| 96 | { 1, 3, 3 }, |
| 97 | { 7, 60, 10 }, |
| 98 | { 6, 0, 10 }, |
| 99 | { }, |
| 100 | }; |
| 101 | |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 102 | static struct max63xx_timeout * |
| 103 | max63xx_select_timeout(struct max63xx_timeout *table, int value) |
| 104 | { |
| 105 | while (table->twd) { |
| 106 | if (value <= table->twd) { |
| 107 | if (nodelay && table->tdelay == 0) |
| 108 | return table; |
| 109 | |
| 110 | if (!nodelay) |
| 111 | return table; |
| 112 | } |
| 113 | |
| 114 | table++; |
| 115 | } |
| 116 | |
| 117 | return NULL; |
| 118 | } |
| 119 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 120 | static int max63xx_wdt_ping(struct watchdog_device *wdd) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 121 | { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 122 | struct max63xx_wdt *wdt = watchdog_get_drvdata(wdd); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 123 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 124 | wdt->ping(wdt); |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 125 | return 0; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 128 | static int max63xx_wdt_start(struct watchdog_device *wdd) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 129 | { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 130 | struct max63xx_wdt *wdt = watchdog_get_drvdata(wdd); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 131 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 132 | wdt->set(wdt, wdt->timeout->wdset); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 133 | |
| 134 | /* check for a edge triggered startup */ |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 135 | if (wdt->timeout->tdelay == 0) |
| 136 | wdt->ping(wdt); |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 137 | return 0; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 140 | static int max63xx_wdt_stop(struct watchdog_device *wdd) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 141 | { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 142 | struct max63xx_wdt *wdt = watchdog_get_drvdata(wdd); |
Marc Zyngier | b1183e0 | 2010-04-09 17:43:33 +0100 | [diff] [blame] | 143 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 144 | wdt->set(wdt, MAX6369_WDSET_DISABLED); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 145 | return 0; |
| 146 | } |
| 147 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 148 | static const struct watchdog_ops max63xx_wdt_ops = { |
| 149 | .owner = THIS_MODULE, |
| 150 | .start = max63xx_wdt_start, |
| 151 | .stop = max63xx_wdt_stop, |
| 152 | .ping = max63xx_wdt_ping, |
| 153 | }; |
| 154 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 155 | static const struct watchdog_info max63xx_wdt_info = { |
| 156 | .options = WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, |
| 157 | .identity = "max63xx Watchdog", |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 158 | }; |
| 159 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 160 | static void max63xx_mmap_ping(struct max63xx_wdt *wdt) |
| 161 | { |
| 162 | u8 val; |
| 163 | |
| 164 | spin_lock(&wdt->lock); |
| 165 | |
| 166 | val = __raw_readb(wdt->base); |
| 167 | |
| 168 | __raw_writeb(val | MAX6369_WDI, wdt->base); |
| 169 | __raw_writeb(val & ~MAX6369_WDI, wdt->base); |
| 170 | |
| 171 | spin_unlock(&wdt->lock); |
| 172 | } |
| 173 | |
| 174 | static void max63xx_mmap_set(struct max63xx_wdt *wdt, u8 set) |
| 175 | { |
| 176 | u8 val; |
| 177 | |
| 178 | spin_lock(&wdt->lock); |
| 179 | |
| 180 | val = __raw_readb(wdt->base); |
| 181 | val &= ~MAX6369_WDSET; |
| 182 | val |= set & MAX6369_WDSET; |
| 183 | __raw_writeb(val, wdt->base); |
| 184 | |
| 185 | spin_unlock(&wdt->lock); |
| 186 | } |
| 187 | |
| 188 | static int max63xx_mmap_init(struct platform_device *p, struct max63xx_wdt *wdt) |
| 189 | { |
| 190 | struct resource *mem = platform_get_resource(p, IORESOURCE_MEM, 0); |
| 191 | |
| 192 | wdt->base = devm_ioremap_resource(&p->dev, mem); |
| 193 | if (IS_ERR(wdt->base)) |
| 194 | return PTR_ERR(wdt->base); |
| 195 | |
| 196 | spin_lock_init(&wdt->lock); |
| 197 | |
| 198 | wdt->ping = max63xx_mmap_ping; |
| 199 | wdt->set = max63xx_mmap_set; |
| 200 | return 0; |
| 201 | } |
| 202 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 203 | static int max63xx_wdt_probe(struct platform_device *pdev) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 204 | { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 205 | struct max63xx_wdt *wdt; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 206 | struct max63xx_timeout *table; |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 207 | int err; |
| 208 | |
| 209 | wdt = devm_kzalloc(&pdev->dev, sizeof(*wdt), GFP_KERNEL); |
| 210 | if (!wdt) |
| 211 | return -ENOMEM; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 212 | |
| 213 | table = (struct max63xx_timeout *)pdev->id_entry->driver_data; |
| 214 | |
| 215 | if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT) |
| 216 | heartbeat = DEFAULT_HEARTBEAT; |
| 217 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 218 | wdt->timeout = max63xx_select_timeout(table, heartbeat); |
| 219 | if (!wdt->timeout) { |
| 220 | dev_err(&pdev->dev, "unable to satisfy %ds heartbeat request\n", |
| 221 | heartbeat); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 222 | return -EINVAL; |
| 223 | } |
| 224 | |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 225 | err = max63xx_mmap_init(pdev, wdt); |
| 226 | if (err) |
| 227 | return err; |
| 228 | |
| 229 | platform_set_drvdata(pdev, &wdt->wdd); |
| 230 | watchdog_set_drvdata(&wdt->wdd, wdt); |
| 231 | |
| 232 | wdt->wdd.parent = &pdev->dev; |
| 233 | wdt->wdd.timeout = wdt->timeout->twd; |
| 234 | wdt->wdd.info = &max63xx_wdt_info; |
| 235 | wdt->wdd.ops = &max63xx_wdt_ops; |
| 236 | |
| 237 | watchdog_set_nowayout(&wdt->wdd, nowayout); |
| 238 | |
| 239 | err = watchdog_register_device(&wdt->wdd); |
| 240 | if (err) |
| 241 | return err; |
| 242 | |
Axel Lin | a0f3683 | 2012-02-08 14:24:10 +0800 | [diff] [blame] | 243 | dev_info(&pdev->dev, "using %ds heartbeat with %ds initial delay\n", |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 244 | wdt->timeout->twd, wdt->timeout->tdelay); |
| 245 | return 0; |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 248 | static int max63xx_wdt_remove(struct platform_device *pdev) |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 249 | { |
Vivien Didelot | b9be966 | 2015-06-17 18:58:58 -0400 | [diff] [blame] | 250 | struct watchdog_device *wdd = platform_get_drvdata(pdev); |
| 251 | |
| 252 | watchdog_unregister_device(wdd); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 253 | return 0; |
| 254 | } |
| 255 | |
Krzysztof Kozlowski | 8c7c72c | 2015-05-02 00:36:52 +0900 | [diff] [blame] | 256 | static const struct platform_device_id max63xx_id_table[] = { |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 257 | { "max6369_wdt", (kernel_ulong_t)max6369_table, }, |
| 258 | { "max6370_wdt", (kernel_ulong_t)max6369_table, }, |
| 259 | { "max6371_wdt", (kernel_ulong_t)max6371_table, }, |
| 260 | { "max6372_wdt", (kernel_ulong_t)max6371_table, }, |
| 261 | { "max6373_wdt", (kernel_ulong_t)max6373_table, }, |
| 262 | { "max6374_wdt", (kernel_ulong_t)max6373_table, }, |
| 263 | { }, |
| 264 | }; |
| 265 | MODULE_DEVICE_TABLE(platform, max63xx_id_table); |
| 266 | |
| 267 | static struct platform_driver max63xx_wdt_driver = { |
| 268 | .probe = max63xx_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 269 | .remove = max63xx_wdt_remove, |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 270 | .id_table = max63xx_id_table, |
| 271 | .driver = { |
| 272 | .name = "max63xx_wdt", |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 273 | }, |
| 274 | }; |
| 275 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 276 | module_platform_driver(max63xx_wdt_driver); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 277 | |
| 278 | MODULE_AUTHOR("Marc Zyngier <maz@misterjones.org>"); |
| 279 | MODULE_DESCRIPTION("max63xx Watchdog Driver"); |
| 280 | |
| 281 | module_param(heartbeat, int, 0); |
| 282 | MODULE_PARM_DESC(heartbeat, |
| 283 | "Watchdog heartbeat period in seconds from 1 to " |
| 284 | __MODULE_STRING(MAX_HEARTBEAT) ", default " |
| 285 | __MODULE_STRING(DEFAULT_HEARTBEAT)); |
| 286 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 287 | module_param(nowayout, bool, 0); |
Marc Zyngier | 66aaa7a | 2010-02-04 20:08:56 +0000 | [diff] [blame] | 288 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 289 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
| 290 | |
| 291 | module_param(nodelay, int, 0); |
| 292 | MODULE_PARM_DESC(nodelay, |
| 293 | "Force selection of a timeout setting without initial delay " |
| 294 | "(max6373/74 only, default=0)"); |
| 295 | |
Uwe Kleine-König | 29efefb | 2016-01-15 18:35:34 +0100 | [diff] [blame] | 296 | MODULE_LICENSE("GPL v2"); |