blob: 311df878c4a551514a2676d726091da476395047 [file] [log] [blame]
Simon Glassaa4bce92022-03-04 08:43:00 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Events provide a general-purpose way to react to / subscribe to changes
4 * within U-Boot
5 *
6 * Copyright 2021 Google LLC
7 * Written by Simon Glass <sjg@chromium.org>
8 */
9
10#ifndef __event_h
11#define __event_h
12
Simon Glass4305fe72022-07-30 15:52:31 -060013#include <dm/ofnode_decl.h>
Christian Taedckedf369812023-07-20 09:27:24 +020014#include <linux/types.h>
Simon Glass4305fe72022-07-30 15:52:31 -060015
Simon Glassaa4bce92022-03-04 08:43:00 -070016/**
17 * enum event_t - Types of events supported by U-Boot
18 *
19 * @EVT_DM_PRE_PROBE: Device is about to be probed
20 */
21enum event_t {
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020022 /**
23 * @EVT_NONE: This zero value is not used for events.
24 */
25 EVT_NONE = 0,
26
27 /**
28 * @EVT_TEST: This event is used in unit tests.
29 */
Simon Glassaa4bce92022-03-04 08:43:00 -070030 EVT_TEST,
31
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020032 /**
33 * @EVT_DM_POST_INIT_F:
34 * This event is triggered after pre-relocation initialization of the
35 * driver model. Its parameter is NULL.
36 * A non-zero return code from the event handler let's the boot process
37 * fail.
38 */
Simon Glass93074012023-05-04 16:50:45 -060039 EVT_DM_POST_INIT_F,
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020040
41 /**
42 * @EVT_DM_POST_INIT_R:
43 * This event is triggered after post-relocation initialization of the
44 * driver model. Its parameter is NULL.
45 * A non-zero return code from the event handler let's the boot process
46 * fail.
47 */
Chanho Park5865a002023-08-18 14:11:02 +090048 EVT_DM_POST_INIT_R,
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020049
50 /**
51 * @EVT_DM_PRE_PROBE:
52 * This event is triggered before probing a device. Its parameter is the
53 * device to be probed.
54 * A non-zero return code from the event handler lets the device not
55 * being probed.
56 */
Simon Glass3ee337a2022-03-04 08:43:03 -070057 EVT_DM_PRE_PROBE,
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020058
59 /**
60 * @EVT_DM_POST_PROBE:
61 * This event is triggered after probing a device. Its parameter is the
62 * device that was probed.
63 * A non-zero return code from the event handler leaves the device in
64 * the unprobed state and therefore not usable.
65 */
Simon Glass3ee337a2022-03-04 08:43:03 -070066 EVT_DM_POST_PROBE,
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020067
68 /**
69 * @EVT_DM_PRE_REMOVE:
70 * This event is triggered after removing a device. Its parameter is
71 * the device to be removed.
72 * A non-zero return code from the event handler stops the removal of
73 * the device before any changes.
74 */
Simon Glass3ee337a2022-03-04 08:43:03 -070075 EVT_DM_PRE_REMOVE,
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020076
77 /**
78 * @EVT_DM_POST_REMOVE:
79 * This event is triggered before removing a device. Its parameter is
80 * the device that was removed.
81 * A non-zero return code stops from the event handler the removal of
82 * the device after all removal changes. The previous state is not
83 * restored. All children will be gone and the device may not be
84 * functional.
85 */
Simon Glass3ee337a2022-03-04 08:43:03 -070086 EVT_DM_POST_REMOVE,
87
Heinrich Schuchardtd999f612023-08-28 21:13:32 +020088 /**
89 * @EVT_MISC_INIT_F:
90 * This event is triggered during the initialization sequence before
91 * relocation. Its parameter is NULL.
92 * A non-zero return code from the event handler let's the boot process
93 * fail.
94 */
Simon Glassf1c51912022-03-04 08:43:04 -070095 EVT_MISC_INIT_F,
96
Tom Rini59e69332023-09-04 11:19:50 -040097 /**
98 * @EVT_FSP_INIT_F:
99 * This event is triggered before relocation to set up Firmware Support
100 * Package.
Simon Glassfcebb7b2023-08-21 21:16:59 -0600101 * Where U-Boot relies on binary blobs to handle part of the system
102 * init, this event can be used to set up the blobs. This is used on
103 * some Intel platforms
104 */
105 EVT_FSP_INIT_F,
106
Tom Rini59e69332023-09-04 11:19:50 -0400107 /**
108 * @EVT_LAST_STAGE_INIT:
109 * This event is triggered just before jumping to the main loop.
Simon Glass1cedca12023-08-21 21:17:01 -0600110 * Some boards need to perform initialisation immediately before control
111 * is passed to the command-line interpreter (e.g. for init that depend
112 * on later phases in the init sequence).
113 *
114 * Some parts can be only initialized if all others (like Interrupts)
115 * are up and running (e.g. the PC-style ISA keyboard).
116 */
117 EVT_LAST_STAGE_INIT,
118
Heinrich Schuchardtd999f612023-08-28 21:13:32 +0200119 /**
120 * @EVT_FPGA_LOAD:
121 * The FPGA load hook is called after loading an FPGA with a new binary.
122 * Its parameter is of type struct event_fpga_load and contains
123 * information about the loaded image.
124 */
Christian Taedckedf369812023-07-20 09:27:24 +0200125 EVT_FPGA_LOAD,
126
Heinrich Schuchardtd999f612023-08-28 21:13:32 +0200127 /**
128 * @EVT_FT_FIXUP:
129 * This event is triggered during device-tree fix up after all
130 * other device-tree fixups have been executed.
131 * Its parameter is of type struct event_ft_fixup which contains
132 * the address of the device-tree to fix up and the list of images to be
133 * booted.
134 * A non-zero return code from the event handler let's booting the
135 * images fail.
136 */
Simon Glass4305fe72022-07-30 15:52:31 -0600137 EVT_FT_FIXUP,
138
Heinrich Schuchardtd999f612023-08-28 21:13:32 +0200139 /**
140 * @EVT_MAIN_LOOP:
141 * This event is triggered immediately before calling main_loop() which
142 * is the entry point of the command line. Its parameter is NULL.
143 * A non-zero return value causes the boot to fail.
144 */
Sughosh Ganub780fa52022-10-21 18:16:01 +0530145 EVT_MAIN_LOOP,
146
Heinrich Schuchardtd999f612023-08-28 21:13:32 +0200147 /**
148 * @EVT_COUNT:
149 * This constants holds the maximum event number + 1 and is used when
150 * looping over all event classes.
151 */
Simon Glassaa4bce92022-03-04 08:43:00 -0700152 EVT_COUNT
153};
154
155union event_data {
156 /**
157 * struct event_data_test - test data
158 *
159 * @signal: A value to update the state with
160 */
161 struct event_data_test {
162 int signal;
163 } test;
Simon Glass3ee337a2022-03-04 08:43:03 -0700164
165 /**
166 * struct event_dm - driver model event
167 *
168 * @dev: Device this event relates to
169 */
170 struct event_dm {
171 struct udevice *dev;
172 } dm;
Simon Glass4305fe72022-07-30 15:52:31 -0600173
174 /**
Christian Taedckedf369812023-07-20 09:27:24 +0200175 * struct event_fpga_load - fpga load event
176 *
177 * @buf: The buffer that was loaded into the fpga
178 * @bsize: The size of the buffer that was loaded into the fpga
179 * @result: Result of the load operation
180 */
181 struct event_fpga_load {
182 const void *buf;
183 size_t bsize;
184 int result;
185 } fpga_load;
186
187 /**
Simon Glass4305fe72022-07-30 15:52:31 -0600188 * struct event_ft_fixup - FDT fixup before booting
189 *
190 * @tree: tree to update
Simon Glass74ba8e62022-09-06 20:26:58 -0600191 * @images: images which are being booted
Simon Glass4305fe72022-07-30 15:52:31 -0600192 */
193 struct event_ft_fixup {
194 oftree tree;
Simon Glass74ba8e62022-09-06 20:26:58 -0600195 struct bootm_headers *images;
Simon Glass4305fe72022-07-30 15:52:31 -0600196 } ft_fixup;
Simon Glassaa4bce92022-03-04 08:43:00 -0700197};
198
199/**
200 * struct event - an event that can be sent and received
201 *
202 * @type: Event type
203 * @data: Data for this particular event
204 */
205struct event {
206 enum event_t type;
207 union event_data data;
208};
209
Simon Glass3bfbedd2023-08-21 21:16:48 -0600210/* Flags for event spy */
211enum evspy_flags {
212 EVSPYF_SIMPLE = 1 << 0,
213};
214
Simon Glassaa4bce92022-03-04 08:43:00 -0700215/** Function type for event handlers */
216typedef int (*event_handler_t)(void *ctx, struct event *event);
217
Simon Glass3bfbedd2023-08-21 21:16:48 -0600218/** Function type for simple event handlers */
219typedef int (*event_handler_simple_t)(void);
220
Simon Glassaa4bce92022-03-04 08:43:00 -0700221/**
222 * struct evspy_info - information about an event spy
223 *
224 * @func: Function to call when the event is activated (must be first)
225 * @type: Event type
Tom Rini59e69332023-09-04 11:19:50 -0400226 * @flags: Flags for this spy
Simon Glassaa4bce92022-03-04 08:43:00 -0700227 * @id: Event id string
228 */
229struct evspy_info {
230 event_handler_t func;
Simon Glass3bfbedd2023-08-21 21:16:48 -0600231 u8 type;
232 u8 flags;
233#if CONFIG_IS_ENABLED(EVENT_DEBUG)
234 const char *id;
235#endif
236};
237
238/**
239 * struct evspy_info_simple - information about an event spy
240 *
241 * THis is the 'simple' record, the only difference being the handler function
242 *
243 * @func: Function to call when the event is activated (must be first)
244 * @type: Event type
Tom Rini59e69332023-09-04 11:19:50 -0400245 * @flags: Flags for this spy
Simon Glass3bfbedd2023-08-21 21:16:48 -0600246 * @id: Event id string
247 */
248struct evspy_info_simple {
249 event_handler_simple_t func;
250 u8 type;
251 u8 flags;
Simon Glassaa4bce92022-03-04 08:43:00 -0700252#if CONFIG_IS_ENABLED(EVENT_DEBUG)
253 const char *id;
254#endif
255};
256
257/* Declare a new event spy */
258#if CONFIG_IS_ENABLED(EVENT_DEBUG)
Simon Glass3bfbedd2023-08-21 21:16:48 -0600259#define _ESPY_REC(_type, _func) { _func, _type, 0, #_func, }
260#define _ESPY_REC_SIMPLE(_type, _func) { _func, _type, EVSPYF_SIMPLE, #_func, }
Simon Glassaa4bce92022-03-04 08:43:00 -0700261#else
262#define _ESPY_REC(_type, _func) { _func, _type, }
Simon Glass3bfbedd2023-08-21 21:16:48 -0600263#define _ESPY_REC_SIMPLE(_type, _func) { _func, _type, EVSPYF_SIMPLE }
Simon Glassaa4bce92022-03-04 08:43:00 -0700264#endif
265
266static inline const char *event_spy_id(struct evspy_info *spy)
267{
268#if CONFIG_IS_ENABLED(EVENT_DEBUG)
269 return spy->id;
270#else
271 return "?";
272#endif
273}
274
275/*
276 * It seems that LTO will drop list entries if it decides they are not used,
277 * although the conditions that cause this are unclear.
278 *
279 * The example found is the following:
280 *
281 * static int sandbox_misc_init_f(void *ctx, struct event *event)
282 * {
283 * return sandbox_early_getopt_check();
284 * }
285 * EVENT_SPY(EVT_MISC_INIT_F, sandbox_misc_init_f);
286 *
287 * where EVENT_SPY uses ll_entry_declare()
288 *
289 * In this case, LTO decides to drop the sandbox_misc_init_f() function
290 * (which is fine) but then drops the linker-list entry too. This means
291 * that the code no longer works, in this case sandbox no-longer checks its
292 * command-line arguments properly.
293 *
294 * Without LTO, the KEEP() command in the .lds file is enough to keep the
295 * entry around. But with LTO it seems that the entry has already been
296 * dropped before the link script is considered.
297 *
298 * The only solution I can think of is to mark linker-list entries as 'used'
299 * using an attribute. This should be safe, since we don't actually want to drop
300 * any of these. However this does slightly limit LTO's optimisation choices.
Simon Glass1fd91682022-07-30 15:52:30 -0600301 *
302 * Another issue has come up, only with clang: using 'static' makes it throw
303 * away the linker-list entry sometimes, e.g. with the EVT_FT_FIXUP entry in
304 * vbe_simple.c - so for now, make it global.
Simon Glassaa4bce92022-03-04 08:43:00 -0700305 */
Simon Glassa41134f2023-08-21 21:16:57 -0600306#define EVENT_SPY_FULL(_type, _func) \
Simon Glassb169e212022-09-06 20:26:56 -0600307 __used ll_entry_declare(struct evspy_info, _type ## _3_ ## _func, \
308 evspy_info) = _ESPY_REC(_type, _func)
Simon Glassaa4bce92022-03-04 08:43:00 -0700309
Simon Glass3bfbedd2023-08-21 21:16:48 -0600310/* Simple spy with no function arguemnts */
311#define EVENT_SPY_SIMPLE(_type, _func) \
312 __used ll_entry_declare(struct evspy_info_simple, \
313 _type ## _3_ ## _func, \
314 evspy_info) = _ESPY_REC_SIMPLE(_type, _func)
315
Simon Glassaa4bce92022-03-04 08:43:00 -0700316/**
317 * event_register - register a new spy
318 *
319 * @id: Spy ID
320 * @type: Event type to subscribe to
321 * @func: Function to call when the event is sent
322 * @ctx: Context to pass to the function
323 * @return 0 if OK, -ve on error
324 */
325int event_register(const char *id, enum event_t type, event_handler_t func,
326 void *ctx);
327
Simon Glass3304fa82022-03-04 08:43:06 -0700328/** event_show_spy_list( - Show a list of event spies */
329void event_show_spy_list(void);
330
Simon Glassaa4bce92022-03-04 08:43:00 -0700331/**
Ovidiu Panait145f2002022-05-15 21:40:29 +0300332 * event_manual_reloc() - Relocate event handler pointers
333 *
334 * Relocate event handler pointers for all static event spies. It is called
335 * during the generic board init sequence, after relocation.
336 *
337 * Return: 0 if OK
338 */
339int event_manual_reloc(void);
340
341/**
Simon Glassd6db8942023-08-21 21:16:53 -0600342 * event_type_name() - Get the name of an event type
343 *
344 * @type: Type to check
345 * Return: Name of event, or "(unknown)" if not known
346 */
347const char *event_type_name(enum event_t type);
348
349/**
Simon Glassaa4bce92022-03-04 08:43:00 -0700350 * event_notify() - notify spies about an event
351 *
352 * It is possible to pass in union event_data here but that may not be
353 * convenient if the data is elsewhere, or is one of the members of the union.
354 * So this uses a void * for @data, with a separate @size.
355 *
356 * @type: Event type
357 * @data: Event data to be sent (e.g. union_event_data)
358 * @size: Size of data in bytes
359 * @return 0 if OK, -ve on error
360 */
361int event_notify(enum event_t type, void *data, int size);
362
Heinrich Schuchardtc95a50e2022-05-07 22:39:01 +0200363#if CONFIG_IS_ENABLED(EVENT)
Simon Glassaa4bce92022-03-04 08:43:00 -0700364/**
365 * event_notify_null() - notify spies about an event
366 *
367 * Data is NULL and the size is 0
368 *
369 * @type: Event type
370 * @return 0 if OK, -ve on error
371 */
372int event_notify_null(enum event_t type);
373#else
Simon Glassaa4bce92022-03-04 08:43:00 -0700374static inline int event_notify_null(enum event_t type)
375{
376 return 0;
377}
378#endif
379
380#if CONFIG_IS_ENABLED(EVENT_DYNAMIC)
381/**
382 * event_uninit() - Clean up dynamic events
383 *
384 * This removes all dynamic event handlers
385 */
386int event_uninit(void);
387
388/**
389 * event_uninit() - Set up dynamic events
390 *
391 * Init a list of dynamic event handlers, so that these can be added as
392 * needed
393 */
394int event_init(void);
395#else
396static inline int event_uninit(void)
397{
398 return 0;
399}
400
401static inline int event_init(void)
402{
403 return 0;
404}
405#endif
406
407#endif