blob: afed0f3c95c3c173edc30c2e7cb04ab351955504 [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>
8#include <environment.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
Siva Durga Prasad Paladugu7bcdf192018-04-13 07:57:21 +020012#if defined(CONFIG_NEEDS_MANUAL_RELOC)
13void env_fix_drivers(void)
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 (entry->name)
22 entry->name += gd->reloc_off;
23 if (entry->load)
24 entry->load += gd->reloc_off;
25 if (entry->save)
26 entry->save += gd->reloc_off;
27 if (entry->init)
28 entry->init += gd->reloc_off;
29 }
30}
31#endif
32
Maxime Ripard52746c42018-01-23 21:16:51 +010033static struct env_driver *_env_driver_lookup(enum env_location loc)
Simon Glassc9d728d2017-08-03 12:22:00 -060034{
35 struct env_driver *drv;
36 const int n_ents = ll_entry_count(struct env_driver, env_driver);
37 struct env_driver *entry;
38
39 drv = ll_entry_start(struct env_driver, env_driver);
40 for (entry = drv; entry != drv + n_ents; entry++) {
41 if (loc == entry->location)
42 return entry;
43 }
44
45 /* Not found */
46 return NULL;
47}
48
Maxime Ripard7d714a22018-01-23 21:16:58 +010049static enum env_location env_locations[] = {
50#ifdef CONFIG_ENV_IS_IN_EEPROM
51 ENVL_EEPROM,
52#endif
53#ifdef CONFIG_ENV_IS_IN_EXT4
54 ENVL_EXT4,
55#endif
56#ifdef CONFIG_ENV_IS_IN_FAT
57 ENVL_FAT,
58#endif
59#ifdef CONFIG_ENV_IS_IN_FLASH
60 ENVL_FLASH,
61#endif
62#ifdef CONFIG_ENV_IS_IN_MMC
63 ENVL_MMC,
64#endif
65#ifdef CONFIG_ENV_IS_IN_NAND
66 ENVL_NAND,
67#endif
68#ifdef CONFIG_ENV_IS_IN_NVRAM
69 ENVL_NVRAM,
70#endif
71#ifdef CONFIG_ENV_IS_IN_REMOTE
72 ENVL_REMOTE,
73#endif
74#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
75 ENVL_SPI_FLASH,
76#endif
77#ifdef CONFIG_ENV_IS_IN_UBI
78 ENVL_UBI,
79#endif
80#ifdef CONFIG_ENV_IS_NOWHERE
81 ENVL_NOWHERE,
82#endif
83};
84
Maxime Ripard1d446082018-01-23 21:16:59 +010085static bool env_has_inited(enum env_location location)
86{
87 return gd->env_has_init & BIT(location);
88}
89
90static void env_set_inited(enum env_location location)
91{
92 /*
93 * We're using a 32-bits bitmask stored in gd (env_has_init)
94 * using the above enum value as the bit index. We need to
95 * make sure that we're not overflowing it.
96 */
97 BUILD_BUG_ON(ARRAY_SIZE(env_locations) > BITS_PER_LONG);
98
99 gd->env_has_init |= BIT(location);
100}
101
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100102/**
103 * env_get_location() - Returns the best env location for a board
104 * @op: operations performed on the environment
105 * @prio: priority between the multiple environments, 0 being the
106 * highest priority
107 *
108 * This will return the preferred environment for the given priority.
Maxime Ripard40c08a62018-01-23 21:17:02 +0100109 * This is overridable by boards if they need to.
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100110 *
111 * All implementations are free to use the operation, the priority and
112 * any other data relevant to their choice, but must take into account
113 * the fact that the lowest prority (0) is the most important location
114 * in the system. The following locations should be returned by order
115 * of descending priorities, from the highest to the lowest priority.
116 *
117 * Returns:
118 * an enum env_location value on success, a negative error code otherwise
119 */
Maxime Ripard40c08a62018-01-23 21:17:02 +0100120__weak enum env_location env_get_location(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600121{
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200122 if (prio >= ARRAY_SIZE(env_locations))
123 return ENVL_UNKNOWN;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100124
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200125 gd->env_load_prio = prio;
Maxime Ripard7d714a22018-01-23 21:16:58 +0100126
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200127 return env_locations[prio];
Simon Glassc9d728d2017-08-03 12:22:00 -0600128}
129
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100130
131/**
132 * env_driver_lookup() - Finds the most suited environment location
133 * @op: operations performed on the environment
134 * @prio: priority between the multiple environments, 0 being the
135 * highest priority
136 *
137 * This will try to find the available environment with the highest
138 * priority in the system.
139 *
140 * Returns:
141 * NULL on error, a pointer to a struct env_driver otherwise
142 */
143static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600144{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100145 enum env_location loc = env_get_location(op, prio);
Simon Glassc9d728d2017-08-03 12:22:00 -0600146 struct env_driver *drv;
147
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100148 if (loc == ENVL_UNKNOWN)
149 return NULL;
150
Maxime Ripard52746c42018-01-23 21:16:51 +0100151 drv = _env_driver_lookup(loc);
Simon Glassc9d728d2017-08-03 12:22:00 -0600152 if (!drv) {
153 debug("%s: No environment driver for location %d\n", __func__,
154 loc);
155 return NULL;
156 }
157
158 return drv;
159}
160
Goldschmidt Simonb2cdef42018-02-09 20:23:17 +0000161__weak int env_get_char_spec(int index)
162{
163 return *(uchar *)(gd->env_addr + index);
164}
165
Simon Glassa69d0f62017-08-03 12:22:06 -0600166int env_get_char(int index)
Simon Glassc9d728d2017-08-03 12:22:00 -0600167{
Simon Glass2d7cb5b2017-08-20 04:45:15 -0600168 if (gd->env_valid == ENV_INVALID)
Simon Glassa69d0f62017-08-03 12:22:06 -0600169 return default_environment[index];
Goldschmidt Simonb2cdef42018-02-09 20:23:17 +0000170 else
171 return env_get_char_spec(index);
Simon Glassc9d728d2017-08-03 12:22:00 -0600172}
173
174int env_load(void)
175{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100176 struct env_driver *drv;
177 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600178
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100179 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
180 int ret;
181
182 if (!drv->load)
183 continue;
184
Maxime Ripard1d446082018-01-23 21:16:59 +0100185 if (!env_has_inited(drv->location))
186 continue;
187
Maxime Ripard3574ba02018-01-23 21:16:54 +0100188 printf("Loading Environment from %s... ", drv->name);
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300189 /*
190 * In error case, the error message must be printed during
191 * drv->load() in some underlying API, and it must be exactly
192 * one message.
193 */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100194 ret = drv->load();
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300195 if (ret) {
196 debug("Failed (%d)\n", ret);
197 } else {
Maxime Ripard3574ba02018-01-23 21:16:54 +0100198 printf("OK\n");
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100199 return 0;
Sam Protsenko13bbfb42018-07-30 19:19:26 +0300200 }
Simon Glassc9d728d2017-08-03 12:22:00 -0600201 }
202
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200203 /*
204 * In case of invalid environment, we set the 'default' env location
205 * to the highest priority. In this way, next calls to env_save()
206 * will restore the environment at the right place.
207 */
208 env_get_location(ENVOP_LOAD, 0);
209
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100210 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600211}
212
213int env_save(void)
214{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100215 struct env_driver *drv;
Simon Glassc9d728d2017-08-03 12:22:00 -0600216
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200217 drv = env_driver_lookup(ENVOP_SAVE, gd->env_load_prio);
218 if (drv) {
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100219 int ret;
Maxime Ripard9c24dfb2018-01-23 21:16:50 +0100220
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100221 if (!drv->save)
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200222 return -ENODEV;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100223
Maxime Ripard1d446082018-01-23 21:16:59 +0100224 if (!env_has_inited(drv->location))
Nicholas Faustinid30ba232018-07-23 10:01:07 +0200225 return -ENODEV;
Maxime Ripard1d446082018-01-23 21:16:59 +0100226
Maxime Ripard9efac3c2018-01-23 21:16:53 +0100227 printf("Saving Environment to %s... ", drv->name);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100228 ret = drv->save();
Maxime Ripard3574ba02018-01-23 21:16:54 +0100229 if (ret)
230 printf("Failed (%d)\n", ret);
231 else
232 printf("OK\n");
233
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100234 if (!ret)
235 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600236 }
237
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100238 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600239}
240
Simon Glass6eeae422017-08-03 12:22:05 -0600241int env_init(void)
Simon Glassc9d728d2017-08-03 12:22:00 -0600242{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100243 struct env_driver *drv;
Simon Glass79388222017-08-03 12:22:02 -0600244 int ret = -ENOENT;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100245 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600246
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100247 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
Maxime Ripard1d446082018-01-23 21:16:59 +0100248 if (!drv->init || !(ret = drv->init()))
249 env_set_inited(drv->location);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100250
Maxime Ripard1d446082018-01-23 21:16:59 +0100251 debug("%s: Environment %s init done (ret=%d)\n", __func__,
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100252 drv->name, ret);
253 }
254
255 if (!prio)
256 return -ENODEV;
257
Simon Glass79388222017-08-03 12:22:02 -0600258 if (ret == -ENOENT) {
259 gd->env_addr = (ulong)&default_environment[0];
Tom Rinieeba55c2017-08-19 22:27:57 -0400260 gd->env_valid = ENV_VALID;
Simon Glass79388222017-08-03 12:22:02 -0600261
262 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600263 }
264
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100265 return ret;
Simon Glassc9d728d2017-08-03 12:22:00 -0600266}