blob: dcc25c030b239944ccea2c05e4ed4a93b1ecdcc7 [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 Glasscd93d622020-05-10 11:40:13 -060011#include <linux/bitops.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060012#include <linux/bug.h>
Simon Glassc9d728d2017-08-03 12:22:00 -060013
14DECLARE_GLOBAL_DATA_PTR;
15
Siva Durga Prasad Paladugu7bcdf192018-04-13 07:57:21 +020016#if defined(CONFIG_NEEDS_MANUAL_RELOC)
17void env_fix_drivers(void)
18{
19 struct env_driver *drv;
20 const int n_ents = ll_entry_count(struct env_driver, env_driver);
21 struct env_driver *entry;
22
23 drv = ll_entry_start(struct env_driver, env_driver);
24 for (entry = drv; entry != drv + n_ents; entry++) {
25 if (entry->name)
26 entry->name += gd->reloc_off;
27 if (entry->load)
28 entry->load += gd->reloc_off;
29 if (entry->save)
30 entry->save += gd->reloc_off;
Frank Wunderlichcd121bd2019-06-29 11:36:19 +020031 if (entry->erase)
32 entry->erase += gd->reloc_off;
Siva Durga Prasad Paladugu7bcdf192018-04-13 07:57:21 +020033 if (entry->init)
34 entry->init += gd->reloc_off;
35 }
36}
37#endif
38
Maxime Ripard52746c42018-01-23 21:16:51 +010039static struct env_driver *_env_driver_lookup(enum env_location loc)
Simon Glassc9d728d2017-08-03 12:22:00 -060040{
41 struct env_driver *drv;
42 const int n_ents = ll_entry_count(struct env_driver, env_driver);
43 struct env_driver *entry;
44
45 drv = ll_entry_start(struct env_driver, env_driver);
46 for (entry = drv; entry != drv + n_ents; entry++) {
47 if (loc == entry->location)
48 return entry;
49 }
50
51 /* Not found */
52 return NULL;
53}
54
Maxime Ripard7d714a22018-01-23 21:16:58 +010055static enum env_location env_locations[] = {
56#ifdef CONFIG_ENV_IS_IN_EEPROM
57 ENVL_EEPROM,
58#endif
59#ifdef CONFIG_ENV_IS_IN_EXT4
60 ENVL_EXT4,
61#endif
62#ifdef CONFIG_ENV_IS_IN_FAT
63 ENVL_FAT,
64#endif
65#ifdef CONFIG_ENV_IS_IN_FLASH
66 ENVL_FLASH,
67#endif
68#ifdef CONFIG_ENV_IS_IN_MMC
69 ENVL_MMC,
70#endif
71#ifdef CONFIG_ENV_IS_IN_NAND
72 ENVL_NAND,
73#endif
74#ifdef CONFIG_ENV_IS_IN_NVRAM
75 ENVL_NVRAM,
76#endif
77#ifdef CONFIG_ENV_IS_IN_REMOTE
78 ENVL_REMOTE,
79#endif
Ye Li9a6a3112019-01-04 09:34:24 +000080#ifdef CONFIG_ENV_IS_IN_SATA
81 ENVL_ESATA,
82#endif
Maxime Ripard7d714a22018-01-23 21:16:58 +010083#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
84 ENVL_SPI_FLASH,
85#endif
86#ifdef CONFIG_ENV_IS_IN_UBI
87 ENVL_UBI,
88#endif
89#ifdef CONFIG_ENV_IS_NOWHERE
90 ENVL_NOWHERE,
91#endif
92};
93
Maxime Ripard1d446082018-01-23 21:16:59 +010094static bool env_has_inited(enum env_location location)
95{
96 return gd->env_has_init & BIT(location);
97}
98
99static void env_set_inited(enum env_location location)
100{
101 /*
102 * We're using a 32-bits bitmask stored in gd (env_has_init)
103 * using the above enum value as the bit index. We need to
104 * make sure that we're not overflowing it.
105 */
106 BUILD_BUG_ON(ARRAY_SIZE(env_locations) > BITS_PER_LONG);
107
108 gd->env_has_init |= BIT(location);
109}
110
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100111/**
112 * env_get_location() - Returns the best env location for a board
113 * @op: operations performed on the environment
114 * @prio: priority between the multiple environments, 0 being the
115 * highest priority
116 *
117 * This will return the preferred environment for the given priority.
Maxime Ripard40c08a62018-01-23 21:17:02 +0100118 * This is overridable by boards if they need to.
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100119 *
120 * All implementations are free to use the operation, the priority and
121 * any other data relevant to their choice, but must take into account
122 * the fact that the lowest prority (0) is the most important location
123 * in the system. The following locations should be returned by order
124 * of descending priorities, from the highest to the lowest priority.
125 *
126 * Returns:
127 * an enum env_location value on success, a negative error code otherwise
128 */
Maxime Ripard40c08a62018-01-23 21:17:02 +0100129__weak enum env_location env_get_location(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600130{
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200131 if (prio >= ARRAY_SIZE(env_locations))
132 return ENVL_UNKNOWN;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100133
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200134 gd->env_load_prio = prio;
Maxime Ripard7d714a22018-01-23 21:16:58 +0100135
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200136 return env_locations[prio];
Simon Glassc9d728d2017-08-03 12:22:00 -0600137}
138
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100139
140/**
141 * env_driver_lookup() - Finds the most suited environment location
142 * @op: operations performed on the environment
143 * @prio: priority between the multiple environments, 0 being the
144 * highest priority
145 *
146 * This will try to find the available environment with the highest
147 * priority in the system.
148 *
149 * Returns:
150 * NULL on error, a pointer to a struct env_driver otherwise
151 */
152static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600153{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100154 enum env_location loc = env_get_location(op, prio);
Simon Glassc9d728d2017-08-03 12:22:00 -0600155 struct env_driver *drv;
156
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100157 if (loc == ENVL_UNKNOWN)
158 return NULL;
159
Maxime Ripard52746c42018-01-23 21:16:51 +0100160 drv = _env_driver_lookup(loc);
Simon Glassc9d728d2017-08-03 12:22:00 -0600161 if (!drv) {
162 debug("%s: No environment driver for location %d\n", __func__,
163 loc);
164 return NULL;
165 }
166
167 return drv;
168}
169
Goldschmidt Simonb2cdef42018-02-09 20:23:17 +0000170__weak int env_get_char_spec(int index)
171{
172 return *(uchar *)(gd->env_addr + index);
173}
174
Simon Glassa69d0f62017-08-03 12:22:06 -0600175int env_get_char(int index)
Simon Glassc9d728d2017-08-03 12:22:00 -0600176{
Simon Glass2d7cb5b2017-08-20 04:45:15 -0600177 if (gd->env_valid == ENV_INVALID)
Simon Glassa69d0f62017-08-03 12:22:06 -0600178 return default_environment[index];
Goldschmidt Simonb2cdef42018-02-09 20:23:17 +0000179 else
180 return env_get_char_spec(index);
Simon Glassc9d728d2017-08-03 12:22:00 -0600181}
182
183int env_load(void)
184{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100185 struct env_driver *drv;
Sam Protsenko293a1722019-01-18 21:19:04 +0200186 int best_prio = -1;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100187 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600188
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100189 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
190 int ret;
191
192 if (!drv->load)
193 continue;
194
Maxime Ripard1d446082018-01-23 21:16:59 +0100195 if (!env_has_inited(drv->location))
196 continue;
197
Maxime Ripard3574ba02018-01-23 21:16:54 +0100198 printf("Loading Environment from %s... ", drv->name);
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300199 /*
200 * In error case, the error message must be printed during
201 * drv->load() in some underlying API, and it must be exactly
202 * one message.
203 */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100204 ret = drv->load();
Sam Protsenko293a1722019-01-18 21:19:04 +0200205 if (!ret) {
Maxime Ripard3574ba02018-01-23 21:16:54 +0100206 printf("OK\n");
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100207 return 0;
Sam Protsenko293a1722019-01-18 21:19:04 +0200208 } else if (ret == -ENOMSG) {
209 /* Handle "bad CRC" case */
210 if (best_prio == -1)
211 best_prio = prio;
212 } else {
213 debug("Failed (%d)\n", ret);
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300214 }
Simon Glassc9d728d2017-08-03 12:22:00 -0600215 }
216
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200217 /*
218 * In case of invalid environment, we set the 'default' env location
Sam Protsenko293a1722019-01-18 21:19:04 +0200219 * to the best choice, i.e.:
220 * 1. Environment location with bad CRC, if such location was found
221 * 2. Otherwise use the location with highest priority
222 *
223 * This way, next calls to env_save() will restore the environment
224 * at the right place.
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200225 */
Sam Protsenko293a1722019-01-18 21:19:04 +0200226 if (best_prio >= 0)
227 debug("Selecting environment with bad CRC\n");
228 else
229 best_prio = 0;
230 env_get_location(ENVOP_LOAD, best_prio);
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200231
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100232 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600233}
234
235int env_save(void)
236{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100237 struct env_driver *drv;
Simon Glassc9d728d2017-08-03 12:22:00 -0600238
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200239 drv = env_driver_lookup(ENVOP_SAVE, gd->env_load_prio);
240 if (drv) {
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100241 int ret;
Maxime Ripard9c24dfb2018-01-23 21:16:50 +0100242
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100243 if (!drv->save)
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200244 return -ENODEV;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100245
Maxime Ripard1d446082018-01-23 21:16:59 +0100246 if (!env_has_inited(drv->location))
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200247 return -ENODEV;
Maxime Ripard1d446082018-01-23 21:16:59 +0100248
Maxime Ripard9efac3c2018-01-23 21:16:53 +0100249 printf("Saving Environment to %s... ", drv->name);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100250 ret = drv->save();
Maxime Ripard3574ba02018-01-23 21:16:54 +0100251 if (ret)
252 printf("Failed (%d)\n", ret);
253 else
254 printf("OK\n");
255
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100256 if (!ret)
257 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600258 }
259
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100260 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600261}
262
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200263int env_erase(void)
264{
265 struct env_driver *drv;
266
267 drv = env_driver_lookup(ENVOP_ERASE, gd->env_load_prio);
268 if (drv) {
269 int ret;
270
271 if (!drv->erase)
272 return -ENODEV;
273
274 if (!env_has_inited(drv->location))
275 return -ENODEV;
276
277 printf("Erasing Environment on %s... ", drv->name);
278 ret = drv->erase();
279 if (ret)
280 printf("Failed (%d)\n", ret);
281 else
282 printf("OK\n");
283
284 if (!ret)
285 return 0;
286 }
287
288 return -ENODEV;
289}
290
Simon Glass6eeae422017-08-03 12:22:05 -0600291int env_init(void)
Simon Glassc9d728d2017-08-03 12:22:00 -0600292{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100293 struct env_driver *drv;
Simon Glass79388222017-08-03 12:22:02 -0600294 int ret = -ENOENT;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100295 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600296
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100297 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
Maxime Ripard1d446082018-01-23 21:16:59 +0100298 if (!drv->init || !(ret = drv->init()))
299 env_set_inited(drv->location);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100300
Maxime Ripard1d446082018-01-23 21:16:59 +0100301 debug("%s: Environment %s init done (ret=%d)\n", __func__,
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100302 drv->name, ret);
303 }
304
305 if (!prio)
306 return -ENODEV;
307
Simon Glass79388222017-08-03 12:22:02 -0600308 if (ret == -ENOENT) {
309 gd->env_addr = (ulong)&default_environment[0];
Tom Rinieeba55c2017-08-19 22:27:57 -0400310 gd->env_valid = ENV_VALID;
Simon Glass79388222017-08-03 12:22:02 -0600311
312 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600313 }
314
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100315 return ret;
Simon Glassc9d728d2017-08-03 12:22:00 -0600316}