blob: 0f73ebc08e0e615c29fcbe5e440c55f215b997fe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass15e5a1a2017-08-03 12:22:00 -06002/*
3 * Copyright (C) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass15e5a1a2017-08-03 12:22:00 -06005 */
6
7#include <common.h>
Simon Glass79fd2142019-08-01 09:46:43 -06008#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -06009#include <env_internal.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060012#include <linux/bitops.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060013#include <linux/bug.h>
Simon Glass15e5a1a2017-08-03 12:22:00 -060014
15DECLARE_GLOBAL_DATA_PTR;
16
Siva Durga Prasad Paladugu75c65792018-04-13 07:57:21 +020017#if defined(CONFIG_NEEDS_MANUAL_RELOC)
18void env_fix_drivers(void)
19{
20 struct env_driver *drv;
21 const int n_ents = ll_entry_count(struct env_driver, env_driver);
22 struct env_driver *entry;
23
24 drv = ll_entry_start(struct env_driver, env_driver);
25 for (entry = drv; entry != drv + n_ents; entry++) {
26 if (entry->name)
27 entry->name += gd->reloc_off;
28 if (entry->load)
29 entry->load += gd->reloc_off;
30 if (entry->save)
31 entry->save += gd->reloc_off;
Frank Wunderlich33afa932019-06-29 11:36:19 +020032 if (entry->erase)
33 entry->erase += gd->reloc_off;
Siva Durga Prasad Paladugu75c65792018-04-13 07:57:21 +020034 if (entry->init)
35 entry->init += gd->reloc_off;
36 }
37}
38#endif
39
Maxime Ripardb7da89a2018-01-23 21:16:51 +010040static struct env_driver *_env_driver_lookup(enum env_location loc)
Simon Glass15e5a1a2017-08-03 12:22:00 -060041{
42 struct env_driver *drv;
43 const int n_ents = ll_entry_count(struct env_driver, env_driver);
44 struct env_driver *entry;
45
46 drv = ll_entry_start(struct env_driver, env_driver);
47 for (entry = drv; entry != drv + n_ents; entry++) {
48 if (loc == entry->location)
49 return entry;
50 }
51
52 /* Not found */
53 return NULL;
54}
55
Maxime Ripard520cf802018-01-23 21:16:58 +010056static enum env_location env_locations[] = {
57#ifdef CONFIG_ENV_IS_IN_EEPROM
58 ENVL_EEPROM,
59#endif
60#ifdef CONFIG_ENV_IS_IN_EXT4
61 ENVL_EXT4,
62#endif
63#ifdef CONFIG_ENV_IS_IN_FAT
64 ENVL_FAT,
65#endif
66#ifdef CONFIG_ENV_IS_IN_FLASH
67 ENVL_FLASH,
68#endif
69#ifdef CONFIG_ENV_IS_IN_MMC
70 ENVL_MMC,
71#endif
72#ifdef CONFIG_ENV_IS_IN_NAND
73 ENVL_NAND,
74#endif
75#ifdef CONFIG_ENV_IS_IN_NVRAM
76 ENVL_NVRAM,
77#endif
78#ifdef CONFIG_ENV_IS_IN_REMOTE
79 ENVL_REMOTE,
80#endif
81#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
82 ENVL_SPI_FLASH,
83#endif
84#ifdef CONFIG_ENV_IS_IN_UBI
85 ENVL_UBI,
86#endif
87#ifdef CONFIG_ENV_IS_NOWHERE
88 ENVL_NOWHERE,
89#endif
90};
91
Maxime Ripard2131c5e2018-01-23 21:16:59 +010092static bool env_has_inited(enum env_location location)
93{
94 return gd->env_has_init & BIT(location);
95}
96
97static void env_set_inited(enum env_location location)
98{
99 /*
100 * We're using a 32-bits bitmask stored in gd (env_has_init)
101 * using the above enum value as the bit index. We need to
102 * make sure that we're not overflowing it.
103 */
Patrick Delaunay13ac85a2020-06-24 09:27:25 +0200104 BUILD_BUG_ON(ENVL_COUNT > BITS_PER_LONG);
Maxime Ripard2131c5e2018-01-23 21:16:59 +0100105
106 gd->env_has_init |= BIT(location);
107}
108
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100109/**
Marek Vasutf92cf582022-04-06 02:21:32 +0200110 * arch_env_get_location() - Returns the best env location for an arch
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100111 * @op: operations performed on the environment
112 * @prio: priority between the multiple environments, 0 being the
113 * highest priority
114 *
115 * This will return the preferred environment for the given priority.
Marek Vasutf92cf582022-04-06 02:21:32 +0200116 * This is overridable by architectures if they need to and has lower
117 * priority than board side env_get_location() override.
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100118 *
119 * All implementations are free to use the operation, the priority and
120 * any other data relevant to their choice, but must take into account
121 * the fact that the lowest prority (0) is the most important location
122 * in the system. The following locations should be returned by order
123 * of descending priorities, from the highest to the lowest priority.
124 *
125 * Returns:
126 * an enum env_location value on success, a negative error code otherwise
127 */
Marek Vasutf92cf582022-04-06 02:21:32 +0200128__weak enum env_location arch_env_get_location(enum env_operation op, int prio)
Simon Glass15e5a1a2017-08-03 12:22:00 -0600129{
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200130 if (prio >= ARRAY_SIZE(env_locations))
131 return ENVL_UNKNOWN;
Maxime Ripard520cf802018-01-23 21:16:58 +0100132
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200133 return env_locations[prio];
Simon Glass15e5a1a2017-08-03 12:22:00 -0600134}
135
Marek Vasutf92cf582022-04-06 02:21:32 +0200136/**
137 * env_get_location() - Returns the best env location for a board
138 * @op: operations performed on the environment
139 * @prio: priority between the multiple environments, 0 being the
140 * highest priority
141 *
142 * This will return the preferred environment for the given priority.
143 * This is overridable by boards if they need to.
144 *
145 * All implementations are free to use the operation, the priority and
146 * any other data relevant to their choice, but must take into account
147 * the fact that the lowest prority (0) is the most important location
148 * in the system. The following locations should be returned by order
149 * of descending priorities, from the highest to the lowest priority.
150 *
151 * Returns:
152 * an enum env_location value on success, a negative error code otherwise
153 */
154__weak enum env_location env_get_location(enum env_operation op, int prio)
155{
156 return arch_env_get_location(op, prio);
157}
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100158
159/**
160 * env_driver_lookup() - Finds the most suited environment location
161 * @op: operations performed on the environment
162 * @prio: priority between the multiple environments, 0 being the
163 * highest priority
164 *
165 * This will try to find the available environment with the highest
166 * priority in the system.
167 *
168 * Returns:
169 * NULL on error, a pointer to a struct env_driver otherwise
170 */
171static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
Simon Glass15e5a1a2017-08-03 12:22:00 -0600172{
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100173 enum env_location loc = env_get_location(op, prio);
Simon Glass15e5a1a2017-08-03 12:22:00 -0600174 struct env_driver *drv;
175
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100176 if (loc == ENVL_UNKNOWN)
177 return NULL;
178
Maxime Ripardb7da89a2018-01-23 21:16:51 +0100179 drv = _env_driver_lookup(loc);
Simon Glass15e5a1a2017-08-03 12:22:00 -0600180 if (!drv) {
181 debug("%s: No environment driver for location %d\n", __func__,
182 loc);
183 return NULL;
184 }
185
186 return drv;
187}
188
Simon Glass15e5a1a2017-08-03 12:22:00 -0600189int env_load(void)
190{
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100191 struct env_driver *drv;
Sam Protsenko239f3122019-01-18 21:19:04 +0200192 int best_prio = -1;
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100193 int prio;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600194
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100195 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
196 int ret;
197
Maxime Ripard2131c5e2018-01-23 21:16:59 +0100198 if (!env_has_inited(drv->location))
199 continue;
200
Maxime Ripard185402a2018-01-23 21:16:54 +0100201 printf("Loading Environment from %s... ", drv->name);
Sam Protsenko051dfd82018-07-30 19:19:26 +0300202 /*
203 * In error case, the error message must be printed during
204 * drv->load() in some underlying API, and it must be exactly
205 * one message.
206 */
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100207 ret = drv->load();
Sam Protsenko239f3122019-01-18 21:19:04 +0200208 if (!ret) {
Maxime Ripard185402a2018-01-23 21:16:54 +0100209 printf("OK\n");
Patrick Delaunaya639f4e2020-07-28 11:51:17 +0200210 gd->env_load_prio = prio;
211
Marek Vasuta7b82672020-07-07 20:51:38 +0200212#if !CONFIG_IS_ENABLED(ENV_APPEND)
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100213 return 0;
Marek Vasuta7b82672020-07-07 20:51:38 +0200214#endif
Sam Protsenko239f3122019-01-18 21:19:04 +0200215 } else if (ret == -ENOMSG) {
216 /* Handle "bad CRC" case */
217 if (best_prio == -1)
218 best_prio = prio;
219 } else {
220 debug("Failed (%d)\n", ret);
Sam Protsenko051dfd82018-07-30 19:19:26 +0300221 }
Simon Glass15e5a1a2017-08-03 12:22:00 -0600222 }
223
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200224 /*
225 * In case of invalid environment, we set the 'default' env location
Sam Protsenko239f3122019-01-18 21:19:04 +0200226 * to the best choice, i.e.:
227 * 1. Environment location with bad CRC, if such location was found
228 * 2. Otherwise use the location with highest priority
229 *
230 * This way, next calls to env_save() will restore the environment
231 * at the right place.
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200232 */
Sam Protsenko239f3122019-01-18 21:19:04 +0200233 if (best_prio >= 0)
234 debug("Selecting environment with bad CRC\n");
235 else
236 best_prio = 0;
Patrick Delaunaya639f4e2020-07-28 11:51:17 +0200237
238 gd->env_load_prio = best_prio;
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200239
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100240 return -ENODEV;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600241}
242
Patrick Delaunay748e42e2020-07-28 11:51:20 +0200243int env_reload(void)
244{
245 struct env_driver *drv;
246
247 drv = env_driver_lookup(ENVOP_LOAD, gd->env_load_prio);
248 if (drv) {
249 int ret;
250
251 printf("Loading Environment from %s... ", drv->name);
252
253 if (!env_has_inited(drv->location)) {
254 printf("not initialized\n");
255 return -ENODEV;
256 }
257
258 ret = drv->load();
259 if (ret)
260 printf("Failed (%d)\n", ret);
261 else
262 printf("OK\n");
263
264 if (!ret)
265 return 0;
266 }
267
268 return -ENODEV;
269}
270
Simon Glass15e5a1a2017-08-03 12:22:00 -0600271int env_save(void)
272{
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100273 struct env_driver *drv;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600274
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200275 drv = env_driver_lookup(ENVOP_SAVE, gd->env_load_prio);
276 if (drv) {
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100277 int ret;
Maxime Ripard3c0b2e52018-01-23 21:16:50 +0100278
Patrick Delaunay65bbec22020-06-24 10:17:50 +0200279 printf("Saving Environment to %s... ", drv->name);
280 if (!drv->save) {
281 printf("not possible\n");
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200282 return -ENODEV;
Patrick Delaunay65bbec22020-06-24 10:17:50 +0200283 }
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100284
Patrick Delaunay65bbec22020-06-24 10:17:50 +0200285 if (!env_has_inited(drv->location)) {
286 printf("not initialized\n");
Nicholas Faustinia8a17f82018-07-23 10:01:07 +0200287 return -ENODEV;
Patrick Delaunay65bbec22020-06-24 10:17:50 +0200288 }
Maxime Ripard2131c5e2018-01-23 21:16:59 +0100289
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100290 ret = drv->save();
Maxime Ripard185402a2018-01-23 21:16:54 +0100291 if (ret)
292 printf("Failed (%d)\n", ret);
293 else
294 printf("OK\n");
295
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100296 if (!ret)
297 return 0;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600298 }
299
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100300 return -ENODEV;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600301}
302
Frank Wunderlich33afa932019-06-29 11:36:19 +0200303int env_erase(void)
304{
305 struct env_driver *drv;
306
307 drv = env_driver_lookup(ENVOP_ERASE, gd->env_load_prio);
308 if (drv) {
309 int ret;
310
Patrick Delaunay6d6a1d02022-12-14 16:51:32 +0100311 if (!drv->erase) {
312 printf("not possible\n");
Frank Wunderlich33afa932019-06-29 11:36:19 +0200313 return -ENODEV;
Patrick Delaunay6d6a1d02022-12-14 16:51:32 +0100314 }
Frank Wunderlich33afa932019-06-29 11:36:19 +0200315
Patrick Delaunay6d6a1d02022-12-14 16:51:32 +0100316 if (!env_has_inited(drv->location)) {
317 printf("not initialized\n");
Frank Wunderlich33afa932019-06-29 11:36:19 +0200318 return -ENODEV;
Patrick Delaunay6d6a1d02022-12-14 16:51:32 +0100319 }
Frank Wunderlich33afa932019-06-29 11:36:19 +0200320
321 printf("Erasing Environment on %s... ", drv->name);
322 ret = drv->erase();
323 if (ret)
324 printf("Failed (%d)\n", ret);
325 else
326 printf("OK\n");
327
328 if (!ret)
329 return 0;
330 }
331
332 return -ENODEV;
333}
334
Simon Glass36d85812017-08-03 12:22:05 -0600335int env_init(void)
Simon Glass15e5a1a2017-08-03 12:22:00 -0600336{
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100337 struct env_driver *drv;
Simon Glassd40d8042017-08-03 12:22:02 -0600338 int ret = -ENOENT;
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100339 int prio;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600340
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100341 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
Maxime Ripard2131c5e2018-01-23 21:16:59 +0100342 if (!drv->init || !(ret = drv->init()))
343 env_set_inited(drv->location);
Heiko Schocher8ba7b612020-11-03 15:22:36 +0100344 if (ret == -ENOENT)
345 env_set_inited(drv->location);
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100346
Maxime Ripard2131c5e2018-01-23 21:16:59 +0100347 debug("%s: Environment %s init done (ret=%d)\n", __func__,
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100348 drv->name, ret);
Felix.Vietmeyer@jila.colorado.edud0f91062021-04-20 20:04:26 -0600349
Marek Vasut8e25d0c2022-04-10 06:46:52 +0200350 if (gd->env_valid == ENV_INVALID)
351 ret = -ENOENT;
Felix.Vietmeyer@jila.colorado.edud0f91062021-04-20 20:04:26 -0600352 }
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100353
Marek Vasut8e25d0c2022-04-10 06:46:52 +0200354 if (!prio)
355 return -ENODEV;
356
Simon Glassd40d8042017-08-03 12:22:02 -0600357 if (ret == -ENOENT) {
358 gd->env_addr = (ulong)&default_environment[0];
Marek Vasut8e25d0c2022-04-10 06:46:52 +0200359 gd->env_valid = ENV_VALID;
Simon Glassd40d8042017-08-03 12:22:02 -0600360
361 return 0;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600362 }
363
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100364 return ret;
Simon Glass15e5a1a2017-08-03 12:22:00 -0600365}
Patrick Delaunaya59f7ec2020-07-28 11:51:21 +0200366
367int env_select(const char *name)
368{
369 struct env_driver *drv;
370 const int n_ents = ll_entry_count(struct env_driver, env_driver);
371 struct env_driver *entry;
372 int prio;
373 bool found = false;
374
375 printf("Select Environment on %s: ", name);
376
377 /* search ENV driver by name */
378 drv = ll_entry_start(struct env_driver, env_driver);
379 for (entry = drv; entry != drv + n_ents; entry++) {
380 if (!strcmp(entry->name, name)) {
381 found = true;
382 break;
383 }
384 }
385
386 if (!found) {
387 printf("driver not found\n");
388 return -ENODEV;
389 }
390
391 /* search priority by driver */
392 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
393 if (entry->location == env_get_location(ENVOP_LOAD, prio)) {
394 /* when priority change, reset the ENV flags */
395 if (gd->env_load_prio != prio) {
396 gd->env_load_prio = prio;
397 gd->env_valid = ENV_INVALID;
398 gd->flags &= ~GD_FLG_ENV_DEFAULT;
399 }
400 printf("OK\n");
401 return 0;
402 }
403 }
404 printf("priority not found\n");
405
406 return -ENODEV;
407}