blob: bf34ac3f8620c9a9174ee3f015dced0ebbb0deff [file] [log] [blame]
Simon Glassaf95f202019-08-01 09:46:40 -06001/* 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/**
Simon Glassf1f0ae62019-08-01 09:46:41 -060015 * 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 */
22int env_get_id(void);
23
24/**
Simon Glass4bfd1f52019-08-01 09:46:43 -060025 * 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 */
32int env_init(void);
33
34/**
Simon Glass3f989e7b2019-08-01 09:46:44 -060035 * 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 */
40void env_relocate(void);
41
42/**
Simon Glassb9ca02c2019-08-01 09:46:45 -060043 * env_match() - Match a name / name=value pair
44 *
45 * This is used prior to relocation for finding envrionment variables
46 *
47 * @name: A simple 'name', or a 'name=value' pair.
48 * @index: The environment index for a 'name2=value2' pair.
49 * @return index for the value if the names match, else -1.
50 */
51int env_match(unsigned char *name, int index);
52
53/**
Simon Glass3a7d5572019-08-01 09:46:42 -060054 * env_get_f() - Look up the value of an environment variable (early)
55 *
56 * This function is called from env_get() if the environment has not been
57 * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will
58 * support reading the value (slowly) and some will not.
59 *
60 * @varname: Variable to look up
61 * @return value of variable, or NULL if not found
62 */
63int env_get_f(const char *name, char *buf, unsigned int len);
64
65/**
Simon Glassaf95f202019-08-01 09:46:40 -060066 * env_complete() - return an auto-complete for environment variables
67 *
68 * @var: partial name to auto-complete
69 * @maxv: Maximum number of matches to return
70 * @cmdv: Returns a list of possible matches
71 * @maxsz: Size of buffer to use for matches
72 * @buf: Buffer to use for matches
73 * @dollar_comp: non-zero to wrap each match in ${...}
74 * @return number of matches found (in @cmdv)
75 */
76int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf,
77 bool dollar_comp);
78
79#endif