blob: 2c3d383c5ef4af678e83097cff2e7091e238cf74 [file] [log] [blame]
Stefan Roese036f89a2022-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#ifndef __cyclic_h
12#define __cyclic_h
13
14#include <linux/list.h>
15#include <asm/types.h>
16
17/**
Stefan Roese036f89a2022-09-02 13:57:48 +020018 * struct cyclic_info - Information about cyclic execution function
19 *
20 * @func: Function to call periodically
Stefan Roese036f89a2022-09-02 13:57:48 +020021 * @name: Name of the cyclic function, e.g. shown in the commands
22 * @delay_ns: Delay is ns after which this function shall get executed
23 * @start_time_us: Start time in us, when this function started its execution
24 * @cpu_time_us: Total CPU time of this function
25 * @run_cnt: Counter of executions occurances
26 * @next_call: Next time in us, when the function shall be executed again
27 * @list: List node
Stefan Roese75b0d962022-10-17 09:00:58 +020028 * @already_warned: Flag that we've warned about exceeding CPU time usage
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020029 *
30 * When !CONFIG_CYCLIC, this struct is empty.
Stefan Roese036f89a2022-09-02 13:57:48 +020031 */
32struct cyclic_info {
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020033#if defined(CONFIG_CYCLIC)
34 void (*func)(struct cyclic_info *c);
Rasmus Villemoesd84e2912024-05-21 10:46:50 +020035 const char *name;
Stefan Roese036f89a2022-09-02 13:57:48 +020036 uint64_t delay_us;
37 uint64_t start_time_us;
38 uint64_t cpu_time_us;
39 uint64_t run_cnt;
40 uint64_t next_call;
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +020041 struct hlist_node list;
Stefan Roese75b0d962022-10-17 09:00:58 +020042 bool already_warned;
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020043#endif
Stefan Roese036f89a2022-09-02 13:57:48 +020044};
45
46/** Function type for cyclic functions */
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020047typedef void (*cyclic_func_t)(struct cyclic_info *c);
Stefan Roese036f89a2022-09-02 13:57:48 +020048
49#if defined(CONFIG_CYCLIC)
50/**
51 * cyclic_register - Register a new cyclic function
52 *
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020053 * @cyclic: Cyclic info structure
Stefan Roese036f89a2022-09-02 13:57:48 +020054 * @func: Function to call periodically
55 * @delay_us: Delay is us after which this function shall get executed
56 * @name: Cyclic function name/id
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020057 *
58 * The function @func will be called with @cyclic as its
59 * argument. @cyclic will usually be embedded in some device-specific
60 * structure, which the callback can retrieve using container_of().
Stefan Roese036f89a2022-09-02 13:57:48 +020061 */
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020062void cyclic_register(struct cyclic_info *cyclic, cyclic_func_t func,
63 uint64_t delay_us, const char *name);
Stefan Roese036f89a2022-09-02 13:57:48 +020064
65/**
66 * cyclic_unregister - Unregister a cyclic function
67 *
68 * @cyclic: Pointer to cyclic_struct of the function that shall be removed
Stefan Roese036f89a2022-09-02 13:57:48 +020069 */
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020070void cyclic_unregister(struct cyclic_info *cyclic);
Stefan Roese036f89a2022-09-02 13:57:48 +020071
72/**
Rasmus Villemoesc794e492022-10-28 13:50:54 +020073 * cyclic_unregister_all() - Clean up cyclic functions
Stefan Roese036f89a2022-09-02 13:57:48 +020074 *
75 * This removes all cyclic functions
76 */
Rasmus Villemoesc794e492022-10-28 13:50:54 +020077int cyclic_unregister_all(void);
Stefan Roese036f89a2022-09-02 13:57:48 +020078
79/**
80 * cyclic_get_list() - Get cyclic list pointer
81 *
82 * Return the cyclic list pointer
83 *
84 * @return: pointer to cyclic_list
85 */
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +020086struct hlist_head *cyclic_get_list(void);
Stefan Roese036f89a2022-09-02 13:57:48 +020087
88/**
89 * cyclic_run() - Interate over all registered cyclic functions
90 *
91 * Interate over all registered cyclic functions and if the it's function
92 * needs to be executed, then call into these registered functions.
93 */
94void cyclic_run(void);
Stefan Roese97473632022-09-02 14:10:45 +020095
96/**
97 * schedule() - Schedule all potentially waiting tasks
98 *
99 * Basically a wrapper for cyclic_run(), pontentially enhanced by some
100 * other parts, that need to get handled periodically.
101 */
102void schedule(void);
Stefan Roese036f89a2022-09-02 13:57:48 +0200103#else
Rasmus Villemoesea36ada2024-05-21 10:46:52 +0200104
105static inline void cyclic_register(struct cyclic_info *cyclic, cyclic_func_t func,
106 uint64_t delay_us, const char *name)
Stefan Roese036f89a2022-09-02 13:57:48 +0200107{
Stefan Roese036f89a2022-09-02 13:57:48 +0200108}
109
Rasmus Villemoesea36ada2024-05-21 10:46:52 +0200110static inline void cyclic_unregister(struct cyclic_info *cyclic)
Stefan Roese036f89a2022-09-02 13:57:48 +0200111{
Stefan Roese036f89a2022-09-02 13:57:48 +0200112}
113
114static inline void cyclic_run(void)
115{
116}
117
Stefan Roese97473632022-09-02 14:10:45 +0200118static inline void schedule(void)
119{
Stefan Roese036f89a2022-09-02 13:57:48 +0200120}
121
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200122static inline int cyclic_unregister_all(void)
Stefan Roese036f89a2022-09-02 13:57:48 +0200123{
124 return 0;
125}
126#endif
127
128#endif