]>
Commit | Line | Data |
---|---|---|
13a5695b | 1 | /* |
ea882baf WD |
2 | * (C) Copyright 2000-2010 |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | * | |
cc49cade SW |
5 | * (C) Copyright 2008 |
6 | * Stuart Wood, Lab X Technologies <[email protected]> | |
7 | * | |
13a5695b WD |
8 | * (C) Copyright 2004 |
9 | * Jian Zhang, Texas Instruments, [email protected]. | |
13a5695b WD |
10 | * |
11 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
12 | * Andreas Heppel <[email protected]> | |
ea882baf | 13 | * |
3765b3e7 | 14 | * SPDX-License-Identifier: GPL-2.0+ |
13a5695b WD |
15 | */ |
16 | ||
13a5695b | 17 | #include <common.h> |
13a5695b WD |
18 | #include <command.h> |
19 | #include <environment.h> | |
20 | #include <linux/stddef.h> | |
e443c944 | 21 | #include <malloc.h> |
cf92e05c | 22 | #include <memalign.h> |
addb2e16 | 23 | #include <nand.h> |
ea882baf WD |
24 | #include <search.h> |
25 | #include <errno.h> | |
13a5695b | 26 | |
bdab39d3 | 27 | #if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND) |
13a5695b | 28 | #define CMD_SAVEENV |
0e8d1586 | 29 | #elif defined(CONFIG_ENV_OFFSET_REDUND) |
de152b9b | 30 | #error CONFIG_ENV_OFFSET_REDUND must have CONFIG_CMD_SAVEENV & CONFIG_CMD_NAND |
13a5695b WD |
31 | #endif |
32 | ||
de152b9b IG |
33 | #if defined(CONFIG_ENV_SIZE_REDUND) && \ |
34 | (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE) | |
0e8d1586 | 35 | #error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE |
13a5695b WD |
36 | #endif |
37 | ||
0e8d1586 JCPV |
38 | #ifndef CONFIG_ENV_RANGE |
39 | #define CONFIG_ENV_RANGE CONFIG_ENV_SIZE | |
cc49cade SW |
40 | #endif |
41 | ||
ea882baf | 42 | char *env_name_spec = "NAND"; |
13a5695b | 43 | |
b74ab737 | 44 | #if defined(ENV_IS_EMBEDDED) |
994bc671 | 45 | env_t *env_ptr = &environment; |
b74ab737 GL |
46 | #elif defined(CONFIG_NAND_ENV_DST) |
47 | env_t *env_ptr = (env_t *)CONFIG_NAND_ENV_DST; | |
13a5695b | 48 | #else /* ! ENV_IS_EMBEDDED */ |
de152b9b | 49 | env_t *env_ptr; |
13a5695b WD |
50 | #endif /* ENV_IS_EMBEDDED */ |
51 | ||
d87080b7 | 52 | DECLARE_GLOBAL_DATA_PTR; |
13a5695b | 53 | |
ea882baf WD |
54 | /* |
55 | * This is called before nand_init() so we can't read NAND to | |
56 | * validate env data. | |
57 | * | |
58 | * Mark it OK for now. env_relocate() in env_common.c will call our | |
59 | * relocate function which does the real validation. | |
d12ae808 SR |
60 | * |
61 | * When using a NAND boot image (like sequoia_nand), the environment | |
ea882baf WD |
62 | * can be embedded or attached to the U-Boot image in NAND flash. |
63 | * This way the SPL loads not only the U-Boot image from NAND but | |
64 | * also the environment. | |
13a5695b WD |
65 | */ |
66 | int env_init(void) | |
67 | { | |
b74ab737 | 68 | #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_NAND_ENV_DST) |
d12ae808 | 69 | int crc1_ok = 0, crc2_ok = 0; |
b74ab737 GL |
70 | env_t *tmp_env1; |
71 | ||
72 | #ifdef CONFIG_ENV_OFFSET_REDUND | |
73 | env_t *tmp_env2; | |
d12ae808 | 74 | |
0e8d1586 | 75 | tmp_env2 = (env_t *)((ulong)env_ptr + CONFIG_ENV_SIZE); |
de152b9b | 76 | crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc; |
b74ab737 | 77 | #endif |
b74ab737 | 78 | tmp_env1 = env_ptr; |
de152b9b | 79 | crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc; |
d12ae808 | 80 | |
b74ab737 | 81 | if (!crc1_ok && !crc2_ok) { |
de152b9b IG |
82 | gd->env_addr = 0; |
83 | gd->env_valid = 0; | |
b74ab737 GL |
84 | |
85 | return 0; | |
86 | } else if (crc1_ok && !crc2_ok) { | |
d12ae808 | 87 | gd->env_valid = 1; |
b74ab737 GL |
88 | } |
89 | #ifdef CONFIG_ENV_OFFSET_REDUND | |
90 | else if (!crc1_ok && crc2_ok) { | |
d12ae808 | 91 | gd->env_valid = 2; |
b74ab737 | 92 | } else { |
d12ae808 | 93 | /* both ok - check serial */ |
de152b9b | 94 | if (tmp_env1->flags == 255 && tmp_env2->flags == 0) |
d12ae808 | 95 | gd->env_valid = 2; |
de152b9b | 96 | else if (tmp_env2->flags == 255 && tmp_env1->flags == 0) |
d12ae808 | 97 | gd->env_valid = 1; |
de152b9b | 98 | else if (tmp_env1->flags > tmp_env2->flags) |
d12ae808 | 99 | gd->env_valid = 1; |
de152b9b | 100 | else if (tmp_env2->flags > tmp_env1->flags) |
d12ae808 SR |
101 | gd->env_valid = 2; |
102 | else /* flags are equal - almost impossible */ | |
103 | gd->env_valid = 1; | |
104 | } | |
105 | ||
b74ab737 GL |
106 | if (gd->env_valid == 2) |
107 | env_ptr = tmp_env2; | |
108 | else | |
109 | #endif | |
d12ae808 SR |
110 | if (gd->env_valid == 1) |
111 | env_ptr = tmp_env1; | |
b74ab737 GL |
112 | |
113 | gd->env_addr = (ulong)env_ptr->data; | |
114 | ||
115 | #else /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */ | |
de152b9b IG |
116 | gd->env_addr = (ulong)&default_environment[0]; |
117 | gd->env_valid = 1; | |
b74ab737 | 118 | #endif /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */ |
13a5695b | 119 | |
de152b9b | 120 | return 0; |
13a5695b WD |
121 | } |
122 | ||
123 | #ifdef CMD_SAVEENV | |
addb2e16 BS |
124 | /* |
125 | * The legacy NAND code saved the environment in the first NAND device i.e., | |
126 | * nand_dev_desc + 0. This is also the behaviour using the new NAND code. | |
127 | */ | |
45f08d35 | 128 | static int writeenv(size_t offset, u_char *buf) |
cc49cade | 129 | { |
0e8d1586 | 130 | size_t end = offset + CONFIG_ENV_RANGE; |
cc49cade | 131 | size_t amount_saved = 0; |
c3db8c64 | 132 | size_t blocksize, len; |
cc49cade SW |
133 | u_char *char_ptr; |
134 | ||
135 | blocksize = nand_info[0].erasesize; | |
b4141195 | 136 | len = min(blocksize, (size_t)CONFIG_ENV_SIZE); |
cc49cade | 137 | |
0e8d1586 | 138 | while (amount_saved < CONFIG_ENV_SIZE && offset < end) { |
cc49cade SW |
139 | if (nand_block_isbad(&nand_info[0], offset)) { |
140 | offset += blocksize; | |
141 | } else { | |
142 | char_ptr = &buf[amount_saved]; | |
de152b9b | 143 | if (nand_write(&nand_info[0], offset, &len, char_ptr)) |
cc49cade | 144 | return 1; |
de152b9b | 145 | |
cc49cade | 146 | offset += blocksize; |
c3db8c64 | 147 | amount_saved += len; |
cc49cade SW |
148 | } |
149 | } | |
0e8d1586 | 150 | if (amount_saved != CONFIG_ENV_SIZE) |
cc49cade SW |
151 | return 1; |
152 | ||
153 | return 0; | |
154 | } | |
eef1d719 | 155 | |
2b26201a PS |
156 | struct env_location { |
157 | const char *name; | |
158 | const nand_erase_options_t erase_opts; | |
159 | }; | |
eef1d719 | 160 | |
2b26201a PS |
161 | static int erase_and_write_env(const struct env_location *location, |
162 | u_char *env_new) | |
13a5695b | 163 | { |
2b26201a | 164 | int ret = 0; |
cc49cade | 165 | |
2b26201a PS |
166 | printf("Erasing %s...\n", location->name); |
167 | if (nand_erase_opts(&nand_info[0], &location->erase_opts)) | |
cc49cade | 168 | return 1; |
ea882baf | 169 | |
2b26201a PS |
170 | printf("Writing to %s... ", location->name); |
171 | ret = writeenv(location->erase_opts.offset, env_new); | |
172 | puts(ret ? "FAILED!\n" : "OK\n"); | |
ea882baf | 173 | |
e443c944 MK |
174 | return ret; |
175 | } | |
2b26201a PS |
176 | |
177 | #ifdef CONFIG_ENV_OFFSET_REDUND | |
178 | static unsigned char env_flags; | |
179 | #endif | |
180 | ||
e443c944 MK |
181 | int saveenv(void) |
182 | { | |
de152b9b | 183 | int ret = 0; |
cd0f4fa1 | 184 | ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); |
2b26201a PS |
185 | int env_idx = 0; |
186 | static const struct env_location location[] = { | |
187 | { | |
188 | .name = "NAND", | |
189 | .erase_opts = { | |
190 | .length = CONFIG_ENV_RANGE, | |
191 | .offset = CONFIG_ENV_OFFSET, | |
192 | }, | |
193 | }, | |
194 | #ifdef CONFIG_ENV_OFFSET_REDUND | |
195 | { | |
196 | .name = "redundant NAND", | |
197 | .erase_opts = { | |
198 | .length = CONFIG_ENV_RANGE, | |
199 | .offset = CONFIG_ENV_OFFSET_REDUND, | |
200 | }, | |
201 | }, | |
202 | #endif | |
203 | }; | |
e093a247 | 204 | |
cc49cade | 205 | |
0e8d1586 | 206 | if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE) |
cc49cade | 207 | return 1; |
ea882baf | 208 | |
7ce1526e MV |
209 | ret = env_export(env_new); |
210 | if (ret) | |
211 | return ret; | |
212 | ||
2b26201a PS |
213 | #ifdef CONFIG_ENV_OFFSET_REDUND |
214 | env_new->flags = ++env_flags; /* increase the serial */ | |
215 | env_idx = (gd->env_valid == 1); | |
216 | #endif | |
13a5695b | 217 | |
2b26201a PS |
218 | ret = erase_and_write_env(&location[env_idx], (u_char *)env_new); |
219 | #ifdef CONFIG_ENV_OFFSET_REDUND | |
220 | if (!ret) { | |
221 | /* preset other copy for next write */ | |
222 | gd->env_valid = gd->env_valid == 2 ? 1 : 2; | |
223 | return ret; | |
cc49cade | 224 | } |
13a5695b | 225 | |
2b26201a PS |
226 | env_idx = (env_idx + 1) & 1; |
227 | ret = erase_and_write_env(&location[env_idx], (u_char *)env_new); | |
228 | if (!ret) | |
229 | printf("Warning: primary env write failed," | |
230 | " redundancy is lost!\n"); | |
231 | #endif | |
232 | ||
addb2e16 | 233 | return ret; |
13a5695b WD |
234 | } |
235 | #endif /* CMD_SAVEENV */ | |
236 | ||
9e205602 TH |
237 | #if defined(CONFIG_SPL_BUILD) |
238 | static int readenv(size_t offset, u_char *buf) | |
239 | { | |
240 | return nand_spl_load_image(offset, CONFIG_ENV_SIZE, buf); | |
241 | } | |
242 | #else | |
45f08d35 | 243 | static int readenv(size_t offset, u_char *buf) |
cc49cade | 244 | { |
0e8d1586 | 245 | size_t end = offset + CONFIG_ENV_RANGE; |
cc49cade | 246 | size_t amount_loaded = 0; |
c3db8c64 | 247 | size_t blocksize, len; |
cc49cade SW |
248 | u_char *char_ptr; |
249 | ||
250 | blocksize = nand_info[0].erasesize; | |
962ad59e MF |
251 | if (!blocksize) |
252 | return 1; | |
de152b9b | 253 | |
b4141195 | 254 | len = min(blocksize, (size_t)CONFIG_ENV_SIZE); |
cc49cade | 255 | |
0e8d1586 | 256 | while (amount_loaded < CONFIG_ENV_SIZE && offset < end) { |
cc49cade SW |
257 | if (nand_block_isbad(&nand_info[0], offset)) { |
258 | offset += blocksize; | |
259 | } else { | |
260 | char_ptr = &buf[amount_loaded]; | |
de152b9b | 261 | if (nand_read_skip_bad(&nand_info[0], offset, |
c39d6a0e TR |
262 | &len, NULL, |
263 | nand_info[0].size, char_ptr)) | |
cc49cade | 264 | return 1; |
de152b9b | 265 | |
cc49cade | 266 | offset += blocksize; |
c3db8c64 | 267 | amount_loaded += len; |
cc49cade SW |
268 | } |
269 | } | |
de152b9b | 270 | |
0e8d1586 | 271 | if (amount_loaded != CONFIG_ENV_SIZE) |
cc49cade SW |
272 | return 1; |
273 | ||
274 | return 0; | |
275 | } | |
9e205602 | 276 | #endif /* #if defined(CONFIG_SPL_BUILD) */ |
cc49cade | 277 | |
c9f7351b BG |
278 | #ifdef CONFIG_ENV_OFFSET_OOB |
279 | int get_nand_env_oob(nand_info_t *nand, unsigned long *result) | |
280 | { | |
281 | struct mtd_oob_ops ops; | |
de152b9b | 282 | uint32_t oob_buf[ENV_OFFSET_SIZE / sizeof(uint32_t)]; |
c9f7351b BG |
283 | int ret; |
284 | ||
de152b9b IG |
285 | ops.datbuf = NULL; |
286 | ops.mode = MTD_OOB_AUTO; | |
287 | ops.ooboffs = 0; | |
288 | ops.ooblen = ENV_OFFSET_SIZE; | |
289 | ops.oobbuf = (void *)oob_buf; | |
c9f7351b BG |
290 | |
291 | ret = nand->read_oob(nand, ENV_OFFSET_SIZE, &ops); | |
53504a27 SW |
292 | if (ret) { |
293 | printf("error reading OOB block 0\n"); | |
294 | return ret; | |
295 | } | |
c9f7351b | 296 | |
53504a27 SW |
297 | if (oob_buf[0] == ENV_OOB_MARKER) { |
298 | *result = oob_buf[1] * nand->erasesize; | |
299 | } else if (oob_buf[0] == ENV_OOB_MARKER_OLD) { | |
300 | *result = oob_buf[1]; | |
c9f7351b | 301 | } else { |
53504a27 SW |
302 | printf("No dynamic environment marker in OOB block 0\n"); |
303 | return -ENOENT; | |
c9f7351b | 304 | } |
53504a27 SW |
305 | |
306 | return 0; | |
c9f7351b BG |
307 | } |
308 | #endif | |
309 | ||
0e8d1586 | 310 | #ifdef CONFIG_ENV_OFFSET_REDUND |
ea882baf | 311 | void env_relocate_spec(void) |
e443c944 MK |
312 | { |
313 | #if !defined(ENV_IS_EMBEDDED) | |
b76a147b | 314 | int read1_fail = 0, read2_fail = 0; |
2770bcb2 | 315 | int crc1_ok = 0, crc2_ok = 0; |
ea882baf | 316 | env_t *ep, *tmp_env1, *tmp_env2; |
e443c944 | 317 | |
ea882baf WD |
318 | tmp_env1 = (env_t *)malloc(CONFIG_ENV_SIZE); |
319 | tmp_env2 = (env_t *)malloc(CONFIG_ENV_SIZE); | |
de152b9b | 320 | if (tmp_env1 == NULL || tmp_env2 == NULL) { |
15b86c3d | 321 | puts("Can't allocate buffers for environment\n"); |
ea882baf | 322 | set_default_env("!malloc() failed"); |
de152b9b | 323 | goto done; |
15b86c3d WD |
324 | } |
325 | ||
b76a147b PS |
326 | read1_fail = readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1); |
327 | read2_fail = readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2); | |
ea882baf | 328 | |
b76a147b PS |
329 | if (read1_fail && read2_fail) |
330 | puts("*** Error - No Valid Environment Area found\n"); | |
331 | else if (read1_fail || read2_fail) | |
332 | puts("*** Warning - some problems detected " | |
333 | "reading environment; recovered successfully\n"); | |
e443c944 | 334 | |
a1eac57a PS |
335 | crc1_ok = !read1_fail && |
336 | (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc); | |
337 | crc2_ok = !read2_fail && | |
338 | (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc); | |
e443c944 | 339 | |
ea882baf | 340 | if (!crc1_ok && !crc2_ok) { |
ea882baf | 341 | set_default_env("!bad CRC"); |
de152b9b | 342 | goto done; |
ea882baf | 343 | } else if (crc1_ok && !crc2_ok) { |
e443c944 | 344 | gd->env_valid = 1; |
ea882baf | 345 | } else if (!crc1_ok && crc2_ok) { |
e443c944 | 346 | gd->env_valid = 2; |
ea882baf | 347 | } else { |
e443c944 | 348 | /* both ok - check serial */ |
ea882baf | 349 | if (tmp_env1->flags == 255 && tmp_env2->flags == 0) |
e443c944 | 350 | gd->env_valid = 2; |
ea882baf | 351 | else if (tmp_env2->flags == 255 && tmp_env1->flags == 0) |
e443c944 | 352 | gd->env_valid = 1; |
ea882baf | 353 | else if (tmp_env1->flags > tmp_env2->flags) |
e443c944 | 354 | gd->env_valid = 1; |
ea882baf | 355 | else if (tmp_env2->flags > tmp_env1->flags) |
e443c944 MK |
356 | gd->env_valid = 2; |
357 | else /* flags are equal - almost impossible */ | |
358 | gd->env_valid = 1; | |
e443c944 MK |
359 | } |
360 | ||
361 | free(env_ptr); | |
ea882baf WD |
362 | |
363 | if (gd->env_valid == 1) | |
364 | ep = tmp_env1; | |
365 | else | |
366 | ep = tmp_env2; | |
367 | ||
eef1d719 | 368 | env_flags = ep->flags; |
ea882baf WD |
369 | env_import((char *)ep, 0); |
370 | ||
de152b9b | 371 | done: |
ea882baf WD |
372 | free(tmp_env1); |
373 | free(tmp_env2); | |
e443c944 MK |
374 | |
375 | #endif /* ! ENV_IS_EMBEDDED */ | |
376 | } | |
0e8d1586 | 377 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
addb2e16 | 378 | /* |
ea882baf WD |
379 | * The legacy NAND code saved the environment in the first NAND |
380 | * device i.e., nand_dev_desc + 0. This is also the behaviour using | |
381 | * the new NAND code. | |
addb2e16 | 382 | */ |
de152b9b | 383 | void env_relocate_spec(void) |
13a5695b WD |
384 | { |
385 | #if !defined(ENV_IS_EMBEDDED) | |
d52fb7e3 | 386 | int ret; |
cd0f4fa1 | 387 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
13a5695b | 388 | |
c9f7351b BG |
389 | #if defined(CONFIG_ENV_OFFSET_OOB) |
390 | ret = get_nand_env_oob(&nand_info[0], &nand_env_oob_offset); | |
ea882baf WD |
391 | /* |
392 | * If unable to read environment offset from NAND OOB then fall through | |
c9f7351b BG |
393 | * to the normal environment reading code below |
394 | */ | |
ea882baf | 395 | if (!ret) { |
c9f7351b | 396 | printf("Found Environment offset in OOB..\n"); |
ea882baf WD |
397 | } else { |
398 | set_default_env("!no env offset in OOB"); | |
399 | return; | |
400 | } | |
c9f7351b BG |
401 | #endif |
402 | ||
cd0f4fa1 | 403 | ret = readenv(CONFIG_ENV_OFFSET, (u_char *)buf); |
ea882baf WD |
404 | if (ret) { |
405 | set_default_env("!readenv() failed"); | |
406 | return; | |
407 | } | |
13a5695b | 408 | |
cd0f4fa1 | 409 | env_import(buf, 1); |
13a5695b | 410 | #endif /* ! ENV_IS_EMBEDDED */ |
13a5695b | 411 | } |
0e8d1586 | 412 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |