diff options
author | Simon Glass <sjg@chromium.org> | 2024-07-31 08:44:11 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2024-07-31 16:55:25 +0200 |
commit | 47ef76d6dd23fa0a28608b4a5ff438dea7fa10db (patch) | |
tree | ca9ea8293d387d2c6f898dcec0f51347766d49d6 /common/Kconfig | |
parent | 5c8dddadf1c9218cf2d2bb2274a5b2e84555fd15 (diff) | |
download | u-boot-47ef76d6dd23fa0a28608b4a5ff438dea7fa10db.tar.gz u-boot-47ef76d6dd23fa0a28608b4a5ff438dea7fa10db.tar.bz2 u-boot-47ef76d6dd23fa0a28608b4a5ff438dea7fa10db.zip |
sandbox: Increase cyclic CPU-time limit
Now that sandbox is using cyclic for video, it trips the 1us time
limit. Updating the sandbox display often takes 20ms or more.
Increase the limit to 100ms to avoid a warning.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 87b0ec3ea8..83c81edac2 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -636,6 +636,7 @@ config SPL_CYCLIC config CYCLIC_MAX_CPU_TIME_US int "Sets the max allowed time for a cyclic function in us" + default 100000 if SANDBOX # sandbox video is quite slow default 5000 help The max allowed time for a cyclic function in us. If a functions |