blob: 423584252606685a59893e13471ac1cf9fe407c7 [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>
17#include <linux/delay.h>
18#include <linux/mfd/da9063/registers.h>
19#include <linux/mfd/da9063/core.h>
20#include <linux/regmap.h>
21
22/*
23 * Watchdog selector to timeout in seconds.
24 * 0: WDT disabled;
25 * others: timeout = 2048 ms * 2^(TWDSCALE-1).
26 */
27static const unsigned int wdt_timeout[] = { 0, 2, 4, 8, 16, 32, 65, 131 };
28#define DA9063_TWDSCALE_DISABLE 0
29#define DA9063_TWDSCALE_MIN 1
30#define DA9063_TWDSCALE_MAX (ARRAY_SIZE(wdt_timeout) - 1)
31#define DA9063_WDT_MIN_TIMEOUT wdt_timeout[DA9063_TWDSCALE_MIN]
32#define DA9063_WDT_MAX_TIMEOUT wdt_timeout[DA9063_TWDSCALE_MAX]
33#define DA9063_WDG_TIMEOUT wdt_timeout[3]
Stefan Christa74cab42016-07-06 10:40:11 +020034#define DA9063_RESET_PROTECTION_MS 256
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020035
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020036static unsigned int da9063_wdt_timeout_to_sel(unsigned int secs)
37{
38 unsigned int i;
39
40 for (i = DA9063_TWDSCALE_MIN; i <= DA9063_TWDSCALE_MAX; i++) {
41 if (wdt_timeout[i] >= secs)
42 return i;
43 }
44
45 return DA9063_TWDSCALE_MAX;
46}
47
Marco Felschbe9e9c22018-05-28 08:45:46 +020048/*
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020049 * Read the currently active timeout.
50 * Zero means the watchdog is disabled.
Marco Felschbe9e9c22018-05-28 08:45:46 +020051 */
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020052static unsigned int da9063_wdt_read_timeout(struct da9063 *da9063)
Marco Felschbe9e9c22018-05-28 08:45:46 +020053{
54 unsigned int val;
55
56 regmap_read(da9063->regmap, DA9063_REG_CONTROL_D, &val);
57
Stefan Riedmuellerc4718302020-04-03 15:07:27 +020058 return wdt_timeout[val & DA9063_TWDSCALE_MASK];
Marco Felschbe9e9c22018-05-28 08:45:46 +020059}
60
Marco Felsche46bb552018-05-28 08:45:44 +020061static int da9063_wdt_disable_timer(struct da9063 *da9063)
62{
63 return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
64 DA9063_TWDSCALE_MASK,
65 DA9063_TWDSCALE_DISABLE);
66}
67
Marco Felsch16a7eec2018-06-04 17:00:59 +020068static int
69da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int timeout)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020070{
Marco Felsch16a7eec2018-06-04 17:00:59 +020071 unsigned int regval;
Marco Felsche46bb552018-05-28 08:45:44 +020072 int ret;
73
74 /*
75 * The watchdog triggers a reboot if a timeout value is already
76 * programmed because the timeout value combines two functions
77 * in one: indicating the counter limit and starting the watchdog.
78 * The watchdog must be disabled to be able to change the timeout
79 * value if the watchdog is already running. Then we can set the
80 * new timeout value which enables the watchdog again.
81 */
82 ret = da9063_wdt_disable_timer(da9063);
83 if (ret)
84 return ret;
85
86 usleep_range(150, 300);
Marco Felsch16a7eec2018-06-04 17:00:59 +020087 regval = da9063_wdt_timeout_to_sel(timeout);
Marco Felsche46bb552018-05-28 08:45:44 +020088
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020089 return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
90 DA9063_TWDSCALE_MASK, regval);
91}
92
93static int da9063_wdt_start(struct watchdog_device *wdd)
94{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +020095 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020096 int ret;
97
Marco Felsch16a7eec2018-06-04 17:00:59 +020098 ret = da9063_wdt_update_timeout(da9063, wdd->timeout);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020099 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200100 dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200101 ret);
102
103 return ret;
104}
105
106static int da9063_wdt_stop(struct watchdog_device *wdd)
107{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200108 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200109 int ret;
110
Marco Felsche46bb552018-05-28 08:45:44 +0200111 ret = da9063_wdt_disable_timer(da9063);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200112 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200113 dev_alert(da9063->dev, "Watchdog failed to stop (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200114 ret);
115
116 return ret;
117}
118
119static int da9063_wdt_ping(struct watchdog_device *wdd)
120{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200121 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200122 int ret;
123
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200124 ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200125 DA9063_WATCHDOG);
126 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200127 dev_alert(da9063->dev, "Failed to ping the watchdog (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200128 ret);
129
130 return ret;
131}
132
133static int da9063_wdt_set_timeout(struct watchdog_device *wdd,
134 unsigned int timeout)
135{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200136 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200137 int ret = 0;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200138
Marco Felsch44ee54a2018-05-28 08:45:45 +0200139 /*
140 * There are two cases when a set_timeout() will be called:
141 * 1. The watchdog is off and someone wants to set the timeout for the
142 * further use.
143 * 2. The watchdog is already running and a new timeout value should be
144 * set.
145 *
146 * The watchdog can't store a timeout value not equal zero without
147 * enabling the watchdog, so the timeout must be buffered by the driver.
148 */
149 if (watchdog_active(wdd))
Marco Felsch16a7eec2018-06-04 17:00:59 +0200150 ret = da9063_wdt_update_timeout(da9063, timeout);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200151
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200152 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200153 dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200154 ret);
155 else
Marco Felsch16a7eec2018-06-04 17:00:59 +0200156 wdd->timeout = wdt_timeout[da9063_wdt_timeout_to_sel(timeout)];
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200157
158 return ret;
159}
160
Guenter Roeck4d8b2292016-02-26 17:32:49 -0800161static int da9063_wdt_restart(struct watchdog_device *wdd, unsigned long action,
162 void *data)
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100163{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200164 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100165 int ret;
166
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200167 ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F,
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100168 DA9063_SHUTDOWN);
169 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200170 dev_alert(da9063->dev, "Failed to shutdown (err = %d)\n",
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100171 ret);
172
Damien Riegelf79781c2015-11-16 12:28:01 -0500173 return ret;
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100174}
175
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200176static const struct watchdog_info da9063_watchdog_info = {
177 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
178 .identity = "DA9063 Watchdog",
179};
180
181static const struct watchdog_ops da9063_watchdog_ops = {
182 .owner = THIS_MODULE,
183 .start = da9063_wdt_start,
184 .stop = da9063_wdt_stop,
185 .ping = da9063_wdt_ping,
186 .set_timeout = da9063_wdt_set_timeout,
Damien Riegelf79781c2015-11-16 12:28:01 -0500187 .restart = da9063_wdt_restart,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200188};
189
190static int da9063_wdt_probe(struct platform_device *pdev)
191{
Guenter Roeck86580292019-04-08 12:38:36 -0700192 struct device *dev = &pdev->dev;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200193 struct da9063 *da9063;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200194 struct watchdog_device *wdd;
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200195 unsigned int timeout;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200196
Guenter Roeck86580292019-04-08 12:38:36 -0700197 if (!dev->parent)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200198 return -EINVAL;
199
Guenter Roeck86580292019-04-08 12:38:36 -0700200 da9063 = dev_get_drvdata(dev->parent);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200201 if (!da9063)
202 return -EINVAL;
203
Guenter Roeck86580292019-04-08 12:38:36 -0700204 wdd = devm_kzalloc(dev, sizeof(*wdd), GFP_KERNEL);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200205 if (!wdd)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200206 return -ENOMEM;
207
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200208 wdd->info = &da9063_watchdog_info;
209 wdd->ops = &da9063_watchdog_ops;
210 wdd->min_timeout = DA9063_WDT_MIN_TIMEOUT;
211 wdd->max_timeout = DA9063_WDT_MAX_TIMEOUT;
212 wdd->min_hw_heartbeat_ms = DA9063_RESET_PROTECTION_MS;
Guenter Roeck86580292019-04-08 12:38:36 -0700213 wdd->parent = dev;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200214 wdd->status = WATCHDOG_NOWAYOUT_INIT_STATUS;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200215
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200216 watchdog_set_restart_priority(wdd, 128);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200217 watchdog_set_drvdata(wdd, da9063);
Damien Riegelf79781c2015-11-16 12:28:01 -0500218
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200219 wdd->timeout = DA9063_WDG_TIMEOUT;
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200220
221 /* Use pre-configured timeout if watchdog is already running. */
222 timeout = da9063_wdt_read_timeout(da9063);
223 if (timeout)
224 wdd->timeout = timeout;
225
226 /* Set timeout, maybe override it with DT value, scale it */
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200227 watchdog_init_timeout(wdd, 0, dev);
228 da9063_wdt_set_timeout(wdd, wdd->timeout);
229
Stefan Riedmuellerc4718302020-04-03 15:07:27 +0200230 /* Update timeout if the watchdog is already running. */
231 if (timeout) {
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200232 da9063_wdt_update_timeout(da9063, wdd->timeout);
Marco Felschbe9e9c22018-05-28 08:45:46 +0200233 set_bit(WDOG_HW_RUNNING, &wdd->status);
234 }
235
Guenter Roeck86580292019-04-08 12:38:36 -0700236 return devm_watchdog_register_device(dev, wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200237}
238
239static struct platform_driver da9063_wdt_driver = {
240 .probe = da9063_wdt_probe,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200241 .driver = {
242 .name = DA9063_DRVNAME_WATCHDOG,
243 },
244};
245module_platform_driver(da9063_wdt_driver);
246
247MODULE_AUTHOR("Mariusz Wojtasik <mariusz.wojtasik@diasemi.com>");
248MODULE_DESCRIPTION("Watchdog driver for Dialog DA9063");
249MODULE_LICENSE("GPL");
250MODULE_ALIAS("platform:" DA9063_DRVNAME_WATCHDOG);