env: Move env_relocate() to env.h
[platform/kernel/u-boot.git] / include / env.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Common environment functions
4  *
5  * (C) Copyright 2000-2009
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  */
8
9 #ifndef __ENV_H
10 #define __ENV_H
11
12 #include <stdbool.h>
13
14 /**
15  * env_get_id() - Gets a sequence number for the environment
16  *
17  * This value increments every time the environment changes, so can be used an
18  * an indication of this
19  *
20  * @return environment ID
21  */
22 int env_get_id(void);
23
24 /**
25  * env_init() - Set up the pre-relocation environment
26  *
27  * This locates the environment or uses the default if nothing is available.
28  * This must be called before env_get() will work.
29  *
30  * @return 0 if OK, -ENODEV if no environment drivers are enabled
31  */
32 int env_init(void);
33
34 /**
35  * env_relocate() - Set up the post-relocation environment
36  *
37  * This loads the environment into RAM so that it can be modified. This is
38  * called after relocation, before the environment is used
39  */
40 void env_relocate(void);
41
42 /**
43  * env_get_f() - Look up the value of an environment variable (early)
44  *
45  * This function is called from env_get() if the environment has not been
46  * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will
47  * support reading the value (slowly) and some will not.
48  *
49  * @varname:    Variable to look up
50  * @return value of variable, or NULL if not found
51  */
52 int env_get_f(const char *name, char *buf, unsigned int len);
53
54 /**
55  * env_complete() - return an auto-complete for environment variables
56  *
57  * @var: partial name to auto-complete
58  * @maxv: Maximum number of matches to return
59  * @cmdv: Returns a list of possible matches
60  * @maxsz: Size of buffer to use for matches
61  * @buf: Buffer to use for matches
62  * @dollar_comp: non-zero to wrap each match in ${...}
63  * @return number of matches found (in @cmdv)
64  */
65 int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf,
66                  bool dollar_comp);
67
68 #endif