blob: 2e28171ae094d79ecef8142c9b246954ce92284f [file] [log] [blame]
wdenk13a56952004-06-09 14:58:14 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Stuart Woodcc49cad2008-05-30 16:05:28 -04005 * (C) Copyright 2008
6 * Stuart Wood, Lab X Technologies <stuart.wood@labxtechnologies.com>
7 *
wdenk13a56952004-06-09 14:58:14 +00008 * (C) Copyright 2004
9 * Jian Zhang, Texas Instruments, jzhang@ti.com.
wdenk13a56952004-06-09 14:58:14 +000010 *
11 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12 * Andreas Heppel <aheppel@sysgo.de>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020013 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020014 * SPDX-License-Identifier: GPL-2.0+
wdenk13a56952004-06-09 14:58:14 +000015 */
16
wdenk13a56952004-06-09 14:58:14 +000017#include <common.h>
wdenk13a56952004-06-09 14:58:14 +000018#include <command.h>
19#include <environment.h>
20#include <linux/stddef.h>
Markus Klotzbuechere443c942006-03-20 18:02:44 +010021#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060022#include <memalign.h>
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +010023#include <nand.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020024#include <search.h>
25#include <errno.h>
wdenk13a56952004-06-09 14:58:14 +000026
Mike Frysingerbdab39d2009-01-28 19:08:14 -050027#if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND)
wdenk13a56952004-06-09 14:58:14 +000028#define CMD_SAVEENV
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020029#elif defined(CONFIG_ENV_OFFSET_REDUND)
Igor Grinbergde152b92011-11-07 01:14:10 +000030#error CONFIG_ENV_OFFSET_REDUND must have CONFIG_CMD_SAVEENV & CONFIG_CMD_NAND
wdenk13a56952004-06-09 14:58:14 +000031#endif
32
Igor Grinbergde152b92011-11-07 01:14:10 +000033#if defined(CONFIG_ENV_SIZE_REDUND) && \
34 (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020035#error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE
wdenk13a56952004-06-09 14:58:14 +000036#endif
37
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020038#ifndef CONFIG_ENV_RANGE
39#define CONFIG_ENV_RANGE CONFIG_ENV_SIZE
Stuart Woodcc49cad2008-05-30 16:05:28 -040040#endif
41
Wolfgang Denkea882ba2010-06-20 23:33:59 +020042char *env_name_spec = "NAND";
wdenk13a56952004-06-09 14:58:14 +000043
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020044#if defined(ENV_IS_EMBEDDED)
Igor Grinberg994bc672011-11-17 06:07:23 +000045env_t *env_ptr = &environment;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020046#elif defined(CONFIG_NAND_ENV_DST)
47env_t *env_ptr = (env_t *)CONFIG_NAND_ENV_DST;
wdenk13a56952004-06-09 14:58:14 +000048#else /* ! ENV_IS_EMBEDDED */
Igor Grinbergde152b92011-11-07 01:14:10 +000049env_t *env_ptr;
wdenk13a56952004-06-09 14:58:14 +000050#endif /* ENV_IS_EMBEDDED */
51
Wolfgang Denkd87080b2006-03-31 18:32:53 +020052DECLARE_GLOBAL_DATA_PTR;
wdenk13a56952004-06-09 14:58:14 +000053
Wolfgang Denkea882ba2010-06-20 23:33:59 +020054/*
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.
Stefan Roesed12ae802006-09-12 20:19:10 +020060 *
61 * When using a NAND boot image (like sequoia_nand), the environment
Wolfgang Denkea882ba2010-06-20 23:33:59 +020062 * 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.
wdenk13a56952004-06-09 14:58:14 +000065 */
66int env_init(void)
67{
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020068#if defined(ENV_IS_EMBEDDED) || defined(CONFIG_NAND_ENV_DST)
Stefan Roesed12ae802006-09-12 20:19:10 +020069 int crc1_ok = 0, crc2_ok = 0;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020070 env_t *tmp_env1;
71
72#ifdef CONFIG_ENV_OFFSET_REDUND
73 env_t *tmp_env2;
74
75 tmp_env2 = (env_t *)((ulong)env_ptr + CONFIG_ENV_SIZE);
Igor Grinbergde152b92011-11-07 01:14:10 +000076 crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020077#endif
Stefan Roesed12ae802006-09-12 20:19:10 +020078 tmp_env1 = env_ptr;
Igor Grinbergde152b92011-11-07 01:14:10 +000079 crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc;
Stefan Roesed12ae802006-09-12 20:19:10 +020080
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020081 if (!crc1_ok && !crc2_ok) {
Igor Grinbergde152b92011-11-07 01:14:10 +000082 gd->env_addr = 0;
83 gd->env_valid = 0;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020084
85 return 0;
86 } else if (crc1_ok && !crc2_ok) {
Stefan Roesed12ae802006-09-12 20:19:10 +020087 gd->env_valid = 1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020088 }
89#ifdef CONFIG_ENV_OFFSET_REDUND
90 else if (!crc1_ok && crc2_ok) {
Stefan Roesed12ae802006-09-12 20:19:10 +020091 gd->env_valid = 2;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020092 } else {
Stefan Roesed12ae802006-09-12 20:19:10 +020093 /* both ok - check serial */
Igor Grinbergde152b92011-11-07 01:14:10 +000094 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
Stefan Roesed12ae802006-09-12 20:19:10 +020095 gd->env_valid = 2;
Igor Grinbergde152b92011-11-07 01:14:10 +000096 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
Stefan Roesed12ae802006-09-12 20:19:10 +020097 gd->env_valid = 1;
Igor Grinbergde152b92011-11-07 01:14:10 +000098 else if (tmp_env1->flags > tmp_env2->flags)
Stefan Roesed12ae802006-09-12 20:19:10 +020099 gd->env_valid = 1;
Igor Grinbergde152b92011-11-07 01:14:10 +0000100 else if (tmp_env2->flags > tmp_env1->flags)
Stefan Roesed12ae802006-09-12 20:19:10 +0200101 gd->env_valid = 2;
102 else /* flags are equal - almost impossible */
103 gd->env_valid = 1;
104 }
105
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200106 if (gd->env_valid == 2)
107 env_ptr = tmp_env2;
108 else
109#endif
Stefan Roesed12ae802006-09-12 20:19:10 +0200110 if (gd->env_valid == 1)
111 env_ptr = tmp_env1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200112
113 gd->env_addr = (ulong)env_ptr->data;
114
115#else /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */
Igor Grinbergde152b92011-11-07 01:14:10 +0000116 gd->env_addr = (ulong)&default_environment[0];
117 gd->env_valid = 1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200118#endif /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */
wdenk13a56952004-06-09 14:58:14 +0000119
Igor Grinbergde152b92011-11-07 01:14:10 +0000120 return 0;
wdenk13a56952004-06-09 14:58:14 +0000121}
122
123#ifdef CMD_SAVEENV
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100124/*
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 */
Jeroen Hofstee45f08d32014-10-08 22:57:35 +0200128static int writeenv(size_t offset, u_char *buf)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400129{
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200130 size_t end = offset + CONFIG_ENV_RANGE;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400131 size_t amount_saved = 0;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200132 size_t blocksize, len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400133 u_char *char_ptr;
134
Scott Woodb616d9b2016-05-30 13:57:55 -0500135 blocksize = nand_info[0]->erasesize;
Masahiro Yamadab4141192014-11-07 03:03:31 +0900136 len = min(blocksize, (size_t)CONFIG_ENV_SIZE);
Stuart Woodcc49cad2008-05-30 16:05:28 -0400137
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200138 while (amount_saved < CONFIG_ENV_SIZE && offset < end) {
Scott Woodb616d9b2016-05-30 13:57:55 -0500139 if (nand_block_isbad(nand_info[0], offset)) {
Stuart Woodcc49cad2008-05-30 16:05:28 -0400140 offset += blocksize;
141 } else {
142 char_ptr = &buf[amount_saved];
Scott Woodb616d9b2016-05-30 13:57:55 -0500143 if (nand_write(nand_info[0], offset, &len, char_ptr))
Stuart Woodcc49cad2008-05-30 16:05:28 -0400144 return 1;
Igor Grinbergde152b92011-11-07 01:14:10 +0000145
Stuart Woodcc49cad2008-05-30 16:05:28 -0400146 offset += blocksize;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200147 amount_saved += len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400148 }
149 }
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200150 if (amount_saved != CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400151 return 1;
152
153 return 0;
154}
Scott Woodeef1d712011-02-08 15:25:02 -0600155
Phil Sutter2b262012013-07-19 12:20:26 +0200156struct env_location {
157 const char *name;
158 const nand_erase_options_t erase_opts;
159};
Scott Woodeef1d712011-02-08 15:25:02 -0600160
Phil Sutter2b262012013-07-19 12:20:26 +0200161static int erase_and_write_env(const struct env_location *location,
162 u_char *env_new)
wdenk13a56952004-06-09 14:58:14 +0000163{
Phil Sutter2b262012013-07-19 12:20:26 +0200164 int ret = 0;
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100165
Tom Rini4cc96992016-08-15 13:02:15 -0400166 if (!nand_info[0])
167 return 1;
168
Phil Sutter2b262012013-07-19 12:20:26 +0200169 printf("Erasing %s...\n", location->name);
Scott Woodb616d9b2016-05-30 13:57:55 -0500170 if (nand_erase_opts(nand_info[0], &location->erase_opts))
Stuart Woodcc49cad2008-05-30 16:05:28 -0400171 return 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200172
Phil Sutter2b262012013-07-19 12:20:26 +0200173 printf("Writing to %s... ", location->name);
174 ret = writeenv(location->erase_opts.offset, env_new);
175 puts(ret ? "FAILED!\n" : "OK\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200176
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100177 return ret;
178}
Phil Sutter2b262012013-07-19 12:20:26 +0200179
180#ifdef CONFIG_ENV_OFFSET_REDUND
181static unsigned char env_flags;
182#endif
183
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100184int saveenv(void)
185{
Igor Grinbergde152b92011-11-07 01:14:10 +0000186 int ret = 0;
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400187 ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
Phil Sutter2b262012013-07-19 12:20:26 +0200188 int env_idx = 0;
189 static const struct env_location location[] = {
190 {
191 .name = "NAND",
192 .erase_opts = {
193 .length = CONFIG_ENV_RANGE,
194 .offset = CONFIG_ENV_OFFSET,
195 },
196 },
197#ifdef CONFIG_ENV_OFFSET_REDUND
198 {
199 .name = "redundant NAND",
200 .erase_opts = {
201 .length = CONFIG_ENV_RANGE,
202 .offset = CONFIG_ENV_OFFSET_REDUND,
203 },
204 },
205#endif
206 };
Wolfgang Denke093a242008-06-28 23:34:37 +0200207
Stuart Woodcc49cad2008-05-30 16:05:28 -0400208
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200209 if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400210 return 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200211
Marek Vasut7ce15262014-03-05 19:59:50 +0100212 ret = env_export(env_new);
213 if (ret)
214 return ret;
215
Phil Sutter2b262012013-07-19 12:20:26 +0200216#ifdef CONFIG_ENV_OFFSET_REDUND
217 env_new->flags = ++env_flags; /* increase the serial */
218 env_idx = (gd->env_valid == 1);
219#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200220
Phil Sutter2b262012013-07-19 12:20:26 +0200221 ret = erase_and_write_env(&location[env_idx], (u_char *)env_new);
222#ifdef CONFIG_ENV_OFFSET_REDUND
223 if (!ret) {
224 /* preset other copy for next write */
225 gd->env_valid = gd->env_valid == 2 ? 1 : 2;
226 return ret;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400227 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100228
Phil Sutter2b262012013-07-19 12:20:26 +0200229 env_idx = (env_idx + 1) & 1;
230 ret = erase_and_write_env(&location[env_idx], (u_char *)env_new);
231 if (!ret)
232 printf("Warning: primary env write failed,"
233 " redundancy is lost!\n");
234#endif
235
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100236 return ret;
wdenk13a56952004-06-09 14:58:14 +0000237}
238#endif /* CMD_SAVEENV */
239
Tim Harvey9e205602015-05-14 11:48:04 -0700240#if defined(CONFIG_SPL_BUILD)
241static int readenv(size_t offset, u_char *buf)
242{
243 return nand_spl_load_image(offset, CONFIG_ENV_SIZE, buf);
244}
245#else
Jeroen Hofstee45f08d32014-10-08 22:57:35 +0200246static int readenv(size_t offset, u_char *buf)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400247{
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200248 size_t end = offset + CONFIG_ENV_RANGE;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400249 size_t amount_loaded = 0;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200250 size_t blocksize, len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400251 u_char *char_ptr;
252
Tom Rini4cc96992016-08-15 13:02:15 -0400253 if (!nand_info[0])
Mike Frysinger962ad592010-08-11 23:42:26 -0400254 return 1;
Igor Grinbergde152b92011-11-07 01:14:10 +0000255
Tom Rini4cc96992016-08-15 13:02:15 -0400256 blocksize = nand_info[0]->erasesize;
Masahiro Yamadab4141192014-11-07 03:03:31 +0900257 len = min(blocksize, (size_t)CONFIG_ENV_SIZE);
Stuart Woodcc49cad2008-05-30 16:05:28 -0400258
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200259 while (amount_loaded < CONFIG_ENV_SIZE && offset < end) {
Scott Woodb616d9b2016-05-30 13:57:55 -0500260 if (nand_block_isbad(nand_info[0], offset)) {
Stuart Woodcc49cad2008-05-30 16:05:28 -0400261 offset += blocksize;
262 } else {
263 char_ptr = &buf[amount_loaded];
Scott Woodb616d9b2016-05-30 13:57:55 -0500264 if (nand_read_skip_bad(nand_info[0], offset,
Tom Rinic39d6a02013-03-14 05:32:50 +0000265 &len, NULL,
Scott Woodb616d9b2016-05-30 13:57:55 -0500266 nand_info[0]->size, char_ptr))
Stuart Woodcc49cad2008-05-30 16:05:28 -0400267 return 1;
Igor Grinbergde152b92011-11-07 01:14:10 +0000268
Stuart Woodcc49cad2008-05-30 16:05:28 -0400269 offset += blocksize;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200270 amount_loaded += len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400271 }
272 }
Igor Grinbergde152b92011-11-07 01:14:10 +0000273
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200274 if (amount_loaded != CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400275 return 1;
276
277 return 0;
278}
Tim Harvey9e205602015-05-14 11:48:04 -0700279#endif /* #if defined(CONFIG_SPL_BUILD) */
Stuart Woodcc49cad2008-05-30 16:05:28 -0400280
Ben Gardinerc9f73512010-07-05 13:27:07 -0400281#ifdef CONFIG_ENV_OFFSET_OOB
Scott Wood151c06e2016-05-30 13:57:54 -0500282int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result)
Ben Gardinerc9f73512010-07-05 13:27:07 -0400283{
284 struct mtd_oob_ops ops;
Igor Grinbergde152b92011-11-07 01:14:10 +0000285 uint32_t oob_buf[ENV_OFFSET_SIZE / sizeof(uint32_t)];
Ben Gardinerc9f73512010-07-05 13:27:07 -0400286 int ret;
287
Igor Grinbergde152b92011-11-07 01:14:10 +0000288 ops.datbuf = NULL;
289 ops.mode = MTD_OOB_AUTO;
290 ops.ooboffs = 0;
291 ops.ooblen = ENV_OFFSET_SIZE;
292 ops.oobbuf = (void *)oob_buf;
Ben Gardinerc9f73512010-07-05 13:27:07 -0400293
Scott Wood151c06e2016-05-30 13:57:54 -0500294 ret = mtd->read_oob(mtd, ENV_OFFSET_SIZE, &ops);
Scott Wood53504a22010-07-12 18:17:40 -0500295 if (ret) {
Ben Gardinerc9f73512010-07-05 13:27:07 -0400296 printf("error reading OOB block 0\n");
Scott Wood53504a22010-07-12 18:17:40 -0500297 return ret;
Ben Gardinerc9f73512010-07-05 13:27:07 -0400298 }
Scott Wood53504a22010-07-12 18:17:40 -0500299
300 if (oob_buf[0] == ENV_OOB_MARKER) {
Scott Wood151c06e2016-05-30 13:57:54 -0500301 *result = oob_buf[1] * mtd->erasesize;
Scott Wood53504a22010-07-12 18:17:40 -0500302 } else if (oob_buf[0] == ENV_OOB_MARKER_OLD) {
303 *result = oob_buf[1];
304 } else {
305 printf("No dynamic environment marker in OOB block 0\n");
306 return -ENOENT;
307 }
308
309 return 0;
Ben Gardinerc9f73512010-07-05 13:27:07 -0400310}
311#endif
312
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200313#ifdef CONFIG_ENV_OFFSET_REDUND
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200314void env_relocate_spec(void)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100315{
316#if !defined(ENV_IS_EMBEDDED)
Phil Sutterb76a1472013-02-21 18:21:55 +0100317 int read1_fail = 0, read2_fail = 0;
Markus Klotzbuecher2770bcb2006-03-24 15:43:16 +0100318 int crc1_ok = 0, crc2_ok = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200319 env_t *ep, *tmp_env1, *tmp_env2;
wdenk13a56952004-06-09 14:58:14 +0000320
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200321 tmp_env1 = (env_t *)malloc(CONFIG_ENV_SIZE);
322 tmp_env2 = (env_t *)malloc(CONFIG_ENV_SIZE);
Igor Grinbergde152b92011-11-07 01:14:10 +0000323 if (tmp_env1 == NULL || tmp_env2 == NULL) {
Wolfgang Denk15b86c32010-01-16 21:50:26 -0700324 puts("Can't allocate buffers for environment\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200325 set_default_env("!malloc() failed");
Igor Grinbergde152b92011-11-07 01:14:10 +0000326 goto done;
Wolfgang Denk15b86c32010-01-16 21:50:26 -0700327 }
328
Phil Sutterb76a1472013-02-21 18:21:55 +0100329 read1_fail = readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1);
330 read2_fail = readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200331
Phil Sutterb76a1472013-02-21 18:21:55 +0100332 if (read1_fail && read2_fail)
333 puts("*** Error - No Valid Environment Area found\n");
334 else if (read1_fail || read2_fail)
335 puts("*** Warning - some problems detected "
336 "reading environment; recovered successfully\n");
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100337
Phil Suttera1eac572013-02-21 18:21:56 +0100338 crc1_ok = !read1_fail &&
339 (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc);
340 crc2_ok = !read2_fail &&
341 (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100342
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200343 if (!crc1_ok && !crc2_ok) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200344 set_default_env("!bad CRC");
Igor Grinbergde152b92011-11-07 01:14:10 +0000345 goto done;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200346 } else if (crc1_ok && !crc2_ok) {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100347 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200348 } else if (!crc1_ok && crc2_ok) {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100349 gd->env_valid = 2;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200350 } else {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100351 /* both ok - check serial */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200352 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100353 gd->env_valid = 2;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200354 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100355 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200356 else if (tmp_env1->flags > tmp_env2->flags)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100357 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200358 else if (tmp_env2->flags > tmp_env1->flags)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100359 gd->env_valid = 2;
360 else /* flags are equal - almost impossible */
361 gd->env_valid = 1;
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100362 }
363
364 free(env_ptr);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200365
366 if (gd->env_valid == 1)
367 ep = tmp_env1;
368 else
369 ep = tmp_env2;
370
Scott Woodeef1d712011-02-08 15:25:02 -0600371 env_flags = ep->flags;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200372 env_import((char *)ep, 0);
373
Igor Grinbergde152b92011-11-07 01:14:10 +0000374done:
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200375 free(tmp_env1);
376 free(tmp_env2);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100377
378#endif /* ! ENV_IS_EMBEDDED */
379}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200380#else /* ! CONFIG_ENV_OFFSET_REDUND */
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100381/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200382 * The legacy NAND code saved the environment in the first NAND
383 * device i.e., nand_dev_desc + 0. This is also the behaviour using
384 * the new NAND code.
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100385 */
Igor Grinbergde152b92011-11-07 01:14:10 +0000386void env_relocate_spec(void)
wdenk13a56952004-06-09 14:58:14 +0000387{
388#if !defined(ENV_IS_EMBEDDED)
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100389 int ret;
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400390 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
wdenk13a56952004-06-09 14:58:14 +0000391
Ben Gardinerc9f73512010-07-05 13:27:07 -0400392#if defined(CONFIG_ENV_OFFSET_OOB)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200393 /*
394 * If unable to read environment offset from NAND OOB then fall through
Ben Gardinerc9f73512010-07-05 13:27:07 -0400395 * to the normal environment reading code below
396 */
Tom Rini4cc96992016-08-15 13:02:15 -0400397 if (nand_info[0] && !get_nand_env_oob(nand_info[0],
398 &nand_env_oob_offset)) {
Ben Gardinerc9f73512010-07-05 13:27:07 -0400399 printf("Found Environment offset in OOB..\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200400 } else {
401 set_default_env("!no env offset in OOB");
402 return;
403 }
Ben Gardinerc9f73512010-07-05 13:27:07 -0400404#endif
405
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400406 ret = readenv(CONFIG_ENV_OFFSET, (u_char *)buf);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200407 if (ret) {
408 set_default_env("!readenv() failed");
409 return;
410 }
wdenk13a56952004-06-09 14:58:14 +0000411
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400412 env_import(buf, 1);
wdenk13a56952004-06-09 14:58:14 +0000413#endif /* ! ENV_IS_EMBEDDED */
wdenk13a56952004-06-09 14:58:14 +0000414}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200415#endif /* CONFIG_ENV_OFFSET_REDUND */