Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 1 | /* 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 Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 18 | * struct cyclic_info - Information about cyclic execution function |
| 19 | * |
| 20 | * @func: Function to call periodically |
| 21 | * @ctx: Context pointer to get passed to this function |
| 22 | * @name: Name of the cyclic function, e.g. shown in the commands |
| 23 | * @delay_ns: Delay is ns after which this function shall get executed |
| 24 | * @start_time_us: Start time in us, when this function started its execution |
| 25 | * @cpu_time_us: Total CPU time of this function |
| 26 | * @run_cnt: Counter of executions occurances |
| 27 | * @next_call: Next time in us, when the function shall be executed again |
| 28 | * @list: List node |
Stefan Roese | ddc8d36 | 2022-10-17 09:00:58 +0200 | [diff] [blame] | 29 | * @already_warned: Flag that we've warned about exceeding CPU time usage |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 30 | */ |
| 31 | struct cyclic_info { |
| 32 | void (*func)(void *ctx); |
| 33 | void *ctx; |
| 34 | char *name; |
| 35 | uint64_t delay_us; |
| 36 | uint64_t start_time_us; |
| 37 | uint64_t cpu_time_us; |
| 38 | uint64_t run_cnt; |
| 39 | uint64_t next_call; |
Rasmus Villemoes | 2896839 | 2022-10-28 13:50:53 +0200 | [diff] [blame] | 40 | struct hlist_node list; |
Stefan Roese | ddc8d36 | 2022-10-17 09:00:58 +0200 | [diff] [blame] | 41 | bool already_warned; |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | /** Function type for cyclic functions */ |
| 45 | typedef void (*cyclic_func_t)(void *ctx); |
| 46 | |
| 47 | #if defined(CONFIG_CYCLIC) |
| 48 | /** |
| 49 | * cyclic_register - Register a new cyclic function |
| 50 | * |
| 51 | * @func: Function to call periodically |
| 52 | * @delay_us: Delay is us after which this function shall get executed |
| 53 | * @name: Cyclic function name/id |
| 54 | * @ctx: Context to pass to the function |
| 55 | * @return: pointer to cyclic_struct if OK, NULL on error |
| 56 | */ |
| 57 | struct cyclic_info *cyclic_register(cyclic_func_t func, uint64_t delay_us, |
| 58 | const char *name, void *ctx); |
| 59 | |
| 60 | /** |
| 61 | * cyclic_unregister - Unregister a cyclic function |
| 62 | * |
| 63 | * @cyclic: Pointer to cyclic_struct of the function that shall be removed |
| 64 | * @return: 0 if OK, -ve on error |
| 65 | */ |
| 66 | int cyclic_unregister(struct cyclic_info *cyclic); |
| 67 | |
| 68 | /** |
Rasmus Villemoes | 50128ae | 2022-10-28 13:50:54 +0200 | [diff] [blame] | 69 | * cyclic_unregister_all() - Clean up cyclic functions |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 70 | * |
| 71 | * This removes all cyclic functions |
| 72 | */ |
Rasmus Villemoes | 50128ae | 2022-10-28 13:50:54 +0200 | [diff] [blame] | 73 | int cyclic_unregister_all(void); |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 74 | |
| 75 | /** |
| 76 | * cyclic_get_list() - Get cyclic list pointer |
| 77 | * |
| 78 | * Return the cyclic list pointer |
| 79 | * |
| 80 | * @return: pointer to cyclic_list |
| 81 | */ |
Rasmus Villemoes | 2896839 | 2022-10-28 13:50:53 +0200 | [diff] [blame] | 82 | struct hlist_head *cyclic_get_list(void); |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 83 | |
| 84 | /** |
| 85 | * cyclic_run() - Interate over all registered cyclic functions |
| 86 | * |
| 87 | * Interate over all registered cyclic functions and if the it's function |
| 88 | * needs to be executed, then call into these registered functions. |
| 89 | */ |
| 90 | void cyclic_run(void); |
Stefan Roese | 881d410 | 2022-09-02 14:10:45 +0200 | [diff] [blame] | 91 | |
| 92 | /** |
| 93 | * schedule() - Schedule all potentially waiting tasks |
| 94 | * |
| 95 | * Basically a wrapper for cyclic_run(), pontentially enhanced by some |
| 96 | * other parts, that need to get handled periodically. |
| 97 | */ |
| 98 | void schedule(void); |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 99 | #else |
| 100 | static inline struct cyclic_info *cyclic_register(cyclic_func_t func, |
| 101 | uint64_t delay_us, |
| 102 | const char *name, |
| 103 | void *ctx) |
| 104 | { |
| 105 | return NULL; |
| 106 | } |
| 107 | |
| 108 | static inline int cyclic_unregister(struct cyclic_info *cyclic) |
| 109 | { |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | static inline void cyclic_run(void) |
| 114 | { |
| 115 | } |
| 116 | |
Stefan Roese | 881d410 | 2022-09-02 14:10:45 +0200 | [diff] [blame] | 117 | static inline void schedule(void) |
| 118 | { |
| 119 | } |
| 120 | |
Rasmus Villemoes | 50128ae | 2022-10-28 13:50:54 +0200 | [diff] [blame] | 121 | static inline int cyclic_unregister_all(void) |
Stefan Roese | c2c6971 | 2022-09-02 13:57:48 +0200 | [diff] [blame] | 122 | { |
| 123 | return 0; |
| 124 | } |
| 125 | #endif |
| 126 | |
| 127 | #endif |