blob: 9adad1862bbdb78378017f7afe488a087260fb10 [file] [log] [blame]
Marcus Folkesson2e62c492018-03-16 16:14:11 +01001// SPDX-License-Identifier: GPL-2.0+
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +02002/*
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 Garbaciak5e9c16e2014-09-28 19:05:45 +02009 */
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 Bas968011a2021-11-24 09:06:54 +010017#include <linux/i2c.h>
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020018#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 */
28static 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 Christa74cab42016-07-06 10:40:11 +020035#define DA9063_RESET_PROTECTION_MS 256
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020036
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020037static 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 Felschbe9e9c22018-05-28 08:45:46 +020049/*
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020050 * Read the currently active timeout.
51 * Zero means the watchdog is disabled.
Marco Felschbe9e9c22018-05-28 08:45:46 +020052 */
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020053static unsigned int da9063_wdt_read_timeout(struct da9063 *da9063)
Marco Felschbe9e9c22018-05-28 08:45:46 +020054{
55 unsigned int val;
56
57 regmap_read(da9063->regmap, DA9063_REG_CONTROL_D, &val);
58
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020059 return wdt_timeout[val & DA9063_TWDSCALE_MASK];
Marco Felschbe9e9c22018-05-28 08:45:46 +020060}
61
Marco Felsche46bb552018-05-28 08:45:44 +020062static 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 Felsch16a7eec2018-06-04 17:00:59 +020069static int
70da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int timeout)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020071{
Marco Felsch16a7eec2018-06-04 17:00:59 +020072 unsigned int regval;
Marco Felsche46bb552018-05-28 08:45:44 +020073 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 Felsch16a7eec2018-06-04 17:00:59 +020088 regval = da9063_wdt_timeout_to_sel(timeout);
Marco Felsche46bb552018-05-28 08:45:44 +020089
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020090 return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
91 DA9063_TWDSCALE_MASK, regval);
92}
93
94static int da9063_wdt_start(struct watchdog_device *wdd)
95{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +020096 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020097 int ret;
98
Marco Felsch16a7eec2018-06-04 17:00:59 +020099 ret = da9063_wdt_update_timeout(da9063, wdd->timeout);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200100 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200101 dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200102 ret);
103
104 return ret;
105}
106
107static int da9063_wdt_stop(struct watchdog_device *wdd)
108{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200109 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200110 int ret;
111
Marco Felsche46bb552018-05-28 08:45:44 +0200112 ret = da9063_wdt_disable_timer(da9063);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200113 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200114 dev_alert(da9063->dev, "Watchdog failed to stop (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200115 ret);
116
117 return ret;
118}
119
120static int da9063_wdt_ping(struct watchdog_device *wdd)
121{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200122 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200123 int ret;
124
Primoz Fiser2f61b3a2021-07-08 10:21:28 +0200125 /*
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.coma1f2a822017-07-25 13:25:58 +0200132 ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200133 DA9063_WATCHDOG);
134 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200135 dev_alert(da9063->dev, "Failed to ping the watchdog (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200136 ret);
137
138 return ret;
139}
140
141static int da9063_wdt_set_timeout(struct watchdog_device *wdd,
142 unsigned int timeout)
143{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200144 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200145 int ret = 0;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200146
Marco Felsch44ee54a2018-05-28 08:45:45 +0200147 /*
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 Felsch16a7eec2018-06-04 17:00:59 +0200158 ret = da9063_wdt_update_timeout(da9063, timeout);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200159
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200160 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200161 dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200162 ret);
163 else
Marco Felsch16a7eec2018-06-04 17:00:59 +0200164 wdd->timeout = wdt_timeout[da9063_wdt_timeout_to_sel(timeout)];
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200165
166 return ret;
167}
168
Guenter Roeck4d8b2292016-02-26 17:32:49 -0800169static int da9063_wdt_restart(struct watchdog_device *wdd, unsigned long action,
170 void *data)
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100171{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200172 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Yunus Bas968011a2021-11-24 09:06:54 +0100173 struct i2c_client *client = to_i2c_client(da9063->dev);
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100174 int ret;
175
Yunus Bas968011a2021-11-24 09:06:54 +0100176 /* 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.coma1f2a822017-07-25 13:25:58 +0200180 dev_alert(da9063->dev, "Failed to shutdown (err = %d)\n",
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100181 ret);
182
Yunus Bas968011a2021-11-24 09:06:54 +0100183 /* wait for reset to assert... */
184 mdelay(500);
185
Damien Riegelf79781c2015-11-16 12:28:01 -0500186 return ret;
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100187}
188
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200189static const struct watchdog_info da9063_watchdog_info = {
190 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
191 .identity = "DA9063 Watchdog",
192};
193
194static 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 Riegelf79781c2015-11-16 12:28:01 -0500200 .restart = da9063_wdt_restart,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200201};
202
203static int da9063_wdt_probe(struct platform_device *pdev)
204{
Guenter Roeck86580292019-04-08 12:38:36 -0700205 struct device *dev = &pdev->dev;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200206 struct da9063 *da9063;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200207 struct watchdog_device *wdd;
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200208 unsigned int timeout;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200209
Guenter Roeck86580292019-04-08 12:38:36 -0700210 if (!dev->parent)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200211 return -EINVAL;
212
Guenter Roeck86580292019-04-08 12:38:36 -0700213 da9063 = dev_get_drvdata(dev->parent);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200214 if (!da9063)
215 return -EINVAL;
216
Guenter Roeck86580292019-04-08 12:38:36 -0700217 wdd = devm_kzalloc(dev, sizeof(*wdd), GFP_KERNEL);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200218 if (!wdd)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200219 return -ENOMEM;
220
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200221 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 Roeck86580292019-04-08 12:38:36 -0700226 wdd->parent = dev;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200227 wdd->status = WATCHDOG_NOWAYOUT_INIT_STATUS;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200228
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200229 watchdog_set_restart_priority(wdd, 128);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200230 watchdog_set_drvdata(wdd, da9063);
Damien Riegelf79781c2015-11-16 12:28:01 -0500231
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200232 wdd->timeout = DA9063_WDG_TIMEOUT;
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200233
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 Sang280ce5c2019-04-14 13:09:33 +0200240 watchdog_init_timeout(wdd, 0, dev);
241 da9063_wdt_set_timeout(wdd, wdd->timeout);
242
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200243 /* Update timeout if the watchdog is already running. */
244 if (timeout) {
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200245 da9063_wdt_update_timeout(da9063, wdd->timeout);
Marco Felschbe9e9c22018-05-28 08:45:46 +0200246 set_bit(WDOG_HW_RUNNING, &wdd->status);
247 }
248
Guenter Roeck86580292019-04-08 12:38:36 -0700249 return devm_watchdog_register_device(dev, wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200250}
251
252static struct platform_driver da9063_wdt_driver = {
253 .probe = da9063_wdt_probe,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200254 .driver = {
255 .name = DA9063_DRVNAME_WATCHDOG,
256 },
257};
258module_platform_driver(da9063_wdt_driver);
259
260MODULE_AUTHOR("Mariusz Wojtasik <mariusz.wojtasik@diasemi.com>");
261MODULE_DESCRIPTION("Watchdog driver for Dialog DA9063");
262MODULE_LICENSE("GPL");
263MODULE_ALIAS("platform:" DA9063_DRVNAME_WATCHDOG);