]> git.baikalelectronics.ru Git - uboot.git/commitdiff
event: Document dynamic event handlers
authorSimon Glass <sjg@chromium.org>
Fri, 20 Jan 2023 21:46:05 +0000 (14:46 -0700)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 27 Jan 2023 17:31:59 +0000 (18:31 +0100)
Add mention of this feature in the event documentation.

Signed-off-by: Simon Glass <sjg@chromium.org>
doc/develop/event.rst

index 6951ec97e775d9738491f0f382aa2b261d0433df..4ff59348371518ed506f687d70b62f9b35e08c3c 100644 (file)
@@ -64,3 +64,26 @@ in an image, use $(CROSS_COMPILE)nm::
 
     nm u-boot |grep evspy |grep list
     00000000002d6300 D _u_boot_list_2_evspy_info_2_EVT_MISC_INIT_F
+
+Logging is also available. Events use category `LOGC_EVENT`, so you can enable
+logging on that, or add `#define LOG_DEBUG` to the top of `common/event.c` to
+see events being sent.
+
+
+Dynamic events
+--------------
+
+Static events provide a way of dealing with events known at build time. In some
+cases we want to attach an event handler at runtime. For example, we may wish
+to be notified when a particular device is probed or removed.
+
+This can be handled by enabling `CONFIG_EVENT_DYNAMIC`. It is then possible to
+call `event_register()` to register a new handler for a particular event.
+
+Dynamic event handlers are called after all the static event spy handlers have
+been processed. Of course, since dynamic event handlers are created at runtime
+it is not possible to use the `event_dump.py` to see them.
+
+At present there is no way to list dynamic event handlers from the command line,
+nor to deregister a dynamic event handler. These features can be added when
+needed.