blob: 7abb82c16a909841339282d572261452864d875a [file] [log] [blame]
Stefan Roesec2c69712022-09-02 13:57:48 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
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
6 * tasks.
7 *
8 * Copyright (C) 2022 Stefan Roese <sr@denx.de>
9 */
10
11#include <cyclic.h>
12#include <log.h>
13#include <malloc.h>
14#include <time.h>
15#include <linux/errno.h>
16#include <linux/list.h>
17#include <asm/global_data.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Stefan Roese881d4102022-09-02 14:10:45 +020021void hw_watchdog_reset(void);
22
Stefan Roesec2c69712022-09-02 13:57:48 +020023struct list_head *cyclic_get_list(void)
24{
25 return &gd->cyclic->cyclic_list;
26}
27
28struct cyclic_info *cyclic_register(cyclic_func_t func, uint64_t delay_us,
29 const char *name, void *ctx)
30{
31 struct cyclic_info *cyclic;
32
33 if (!gd->cyclic->cyclic_ready) {
34 pr_debug("Cyclic IF not ready yet\n");
35 return NULL;
36 }
37
38 cyclic = calloc(1, sizeof(struct cyclic_info));
39 if (!cyclic) {
40 pr_debug("Memory allocation error\n");
41 return NULL;
42 }
43
44 /* Store values in struct */
45 cyclic->func = func;
46 cyclic->ctx = ctx;
47 cyclic->name = strdup(name);
48 cyclic->delay_us = delay_us;
49 cyclic->start_time_us = timer_get_us();
50 list_add_tail(&cyclic->list, &gd->cyclic->cyclic_list);
51
52 return cyclic;
53}
54
55int cyclic_unregister(struct cyclic_info *cyclic)
56{
57 list_del(&cyclic->list);
58 free(cyclic);
59
60 return 0;
61}
62
63void cyclic_run(void)
64{
65 struct cyclic_info *cyclic, *tmp;
66 uint64_t now, cpu_time;
67
68 /* Prevent recursion */
69 if (gd->cyclic->cyclic_running)
70 return;
71
72 gd->cyclic->cyclic_running = true;
73 list_for_each_entry_safe(cyclic, tmp, &gd->cyclic->cyclic_list, list) {
74 /*
75 * Check if this cyclic function needs to get called, e.g.
76 * do not call the cyclic func too often
77 */
78 now = timer_get_us();
79 if (time_after_eq64(now, cyclic->next_call)) {
80 /* Call cyclic function and account it's cpu-time */
81 cyclic->next_call = now + cyclic->delay_us;
82 cyclic->func(cyclic->ctx);
83 cyclic->run_cnt++;
84 cpu_time = timer_get_us() - now;
85 cyclic->cpu_time_us += cpu_time;
86
87 /* Check if cpu-time exceeds max allowed time */
Stefan Roeseddc8d362022-10-17 09:00:58 +020088 if ((cpu_time > CONFIG_CYCLIC_MAX_CPU_TIME_US) &&
89 (!cyclic->already_warned)) {
90 pr_err("cyclic function %s took too long: %lldus vs %dus max\n",
Stefan Roesec2c69712022-09-02 13:57:48 +020091 cyclic->name, cpu_time,
92 CONFIG_CYCLIC_MAX_CPU_TIME_US);
93
Stefan Roeseddc8d362022-10-17 09:00:58 +020094 /*
95 * Don't disable this function, just warn once
96 * about this exceeding CPU time usage
97 */
98 cyclic->already_warned = true;
Stefan Roesec2c69712022-09-02 13:57:48 +020099 }
100 }
101 }
102 gd->cyclic->cyclic_running = false;
103}
104
Stefan Roese881d4102022-09-02 14:10:45 +0200105void schedule(void)
106{
107 /* The HW watchdog is not integrated into the cyclic IF (yet) */
108 if (IS_ENABLED(CONFIG_HW_WATCHDOG))
109 hw_watchdog_reset();
110
111 /*
112 * schedule() might get called very early before the cyclic IF is
113 * ready. Make sure to only call cyclic_run() when it's initalized.
114 */
115 if (gd && gd->cyclic && gd->cyclic->cyclic_ready)
116 cyclic_run();
117}
118
Stefan Roesec2c69712022-09-02 13:57:48 +0200119int cyclic_uninit(void)
120{
121 struct cyclic_info *cyclic, *tmp;
122
123 list_for_each_entry_safe(cyclic, tmp, &gd->cyclic->cyclic_list, list)
124 cyclic_unregister(cyclic);
125 gd->cyclic->cyclic_ready = false;
126
127 return 0;
128}
129
130int cyclic_init(void)
131{
132 int size = sizeof(struct cyclic_drv);
133
134 gd->cyclic = (struct cyclic_drv *)malloc(size);
135 if (!gd->cyclic)
136 return -ENOMEM;
137
138 memset(gd->cyclic, '\0', size);
139 INIT_LIST_HEAD(&gd->cyclic->cyclic_list);
140 gd->cyclic->cyclic_ready = true;
141
142 return 0;
143}