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