3 * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5 * SPDX-License-Identifier: GPL-2.0+
9 #include <environment.h>
11 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
12 DECLARE_GLOBAL_DATA_PTR;
16 * Look up a callback function pointer by name
18 static struct env_clbk_tbl *find_env_callback(const char *name)
20 struct env_clbk_tbl *clbkp;
22 int num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
27 /* look up the callback in the linker-list */
28 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
31 if (strcmp(name, clbkp->name) == 0)
39 * Look for a possible callback for a newly added variable
40 * This is called specifically when the variable did not exist in the hash
41 * previously, so the blanket update did not find this variable.
43 void env_callback_init(ENTRY *var_entry)
45 const char *var_name = var_entry->key;
46 const char *callback_list = getenv(ENV_CALLBACK_VAR);
47 char callback_name[256] = "";
48 struct env_clbk_tbl *clbkp;
51 /* look in the ".callbacks" var for a reference to this variable */
52 if (callback_list != NULL)
53 ret = env_attr_lookup(callback_list, var_name, callback_name);
55 /* only if not found there, look in the static list */
57 ret = env_attr_lookup(ENV_CALLBACK_LIST_STATIC, var_name,
60 /* if an association was found, set the callback pointer */
61 if (!ret && strlen(callback_name)) {
62 clbkp = find_env_callback(callback_name);
64 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
65 var_entry->callback = clbkp->callback + gd->reloc_off;
67 var_entry->callback = clbkp->callback;
73 * Called on each existing env var prior to the blanket update since removing
74 * a callback association should remove its callback.
76 static int clear_callback(ENTRY *entry)
78 entry->callback = NULL;
84 * Call for each element in the list that associates variables to callbacks
86 static int set_callback(const char *name, const char *value)
89 struct env_clbk_tbl *clbkp;
93 hsearch_r(e, FIND, &ep, &env_htab, 0);
95 /* does the env variable actually exist? */
97 /* the assocaition delares no callback, so remove the pointer */
98 if (value == NULL || strlen(value) == 0)
101 /* assign the requested callback */
102 clbkp = find_env_callback(value);
104 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
105 ep->callback = clbkp->callback + gd->reloc_off;
107 ep->callback = clbkp->callback;
115 static int on_callbacks(const char *name, const char *value, enum env_op op,
118 /* remove all callbacks */
119 hwalk_r(&env_htab, clear_callback);
121 /* configure any static callback bindings */
122 env_attr_walk(ENV_CALLBACK_LIST_STATIC, set_callback);
123 /* configure any dynamic callback bindings */
124 env_attr_walk(value, set_callback);
128 U_BOOT_ENV_CALLBACK(callbacks, on_callbacks);