blob: a49bfc88f5c0e96257b59d3b75033007a2b537ed [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
Rasmus Villemoes28968392022-10-28 13:50:53 +020023struct hlist_head *cyclic_get_list(void)
Stefan Roesec2c69712022-09-02 13:57:48 +020024{
Rasmus Villemoes50128ae2022-10-28 13:50:54 +020025 /* Silence "discards 'volatile' qualifier" warning. */
26 return (struct hlist_head *)&gd->cyclic_list;
Stefan Roesec2c69712022-09-02 13:57:48 +020027}
28
29struct cyclic_info *cyclic_register(cyclic_func_t func, uint64_t delay_us,
30 const char *name, void *ctx)
31{
32 struct cyclic_info *cyclic;
33
Stefan Roesec2c69712022-09-02 13:57:48 +020034 cyclic = calloc(1, sizeof(struct cyclic_info));
35 if (!cyclic) {
36 pr_debug("Memory allocation error\n");
37 return NULL;
38 }
39
40 /* Store values in struct */
41 cyclic->func = func;
42 cyclic->ctx = ctx;
43 cyclic->name = strdup(name);
44 cyclic->delay_us = delay_us;
45 cyclic->start_time_us = timer_get_us();
Rasmus Villemoes50128ae2022-10-28 13:50:54 +020046 hlist_add_head(&cyclic->list, cyclic_get_list());
Stefan Roesec2c69712022-09-02 13:57:48 +020047
48 return cyclic;
49}
50
51int cyclic_unregister(struct cyclic_info *cyclic)
52{
Rasmus Villemoes28968392022-10-28 13:50:53 +020053 hlist_del(&cyclic->list);
Stefan Roesec2c69712022-09-02 13:57:48 +020054 free(cyclic);
55
56 return 0;
57}
58
59void cyclic_run(void)
60{
Rasmus Villemoes28968392022-10-28 13:50:53 +020061 struct cyclic_info *cyclic;
62 struct hlist_node *tmp;
Stefan Roesec2c69712022-09-02 13:57:48 +020063 uint64_t now, cpu_time;
64
65 /* Prevent recursion */
Rasmus Villemoesd7de5ef2022-10-28 13:50:50 +020066 if (gd->flags & GD_FLG_CYCLIC_RUNNING)
Stefan Roesec2c69712022-09-02 13:57:48 +020067 return;
68
Rasmus Villemoesd7de5ef2022-10-28 13:50:50 +020069 gd->flags |= GD_FLG_CYCLIC_RUNNING;
Rasmus Villemoes50128ae2022-10-28 13:50:54 +020070 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list) {
Stefan Roesec2c69712022-09-02 13:57:48 +020071 /*
72 * Check if this cyclic function needs to get called, e.g.
73 * do not call the cyclic func too often
74 */
75 now = timer_get_us();
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);
80 cyclic->run_cnt++;
81 cpu_time = timer_get_us() - now;
82 cyclic->cpu_time_us += cpu_time;
83
84 /* Check if cpu-time exceeds max allowed time */
Stefan Roeseddc8d362022-10-17 09:00:58 +020085 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",
Stefan Roesec2c69712022-09-02 13:57:48 +020088 cyclic->name, cpu_time,
89 CONFIG_CYCLIC_MAX_CPU_TIME_US);
90
Stefan Roeseddc8d362022-10-17 09:00:58 +020091 /*
92 * Don't disable this function, just warn once
93 * about this exceeding CPU time usage
94 */
95 cyclic->already_warned = true;
Stefan Roesec2c69712022-09-02 13:57:48 +020096 }
97 }
98 }
Rasmus Villemoesd7de5ef2022-10-28 13:50:50 +020099 gd->flags &= ~GD_FLG_CYCLIC_RUNNING;
Stefan Roesec2c69712022-09-02 13:57:48 +0200100}
101
Stefan Roese881d4102022-09-02 14:10:45 +0200102void schedule(void)
103{
104 /* The HW watchdog is not integrated into the cyclic IF (yet) */
105 if (IS_ENABLED(CONFIG_HW_WATCHDOG))
106 hw_watchdog_reset();
107
108 /*
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.
111 */
Rasmus Villemoes50128ae2022-10-28 13:50:54 +0200112 if (gd)
Stefan Roese881d4102022-09-02 14:10:45 +0200113 cyclic_run();
114}
115
Rasmus Villemoes50128ae2022-10-28 13:50:54 +0200116int cyclic_unregister_all(void)
Stefan Roesec2c69712022-09-02 13:57:48 +0200117{
Rasmus Villemoes28968392022-10-28 13:50:53 +0200118 struct cyclic_info *cyclic;
119 struct hlist_node *tmp;
Stefan Roesec2c69712022-09-02 13:57:48 +0200120
Rasmus Villemoes50128ae2022-10-28 13:50:54 +0200121 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list)
Stefan Roesec2c69712022-09-02 13:57:48 +0200122 cyclic_unregister(cyclic);
Stefan Roesec2c69712022-09-02 13:57:48 +0200123
124 return 0;
125}