1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Common environment functions and definitions
5 * (C) Copyright 2000-2009
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
14 #include <linux/types.h>
18 /* Value for environment validity */
20 ENV_INVALID, /* No valid environment */
21 ENV_VALID, /* First or only environment is valid */
22 ENV_REDUND, /* Redundant environment is valid */
25 /** enum env_op - environment callback operation */
32 /** struct env_clbk_tbl - declares a new callback */
34 const char *name; /* Callback name */
35 int (*callback)(const char *name, const char *value, enum env_op op,
40 * Define a callback that can be associated with variables.
41 * when associated through the ".callbacks" environment variable, the callback
42 * will be executed any time the variable is inserted, overwritten, or deleted.
44 * For SPL these are silently dropped to reduce code size, since environment
45 * callbacks are not supported with SPL.
47 #ifdef CONFIG_SPL_BUILD
48 #define U_BOOT_ENV_CALLBACK(name, callback) \
49 static inline __maybe_unused void _u_boot_env_noop_##name(void) \
54 #define U_BOOT_ENV_CALLBACK(name, callback) \
55 ll_entry_declare(struct env_clbk_tbl, name, env_clbk) = \
59 /** enum env_redund_flags - Flags for the redundand_environment */
60 enum env_redund_flags {
61 ENV_REDUND_OBSOLETE = 0,
62 ENV_REDUND_ACTIVE = 1,
66 * env_get_id() - Gets a sequence number for the environment
68 * This value increments every time the environment changes, so can be used an
69 * an indication of this
71 * Return: environment ID
76 * env_init() - Set up the pre-relocation environment
78 * This locates the environment or uses the default if nothing is available.
79 * This must be called before env_get() will work.
81 * Return: 0 if OK, -ENODEV if no environment drivers are enabled
86 * env_relocate() - Set up the post-relocation environment
88 * This loads the environment into RAM so that it can be modified. This is
89 * called after relocation, before the environment is used
91 void env_relocate(void);
94 * env_get() - Look up the value of an environment variable
96 * In U-Boot proper this can be called before relocation (which is when the
97 * environment is loaded from storage, i.e. GD_FLG_ENV_READY is 0). In that
98 * case this function calls env_get_f().
100 * @varname: Variable to look up
101 * Return: value of variable, or NULL if not found
103 char *env_get(const char *varname);
106 * Like env_get, but prints an error if envvar isn't defined in the
107 * environment. It always returns what env_get does, so it can be used in
108 * place of env_get without changing error handling otherwise.
110 * @varname: Variable to look up
111 * Return: value of variable, or NULL if not found
113 char *from_env(const char *envvar);
116 * env_get_f() - Look up the value of an environment variable (early)
118 * This function is called from env_get() if the environment has not been
119 * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will
120 * support reading the value (slowly) and some will not.
122 * @varname: Variable to look up
123 * Return: actual length of the variable value excluding the terminating
124 * NULL-byte, or -1 if the variable is not found
126 int env_get_f(const char *name, char *buf, unsigned int len);
129 * env_get_yesno() - Read an environment variable as a boolean
131 * Return: 1 if yes/true (Y/y/T/t), -1 if variable does not exist (i.e. default
132 * to true), 0 if otherwise
134 int env_get_yesno(const char *var);
137 * env_get_autostart() - Check if autostart is enabled
139 * Return: true if the "autostart" env var exists and is set to "yes"
141 bool env_get_autostart(void);
144 * env_set() - set an environment variable
146 * This sets or deletes the value of an environment variable. For setting the
147 * value the variable is created if it does not already exist.
149 * @varname: Variable to adjust
150 * @value: Value to set for the variable, or NULL or "" to delete the variable
151 * Return: 0 if OK, 1 on error
153 int env_set(const char *varname, const char *value);
156 * env_get_ulong() - Return an environment variable as an integer value
158 * Most U-Boot environment variables store hex values. For those which store
159 * (e.g.) base-10 integers, this function can be used to read the value.
161 * @name: Variable to look up
162 * @base: Base to use (e.g. 10 for base 10, 2 for binary)
163 * @default_val: Default value to return if no value is found
164 * Return: the value found, or @default_val if none
166 ulong env_get_ulong(const char *name, int base, ulong default_val);
169 * env_set_ulong() - set an environment variable to an integer
171 * @varname: Variable to adjust
172 * @value: Value to set for the variable (will be converted to a string)
173 * Return: 0 if OK, 1 on error
175 int env_set_ulong(const char *varname, ulong value);
178 * env_get_hex() - Return an environment variable as a hex value
180 * Decode an environment as a hex number (it may or may not have a 0x
181 * prefix). If the environment variable cannot be found, or does not start
182 * with hex digits, the default value is returned.
184 * @varname: Variable to decode
185 * @default_val: Value to return on error
187 ulong env_get_hex(const char *varname, ulong default_val);
190 * env_set_hex() - set an environment variable to a hex value
192 * @varname: Variable to adjust
193 * @value: Value to set for the variable (will be converted to a hex string)
194 * Return: 0 if OK, 1 on error
196 int env_set_hex(const char *varname, ulong value);
199 * env_set_addr - Set an environment variable to an address in hex
201 * @varname: Environment variable to set
202 * @addr: Value to set it to
203 * Return: 0 if ok, 1 on error
205 static inline int env_set_addr(const char *varname, const void *addr)
207 return env_set_hex(varname, (ulong)addr);
211 * env_complete() - return an auto-complete for environment variables
213 * @var: partial name to auto-complete
214 * @maxv: Maximum number of matches to return
215 * @cmdv: Returns a list of possible matches
216 * @maxsz: Size of buffer to use for matches
217 * @buf: Buffer to use for matches
218 * @dollar_comp: non-zero to wrap each match in ${...}
219 * Return: number of matches found (in @cmdv)
221 int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf,
225 * eth_env_get_enetaddr() - Get an ethernet address from the environmnet
227 * @name: Environment variable to get (e.g. "ethaddr")
228 * @enetaddr: Place to put MAC address (6 bytes)
229 * Return: 1 if OK, 0 on error
231 int eth_env_get_enetaddr(const char *name, uint8_t *enetaddr);
234 * eth_env_set_enetaddr() - Set an ethernet address in the environmnet
236 * @name: Environment variable to set (e.g. "ethaddr")
237 * @enetaddr: Pointer to MAC address to put into the variable (6 bytes)
238 * Return: 0 if OK, non-zero otherwise
240 int eth_env_set_enetaddr(const char *name, const uint8_t *enetaddr);
243 * env_fix_drivers() - Updates envdriver as per relocation
245 void env_fix_drivers(void);
248 * env_set_default_vars() - reset variables to their default value
250 * This resets individual variables to their value in the default environment
252 * @nvars: Number of variables to set/reset
253 * @vars: List of variables to set/reset
254 * @flags: Flags controlling matching (H_... - see search.h)
256 int env_set_default_vars(int nvars, char *const vars[], int flags);
259 * env_load() - Load the environment from storage
261 * Return: 0 if OK, -ve on error
266 * env_reload() - Re-Load the environment from current storage
268 * Return: 0 if OK, -ve on error
270 int env_reload(void);
273 * env_save() - Save the environment to storage
275 * Return: 0 if OK, -ve on error
280 * env_erase() - Erase the environment on storage
282 * Return: 0 if OK, -ve on error
287 * env_select() - Select the environment storage
289 * Return: 0 if OK, -ve on error
291 int env_select(const char *name);
294 * env_import() - Import from a binary representation into hash table
296 * This imports the environment from a buffer. The format for each variable is
297 * var=value\0 with a double \0 at the end of the buffer.
299 * @buf: Buffer containing the environment (struct environemnt_s *)
300 * @check: non-zero to check the CRC at the start of the environment, 0 to
302 * @flags: Flags controlling matching (H_... - see search.h)
303 * Return: 0 if imported successfully, -ENOMSG if the CRC was bad, -EIO if
304 * something else went wrong
306 int env_import(const char *buf, int check, int flags);
309 * env_export() - Export the environment to a buffer
311 * Export from hash table into binary representation
313 * @env_out: Buffer to contain the environment (must be large enough!)
314 * Return: 0 if OK, 1 on error
316 int env_export(struct environment_s *env_out);
319 * env_check_redund() - check the two redundant environments
320 * and find out, which is the valid one.
322 * @buf1: First environment (struct environemnt_s *)
323 * @buf1_read_fail: 0 if buf1 is valid, non-zero if invalid
324 * @buf2: Second environment (struct environemnt_s *)
325 * @buf2_read_fail: 0 if buf2 is valid, non-zero if invalid
327 * -EIO if no environment is valid,
328 * -ENOMSG if the CRC was bad
331 int env_check_redund(const char *buf1, int buf1_read_fail,
332 const char *buf2, int buf2_read_fail);
335 * env_import_redund() - Select and import one of two redundant environments
337 * @buf1: First environment (struct environemnt_s *)
338 * @buf1_read_fail: 0 if buf1 is valid, non-zero if invalid
339 * @buf2: Second environment (struct environemnt_s *)
340 * @buf2_read_fail: 0 if buf2 is valid, non-zero if invalid
341 * @flags: Flags controlling matching (H_... - see search.h)
342 * Return: 0 if OK, -EIO if no environment is valid, -ENOMSG if the CRC was bad
344 int env_import_redund(const char *buf1, int buf1_read_fail,
345 const char *buf2, int buf2_read_fail,
349 * env_get_default() - Look up a variable from the default environment
351 * @name: Variable to look up
352 * Return: value if found, NULL if not found in default environment
354 char *env_get_default(const char *name);
356 /* [re]set to the default environment */
357 void env_set_default(const char *s, int flags);
360 * env_reloc() - Relocate the 'env' sub-commands
362 * This is used for those unfortunate archs with crappy toolchains
364 void env_reloc(void);
368 * env_import_fdt() - Import environment values from device tree blob
370 * This uses the value of the environment variable "env_fdt_path" as a
371 * path to an fdt node, whose property/value pairs are added to the
374 #ifdef CONFIG_ENV_IMPORT_FDT
375 void env_import_fdt(void);
377 static inline void env_import_fdt(void) {}