watchdog: Implement generic watchdog_reset() version
[project/bcm63xx/u-boot.git] / drivers / watchdog / wdt-uclass.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright 2017 Google, Inc
4 */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <errno.h>
9 #include <wdt.h>
10 #include <dm/device-internal.h>
11 #include <dm/lists.h>
12
13 DECLARE_GLOBAL_DATA_PTR;
14
15 int wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
16 {
17 const struct wdt_ops *ops = device_get_ops(dev);
18
19 if (!ops->start)
20 return -ENOSYS;
21
22 return ops->start(dev, timeout_ms, flags);
23 }
24
25 int wdt_stop(struct udevice *dev)
26 {
27 const struct wdt_ops *ops = device_get_ops(dev);
28
29 if (!ops->stop)
30 return -ENOSYS;
31
32 return ops->stop(dev);
33 }
34
35 int wdt_reset(struct udevice *dev)
36 {
37 const struct wdt_ops *ops = device_get_ops(dev);
38
39 if (!ops->reset)
40 return -ENOSYS;
41
42 return ops->reset(dev);
43 }
44
45 int wdt_expire_now(struct udevice *dev, ulong flags)
46 {
47 int ret = 0;
48 const struct wdt_ops *ops;
49
50 debug("WDT Resetting: %lu\n", flags);
51 ops = device_get_ops(dev);
52 if (ops->expire_now) {
53 return ops->expire_now(dev, flags);
54 } else {
55 if (!ops->start)
56 return -ENOSYS;
57
58 ret = ops->start(dev, 1, flags);
59 if (ret < 0)
60 return ret;
61
62 hang();
63 }
64
65 return ret;
66 }
67
68 #if defined(CONFIG_WATCHDOG)
69 /*
70 * Called by macro WATCHDOG_RESET. This function be called *very* early,
71 * so we need to make sure, that the watchdog driver is ready before using
72 * it in this function.
73 */
74 void watchdog_reset(void)
75 {
76 static ulong next_reset;
77 ulong now;
78
79 /* Exit if GD is not ready or watchdog is not initialized yet */
80 if (!gd || !(gd->flags & GD_FLG_WDT_READY))
81 return;
82
83 /* Do not reset the watchdog too often */
84 now = get_timer(0);
85 if (now > next_reset) {
86 next_reset = now + 1000; /* reset every 1000ms */
87 wdt_reset(gd->watchdog_dev);
88 }
89 }
90 #endif
91
92 static int wdt_post_bind(struct udevice *dev)
93 {
94 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
95 struct wdt_ops *ops = (struct wdt_ops *)device_get_ops(dev);
96 static int reloc_done;
97
98 if (!reloc_done) {
99 if (ops->start)
100 ops->start += gd->reloc_off;
101 if (ops->stop)
102 ops->stop += gd->reloc_off;
103 if (ops->reset)
104 ops->reset += gd->reloc_off;
105 if (ops->expire_now)
106 ops->expire_now += gd->reloc_off;
107
108 reloc_done++;
109 }
110 #endif
111 return 0;
112 }
113
114 UCLASS_DRIVER(wdt) = {
115 .id = UCLASS_WDT,
116 .name = "watchdog",
117 .flags = DM_UC_FLAG_SEQ_ALIAS,
118 .post_bind = wdt_post_bind,
119 };