blob: 3d65e92a4e3fea7dc612904cbf927957f5b5c116 [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/*
49 * Return 0 if watchdog is disabled, else non zero.
50 */
51static unsigned int da9063_wdt_is_running(struct da9063 *da9063)
52{
53 unsigned int val;
54
55 regmap_read(da9063->regmap, DA9063_REG_CONTROL_D, &val);
56
57 return val & DA9063_TWDSCALE_MASK;
58}
59
Marco Felsche46bb552018-05-28 08:45:44 +020060static int da9063_wdt_disable_timer(struct da9063 *da9063)
61{
62 return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
63 DA9063_TWDSCALE_MASK,
64 DA9063_TWDSCALE_DISABLE);
65}
66
Marco Felsch16a7eec2018-06-04 17:00:59 +020067static int
68da9063_wdt_update_timeout(struct da9063 *da9063, unsigned int timeout)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020069{
Marco Felsch16a7eec2018-06-04 17:00:59 +020070 unsigned int regval;
Marco Felsche46bb552018-05-28 08:45:44 +020071 int ret;
72
73 /*
74 * The watchdog triggers a reboot if a timeout value is already
75 * programmed because the timeout value combines two functions
76 * in one: indicating the counter limit and starting the watchdog.
77 * The watchdog must be disabled to be able to change the timeout
78 * value if the watchdog is already running. Then we can set the
79 * new timeout value which enables the watchdog again.
80 */
81 ret = da9063_wdt_disable_timer(da9063);
82 if (ret)
83 return ret;
84
85 usleep_range(150, 300);
Marco Felsch16a7eec2018-06-04 17:00:59 +020086 regval = da9063_wdt_timeout_to_sel(timeout);
Marco Felsche46bb552018-05-28 08:45:44 +020087
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020088 return regmap_update_bits(da9063->regmap, DA9063_REG_CONTROL_D,
89 DA9063_TWDSCALE_MASK, regval);
90}
91
92static int da9063_wdt_start(struct watchdog_device *wdd)
93{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +020094 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020095 int ret;
96
Marco Felsch16a7eec2018-06-04 17:00:59 +020097 ret = da9063_wdt_update_timeout(da9063, wdd->timeout);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +020098 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +020099 dev_err(da9063->dev, "Watchdog failed to start (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200100 ret);
101
102 return ret;
103}
104
105static int da9063_wdt_stop(struct watchdog_device *wdd)
106{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200107 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200108 int ret;
109
Marco Felsche46bb552018-05-28 08:45:44 +0200110 ret = da9063_wdt_disable_timer(da9063);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200111 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200112 dev_alert(da9063->dev, "Watchdog failed to stop (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200113 ret);
114
115 return ret;
116}
117
118static int da9063_wdt_ping(struct watchdog_device *wdd)
119{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200120 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200121 int ret;
122
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200123 ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200124 DA9063_WATCHDOG);
125 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200126 dev_alert(da9063->dev, "Failed to ping the watchdog (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200127 ret);
128
129 return ret;
130}
131
132static int da9063_wdt_set_timeout(struct watchdog_device *wdd,
133 unsigned int timeout)
134{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200135 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200136 int ret = 0;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200137
Marco Felsch44ee54a2018-05-28 08:45:45 +0200138 /*
139 * There are two cases when a set_timeout() will be called:
140 * 1. The watchdog is off and someone wants to set the timeout for the
141 * further use.
142 * 2. The watchdog is already running and a new timeout value should be
143 * set.
144 *
145 * The watchdog can't store a timeout value not equal zero without
146 * enabling the watchdog, so the timeout must be buffered by the driver.
147 */
148 if (watchdog_active(wdd))
Marco Felsch16a7eec2018-06-04 17:00:59 +0200149 ret = da9063_wdt_update_timeout(da9063, timeout);
Marco Felsch44ee54a2018-05-28 08:45:45 +0200150
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200151 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200152 dev_err(da9063->dev, "Failed to set watchdog timeout (err = %d)\n",
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200153 ret);
154 else
Marco Felsch16a7eec2018-06-04 17:00:59 +0200155 wdd->timeout = wdt_timeout[da9063_wdt_timeout_to_sel(timeout)];
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200156
157 return ret;
158}
159
Guenter Roeck4d8b2292016-02-26 17:32:49 -0800160static int da9063_wdt_restart(struct watchdog_device *wdd, unsigned long action,
161 void *data)
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100162{
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200163 struct da9063 *da9063 = watchdog_get_drvdata(wdd);
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100164 int ret;
165
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200166 ret = regmap_write(da9063->regmap, DA9063_REG_CONTROL_F,
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100167 DA9063_SHUTDOWN);
168 if (ret)
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200169 dev_alert(da9063->dev, "Failed to shutdown (err = %d)\n",
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100170 ret);
171
Damien Riegelf79781c2015-11-16 12:28:01 -0500172 return ret;
Geert Uytterhoeven396f1632015-01-29 15:26:05 +0100173}
174
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200175static const struct watchdog_info da9063_watchdog_info = {
176 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
177 .identity = "DA9063 Watchdog",
178};
179
180static const struct watchdog_ops da9063_watchdog_ops = {
181 .owner = THIS_MODULE,
182 .start = da9063_wdt_start,
183 .stop = da9063_wdt_stop,
184 .ping = da9063_wdt_ping,
185 .set_timeout = da9063_wdt_set_timeout,
Damien Riegelf79781c2015-11-16 12:28:01 -0500186 .restart = da9063_wdt_restart,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200187};
188
189static int da9063_wdt_probe(struct platform_device *pdev)
190{
Guenter Roeck86580292019-04-08 12:38:36 -0700191 struct device *dev = &pdev->dev;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200192 struct da9063 *da9063;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200193 struct watchdog_device *wdd;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200194
Guenter Roeck86580292019-04-08 12:38:36 -0700195 if (!dev->parent)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200196 return -EINVAL;
197
Guenter Roeck86580292019-04-08 12:38:36 -0700198 da9063 = dev_get_drvdata(dev->parent);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200199 if (!da9063)
200 return -EINVAL;
201
Guenter Roeck86580292019-04-08 12:38:36 -0700202 wdd = devm_kzalloc(dev, sizeof(*wdd), GFP_KERNEL);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200203 if (!wdd)
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200204 return -ENOMEM;
205
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200206 wdd->info = &da9063_watchdog_info;
207 wdd->ops = &da9063_watchdog_ops;
208 wdd->min_timeout = DA9063_WDT_MIN_TIMEOUT;
209 wdd->max_timeout = DA9063_WDT_MAX_TIMEOUT;
210 wdd->min_hw_heartbeat_ms = DA9063_RESET_PROTECTION_MS;
Guenter Roeck86580292019-04-08 12:38:36 -0700211 wdd->parent = dev;
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200212 wdd->status = WATCHDOG_NOWAYOUT_INIT_STATUS;
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200213
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200214 watchdog_set_restart_priority(wdd, 128);
fzuuzf@googlemail.coma1f2a822017-07-25 13:25:58 +0200215 watchdog_set_drvdata(wdd, da9063);
Damien Riegelf79781c2015-11-16 12:28:01 -0500216
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200217 /* Set default timeout, maybe override it with DT value, scale it */
218 wdd->timeout = DA9063_WDG_TIMEOUT;
219 watchdog_init_timeout(wdd, 0, dev);
220 da9063_wdt_set_timeout(wdd, wdd->timeout);
221
Marco Felschbe9e9c22018-05-28 08:45:46 +0200222 /* Change the timeout to the default value if the watchdog is running */
223 if (da9063_wdt_is_running(da9063)) {
Wolfram Sang280ce5c2019-04-14 13:09:33 +0200224 da9063_wdt_update_timeout(da9063, wdd->timeout);
Marco Felschbe9e9c22018-05-28 08:45:46 +0200225 set_bit(WDOG_HW_RUNNING, &wdd->status);
226 }
227
Guenter Roeck86580292019-04-08 12:38:36 -0700228 return devm_watchdog_register_device(dev, wdd);
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200229}
230
231static struct platform_driver da9063_wdt_driver = {
232 .probe = da9063_wdt_probe,
Krystian Garbaciak5e9c16e2014-09-28 19:05:45 +0200233 .driver = {
234 .name = DA9063_DRVNAME_WATCHDOG,
235 },
236};
237module_platform_driver(da9063_wdt_driver);
238
239MODULE_AUTHOR("Mariusz Wojtasik <mariusz.wojtasik@diasemi.com>");
240MODULE_DESCRIPTION("Watchdog driver for Dialog DA9063");
241MODULE_LICENSE("GPL");
242MODULE_ALIAS("platform:" DA9063_DRVNAME_WATCHDOG);