blob: e4dfb92e154057516a7459f8273f875bddec37a5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc9d728d2017-08-03 12:22:00 -06002/*
3 * Copyright (C) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassc9d728d2017-08-03 12:22:00 -06005 */
6
7#include <common.h>
Simon Glass4bfd1f52019-08-01 09:46:43 -06008#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -06009#include <env_internal.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glasscd93d622020-05-10 11:40:13 -060012#include <linux/bitops.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060013#include <linux/bug.h>
Simon Glassc9d728d2017-08-03 12:22:00 -060014
15DECLARE_GLOBAL_DATA_PTR;
16
Siva Durga Prasad Paladugu7bcdf192018-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 Wunderlichcd121bd2019-06-29 11:36:19 +020032 if (entry->erase)
33 entry->erase += gd->reloc_off;
Siva Durga Prasad Paladugu7bcdf192018-04-13 07:57:21 +020034 if (entry->init)
35 entry->init += gd->reloc_off;
36 }
37}
38#endif
39
Maxime Ripard52746c42018-01-23 21:16:51 +010040static struct env_driver *_env_driver_lookup(enum env_location loc)
Simon Glassc9d728d2017-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 Ripard7d714a22018-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
Ye Li9a6a3112019-01-04 09:34:24 +000081#ifdef CONFIG_ENV_IS_IN_SATA
82 ENVL_ESATA,
83#endif
Maxime Ripard7d714a22018-01-23 21:16:58 +010084#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
85 ENVL_SPI_FLASH,
86#endif
87#ifdef CONFIG_ENV_IS_IN_UBI
88 ENVL_UBI,
89#endif
90#ifdef CONFIG_ENV_IS_NOWHERE
91 ENVL_NOWHERE,
92#endif
93};
94
Maxime Ripard1d446082018-01-23 21:16:59 +010095static bool env_has_inited(enum env_location location)
96{
97 return gd->env_has_init & BIT(location);
98}
99
100static void env_set_inited(enum env_location location)
101{
102 /*
103 * We're using a 32-bits bitmask stored in gd (env_has_init)
104 * using the above enum value as the bit index. We need to
105 * make sure that we're not overflowing it.
106 */
Patrick Delaunayd5a6a5a2020-06-24 09:27:25 +0200107 BUILD_BUG_ON(ENVL_COUNT > BITS_PER_LONG);
Maxime Ripard1d446082018-01-23 21:16:59 +0100108
109 gd->env_has_init |= BIT(location);
110}
111
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100112/**
113 * env_get_location() - Returns the best env location for a board
114 * @op: operations performed on the environment
115 * @prio: priority between the multiple environments, 0 being the
116 * highest priority
117 *
118 * This will return the preferred environment for the given priority.
Maxime Ripard40c08a62018-01-23 21:17:02 +0100119 * This is overridable by boards if they need to.
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100120 *
121 * All implementations are free to use the operation, the priority and
122 * any other data relevant to their choice, but must take into account
123 * the fact that the lowest prority (0) is the most important location
124 * in the system. The following locations should be returned by order
125 * of descending priorities, from the highest to the lowest priority.
126 *
127 * Returns:
128 * an enum env_location value on success, a negative error code otherwise
129 */
Maxime Ripard40c08a62018-01-23 21:17:02 +0100130__weak enum env_location env_get_location(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600131{
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200132 if (prio >= ARRAY_SIZE(env_locations))
133 return ENVL_UNKNOWN;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100134
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200135 return env_locations[prio];
Simon Glassc9d728d2017-08-03 12:22:00 -0600136}
137
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100138
139/**
140 * env_driver_lookup() - Finds the most suited environment location
141 * @op: operations performed on the environment
142 * @prio: priority between the multiple environments, 0 being the
143 * highest priority
144 *
145 * This will try to find the available environment with the highest
146 * priority in the system.
147 *
148 * Returns:
149 * NULL on error, a pointer to a struct env_driver otherwise
150 */
151static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600152{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100153 enum env_location loc = env_get_location(op, prio);
Simon Glassc9d728d2017-08-03 12:22:00 -0600154 struct env_driver *drv;
155
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100156 if (loc == ENVL_UNKNOWN)
157 return NULL;
158
Maxime Ripard52746c42018-01-23 21:16:51 +0100159 drv = _env_driver_lookup(loc);
Simon Glassc9d728d2017-08-03 12:22:00 -0600160 if (!drv) {
161 debug("%s: No environment driver for location %d\n", __func__,
162 loc);
163 return NULL;
164 }
165
166 return drv;
167}
168
Simon Glassc9d728d2017-08-03 12:22:00 -0600169int env_load(void)
170{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100171 struct env_driver *drv;
Sam Protsenko293a1722019-01-18 21:19:04 +0200172 int best_prio = -1;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100173 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600174
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100175 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
176 int ret;
177
Maxime Ripard1d446082018-01-23 21:16:59 +0100178 if (!env_has_inited(drv->location))
179 continue;
180
Maxime Ripard3574ba02018-01-23 21:16:54 +0100181 printf("Loading Environment from %s... ", drv->name);
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300182 /*
183 * In error case, the error message must be printed during
184 * drv->load() in some underlying API, and it must be exactly
185 * one message.
186 */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100187 ret = drv->load();
Sam Protsenko293a1722019-01-18 21:19:04 +0200188 if (!ret) {
Maxime Ripard3574ba02018-01-23 21:16:54 +0100189 printf("OK\n");
Patrick Delaunay6d8d8402020-07-28 11:51:17 +0200190 gd->env_load_prio = prio;
191
Marek Vasut47f3b1f2020-07-07 20:51:38 +0200192#if !CONFIG_IS_ENABLED(ENV_APPEND)
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100193 return 0;
Marek Vasut47f3b1f2020-07-07 20:51:38 +0200194#endif
Sam Protsenko293a1722019-01-18 21:19:04 +0200195 } else if (ret == -ENOMSG) {
196 /* Handle "bad CRC" case */
197 if (best_prio == -1)
198 best_prio = prio;
199 } else {
200 debug("Failed (%d)\n", ret);
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300201 }
Simon Glassc9d728d2017-08-03 12:22:00 -0600202 }
203
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200204 /*
205 * In case of invalid environment, we set the 'default' env location
Sam Protsenko293a1722019-01-18 21:19:04 +0200206 * to the best choice, i.e.:
207 * 1. Environment location with bad CRC, if such location was found
208 * 2. Otherwise use the location with highest priority
209 *
210 * This way, next calls to env_save() will restore the environment
211 * at the right place.
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200212 */
Sam Protsenko293a1722019-01-18 21:19:04 +0200213 if (best_prio >= 0)
214 debug("Selecting environment with bad CRC\n");
215 else
216 best_prio = 0;
Patrick Delaunay6d8d8402020-07-28 11:51:17 +0200217
218 gd->env_load_prio = best_prio;
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200219
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100220 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600221}
222
Patrick Delaunay0115dd32020-07-28 11:51:20 +0200223int env_reload(void)
224{
225 struct env_driver *drv;
226
227 drv = env_driver_lookup(ENVOP_LOAD, gd->env_load_prio);
228 if (drv) {
229 int ret;
230
231 printf("Loading Environment from %s... ", drv->name);
232
233 if (!env_has_inited(drv->location)) {
234 printf("not initialized\n");
235 return -ENODEV;
236 }
237
238 ret = drv->load();
239 if (ret)
240 printf("Failed (%d)\n", ret);
241 else
242 printf("OK\n");
243
244 if (!ret)
245 return 0;
246 }
247
248 return -ENODEV;
249}
250
Simon Glassc9d728d2017-08-03 12:22:00 -0600251int env_save(void)
252{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100253 struct env_driver *drv;
Simon Glassc9d728d2017-08-03 12:22:00 -0600254
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200255 drv = env_driver_lookup(ENVOP_SAVE, gd->env_load_prio);
256 if (drv) {
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100257 int ret;
Maxime Ripard9c24dfb2018-01-23 21:16:50 +0100258
Maxime Ripard9efac3c2018-01-23 21:16:53 +0100259 printf("Saving Environment to %s... ", drv->name);
Patrick Delaunay89682882020-06-24 10:17:50 +0200260 if (!drv->save) {
261 printf("not possible\n");
262 return -ENODEV;
263 }
264
265 if (!env_has_inited(drv->location)) {
266 printf("not initialized\n");
267 return -ENODEV;
268 }
269
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100270 ret = drv->save();
Maxime Ripard3574ba02018-01-23 21:16:54 +0100271 if (ret)
272 printf("Failed (%d)\n", ret);
273 else
274 printf("OK\n");
275
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100276 if (!ret)
277 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600278 }
279
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100280 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600281}
282
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200283int env_erase(void)
284{
285 struct env_driver *drv;
286
287 drv = env_driver_lookup(ENVOP_ERASE, gd->env_load_prio);
288 if (drv) {
289 int ret;
290
291 if (!drv->erase)
292 return -ENODEV;
293
294 if (!env_has_inited(drv->location))
295 return -ENODEV;
296
297 printf("Erasing Environment on %s... ", drv->name);
298 ret = drv->erase();
299 if (ret)
300 printf("Failed (%d)\n", ret);
301 else
302 printf("OK\n");
303
304 if (!ret)
305 return 0;
306 }
307
308 return -ENODEV;
309}
310
Simon Glass6eeae422017-08-03 12:22:05 -0600311int env_init(void)
Simon Glassc9d728d2017-08-03 12:22:00 -0600312{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100313 struct env_driver *drv;
Simon Glass79388222017-08-03 12:22:02 -0600314 int ret = -ENOENT;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100315 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600316
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100317 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
Maxime Ripard1d446082018-01-23 21:16:59 +0100318 if (!drv->init || !(ret = drv->init()))
319 env_set_inited(drv->location);
Heiko Schocher46ce9e72020-11-03 15:22:36 +0100320 if (ret == -ENOENT)
321 env_set_inited(drv->location);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100322
Maxime Ripard1d446082018-01-23 21:16:59 +0100323 debug("%s: Environment %s init done (ret=%d)\n", __func__,
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100324 drv->name, ret);
Marek Vasut5557eec2021-01-20 15:45:16 +0100325
326 if (gd->env_valid == ENV_INVALID)
327 ret = -ENOENT;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100328 }
329
330 if (!prio)
331 return -ENODEV;
332
Simon Glass79388222017-08-03 12:22:02 -0600333 if (ret == -ENOENT) {
334 gd->env_addr = (ulong)&default_environment[0];
Tom Rinieeba55c2017-08-19 22:27:57 -0400335 gd->env_valid = ENV_VALID;
Simon Glass79388222017-08-03 12:22:02 -0600336
337 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600338 }
339
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100340 return ret;
Simon Glassc9d728d2017-08-03 12:22:00 -0600341}
Patrick Delaunaya97d22e2020-07-28 11:51:21 +0200342
343int env_select(const char *name)
344{
345 struct env_driver *drv;
346 const int n_ents = ll_entry_count(struct env_driver, env_driver);
347 struct env_driver *entry;
348 int prio;
349 bool found = false;
350
351 printf("Select Environment on %s: ", name);
352
353 /* search ENV driver by name */
354 drv = ll_entry_start(struct env_driver, env_driver);
355 for (entry = drv; entry != drv + n_ents; entry++) {
356 if (!strcmp(entry->name, name)) {
357 found = true;
358 break;
359 }
360 }
361
362 if (!found) {
363 printf("driver not found\n");
364 return -ENODEV;
365 }
366
367 /* search priority by driver */
368 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
369 if (entry->location == env_get_location(ENVOP_LOAD, prio)) {
370 /* when priority change, reset the ENV flags */
371 if (gd->env_load_prio != prio) {
372 gd->env_load_prio = prio;
373 gd->env_valid = ENV_INVALID;
374 gd->flags &= ~GD_FLG_ENV_DEFAULT;
375 }
376 printf("OK\n");
377 return 0;
378 }
379 }
380 printf("priority not found\n");
381
382 return -ENODEV;
383}