blob: 9a89832c1aafc79ba4d59536306a0561e84e2db2 [file] [log] [blame]
Simon Glassc9d728d2017-08-03 12:22:00 -06001/*
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
Maxime Ripard52746c42018-01-23 21:16:51 +010013static struct env_driver *_env_driver_lookup(enum env_location loc)
Simon Glassc9d728d2017-08-03 12:22:00 -060014{
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
Maxime Ripard7d714a22018-01-23 21:16:58 +010029static 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
65static enum env_location env_load_location = ENVL_UNKNOWN;
66
Maxime Ripard1d446082018-01-23 21:16:59 +010067static bool env_has_inited(enum env_location location)
68{
69 return gd->env_has_init & BIT(location);
70}
71
72static void env_set_inited(enum env_location location)
73{
74 /*
75 * We're using a 32-bits bitmask stored in gd (env_has_init)
76 * using the above enum value as the bit index. We need to
77 * make sure that we're not overflowing it.
78 */
79 BUILD_BUG_ON(ARRAY_SIZE(env_locations) > BITS_PER_LONG);
80
81 gd->env_has_init |= BIT(location);
82}
83
Maxime Ripard8a3a7e22018-01-23 21:16:52 +010084/**
85 * env_get_location() - Returns the best env location for a board
86 * @op: operations performed on the environment
87 * @prio: priority between the multiple environments, 0 being the
88 * highest priority
89 *
90 * This will return the preferred environment for the given priority.
Maxime Ripard40c08a62018-01-23 21:17:02 +010091 * This is overridable by boards if they need to.
Maxime Ripard8a3a7e22018-01-23 21:16:52 +010092 *
93 * All implementations are free to use the operation, the priority and
94 * any other data relevant to their choice, but must take into account
95 * the fact that the lowest prority (0) is the most important location
96 * in the system. The following locations should be returned by order
97 * of descending priorities, from the highest to the lowest priority.
98 *
99 * Returns:
100 * an enum env_location value on success, a negative error code otherwise
101 */
Maxime Ripard40c08a62018-01-23 21:17:02 +0100102__weak enum env_location env_get_location(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600103{
Maxime Ripard7d714a22018-01-23 21:16:58 +0100104 switch (op) {
105 case ENVOP_GET_CHAR:
106 case ENVOP_INIT:
107 case ENVOP_LOAD:
108 if (prio >= ARRAY_SIZE(env_locations))
109 return ENVL_UNKNOWN;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100110
Maxime Ripard7d714a22018-01-23 21:16:58 +0100111 env_load_location = env_locations[prio];
112 return env_load_location;
113
114 case ENVOP_SAVE:
115 return env_load_location;
116 }
117
118 return ENVL_UNKNOWN;
Simon Glassc9d728d2017-08-03 12:22:00 -0600119}
120
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100121
122/**
123 * env_driver_lookup() - Finds the most suited environment location
124 * @op: operations performed on the environment
125 * @prio: priority between the multiple environments, 0 being the
126 * highest priority
127 *
128 * This will try to find the available environment with the highest
129 * priority in the system.
130 *
131 * Returns:
132 * NULL on error, a pointer to a struct env_driver otherwise
133 */
134static struct env_driver *env_driver_lookup(enum env_operation op, int prio)
Simon Glassc9d728d2017-08-03 12:22:00 -0600135{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100136 enum env_location loc = env_get_location(op, prio);
Simon Glassc9d728d2017-08-03 12:22:00 -0600137 struct env_driver *drv;
138
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100139 if (loc == ENVL_UNKNOWN)
140 return NULL;
141
Maxime Ripard52746c42018-01-23 21:16:51 +0100142 drv = _env_driver_lookup(loc);
Simon Glassc9d728d2017-08-03 12:22:00 -0600143 if (!drv) {
144 debug("%s: No environment driver for location %d\n", __func__,
145 loc);
146 return NULL;
147 }
148
149 return drv;
150}
151
Simon Glassa69d0f62017-08-03 12:22:06 -0600152int env_get_char(int index)
Simon Glassc9d728d2017-08-03 12:22:00 -0600153{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100154 struct env_driver *drv;
155 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600156
Simon Glass2d7cb5b2017-08-20 04:45:15 -0600157 if (gd->env_valid == ENV_INVALID)
Simon Glassa69d0f62017-08-03 12:22:06 -0600158 return default_environment[index];
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100159
160 for (prio = 0; (drv = env_driver_lookup(ENVOP_GET_CHAR, prio)); prio++) {
161 int ret;
162
163 if (!drv->get_char)
164 continue;
165
Maxime Ripard1d446082018-01-23 21:16:59 +0100166 if (!env_has_inited(drv->location))
167 continue;
168
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100169 ret = drv->get_char(index);
170 if (!ret)
171 return 0;
172
173 debug("%s: Environment %s failed to load (err=%d)\n", __func__,
174 drv->name, ret);
Simon Glassc9d728d2017-08-03 12:22:00 -0600175 }
176
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100177 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600178}
179
180int env_load(void)
181{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100182 struct env_driver *drv;
183 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600184
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100185 for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) {
186 int ret;
187
188 if (!drv->load)
189 continue;
190
Maxime Ripard1d446082018-01-23 21:16:59 +0100191 if (!env_has_inited(drv->location))
192 continue;
193
Maxime Ripard3574ba02018-01-23 21:16:54 +0100194 printf("Loading Environment from %s... ", drv->name);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100195 ret = drv->load();
Maxime Ripard3574ba02018-01-23 21:16:54 +0100196 if (ret)
197 printf("Failed (%d)\n", ret);
198 else
199 printf("OK\n");
200
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100201 if (!ret)
202 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600203 }
204
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100205 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600206}
207
208int env_save(void)
209{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100210 struct env_driver *drv;
211 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600212
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100213 for (prio = 0; (drv = env_driver_lookup(ENVOP_SAVE, prio)); prio++) {
214 int ret;
Maxime Ripard9c24dfb2018-01-23 21:16:50 +0100215
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100216 if (!drv->save)
217 continue;
218
Maxime Ripard1d446082018-01-23 21:16:59 +0100219 if (!env_has_inited(drv->location))
220 continue;
221
Maxime Ripard9efac3c2018-01-23 21:16:53 +0100222 printf("Saving Environment to %s... ", drv->name);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100223 ret = drv->save();
Maxime Ripard3574ba02018-01-23 21:16:54 +0100224 if (ret)
225 printf("Failed (%d)\n", ret);
226 else
227 printf("OK\n");
228
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100229 if (!ret)
230 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600231 }
232
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100233 return -ENODEV;
Simon Glassc9d728d2017-08-03 12:22:00 -0600234}
235
Simon Glass6eeae422017-08-03 12:22:05 -0600236int env_init(void)
Simon Glassc9d728d2017-08-03 12:22:00 -0600237{
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100238 struct env_driver *drv;
Simon Glass79388222017-08-03 12:22:02 -0600239 int ret = -ENOENT;
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100240 int prio;
Simon Glassc9d728d2017-08-03 12:22:00 -0600241
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100242 for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) {
Maxime Ripard1d446082018-01-23 21:16:59 +0100243 if (!drv->init || !(ret = drv->init()))
244 env_set_inited(drv->location);
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100245
Maxime Ripard1d446082018-01-23 21:16:59 +0100246 debug("%s: Environment %s init done (ret=%d)\n", __func__,
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100247 drv->name, ret);
248 }
249
250 if (!prio)
251 return -ENODEV;
252
Simon Glass79388222017-08-03 12:22:02 -0600253 if (ret == -ENOENT) {
254 gd->env_addr = (ulong)&default_environment[0];
Tom Rinieeba55c2017-08-19 22:27:57 -0400255 gd->env_valid = ENV_VALID;
Simon Glass79388222017-08-03 12:22:02 -0600256
257 return 0;
Simon Glassc9d728d2017-08-03 12:22:00 -0600258 }
259
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100260 return ret;
Simon Glassc9d728d2017-08-03 12:22:00 -0600261}