3 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5 * SPDX-License-Identifier: GPL-2.0+
8 #ifndef __ENV_CALLBACK_H__
9 #define __ENV_CALLBACK_H__
11 #include <env_flags.h>
12 #include <linker_lists.h>
15 #define ENV_CALLBACK_VAR ".callbacks"
17 /* Board configs can define additional static callback bindings */
18 #ifndef CONFIG_ENV_CALLBACK_LIST_STATIC
19 #define CONFIG_ENV_CALLBACK_LIST_STATIC
22 #ifdef CONFIG_SILENT_CONSOLE
23 #define SILENT_CALLBACK "silent:silent,"
25 #define SILENT_CALLBACK
28 #ifdef CONFIG_SPLASHIMAGE_GUARD
29 #define SPLASHIMAGE_CALLBACK "splashimage:splashimage,"
31 #define SPLASHIMAGE_CALLBACK
35 #define ENV_DOT_ESCAPE "\\"
36 #define ETHADDR_WILDCARD "\\d?"
38 #define ENV_DOT_ESCAPE
39 #define ETHADDR_WILDCARD
43 #define DNS_CALLBACK "dnsip:dnsip,"
49 #define NET_CALLBACKS \
50 "bootfile:bootfile," \
52 "gatewayip:gatewayip," \
54 "serverip:serverip," \
58 "eth" ETHADDR_WILDCARD "addr:ethaddr,"
64 * This list of callback bindings is static, but may be overridden by defining
65 * a new association in the ".callbacks" environment variable.
67 #define ENV_CALLBACK_LIST_STATIC ENV_DOT_ESCAPE ENV_CALLBACK_VAR ":callbacks," \
68 ENV_DOT_ESCAPE ENV_FLAGS_VAR ":flags," \
69 "baudrate:baudrate," \
71 "loadaddr:loadaddr," \
73 SPLASHIMAGE_CALLBACK \
74 "stdin:console,stdout:console,stderr:console," \
75 CONFIG_ENV_CALLBACK_LIST_STATIC
78 const char *name; /* Callback name */
79 int (*callback)(const char *name, const char *value, enum env_op op,
83 void env_callback_init(ENTRY *var_entry);
86 * Define a callback that can be associated with variables.
87 * when associated through the ".callbacks" environment variable, the callback
88 * will be executed any time the variable is inserted, overwritten, or deleted.
90 #ifdef CONFIG_SPL_BUILD
91 #define U_BOOT_ENV_CALLBACK(name, callback) \
92 static inline __maybe_unused void _u_boot_env_noop_##name(void) \
97 #define U_BOOT_ENV_CALLBACK(name, callback) \
98 ll_entry_declare(struct env_clbk_tbl, name, env_clbk) = \
102 #endif /* __ENV_CALLBACK_H__ */