1 // SPDX-License-Identifier: GPL-2.0+
3 * A general-purpose cyclic execution infrastructure, to allow "small"
4 * (run-time wise) functions to be executed at a specified frequency.
5 * Things like LED blinking or watchdog triggering are examples for such
15 #include <linux/errno.h>
16 #include <linux/list.h>
17 #include <asm/global_data.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 void hw_watchdog_reset(void);
23 struct hlist_head *cyclic_get_list(void)
25 /* Silence "discards 'volatile' qualifier" warning. */
26 return (struct hlist_head *)&gd->cyclic_list;
29 struct cyclic_info *cyclic_register(cyclic_func_t func, uint64_t delay_us,
30 const char *name, void *ctx)
32 struct cyclic_info *cyclic;
34 cyclic = calloc(1, sizeof(struct cyclic_info));
36 pr_debug("Memory allocation error\n");
40 /* Store values in struct */
43 cyclic->name = strdup(name);
44 cyclic->delay_us = delay_us;
45 cyclic->start_time_us = timer_get_us();
46 hlist_add_head(&cyclic->list, cyclic_get_list());
51 int cyclic_unregister(struct cyclic_info *cyclic)
53 hlist_del(&cyclic->list);
61 struct cyclic_info *cyclic;
62 struct hlist_node *tmp;
63 uint64_t now, cpu_time;
65 /* Prevent recursion */
66 if (gd->flags & GD_FLG_CYCLIC_RUNNING)
69 gd->flags |= GD_FLG_CYCLIC_RUNNING;
70 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list) {
72 * Check if this cyclic function needs to get called, e.g.
73 * do not call the cyclic func too often
76 if (time_after_eq64(now, cyclic->next_call)) {
77 /* Call cyclic function and account it's cpu-time */
78 cyclic->next_call = now + cyclic->delay_us;
79 cyclic->func(cyclic->ctx);
81 cpu_time = timer_get_us() - now;
82 cyclic->cpu_time_us += cpu_time;
84 /* Check if cpu-time exceeds max allowed time */
85 if ((cpu_time > CONFIG_CYCLIC_MAX_CPU_TIME_US) &&
86 (!cyclic->already_warned)) {
87 pr_err("cyclic function %s took too long: %lldus vs %dus max\n",
88 cyclic->name, cpu_time,
89 CONFIG_CYCLIC_MAX_CPU_TIME_US);
92 * Don't disable this function, just warn once
93 * about this exceeding CPU time usage
95 cyclic->already_warned = true;
99 gd->flags &= ~GD_FLG_CYCLIC_RUNNING;
104 /* The HW watchdog is not integrated into the cyclic IF (yet) */
105 if (IS_ENABLED(CONFIG_HW_WATCHDOG))
109 * schedule() might get called very early before the cyclic IF is
110 * ready. Make sure to only call cyclic_run() when it's initalized.
116 int cyclic_unregister_all(void)
118 struct cyclic_info *cyclic;
119 struct hlist_node *tmp;
121 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list)
122 cyclic_unregister(cyclic);