2 * Copyright (C) 2017 Google, Inc
5 * SPDX-License-Identifier: GPL-2.0+
9 #include <environment.h>
11 DECLARE_GLOBAL_DATA_PTR;
13 static struct env_driver *_env_driver_lookup(enum env_location loc)
15 struct env_driver *drv;
16 const int n_ents = ll_entry_count(struct env_driver, env_driver);
17 struct env_driver *entry;
19 drv = ll_entry_start(struct env_driver, env_driver);
20 for (entry = drv; entry != drv + n_ents; entry++) {
21 if (loc == entry->location)
29 static enum env_location env_locations[] = {
30 #ifdef CONFIG_ENV_IS_IN_EEPROM
33 #ifdef CONFIG_ENV_IS_IN_EXT4
36 #ifdef CONFIG_ENV_IS_IN_FAT
39 #ifdef CONFIG_ENV_IS_IN_FLASH
42 #ifdef CONFIG_ENV_IS_IN_MMC
45 #ifdef CONFIG_ENV_IS_IN_NAND
48 #ifdef CONFIG_ENV_IS_IN_NVRAM
51 #ifdef CONFIG_ENV_IS_IN_REMOTE
54 #ifdef CONFIG_ENV_IS_IN_SPI_FLASH
57 #ifdef CONFIG_ENV_IS_IN_UBI
60 #ifdef CONFIG_ENV_IS_NOWHERE
65 static enum env_location env_load_location = ENVL_UNKNOWN;
68 * env_get_location() - Returns the best env location for a board
69 * @op: operations performed on the environment
70 * @prio: priority between the multiple environments, 0 being the
73 * This will return the preferred environment for the given priority.
75 * All implementations are free to use the operation, the priority and
76 * any other data relevant to their choice, but must take into account
77 * the fact that the lowest prority (0) is the most important location
78 * in the system. The following locations should be returned by order
79 * of descending priorities, from the highest to the lowest priority.
82 * an enum env_location value on success, a negative error code otherwise
84 static enum env_location env_get_location(enum env_operation op, int prio)
90 if (prio >= ARRAY_SIZE(env_locations))
93 env_load_location = env_locations[prio];
94 return env_load_location;
97 return env_load_location;
105 * env_driver_lookup() - Finds the most suited environment location
106 * @op: operations performed on the environment
107 * @prio: priority between the multiple environments, 0 being the
110 * This will try to find the available environment with the highest
111 * priority in the system.
114 * NULL on error, a pointer to a struct env_driver otherwise
116 static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
118 enum env_location loc = env_get_location(op, prio);
119 struct env_driver *drv;
121 if (loc == ENVL_UNKNOWN)
124 drv = _env_driver_lookup(loc);
126 debug("%s: No environment driver for location %d\n", __func__,
134 int env_get_char(int index)
136 struct env_driver *drv;
139 if (gd->env_valid == ENV_INVALID)
140 return default_environment[index];
142 for (prio = 0; (drv = env_driver_lookup(ENVOP_GET_CHAR, prio)); prio++) {
148 ret = drv->get_char(index);
152 debug("%s: Environment %s failed to load (err=%d)\n", __func__,
161 struct env_driver *drv;
164 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
170 printf("Loading Environment from %s... ", drv->name);
173 printf("Failed (%d)\n", ret);
186 struct env_driver *drv;
189 for (prio = 0; (drv = env_driver_lookup(ENVOP_SAVE, prio)); prio++) {
195 printf("Saving Environment to %s... ", drv->name);
198 printf("Failed (%d)\n", ret);
211 struct env_driver *drv;
215 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
223 debug("%s: Environment %s failed to init (err=%d)\n", __func__,
230 if (ret == -ENOENT) {
231 gd->env_addr = (ulong)&default_environment[0];
232 gd->env_valid = ENV_VALID;