]>
Commit | Line | Data |
---|---|---|
c9d728dd SG |
1 | /* |
2 | * Copyright (C) 2017 Google, Inc | |
3 | * Written by Simon Glass <[email protected]> | |
4 | * | |
5 | * SPDX-License-Identifier: GPL-2.0+ | |
6 | */ | |
7 | ||
8 | #include <common.h> | |
9 | #include <environment.h> | |
10 | ||
11 | DECLARE_GLOBAL_DATA_PTR; | |
12 | ||
52746c43 | 13 | static struct env_driver *_env_driver_lookup(enum env_location loc) |
c9d728dd SG |
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 (loc == entry->location) | |
22 | return entry; | |
23 | } | |
24 | ||
25 | /* Not found */ | |
26 | return NULL; | |
27 | } | |
28 | ||
7d714a24 MR |
29 | static 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 | ||
1d446087 MR |
65 | static bool env_has_inited(enum env_location location) |
66 | { | |
67 | return gd->env_has_init & BIT(location); | |
68 | } | |
69 | ||
70 | static void env_set_inited(enum env_location location) | |
71 | { | |
72 | /* | |
73 | * We're using a 32-bits bitmask stored in gd (env_has_init) | |
74 | * using the above enum value as the bit index. We need to | |
75 | * make sure that we're not overflowing it. | |
76 | */ | |
77 | BUILD_BUG_ON(ARRAY_SIZE(env_locations) > BITS_PER_LONG); | |
78 | ||
79 | gd->env_has_init |= BIT(location); | |
80 | } | |
81 | ||
8a3a7e22 MR |
82 | /** |
83 | * env_get_location() - Returns the best env location for a board | |
84 | * @op: operations performed on the environment | |
85 | * @prio: priority between the multiple environments, 0 being the | |
86 | * highest priority | |
87 | * | |
88 | * This will return the preferred environment for the given priority. | |
40c08a68 | 89 | * This is overridable by boards if they need to. |
8a3a7e22 MR |
90 | * |
91 | * All implementations are free to use the operation, the priority and | |
92 | * any other data relevant to their choice, but must take into account | |
93 | * the fact that the lowest prority (0) is the most important location | |
94 | * in the system. The following locations should be returned by order | |
95 | * of descending priorities, from the highest to the lowest priority. | |
96 | * | |
97 | * Returns: | |
98 | * an enum env_location value on success, a negative error code otherwise | |
99 | */ | |
40c08a68 | 100 | __weak enum env_location env_get_location(enum env_operation op, int prio) |
c9d728dd | 101 | { |
7d714a24 MR |
102 | switch (op) { |
103 | case ENVOP_GET_CHAR: | |
104 | case ENVOP_INIT: | |
105 | case ENVOP_LOAD: | |
106 | if (prio >= ARRAY_SIZE(env_locations)) | |
107 | return ENVL_UNKNOWN; | |
108 | ||
e1caa584 YS |
109 | gd->env_load_location = env_locations[prio]; |
110 | return gd->env_load_location; | |
7d714a24 MR |
111 | |
112 | case ENVOP_SAVE: | |
e1caa584 | 113 | return gd->env_load_location; |
7d714a24 | 114 | } |
8a3a7e22 | 115 | |
7d714a24 | 116 | return ENVL_UNKNOWN; |
c9d728dd SG |
117 | } |
118 | ||
8a3a7e22 MR |
119 | |
120 | /** | |
121 | * env_driver_lookup() - Finds the most suited environment location | |
122 | * @op: operations performed on the environment | |
123 | * @prio: priority between the multiple environments, 0 being the | |
124 | * highest priority | |
125 | * | |
126 | * This will try to find the available environment with the highest | |
127 | * priority in the system. | |
128 | * | |
129 | * Returns: | |
130 | * NULL on error, a pointer to a struct env_driver otherwise | |
131 | */ | |
132 | static struct env_driver *env_driver_lookup(enum env_operation op, int prio) | |
c9d728dd | 133 | { |
8a3a7e22 | 134 | enum env_location loc = env_get_location(op, prio); |
c9d728dd SG |
135 | struct env_driver *drv; |
136 | ||
8a3a7e22 MR |
137 | if (loc == ENVL_UNKNOWN) |
138 | return NULL; | |
139 | ||
52746c43 | 140 | drv = _env_driver_lookup(loc); |
c9d728dd SG |
141 | if (!drv) { |
142 | debug("%s: No environment driver for location %d\n", __func__, | |
143 | loc); | |
144 | return NULL; | |
145 | } | |
146 | ||
147 | return drv; | |
148 | } | |
149 | ||
b2cdef48 | 150 | __weak int env_get_char_spec(int index) |
c9d728dd | 151 | { |
b2cdef48 GS |
152 | return *(uchar *)(gd->env_addr + index); |
153 | } | |
c9d728dd | 154 | |
b2cdef48 GS |
155 | int env_get_char(int index) |
156 | { | |
2d7cb5b4 | 157 | if (gd->env_valid == ENV_INVALID) |
a69d0f60 | 158 | return default_environment[index]; |
b2cdef48 GS |
159 | else |
160 | return env_get_char_spec(index); | |
c9d728dd SG |
161 | } |
162 | ||
163 | int env_load(void) | |
164 | { | |
8a3a7e22 MR |
165 | struct env_driver *drv; |
166 | int prio; | |
c9d728dd | 167 | |
8a3a7e22 MR |
168 | for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) { |
169 | int ret; | |
170 | ||
171 | if (!drv->load) | |
172 | continue; | |
173 | ||
1d446087 MR |
174 | if (!env_has_inited(drv->location)) |
175 | continue; | |
176 | ||
3574ba01 | 177 | printf("Loading Environment from %s... ", drv->name); |
8a3a7e22 | 178 | ret = drv->load(); |
3574ba01 MR |
179 | if (ret) |
180 | printf("Failed (%d)\n", ret); | |
181 | else | |
182 | printf("OK\n"); | |
183 | ||
8a3a7e22 MR |
184 | if (!ret) |
185 | return 0; | |
c9d728dd SG |
186 | } |
187 | ||
8a3a7e22 | 188 | return -ENODEV; |
c9d728dd SG |
189 | } |
190 | ||
191 | int env_save(void) | |
192 | { | |
8a3a7e22 MR |
193 | struct env_driver *drv; |
194 | int prio; | |
c9d728dd | 195 | |
8a3a7e22 MR |
196 | for (prio = 0; (drv = env_driver_lookup(ENVOP_SAVE, prio)); prio++) { |
197 | int ret; | |
198 | ||
199 | if (!drv->save) | |
200 | continue; | |
201 | ||
1d446087 MR |
202 | if (!env_has_inited(drv->location)) |
203 | continue; | |
204 | ||
9efac3c8 | 205 | printf("Saving Environment to %s... ", drv->name); |
8a3a7e22 | 206 | ret = drv->save(); |
3574ba01 MR |
207 | if (ret) |
208 | printf("Failed (%d)\n", ret); | |
209 | else | |
210 | printf("OK\n"); | |
211 | ||
8a3a7e22 MR |
212 | if (!ret) |
213 | return 0; | |
c9d728dd SG |
214 | } |
215 | ||
8a3a7e22 | 216 | return -ENODEV; |
c9d728dd SG |
217 | } |
218 | ||
6eeae424 | 219 | int env_init(void) |
c9d728dd | 220 | { |
8a3a7e22 | 221 | struct env_driver *drv; |
7938822a | 222 | int ret = -ENOENT; |
8a3a7e22 MR |
223 | int prio; |
224 | ||
225 | for (prio = 0; (drv = env_driver_lookup(ENVOP_INIT, prio)); prio++) { | |
1d446087 MR |
226 | if (!drv->init || !(ret = drv->init())) |
227 | env_set_inited(drv->location); | |
8a3a7e22 | 228 | |
1d446087 | 229 | debug("%s: Environment %s init done (ret=%d)\n", __func__, |
8a3a7e22 MR |
230 | drv->name, ret); |
231 | } | |
232 | ||
233 | if (!prio) | |
234 | return -ENODEV; | |
235 | ||
7938822a SG |
236 | if (ret == -ENOENT) { |
237 | gd->env_addr = (ulong)&default_environment[0]; | |
eeba55cb | 238 | gd->env_valid = ENV_VALID; |
7938822a SG |
239 | |
240 | return 0; | |
c9d728dd SG |
241 | } |
242 | ||
8a3a7e22 | 243 | return ret; |
c9d728dd | 244 | } |