blob: 196797fd61ec41c5e4cf49a2cae2f45b60ee41f3 [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#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>
Rasmus Villemoescde8c952024-10-03 23:27:51 +020018#include <u-boot/schedule.h>
Stefan Roese036f89a2022-09-02 13:57:48 +020019
20DECLARE_GLOBAL_DATA_PTR;
21
Stefan Roese97473632022-09-02 14:10:45 +020022void hw_watchdog_reset(void);
23
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +020024struct hlist_head *cyclic_get_list(void)
Stefan Roese036f89a2022-09-02 13:57:48 +020025{
Rasmus Villemoesc794e492022-10-28 13:50:54 +020026 /* Silence "discards 'volatile' qualifier" warning. */
27 return (struct hlist_head *)&gd->cyclic_list;
Stefan Roese036f89a2022-09-02 13:57:48 +020028}
29
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020030void cyclic_register(struct cyclic_info *cyclic, cyclic_func_t func,
31 uint64_t delay_us, const char *name)
Stefan Roese036f89a2022-09-02 13:57:48 +020032{
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020033 memset(cyclic, 0, sizeof(*cyclic));
Stefan Roese036f89a2022-09-02 13:57:48 +020034
35 /* Store values in struct */
36 cyclic->func = func;
Rasmus Villemoesd84e2912024-05-21 10:46:50 +020037 cyclic->name = name;
Stefan Roese036f89a2022-09-02 13:57:48 +020038 cyclic->delay_us = delay_us;
39 cyclic->start_time_us = timer_get_us();
Rasmus Villemoesc794e492022-10-28 13:50:54 +020040 hlist_add_head(&cyclic->list, cyclic_get_list());
Stefan Roese036f89a2022-09-02 13:57:48 +020041}
42
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020043void cyclic_unregister(struct cyclic_info *cyclic)
Stefan Roese036f89a2022-09-02 13:57:48 +020044{
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +020045 hlist_del(&cyclic->list);
Stefan Roese036f89a2022-09-02 13:57:48 +020046}
47
Rasmus Villemoes3c27ef62024-10-03 23:27:56 +020048static void cyclic_run(void)
Stefan Roese036f89a2022-09-02 13:57:48 +020049{
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +020050 struct cyclic_info *cyclic;
51 struct hlist_node *tmp;
Stefan Roese036f89a2022-09-02 13:57:48 +020052 uint64_t now, cpu_time;
53
54 /* Prevent recursion */
Rasmus Villemoese2ff5fc2022-10-28 13:50:50 +020055 if (gd->flags & GD_FLG_CYCLIC_RUNNING)
Stefan Roese036f89a2022-09-02 13:57:48 +020056 return;
57
Rasmus Villemoese2ff5fc2022-10-28 13:50:50 +020058 gd->flags |= GD_FLG_CYCLIC_RUNNING;
Rasmus Villemoesc794e492022-10-28 13:50:54 +020059 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list) {
Stefan Roese036f89a2022-09-02 13:57:48 +020060 /*
61 * Check if this cyclic function needs to get called, e.g.
62 * do not call the cyclic func too often
63 */
64 now = timer_get_us();
65 if (time_after_eq64(now, cyclic->next_call)) {
66 /* Call cyclic function and account it's cpu-time */
67 cyclic->next_call = now + cyclic->delay_us;
Rasmus Villemoesea36ada2024-05-21 10:46:52 +020068 cyclic->func(cyclic);
Stefan Roese036f89a2022-09-02 13:57:48 +020069 cyclic->run_cnt++;
70 cpu_time = timer_get_us() - now;
71 cyclic->cpu_time_us += cpu_time;
72
73 /* Check if cpu-time exceeds max allowed time */
Stefan Roese75b0d962022-10-17 09:00:58 +020074 if ((cpu_time > CONFIG_CYCLIC_MAX_CPU_TIME_US) &&
75 (!cyclic->already_warned)) {
76 pr_err("cyclic function %s took too long: %lldus vs %dus max\n",
Stefan Roese036f89a2022-09-02 13:57:48 +020077 cyclic->name, cpu_time,
78 CONFIG_CYCLIC_MAX_CPU_TIME_US);
79
Stefan Roese75b0d962022-10-17 09:00:58 +020080 /*
81 * Don't disable this function, just warn once
82 * about this exceeding CPU time usage
83 */
84 cyclic->already_warned = true;
Stefan Roese036f89a2022-09-02 13:57:48 +020085 }
86 }
87 }
Rasmus Villemoese2ff5fc2022-10-28 13:50:50 +020088 gd->flags &= ~GD_FLG_CYCLIC_RUNNING;
Stefan Roese036f89a2022-09-02 13:57:48 +020089}
90
Stefan Roese97473632022-09-02 14:10:45 +020091void schedule(void)
92{
93 /* The HW watchdog is not integrated into the cyclic IF (yet) */
94 if (IS_ENABLED(CONFIG_HW_WATCHDOG))
95 hw_watchdog_reset();
96
97 /*
98 * schedule() might get called very early before the cyclic IF is
99 * ready. Make sure to only call cyclic_run() when it's initalized.
100 */
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200101 if (gd)
Stefan Roese97473632022-09-02 14:10:45 +0200102 cyclic_run();
103}
104
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200105int cyclic_unregister_all(void)
Stefan Roese036f89a2022-09-02 13:57:48 +0200106{
Rasmus Villemoes85c2aa82022-10-28 13:50:53 +0200107 struct cyclic_info *cyclic;
108 struct hlist_node *tmp;
Stefan Roese036f89a2022-09-02 13:57:48 +0200109
Rasmus Villemoesc794e492022-10-28 13:50:54 +0200110 hlist_for_each_entry_safe(cyclic, tmp, cyclic_get_list(), list)
Stefan Roese036f89a2022-09-02 13:57:48 +0200111 cyclic_unregister(cyclic);
Stefan Roese036f89a2022-09-02 13:57:48 +0200112
113 return 0;
114}