]> git.ipfire.org Git - people/ms/u-boot.git/blame - env/env.c
env: Fix env_load_location
[people/ms/u-boot.git] / env / env.c
CommitLineData
c9d728dd
SG
1/*
2 * Copyright (C) 2017 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <environment.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
52746c43 13static struct env_driver *_env_driver_lookup(enum env_location loc)
c9d728dd
SG
14{
15 struct env_driver *drv;
16 const int n_ents = ll_entry_count(struct env_driver, env_driver);
17 struct env_driver *entry;
18
19 drv = ll_entry_start(struct env_driver, env_driver);
20 for (entry = drv; entry != drv + n_ents; entry++) {
21 if (loc == entry->location)
22 return entry;
23 }
24
25 /* Not found */
26 return NULL;
27}
28
7d714a24
MR
29static enum env_location env_locations[] = {
30#ifdef CONFIG_ENV_IS_IN_EEPROM
31 ENVL_EEPROM,
32#endif
33#ifdef CONFIG_ENV_IS_IN_EXT4
34 ENVL_EXT4,
35#endif
36#ifdef CONFIG_ENV_IS_IN_FAT
37 ENVL_FAT,
38#endif
39#ifdef CONFIG_ENV_IS_IN_FLASH
40 ENVL_FLASH,
41#endif
42#ifdef CONFIG_ENV_IS_IN_MMC
43 ENVL_MMC,
44#endif
45#ifdef CONFIG_ENV_IS_IN_NAND
46 ENVL_NAND,
47#endif
48#ifdef CONFIG_ENV_IS_IN_NVRAM
49 ENVL_NVRAM,
50#endif
51#ifdef CONFIG_ENV_IS_IN_REMOTE
52 ENVL_REMOTE,
53#endif
54#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
55 ENVL_SPI_FLASH,
56#endif
57#ifdef CONFIG_ENV_IS_IN_UBI
58 ENVL_UBI,
59#endif
60#ifdef CONFIG_ENV_IS_NOWHERE
61 ENVL_NOWHERE,
62#endif
63};
64
1d446087
MR
65static bool env_has_inited(enum env_location location)
66{
67 return gd->env_has_init & BIT(location);
68}
69
70static void env_set_inited(enum env_location location)
71{
72 /*
73 * We're using a 32-bits bitmask stored in gd (env_has_init)
74 * using the above enum value as the bit index. We need to
75 * make sure that we're not overflowing it.
76 */
77 BUILD_BUG_ON(ARRAY_SIZE(env_locations) > BITS_PER_LONG);
78
79 gd->env_has_init |= BIT(location);
80}
81
8a3a7e22
MR
82/**
83 * env_get_location() - Returns the best env location for a board
84 * @op: operations performed on the environment
85 * @prio: priority between the multiple environments, 0 being the
86 * highest priority
87 *
88 * This will return the preferred environment for the given priority.
40c08a68 89 * This is overridable by boards if they need to.
8a3a7e22
MR
90 *
91 * All implementations are free to use the operation, the priority and
92 * any other data relevant to their choice, but must take into account
93 * the fact that the lowest prority (0) is the most important location
94 * in the system. The following locations should be returned by order
95 * of descending priorities, from the highest to the lowest priority.
96 *
97 * Returns:
98 * an enum env_location value on success, a negative error code otherwise
99 */
40c08a68 100__weak enum env_location env_get_location(enum env_operation op, int prio)
c9d728dd 101{
7d714a24
MR
102 switch (op) {
103 case ENVOP_GET_CHAR:
104 case ENVOP_INIT:
105 case ENVOP_LOAD:
106 if (prio >= ARRAY_SIZE(env_locations))
107 return ENVL_UNKNOWN;
108
e1caa584
YS
109 gd->env_load_location = env_locations[prio];
110 return gd->env_load_location;
7d714a24
MR
111
112 case ENVOP_SAVE:
e1caa584 113 return gd->env_load_location;
7d714a24 114 }
8a3a7e22 115
7d714a24 116 return ENVL_UNKNOWN;
c9d728dd
SG
117}
118
8a3a7e22
MR
119
120/**
121 * env_driver_lookup() - Finds the most suited environment location
122 * @op: operations performed on the environment
123 * @prio: priority between the multiple environments, 0 being the
124 * highest priority
125 *
126 * This will try to find the available environment with the highest
127 * priority in the system.
128 *
129 * Returns:
130 * NULL on error, a pointer to a struct env_driver otherwise
131 */
132static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
c9d728dd 133{
8a3a7e22 134 enum env_location loc = env_get_location(op, prio);
c9d728dd
SG
135 struct env_driver *drv;
136
8a3a7e22
MR
137 if (loc == ENVL_UNKNOWN)
138 return NULL;
139
52746c43 140 drv = _env_driver_lookup(loc);
c9d728dd
SG
141 if (!drv) {
142 debug("%s: No environment driver for location %d\n", __func__,
143 loc);
144 return NULL;
145 }
146
147 return drv;
148}
149
a69d0f60 150int env_get_char(int index)
c9d728dd 151{
8a3a7e22
MR
152 struct env_driver *drv;
153 int prio;
c9d728dd 154
2d7cb5b4 155 if (gd->env_valid == ENV_INVALID)
a69d0f60 156 return default_environment[index];
8a3a7e22
MR
157
158 for (prio = 0; (drv = env_driver_lookup(ENVOP_GET_CHAR, prio)); prio++) {
159 int ret;
160
161 if (!drv->get_char)
162 continue;
163
1d446087
MR
164 if (!env_has_inited(drv->location))
165 continue;
166
8a3a7e22
MR
167 ret = drv->get_char(index);
168 if (!ret)
169 return 0;
170
171 debug("%s: Environment %s failed to load (err=%d)\n", __func__,
172 drv->name, ret);
c9d728dd
SG
173 }
174
8a3a7e22 175 return -ENODEV;
c9d728dd
SG
176}
177
178int env_load(void)
179{
8a3a7e22
MR
180 struct env_driver *drv;
181 int prio;
c9d728dd 182
8a3a7e22
MR
183 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
184 int ret;
185
186 if (!drv->load)
187 continue;
188
1d446087
MR
189 if (!env_has_inited(drv->location))
190 continue;
191
3574ba01 192 printf("Loading Environment from %s... ", drv->name);
8a3a7e22 193 ret = drv->load();
3574ba01
MR
194 if (ret)
195 printf("Failed (%d)\n", ret);
196 else
197 printf("OK\n");
198
8a3a7e22
MR
199 if (!ret)
200 return 0;
c9d728dd
SG
201 }
202
8a3a7e22 203 return -ENODEV;
c9d728dd
SG
204}
205
206int env_save(void)
207{
8a3a7e22
MR
208 struct env_driver *drv;
209 int prio;
c9d728dd 210
8a3a7e22
MR
211 for (prio = 0; (drv = env_driver_lookup(ENVOP_SAVE, prio)); prio++) {
212 int ret;
213
214 if (!drv->save)
215 continue;
216
1d446087
MR
217 if (!env_has_inited(drv->location))
218 continue;
219
9efac3c8 220 printf("Saving Environment to %s... ", drv->name);
8a3a7e22 221 ret = drv->save();
3574ba01
MR
222 if (ret)
223 printf("Failed (%d)\n", ret);
224 else
225 printf("OK\n");
226
8a3a7e22
MR
227 if (!ret)
228 return 0;
c9d728dd
SG
229 }
230
8a3a7e22 231 return -ENODEV;
c9d728dd
SG
232}
233
6eeae424 234int env_init(void)
c9d728dd 235{
8a3a7e22 236 struct env_driver *drv;
7938822a 237 int ret = -ENOENT;
8a3a7e22
MR
238 int prio;
239
240 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
1d446087
MR
241 if (!drv->init || !(ret = drv->init()))
242 env_set_inited(drv->location);
8a3a7e22 243
1d446087 244 debug("%s: Environment %s init done (ret=%d)\n", __func__,
8a3a7e22
MR
245 drv->name, ret);
246 }
247
248 if (!prio)
249 return -ENODEV;
250
7938822a
SG
251 if (ret == -ENOENT) {
252 gd->env_addr = (ulong)&default_environment[0];
eeba55cb 253 gd->env_valid = ENV_VALID;
7938822a
SG
254
255 return 0;
c9d728dd
SG
256 }
257
8a3a7e22 258 return ret;
c9d728dd 259}