Marcus Folkesson | 2e62c49 | 2018-03-16 16:14:11 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Watchdog driver for DA9063 PMICs. |
| 4 | * |
| 5 | * Copyright(c) 2012 Dialog Semiconductor Ltd. |
| 6 | * |
| 7 | * Author: Mariusz Wojtasik <mariusz.wojtasik@diasemi.com> |
| 8 | * |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/watchdog.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/uaccess.h> |
| 16 | #include <linux/slab.h> |
Yunus Bas | 968011a | 2021-11-24 09:06:54 +0100 | [diff] [blame] | 17 | #include <linux/i2c.h> |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 18 | #include <linux/delay.h> |
| 19 | #include <linux/mfd/da9063/registers.h> |
| 20 | #include <linux/mfd/da9063/core.h> |
| 21 | #include <linux/regmap.h> |
| 22 | |
| 23 | /* |
| 24 | * Watchdog selector to timeout in seconds. |
| 25 | * 0: WDT disabled; |
| 26 | * others: timeout = 2048 ms * 2^(TWDSCALE-1). |
| 27 | */ |
| 28 | static const unsigned int wdt_timeout[] = { 0, 2, 4, 8, 16, 32, 65, 131 }; |
| 29 | #define DA9063_TWDSCALE_DISABLE 0 |
| 30 | #define DA9063_TWDSCALE_MIN 1 |
| 31 | #define DA9063_TWDSCALE_MAX (ARRAY_SIZE(wdt_timeout) - 1) |
| 32 | #define DA9063_WDT_MIN_TIMEOUT wdt_timeout[DA9063_TWDSCALE_MIN] |
| 33 | #define DA9063_WDT_MAX_TIMEOUT wdt_timeout[DA9063_TWDSCALE_MAX] |
| 34 | #define DA9063_WDG_TIMEOUT wdt_timeout[3] |
Stefan Christ | a74cab4 | 2016-07-06 10:40:11 +0200 | [diff] [blame] | 35 | #define DA9063_RESET_PROTECTION_MS 256 |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 36 | |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 37 | static unsigned int da9063_wdt_timeout_to_sel(unsigned int secs) |
| 38 | { |
| 39 | unsigned int i; |
| 40 | |
| 41 | for (i = DA9063_TWDSCALE_MIN; i <= DA9063_TWDSCALE_MAX; i++) { |
| 42 | if (wdt_timeout[i] >= secs) |
| 43 | return i; |
| 44 | } |
| 45 | |
| 46 | return DA9063_TWDSCALE_MAX; |
| 47 | } |
| 48 | |
Marco Felsch | be9e9c2 | 2018-05-28 08:45:46 +0200 | [diff] [blame] | 49 | /* |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 50 | * Read the currently active timeout. |
| 51 | * Zero means the watchdog is disabled. |
Marco Felsch | be9e9c2 | 2018-05-28 08:45:46 +0200 | [diff] [blame] | 52 | */ |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 53 | static unsigned int da9063_wdt_read_timeout(struct da9063 *da9063) |
Marco Felsch | be9e9c2 | 2018-05-28 08:45:46 +0200 | [diff] [blame] | 54 | { |
| 55 | unsigned int val; |
| 56 | |
| 57 | regmap_read(da9063->regmap, DA9063_REG_CONTROL_D, &val); |
| 58 | |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 59 | return wdt_timeout[val & DA9063_TWDSCALE_MASK]; |
Marco Felsch | be9e9c2 | 2018-05-28 08:45:46 +0200 | [diff] [blame] | 60 | } |
| 61 | |
Marco Felsch | e46bb55 | 2018-05-28 08:45:44 +0200 | [diff] [blame] | 62 | static int da9063_wdt_disable_timer(struct da9063 *da9063) |
| 63 | { |
| 64 | return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D, |
| 65 | DA9063_TWDSCALE_MASK, |
| 66 | DA9063_TWDSCALE_DISABLE); |
| 67 | } |
| 68 | |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 69 | static int |
| 70 | da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int timeout) |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 71 | { |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 72 | unsigned int regval; |
Marco Felsch | e46bb55 | 2018-05-28 08:45:44 +0200 | [diff] [blame] | 73 | int ret; |
| 74 | |
| 75 | /* |
| 76 | * The watchdog triggers a reboot if a timeout value is already |
| 77 | * programmed because the timeout value combines two functions |
| 78 | * in one: indicating the counter limit and starting the watchdog. |
| 79 | * The watchdog must be disabled to be able to change the timeout |
| 80 | * value if the watchdog is already running. Then we can set the |
| 81 | * new timeout value which enables the watchdog again. |
| 82 | */ |
| 83 | ret = da9063_wdt_disable_timer(da9063); |
| 84 | if (ret) |
| 85 | return ret; |
| 86 | |
| 87 | usleep_range(150, 300); |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 88 | regval = da9063_wdt_timeout_to_sel(timeout); |
Marco Felsch | e46bb55 | 2018-05-28 08:45:44 +0200 | [diff] [blame] | 89 | |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 90 | return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D, |
| 91 | DA9063_TWDSCALE_MASK, regval); |
| 92 | } |
| 93 | |
| 94 | static int da9063_wdt_start(struct watchdog_device *wdd) |
| 95 | { |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 96 | struct da9063 *da9063 = watchdog_get_drvdata(wdd); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 97 | int ret; |
| 98 | |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 99 | ret = da9063_wdt_update_timeout(da9063, wdd->timeout); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 100 | if (ret) |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 101 | dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n", |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 102 | ret); |
| 103 | |
| 104 | return ret; |
| 105 | } |
| 106 | |
| 107 | static int da9063_wdt_stop(struct watchdog_device *wdd) |
| 108 | { |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 109 | struct da9063 *da9063 = watchdog_get_drvdata(wdd); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 110 | int ret; |
| 111 | |
Marco Felsch | e46bb55 | 2018-05-28 08:45:44 +0200 | [diff] [blame] | 112 | ret = da9063_wdt_disable_timer(da9063); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 113 | if (ret) |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 114 | dev_alert(da9063->dev, "Watchdog failed to stop (err = %d)\n", |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 115 | ret); |
| 116 | |
| 117 | return ret; |
| 118 | } |
| 119 | |
| 120 | static int da9063_wdt_ping(struct watchdog_device *wdd) |
| 121 | { |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 122 | struct da9063 *da9063 = watchdog_get_drvdata(wdd); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 123 | int ret; |
| 124 | |
Primoz Fiser | 2f61b3a | 2021-07-08 10:21:28 +0200 | [diff] [blame] | 125 | /* |
| 126 | * Prevent pings from occurring late in system poweroff/reboot sequence |
| 127 | * and possibly locking out restart handler from accessing i2c bus. |
| 128 | */ |
| 129 | if (system_state > SYSTEM_RUNNING) |
| 130 | return 0; |
| 131 | |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 132 | ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F, |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 133 | DA9063_WATCHDOG); |
| 134 | if (ret) |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 135 | dev_alert(da9063->dev, "Failed to ping the watchdog (err = %d)\n", |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 136 | ret); |
| 137 | |
| 138 | return ret; |
| 139 | } |
| 140 | |
| 141 | static int da9063_wdt_set_timeout(struct watchdog_device *wdd, |
| 142 | unsigned int timeout) |
| 143 | { |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 144 | struct da9063 *da9063 = watchdog_get_drvdata(wdd); |
Marco Felsch | 44ee54a | 2018-05-28 08:45:45 +0200 | [diff] [blame] | 145 | int ret = 0; |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 146 | |
Marco Felsch | 44ee54a | 2018-05-28 08:45:45 +0200 | [diff] [blame] | 147 | /* |
| 148 | * There are two cases when a set_timeout() will be called: |
| 149 | * 1. The watchdog is off and someone wants to set the timeout for the |
| 150 | * further use. |
| 151 | * 2. The watchdog is already running and a new timeout value should be |
| 152 | * set. |
| 153 | * |
| 154 | * The watchdog can't store a timeout value not equal zero without |
| 155 | * enabling the watchdog, so the timeout must be buffered by the driver. |
| 156 | */ |
| 157 | if (watchdog_active(wdd)) |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 158 | ret = da9063_wdt_update_timeout(da9063, timeout); |
Marco Felsch | 44ee54a | 2018-05-28 08:45:45 +0200 | [diff] [blame] | 159 | |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 160 | if (ret) |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 161 | dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n", |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 162 | ret); |
| 163 | else |
Marco Felsch | 16a7eec | 2018-06-04 17:00:59 +0200 | [diff] [blame] | 164 | wdd->timeout = wdt_timeout[da9063_wdt_timeout_to_sel(timeout)]; |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 165 | |
| 166 | return ret; |
| 167 | } |
| 168 | |
Guenter Roeck | 4d8b229 | 2016-02-26 17:32:49 -0800 | [diff] [blame] | 169 | static int da9063_wdt_restart(struct watchdog_device *wdd, unsigned long action, |
| 170 | void *data) |
Geert Uytterhoeven | 396f163 | 2015-01-29 15:26:05 +0100 | [diff] [blame] | 171 | { |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 172 | struct da9063 *da9063 = watchdog_get_drvdata(wdd); |
Yunus Bas | 968011a | 2021-11-24 09:06:54 +0100 | [diff] [blame] | 173 | struct i2c_client *client = to_i2c_client(da9063->dev); |
Geert Uytterhoeven | 396f163 | 2015-01-29 15:26:05 +0100 | [diff] [blame] | 174 | int ret; |
| 175 | |
Yunus Bas | 968011a | 2021-11-24 09:06:54 +0100 | [diff] [blame] | 176 | /* Don't use regmap because it is not atomic safe */ |
| 177 | ret = i2c_smbus_write_byte_data(client, DA9063_REG_CONTROL_F, |
| 178 | DA9063_SHUTDOWN); |
| 179 | if (ret < 0) |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 180 | dev_alert(da9063->dev, "Failed to shutdown (err = %d)\n", |
Geert Uytterhoeven | 396f163 | 2015-01-29 15:26:05 +0100 | [diff] [blame] | 181 | ret); |
| 182 | |
Yunus Bas | 968011a | 2021-11-24 09:06:54 +0100 | [diff] [blame] | 183 | /* wait for reset to assert... */ |
| 184 | mdelay(500); |
| 185 | |
Damien Riegel | f79781c | 2015-11-16 12:28:01 -0500 | [diff] [blame] | 186 | return ret; |
Geert Uytterhoeven | 396f163 | 2015-01-29 15:26:05 +0100 | [diff] [blame] | 187 | } |
| 188 | |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 189 | static const struct watchdog_info da9063_watchdog_info = { |
| 190 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING, |
| 191 | .identity = "DA9063 Watchdog", |
| 192 | }; |
| 193 | |
| 194 | static const struct watchdog_ops da9063_watchdog_ops = { |
| 195 | .owner = THIS_MODULE, |
| 196 | .start = da9063_wdt_start, |
| 197 | .stop = da9063_wdt_stop, |
| 198 | .ping = da9063_wdt_ping, |
| 199 | .set_timeout = da9063_wdt_set_timeout, |
Damien Riegel | f79781c | 2015-11-16 12:28:01 -0500 | [diff] [blame] | 200 | .restart = da9063_wdt_restart, |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 201 | }; |
| 202 | |
| 203 | static int da9063_wdt_probe(struct platform_device *pdev) |
| 204 | { |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 205 | struct device *dev = &pdev->dev; |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 206 | struct da9063 *da9063; |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 207 | struct watchdog_device *wdd; |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 208 | unsigned int timeout; |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 209 | |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 210 | if (!dev->parent) |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 211 | return -EINVAL; |
| 212 | |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 213 | da9063 = dev_get_drvdata(dev->parent); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 214 | if (!da9063) |
| 215 | return -EINVAL; |
| 216 | |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 217 | wdd = devm_kzalloc(dev, sizeof(*wdd), GFP_KERNEL); |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 218 | if (!wdd) |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 219 | return -ENOMEM; |
| 220 | |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 221 | wdd->info = &da9063_watchdog_info; |
| 222 | wdd->ops = &da9063_watchdog_ops; |
| 223 | wdd->min_timeout = DA9063_WDT_MIN_TIMEOUT; |
| 224 | wdd->max_timeout = DA9063_WDT_MAX_TIMEOUT; |
| 225 | wdd->min_hw_heartbeat_ms = DA9063_RESET_PROTECTION_MS; |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 226 | wdd->parent = dev; |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 227 | wdd->status = WATCHDOG_NOWAYOUT_INIT_STATUS; |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 228 | |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 229 | watchdog_set_restart_priority(wdd, 128); |
fzuuzf@googlemail.com | a1f2a82 | 2017-07-25 13:25:58 +0200 | [diff] [blame] | 230 | watchdog_set_drvdata(wdd, da9063); |
Damien Riegel | f79781c | 2015-11-16 12:28:01 -0500 | [diff] [blame] | 231 | |
Wolfram Sang | 280ce5c | 2019-04-14 13:09:33 +0200 | [diff] [blame] | 232 | wdd->timeout = DA9063_WDG_TIMEOUT; |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 233 | |
| 234 | /* Use pre-configured timeout if watchdog is already running. */ |
| 235 | timeout = da9063_wdt_read_timeout(da9063); |
| 236 | if (timeout) |
| 237 | wdd->timeout = timeout; |
| 238 | |
| 239 | /* Set timeout, maybe override it with DT value, scale it */ |
Wolfram Sang | 280ce5c | 2019-04-14 13:09:33 +0200 | [diff] [blame] | 240 | watchdog_init_timeout(wdd, 0, dev); |
| 241 | da9063_wdt_set_timeout(wdd, wdd->timeout); |
| 242 | |
Stefan Riedmueller | c471830 | 2020-04-03 15:07:27 +0200 | [diff] [blame] | 243 | /* Update timeout if the watchdog is already running. */ |
| 244 | if (timeout) { |
Wolfram Sang | 280ce5c | 2019-04-14 13:09:33 +0200 | [diff] [blame] | 245 | da9063_wdt_update_timeout(da9063, wdd->timeout); |
Marco Felsch | be9e9c2 | 2018-05-28 08:45:46 +0200 | [diff] [blame] | 246 | set_bit(WDOG_HW_RUNNING, &wdd->status); |
| 247 | } |
| 248 | |
Guenter Roeck | 8658029 | 2019-04-08 12:38:36 -0700 | [diff] [blame] | 249 | return devm_watchdog_register_device(dev, wdd); |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static struct platform_driver da9063_wdt_driver = { |
| 253 | .probe = da9063_wdt_probe, |
Krystian Garbaciak | 5e9c16e | 2014-09-28 19:05:45 +0200 | [diff] [blame] | 254 | .driver = { |
| 255 | .name = DA9063_DRVNAME_WATCHDOG, |
| 256 | }, |
| 257 | }; |
| 258 | module_platform_driver(da9063_wdt_driver); |
| 259 | |
| 260 | MODULE_AUTHOR("Mariusz Wojtasik <mariusz.wojtasik@diasemi.com>"); |
| 261 | MODULE_DESCRIPTION("Watchdog driver for Dialog DA9063"); |
| 262 | MODULE_LICENSE("GPL"); |
| 263 | MODULE_ALIAS("platform:" DA9063_DRVNAME_WATCHDOG); |