diff options
author | Stefan Roese <sr@denx.de> | 2022-09-02 13:57:51 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-13 16:01:44 -0400 |
commit | 1f865ee0baa3009bda3d9dd7808d0473424fae11 (patch) | |
tree | f16a40b52e95ae7d138e923b48421dc907189cee /cmd/Kconfig | |
parent | 70545642a0fdc5d7eb1664174dbd4d06a1a62e81 (diff) | |
download | u-boot-1f865ee0baa3009bda3d9dd7808d0473424fae11.zip u-boot-1f865ee0baa3009bda3d9dd7808d0473424fae11.tar.gz u-boot-1f865ee0baa3009bda3d9dd7808d0473424fae11.tar.bz2 |
cyclic: Add 'cyclic list' and 'cyclic demo' commands
This patch adds the cyclic command, which currently only supports the
'list' subcommand, to list all currently registered cyclic functions.
Here an example:
=> cyclic list
function: cyclic_demo, cpu-time: 7010 us, frequency: 99.80 times/s
function: cyclic_demo2, cpu-time: 1 us, frequency: 1.13 times/s
As you can see, the cpu-time is accounted, so that cyclic functions
that take too long might be discovered. Additionally the frequency is
logged.
The 'cyclic demo' commands registers the cyclic_demo() function to
be executed all 'cycletime_ms' milliseconds. The only thing this
function does is delaying by 'delay_us' microseconds.
Signed-off-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 67c7d25..7d574d4 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2511,6 +2511,22 @@ config CMD_CBSYSINFO memory by coreboot before jumping to U-Boot. It can be useful for debugging the beaaviour of coreboot or U-Boot. +config CMD_CYCLIC + bool "cyclic - Show information about cyclic functions" + depends on CYCLIC + default y + help + This enables the 'cyclic' command which provides information about + cyclic execution functions. This infrastructure allows registering + functions to be executed cyclically, e.g. every 100ms. These commands + are supported: + + cyclic list - list cyclic functions + cyclic cyclic demo <cycletime_ms> <delay_us> - register cyclic + demo function + + See doc/develop/cyclic.rst for more details. + config CMD_DIAG bool "diag - Board diagnostics" help |