aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-22 09:33:57 -0700
committerTom Rini <trini@konsulko.com>2023-03-02 15:32:26 -0500
commit073424a80acd6a6918c41458b939b3340376a862 (patch)
treebe50c8d941c43b4b71ad07928dcedd06ac1c178c
parentbe22501c59650b866932d83f81eb3d0bc0f3ff77 (diff)
downloadu-boot-073424a80acd6a6918c41458b939b3340376a862.zip
u-boot-073424a80acd6a6918c41458b939b3340376a862.tar.gz
u-boot-073424a80acd6a6918c41458b939b3340376a862.tar.bz2
event: Add Kconfig options for SPL
Add options to enable events in SPL. This is mostly so the code can be excluded from SPL builds. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--common/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 866e3b1..35e986c 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -630,6 +630,26 @@ config EVENT_DEBUG
events, such as event-type names. This adds to the code size of
U-Boot so can be turned off for production builds.
+config SPL_EVENT
+ bool # General-purpose event-handling mechanism in SPL
+ depends on SPL
+ help
+ This adds a framework for general purpose sending and processing of
+ events, to allow interested parties to be alerted when something
+ happens. This is an attempt to stem the flow of weak functions,
+ hooks, functions in board_f.c and board_r.c and the Kconfig options
+ below.
+
+ See doc/develop/event.rst for more information.
+
+config SPL_EVENT_DYNAMIC
+ bool
+ depends on SPL_EVENT && EVENT_DYNAMIC
+ help
+ Enable this to support adding an event spy at runtime, without adding
+ it to the EVENT_SPY() linker list. This increases code size slightly
+ but provides more flexibility for boards and subsystems that need it.
+
endif # EVENT
config ARCH_EARLY_INIT_R