blob: 417e8d7eef95196db9e5218188f29b16c313a6dc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
maxims@google.com0753bc22017-04-17 12:00:21 -07002/*
3 * Copyright 2017 Google, Inc
maxims@google.com0753bc22017-04-17 12:00:21 -07004 */
5
Patrick Delaunayb953ec22021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_WDT
7
maxims@google.com0753bc22017-04-17 12:00:21 -07008#include <common.h>
Stefan Roesec2fd0ca2022-08-18 13:22:46 +02009#include <cyclic.h>
Chanho Parka341a0e2023-12-03 17:30:40 +090010#include <div64.h>
maxims@google.com0753bc22017-04-17 12:00:21 -070011#include <dm.h>
12#include <errno.h>
Simon Glassdb41d652019-12-28 10:45:07 -070013#include <hang.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Samuel Hollanda8f63d12021-11-03 22:55:14 -050015#include <sysreset.h>
Chris Packham6d8eae92020-02-24 13:20:33 +130016#include <time.h>
maxims@google.com0753bc22017-04-17 12:00:21 -070017#include <wdt.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
maxims@google.com0753bc22017-04-17 12:00:21 -070019#include <dm/device-internal.h>
20#include <dm/lists.h>
21
Stefan Roese06985282019-04-11 15:58:44 +020022DECLARE_GLOBAL_DATA_PTR;
23
Rasmus Villemoesb4d94522020-03-13 17:04:57 +010024#define WATCHDOG_TIMEOUT_SECS (CONFIG_WATCHDOG_TIMEOUT_MSECS / 1000)
25
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +020026struct wdt_priv {
27 /* Timeout, in seconds, to configure this device to. */
28 u32 timeout;
29 /*
30 * Time, in milliseconds, between calling the device's ->reset()
31 * method from watchdog_reset().
32 */
33 ulong reset_period;
34 /*
35 * Next time (as returned by get_timer(0)) to call
36 * ->reset().
37 */
38 ulong next_reset;
Rasmus Villemoesf1b112a2021-08-19 11:56:59 +020039 /* Whether watchdog_start() has been called on the device. */
40 bool running;
Rasmus Villemoes27836702022-09-27 11:54:03 +020041 /* autostart */
42 bool autostart;
Stefan Roesec2fd0ca2022-08-18 13:22:46 +020043
44 struct cyclic_info *cyclic;
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +020045};
Rasmus Villemoes40d7f3c2020-03-13 17:04:58 +010046
Stefan Roesec2fd0ca2022-08-18 13:22:46 +020047static void wdt_cyclic(void *ctx)
48{
49 struct udevice *dev = ctx;
50 struct wdt_priv *priv;
51
52 if (!device_active(dev))
53 return;
54
55 priv = dev_get_uclass_priv(dev);
56 if (!priv->running)
57 return;
58
59 wdt_reset(dev);
60}
61
Rasmus Villemoes3eaf6e22021-08-19 11:56:58 +020062static void init_watchdog_dev(struct udevice *dev)
Rasmus Villemoesb4d94522020-03-13 17:04:57 +010063{
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +020064 struct wdt_priv *priv;
Pali Rohár25e20e32021-03-09 14:26:55 +010065 int ret;
Rasmus Villemoesb4d94522020-03-13 17:04:57 +010066
Rasmus Villemoes3eaf6e22021-08-19 11:56:58 +020067 priv = dev_get_uclass_priv(dev);
68
Samuel Hollanda8f63d12021-11-03 22:55:14 -050069 if (IS_ENABLED(CONFIG_SYSRESET_WATCHDOG_AUTO)) {
70 ret = sysreset_register_wdt(dev);
71 if (ret)
72 printf("WDT: Failed to register %s for sysreset\n",
73 dev->name);
74 }
75
Rasmus Villemoes27836702022-09-27 11:54:03 +020076 if (!priv->autostart) {
Rasmus Villemoes3eaf6e22021-08-19 11:56:58 +020077 printf("WDT: Not starting %s\n", dev->name);
78 return;
79 }
80
81 ret = wdt_start(dev, priv->timeout * 1000, 0);
82 if (ret != 0) {
83 printf("WDT: Failed to start %s\n", dev->name);
84 return;
85 }
Rasmus Villemoes3eaf6e22021-08-19 11:56:58 +020086}
87
88int initr_watchdog(void)
89{
Rasmus Villemoes492ee6b2021-08-19 11:57:03 +020090 struct udevice *dev;
91 struct uclass *uc;
92 int ret;
93
94 ret = uclass_get(UCLASS_WDT, &uc);
95 if (ret) {
96 log_debug("Error getting UCLASS_WDT: %d\n", ret);
97 return 0;
Rasmus Villemoesb4d94522020-03-13 17:04:57 +010098 }
Rasmus Villemoes492ee6b2021-08-19 11:57:03 +020099
100 uclass_foreach_dev(dev, uc) {
101 ret = device_probe(dev);
102 if (ret) {
103 log_debug("Error probing %s: %d\n", dev->name, ret);
104 continue;
105 }
106 init_watchdog_dev(dev);
107 }
Rasmus Villemoesb4d94522020-03-13 17:04:57 +0100108
109 return 0;
110}
111
Andy Shevchenkoffdec302017-08-04 15:48:28 -0600112int wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
maxims@google.com0753bc22017-04-17 12:00:21 -0700113{
114 const struct wdt_ops *ops = device_get_ops(dev);
Pali Rohár9c44ff12021-03-09 14:26:54 +0100115 int ret;
maxims@google.com0753bc22017-04-17 12:00:21 -0700116
117 if (!ops->start)
118 return -ENOSYS;
119
Pali Rohár9c44ff12021-03-09 14:26:54 +0100120 ret = ops->start(dev, timeout_ms, flags);
Rasmus Villemoesf1b112a2021-08-19 11:56:59 +0200121 if (ret == 0) {
122 struct wdt_priv *priv = dev_get_uclass_priv(dev);
Stefan Roesec2fd0ca2022-08-18 13:22:46 +0200123 char str[16];
Rasmus Villemoesf1b112a2021-08-19 11:56:59 +0200124
125 priv->running = true;
Stefan Roesec2fd0ca2022-08-18 13:22:46 +0200126
127 memset(str, 0, 16);
128 if (IS_ENABLED(CONFIG_WATCHDOG)) {
129 /* Register the watchdog driver as a cyclic function */
130 priv->cyclic = cyclic_register(wdt_cyclic,
131 priv->reset_period * 1000,
132 dev->name, dev);
133 if (!priv->cyclic) {
134 printf("cyclic_register for %s failed\n",
135 dev->name);
136 return -ENODEV;
137 } else {
138 snprintf(str, 16, "every %ldms",
139 priv->reset_period);
140 }
141 }
142
143 printf("WDT: Started %s with%s servicing %s (%ds timeout)\n",
144 dev->name, IS_ENABLED(CONFIG_WATCHDOG) ? "" : "out",
Chanho Parka341a0e2023-12-03 17:30:40 +0900145 str, (u32)lldiv(timeout_ms, 1000));
Rasmus Villemoesf1b112a2021-08-19 11:56:59 +0200146 }
Pali Rohár9c44ff12021-03-09 14:26:54 +0100147
148 return ret;
maxims@google.com0753bc22017-04-17 12:00:21 -0700149}
150
151int wdt_stop(struct udevice *dev)
152{
153 const struct wdt_ops *ops = device_get_ops(dev);
Pali Rohár9c44ff12021-03-09 14:26:54 +0100154 int ret;
maxims@google.com0753bc22017-04-17 12:00:21 -0700155
156 if (!ops->stop)
157 return -ENOSYS;
158
Pali Rohár9c44ff12021-03-09 14:26:54 +0100159 ret = ops->stop(dev);
Rasmus Villemoesf1b112a2021-08-19 11:56:59 +0200160 if (ret == 0) {
161 struct wdt_priv *priv = dev_get_uclass_priv(dev);
162
163 priv->running = false;
164 }
Pali Rohár9c44ff12021-03-09 14:26:54 +0100165
166 return ret;
maxims@google.com0753bc22017-04-17 12:00:21 -0700167}
168
Rasmus Villemoes90555dc2021-08-19 11:57:01 +0200169int wdt_stop_all(void)
170{
171 struct wdt_priv *priv;
172 struct udevice *dev;
173 struct uclass *uc;
174 int ret, err;
175
176 ret = uclass_get(UCLASS_WDT, &uc);
177 if (ret)
178 return ret;
179
180 uclass_foreach_dev(dev, uc) {
181 if (!device_active(dev))
182 continue;
183 priv = dev_get_uclass_priv(dev);
184 if (!priv->running)
185 continue;
186 err = wdt_stop(dev);
187 if (!ret)
188 ret = err;
189 }
190
191 return ret;
192}
193
maxims@google.com0753bc22017-04-17 12:00:21 -0700194int wdt_reset(struct udevice *dev)
195{
196 const struct wdt_ops *ops = device_get_ops(dev);
197
198 if (!ops->reset)
199 return -ENOSYS;
200
201 return ops->reset(dev);
202}
203
204int wdt_expire_now(struct udevice *dev, ulong flags)
205{
206 int ret = 0;
207 const struct wdt_ops *ops;
208
Andy Shevchenkob71e0c12017-07-05 20:44:06 +0300209 debug("WDT Resetting: %lu\n", flags);
maxims@google.com0753bc22017-04-17 12:00:21 -0700210 ops = device_get_ops(dev);
211 if (ops->expire_now) {
212 return ops->expire_now(dev, flags);
213 } else {
Rasmus Villemoes8967ebb2021-08-19 11:56:55 +0200214 ret = wdt_start(dev, 1, flags);
maxims@google.com0753bc22017-04-17 12:00:21 -0700215
maxims@google.com0753bc22017-04-17 12:00:21 -0700216 if (ret < 0)
217 return ret;
218
219 hang();
220 }
221
222 return ret;
223}
224
Stefan Roese06985282019-04-11 15:58:44 +0200225#if defined(CONFIG_WATCHDOG)
226/*
227 * Called by macro WATCHDOG_RESET. This function be called *very* early,
228 * so we need to make sure, that the watchdog driver is ready before using
229 * it in this function.
230 */
231void watchdog_reset(void)
232{
Rasmus Villemoes492ee6b2021-08-19 11:57:03 +0200233 /*
Stefan Roesec2fd0ca2022-08-18 13:22:46 +0200234 * Empty function for now. The actual WDT handling is now done in
235 * the cyclic function instead.
Rasmus Villemoes492ee6b2021-08-19 11:57:03 +0200236 */
Stefan Roese06985282019-04-11 15:58:44 +0200237}
238#endif
239
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +0200240static int wdt_pre_probe(struct udevice *dev)
241{
242 u32 timeout = WATCHDOG_TIMEOUT_SECS;
243 /*
244 * Reset every 1000ms, or however often is required as
245 * indicated by a hw_margin_ms property.
246 */
247 ulong reset_period = 1000;
Rasmus Villemoes27836702022-09-27 11:54:03 +0200248 bool autostart = IS_ENABLED(CONFIG_WATCHDOG_AUTOSTART);
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +0200249 struct wdt_priv *priv;
250
251 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
252 timeout = dev_read_u32_default(dev, "timeout-sec", timeout);
253 reset_period = dev_read_u32_default(dev, "hw_margin_ms",
254 4 * reset_period) / 4;
Rasmus Villemoes27836702022-09-27 11:54:03 +0200255 if (dev_read_bool(dev, "u-boot,noautostart"))
256 autostart = false;
257 else if (dev_read_bool(dev, "u-boot,autostart"))
258 autostart = true;
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +0200259 }
260 priv = dev_get_uclass_priv(dev);
261 priv->timeout = timeout;
262 priv->reset_period = reset_period;
Rasmus Villemoes27836702022-09-27 11:54:03 +0200263 priv->autostart = autostart;
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +0200264 /*
265 * Pretend this device was last reset "long" ago so the first
266 * watchdog_reset will actually call its ->reset method.
267 */
268 priv->next_reset = get_timer(0);
269
270 return 0;
271}
272
maxims@google.com0753bc22017-04-17 12:00:21 -0700273UCLASS_DRIVER(wdt) = {
Rasmus Villemoes068f8ea2021-08-19 11:56:57 +0200274 .id = UCLASS_WDT,
275 .name = "watchdog",
276 .flags = DM_UC_FLAG_SEQ_ALIAS,
Rasmus Villemoes6d24dc82021-08-19 11:56:56 +0200277 .pre_probe = wdt_pre_probe,
278 .per_device_auto = sizeof(struct wdt_priv),
maxims@google.com0753bc22017-04-17 12:00:21 -0700279};