1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
7 #ifndef __ENV_CALLBACK_H__
8 #define __ENV_CALLBACK_H__
10 #include <env_flags.h>
11 #include <linker_lists.h>
14 #define ENV_CALLBACK_VAR ".callbacks"
16 /* Board configs can define additional static callback bindings */
17 #ifndef CONFIG_ENV_CALLBACK_LIST_STATIC
18 #define CONFIG_ENV_CALLBACK_LIST_STATIC
21 #ifdef CONFIG_SILENT_CONSOLE
22 #define SILENT_CALLBACK "silent:silent,"
24 #define SILENT_CALLBACK
28 #define ENV_DOT_ESCAPE "\\"
30 #define ENV_DOT_ESCAPE
34 #define DNS_CALLBACK "dnsip:dnsip,"
40 #define NET_CALLBACKS \
41 "bootfile:bootfile," \
43 "gatewayip:gatewayip," \
45 "serverip:serverip," \
49 "eth" ETHADDR_WILDCARD "addr:ethaddr,"
55 #define BOOTSTD_CALLBACK "bootmeths:bootmeths,"
57 #define BOOTSTD_CALLBACK
61 * This list of callback bindings is static, but may be overridden by defining
62 * a new association in the ".callbacks" environment variable.
64 #define ENV_CALLBACK_LIST_STATIC ENV_DOT_ESCAPE ENV_CALLBACK_VAR ":callbacks," \
65 ENV_DOT_ESCAPE ENV_FLAGS_VAR ":flags," \
66 "baudrate:baudrate," \
69 "loadaddr:loadaddr," \
71 "stdin:console,stdout:console,stderr:console," \
73 CONFIG_ENV_CALLBACK_LIST_STATIC
75 #ifndef CONFIG_SPL_BUILD
76 void env_callback_init(struct env_entry *var_entry);
78 static inline void env_callback_init(struct env_entry *var_entry)
83 #endif /* __ENV_CALLBACK_H__ */