blob: 14446a6a5793ce0d37016d7a883445815517d479 [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 *
wdenk13a56952004-06-09 14:58:14 +000014 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32
Wolfgang Denkea882ba2010-06-20 23:33:59 +020033#define DEBUG
wdenk13a56952004-06-09 14:58:14 +000034
35#include <common.h>
wdenk13a56952004-06-09 14:58:14 +000036#include <command.h>
37#include <environment.h>
38#include <linux/stddef.h>
Markus Klotzbuechere443c942006-03-20 18:02:44 +010039#include <malloc.h>
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +010040#include <nand.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020041#include <search.h>
42#include <errno.h>
wdenk13a56952004-06-09 14:58:14 +000043
Mike Frysingerbdab39d2009-01-28 19:08:14 -050044#if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND)
wdenk13a56952004-06-09 14:58:14 +000045#define CMD_SAVEENV
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020046#elif defined(CONFIG_ENV_OFFSET_REDUND)
Mike Frysingerbdab39d2009-01-28 19:08:14 -050047#error Cannot use CONFIG_ENV_OFFSET_REDUND without CONFIG_CMD_SAVEENV & CONFIG_CMD_NAND
wdenk13a56952004-06-09 14:58:14 +000048#endif
49
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020050#if defined(CONFIG_ENV_SIZE_REDUND) && (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE)
51#error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE
wdenk13a56952004-06-09 14:58:14 +000052#endif
53
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020054#ifndef CONFIG_ENV_RANGE
55#define CONFIG_ENV_RANGE CONFIG_ENV_SIZE
Stuart Woodcc49cad2008-05-30 16:05:28 -040056#endif
57
wdenk13a56952004-06-09 14:58:14 +000058/* references to names in env_common.c */
59extern uchar default_environment[];
wdenk13a56952004-06-09 14:58:14 +000060
Wolfgang Denkea882ba2010-06-20 23:33:59 +020061char *env_name_spec = "NAND";
wdenk13a56952004-06-09 14:58:14 +000062
63
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020064#if defined(ENV_IS_EMBEDDED)
wdenk13a56952004-06-09 14:58:14 +000065extern uchar environment[];
66env_t *env_ptr = (env_t *)(&environment[0]);
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020067#elif defined(CONFIG_NAND_ENV_DST)
68env_t *env_ptr = (env_t *)CONFIG_NAND_ENV_DST;
wdenk13a56952004-06-09 14:58:14 +000069#else /* ! ENV_IS_EMBEDDED */
wdenk49822e22004-06-19 21:19:10 +000070env_t *env_ptr = 0;
wdenk13a56952004-06-09 14:58:14 +000071#endif /* ENV_IS_EMBEDDED */
72
Wolfgang Denkd87080b2006-03-31 18:32:53 +020073DECLARE_GLOBAL_DATA_PTR;
wdenk13a56952004-06-09 14:58:14 +000074
75uchar env_get_char_spec (int index)
76{
wdenk13a56952004-06-09 14:58:14 +000077 return ( *((uchar *)(gd->env_addr + index)) );
78}
79
Wolfgang Denkea882ba2010-06-20 23:33:59 +020080/*
81 * This is called before nand_init() so we can't read NAND to
82 * validate env data.
83 *
84 * Mark it OK for now. env_relocate() in env_common.c will call our
85 * relocate function which does the real validation.
Stefan Roesed12ae802006-09-12 20:19:10 +020086 *
87 * When using a NAND boot image (like sequoia_nand), the environment
Wolfgang Denkea882ba2010-06-20 23:33:59 +020088 * can be embedded or attached to the U-Boot image in NAND flash.
89 * This way the SPL loads not only the U-Boot image from NAND but
90 * also the environment.
wdenk13a56952004-06-09 14:58:14 +000091 */
92int env_init(void)
93{
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020094#if defined(ENV_IS_EMBEDDED) || defined(CONFIG_NAND_ENV_DST)
Stefan Roesed12ae802006-09-12 20:19:10 +020095 int crc1_ok = 0, crc2_ok = 0;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +020096 env_t *tmp_env1;
97
98#ifdef CONFIG_ENV_OFFSET_REDUND
99 env_t *tmp_env2;
100
101 tmp_env2 = (env_t *)((ulong)env_ptr + CONFIG_ENV_SIZE);
102 crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc);
103#endif
Stefan Roesed12ae802006-09-12 20:19:10 +0200104
Stefan Roesed12ae802006-09-12 20:19:10 +0200105 tmp_env1 = env_ptr;
Stefan Roesed12ae802006-09-12 20:19:10 +0200106
107 crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc);
Stefan Roesed12ae802006-09-12 20:19:10 +0200108
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200109 if (!crc1_ok && !crc2_ok) {
110 gd->env_addr = 0;
Stefan Roesed12ae802006-09-12 20:19:10 +0200111 gd->env_valid = 0;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200112
113 return 0;
114 } else if (crc1_ok && !crc2_ok) {
Stefan Roesed12ae802006-09-12 20:19:10 +0200115 gd->env_valid = 1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200116 }
117#ifdef CONFIG_ENV_OFFSET_REDUND
118 else if (!crc1_ok && crc2_ok) {
Stefan Roesed12ae802006-09-12 20:19:10 +0200119 gd->env_valid = 2;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200120 } else {
Stefan Roesed12ae802006-09-12 20:19:10 +0200121 /* both ok - check serial */
122 if(tmp_env1->flags == 255 && tmp_env2->flags == 0)
123 gd->env_valid = 2;
124 else if(tmp_env2->flags == 255 && tmp_env1->flags == 0)
125 gd->env_valid = 1;
126 else if(tmp_env1->flags > tmp_env2->flags)
127 gd->env_valid = 1;
128 else if(tmp_env2->flags > tmp_env1->flags)
129 gd->env_valid = 2;
130 else /* flags are equal - almost impossible */
131 gd->env_valid = 1;
132 }
133
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200134 if (gd->env_valid == 2)
135 env_ptr = tmp_env2;
136 else
137#endif
Stefan Roesed12ae802006-09-12 20:19:10 +0200138 if (gd->env_valid == 1)
139 env_ptr = tmp_env1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200140
141 gd->env_addr = (ulong)env_ptr->data;
142
143#else /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100144 gd->env_addr = (ulong)&default_environment[0];
wdenk13a56952004-06-09 14:58:14 +0000145 gd->env_valid = 1;
Guennadi Liakhovetskib74ab732009-05-18 16:07:22 +0200146#endif /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */
wdenk13a56952004-06-09 14:58:14 +0000147
148 return (0);
149}
150
151#ifdef CMD_SAVEENV
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100152/*
153 * The legacy NAND code saved the environment in the first NAND device i.e.,
154 * nand_dev_desc + 0. This is also the behaviour using the new NAND code.
155 */
Stuart Woodcc49cad2008-05-30 16:05:28 -0400156int writeenv(size_t offset, u_char *buf)
157{
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200158 size_t end = offset + CONFIG_ENV_RANGE;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400159 size_t amount_saved = 0;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200160 size_t blocksize, len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400161
162 u_char *char_ptr;
163
164 blocksize = nand_info[0].erasesize;
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200165 len = min(blocksize, CONFIG_ENV_SIZE);
Stuart Woodcc49cad2008-05-30 16:05:28 -0400166
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200167 while (amount_saved < CONFIG_ENV_SIZE && offset < end) {
Stuart Woodcc49cad2008-05-30 16:05:28 -0400168 if (nand_block_isbad(&nand_info[0], offset)) {
169 offset += blocksize;
170 } else {
171 char_ptr = &buf[amount_saved];
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200172 if (nand_write(&nand_info[0], offset, &len,
Stuart Woodcc49cad2008-05-30 16:05:28 -0400173 char_ptr))
174 return 1;
175 offset += blocksize;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200176 amount_saved += len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400177 }
178 }
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200179 if (amount_saved != CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400180 return 1;
181
182 return 0;
183}
Scott Woodeef1d712011-02-08 15:25:02 -0600184
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200185#ifdef CONFIG_ENV_OFFSET_REDUND
Scott Woodeef1d712011-02-08 15:25:02 -0600186static unsigned char env_flags;
187
wdenk13a56952004-06-09 14:58:14 +0000188int saveenv(void)
189{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200190 env_t env_new;
191 ssize_t len;
192 char *res;
193 int ret = 0;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400194 nand_erase_options_t nand_erase_options;
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100195
Daniel Hobi3b250ff2011-05-18 15:21:08 +0200196 memset(&nand_erase_options, 0, sizeof(nand_erase_options));
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200197 nand_erase_options.length = CONFIG_ENV_RANGE;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400198
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200199 if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400200 return 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200201
202 res = (char *)&env_new.data;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500203 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200204 if (len < 0) {
205 error("Cannot export environment: errno = %d\n", errno);
206 return 1;
207 }
208 env_new.crc = crc32(0, env_new.data, ENV_SIZE);
Scott Woodeef1d712011-02-08 15:25:02 -0600209 env_new.flags = ++env_flags; /* increase the serial */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200210
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100211 if(gd->env_valid == 1) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200212 puts("Erasing redundant NAND...\n");
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200213 nand_erase_options.offset = CONFIG_ENV_OFFSET_REDUND;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400214 if (nand_erase_opts(&nand_info[0], &nand_erase_options))
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100215 return 1;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400216
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200217 puts("Writing to redundant NAND... ");
218 ret = writeenv(CONFIG_ENV_OFFSET_REDUND,
219 (u_char *)&env_new);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100220 } else {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200221 puts("Erasing NAND...\n");
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200222 nand_erase_options.offset = CONFIG_ENV_OFFSET;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400223 if (nand_erase_opts(&nand_info[0], &nand_erase_options))
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100224 return 1;
225
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200226 puts("Writing to NAND... ");
227 ret = writeenv(CONFIG_ENV_OFFSET,
228 (u_char *)&env_new);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100229 }
Stuart Woodcc49cad2008-05-30 16:05:28 -0400230 if (ret) {
231 puts("FAILED!\n");
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100232 return 1;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400233 }
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100234
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200235 puts("done\n");
236
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100237 gd->env_valid = (gd->env_valid == 2 ? 1 : 2);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200238
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100239 return ret;
240}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200241#else /* ! CONFIG_ENV_OFFSET_REDUND */
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100242int saveenv(void)
243{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100244 int ret = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200245 env_t env_new;
246 ssize_t len;
247 char *res;
Philip Balister9e4006bc2008-06-16 08:58:07 -0400248 nand_erase_options_t nand_erase_options;
Wolfgang Denke093a242008-06-28 23:34:37 +0200249
Daniel Hobi3b250ff2011-05-18 15:21:08 +0200250 memset(&nand_erase_options, 0, sizeof(nand_erase_options));
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200251 nand_erase_options.length = CONFIG_ENV_RANGE;
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200252 nand_erase_options.offset = CONFIG_ENV_OFFSET;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400253
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200254 if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400255 return 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200256
257 res = (char *)&env_new.data;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500258 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200259 if (len < 0) {
260 error("Cannot export environment: errno = %d\n", errno);
261 return 1;
262 }
263 env_new.crc = crc32(0, env_new.data, ENV_SIZE);
264
265 puts("Erasing Nand...\n");
Stuart Woodcc49cad2008-05-30 16:05:28 -0400266 if (nand_erase_opts(&nand_info[0], &nand_erase_options))
wdenk13a56952004-06-09 14:58:14 +0000267 return 1;
268
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200269 puts("Writing to Nand... ");
270 if (writeenv(CONFIG_ENV_OFFSET, (u_char *)&env_new)) {
Stuart Woodcc49cad2008-05-30 16:05:28 -0400271 puts("FAILED!\n");
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100272 return 1;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400273 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100274
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200275 puts("done\n");
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100276 return ret;
wdenk13a56952004-06-09 14:58:14 +0000277}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200278#endif /* CONFIG_ENV_OFFSET_REDUND */
wdenk13a56952004-06-09 14:58:14 +0000279#endif /* CMD_SAVEENV */
280
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200281int readenv(size_t offset, u_char * buf)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400282{
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200283 size_t end = offset + CONFIG_ENV_RANGE;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400284 size_t amount_loaded = 0;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200285 size_t blocksize, len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400286
287 u_char *char_ptr;
288
289 blocksize = nand_info[0].erasesize;
Mike Frysinger962ad592010-08-11 23:42:26 -0400290 if (!blocksize)
291 return 1;
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200292 len = min(blocksize, CONFIG_ENV_SIZE);
Stuart Woodcc49cad2008-05-30 16:05:28 -0400293
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200294 while (amount_loaded < CONFIG_ENV_SIZE && offset < end) {
Stuart Woodcc49cad2008-05-30 16:05:28 -0400295 if (nand_block_isbad(&nand_info[0], offset)) {
296 offset += blocksize;
297 } else {
298 char_ptr = &buf[amount_loaded];
Steve Sakoman068a2082010-12-03 13:25:43 +0000299 if (nand_read_skip_bad(&nand_info[0], offset, &len, char_ptr))
Stuart Woodcc49cad2008-05-30 16:05:28 -0400300 return 1;
301 offset += blocksize;
Guennadi Liakhovetskic3db8c62008-07-31 12:38:26 +0200302 amount_loaded += len;
Stuart Woodcc49cad2008-05-30 16:05:28 -0400303 }
304 }
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200305 if (amount_loaded != CONFIG_ENV_SIZE)
Stuart Woodcc49cad2008-05-30 16:05:28 -0400306 return 1;
307
308 return 0;
309}
310
Ben Gardinerc9f73512010-07-05 13:27:07 -0400311#ifdef CONFIG_ENV_OFFSET_OOB
312int get_nand_env_oob(nand_info_t *nand, unsigned long *result)
313{
314 struct mtd_oob_ops ops;
315 uint32_t oob_buf[ENV_OFFSET_SIZE/sizeof(uint32_t)];
316 int ret;
317
318 ops.datbuf = NULL;
319 ops.mode = MTD_OOB_AUTO;
320 ops.ooboffs = 0;
321 ops.ooblen = ENV_OFFSET_SIZE;
322 ops.oobbuf = (void *) oob_buf;
323
324 ret = nand->read_oob(nand, ENV_OFFSET_SIZE, &ops);
Scott Wood53504a22010-07-12 18:17:40 -0500325 if (ret) {
Ben Gardinerc9f73512010-07-05 13:27:07 -0400326 printf("error reading OOB block 0\n");
Scott Wood53504a22010-07-12 18:17:40 -0500327 return ret;
Ben Gardinerc9f73512010-07-05 13:27:07 -0400328 }
Scott Wood53504a22010-07-12 18:17:40 -0500329
330 if (oob_buf[0] == ENV_OOB_MARKER) {
331 *result = oob_buf[1] * nand->erasesize;
332 } else if (oob_buf[0] == ENV_OOB_MARKER_OLD) {
333 *result = oob_buf[1];
334 } else {
335 printf("No dynamic environment marker in OOB block 0\n");
336 return -ENOENT;
337 }
338
339 return 0;
Ben Gardinerc9f73512010-07-05 13:27:07 -0400340}
341#endif
342
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200343#ifdef CONFIG_ENV_OFFSET_REDUND
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200344void env_relocate_spec(void)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100345{
346#if !defined(ENV_IS_EMBEDDED)
Markus Klotzbuecher2770bcb2006-03-24 15:43:16 +0100347 int crc1_ok = 0, crc2_ok = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200348 env_t *ep, *tmp_env1, *tmp_env2;
wdenk13a56952004-06-09 14:58:14 +0000349
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200350 tmp_env1 = (env_t *)malloc(CONFIG_ENV_SIZE);
351 tmp_env2 = (env_t *)malloc(CONFIG_ENV_SIZE);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100352
Wolfgang Denk15b86c32010-01-16 21:50:26 -0700353 if ((tmp_env1 == NULL) || (tmp_env2 == NULL)) {
354 puts("Can't allocate buffers for environment\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200355 free(tmp_env1);
356 free(tmp_env2);
357 set_default_env("!malloc() failed");
358 return;
Wolfgang Denk15b86c32010-01-16 21:50:26 -0700359 }
360
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200361 if (readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1))
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200362 puts("No Valid Environment Area found\n");
363
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200364 if (readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2))
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200365 puts("No Valid Redundant Environment Area found\n");
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100366
367 crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc);
368 crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc);
369
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200370 if (!crc1_ok && !crc2_ok) {
derek@siconix.com5a9427d2009-01-26 14:08:17 -0700371 free(tmp_env1);
372 free(tmp_env2);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200373 set_default_env("!bad CRC");
374 return;
375 } else if (crc1_ok && !crc2_ok) {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100376 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200377 } else if (!crc1_ok && crc2_ok) {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100378 gd->env_valid = 2;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200379 } else {
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100380 /* both ok - check serial */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200381 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100382 gd->env_valid = 2;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200383 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100384 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200385 else if (tmp_env1->flags > tmp_env2->flags)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100386 gd->env_valid = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200387 else if (tmp_env2->flags > tmp_env1->flags)
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100388 gd->env_valid = 2;
389 else /* flags are equal - almost impossible */
390 gd->env_valid = 1;
391
392 }
393
394 free(env_ptr);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200395
396 if (gd->env_valid == 1)
397 ep = tmp_env1;
398 else
399 ep = tmp_env2;
400
Scott Woodeef1d712011-02-08 15:25:02 -0600401 env_flags = ep->flags;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200402 env_import((char *)ep, 0);
403
404 free(tmp_env1);
405 free(tmp_env2);
Markus Klotzbuechere443c942006-03-20 18:02:44 +0100406
407#endif /* ! ENV_IS_EMBEDDED */
408}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200409#else /* ! CONFIG_ENV_OFFSET_REDUND */
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100410/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200411 * The legacy NAND code saved the environment in the first NAND
412 * device i.e., nand_dev_desc + 0. This is also the behaviour using
413 * the new NAND code.
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100414 */
wdenk13a56952004-06-09 14:58:14 +0000415void env_relocate_spec (void)
416{
417#if !defined(ENV_IS_EMBEDDED)
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100418 int ret;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200419 char buf[CONFIG_ENV_SIZE];
wdenk13a56952004-06-09 14:58:14 +0000420
Ben Gardinerc9f73512010-07-05 13:27:07 -0400421#if defined(CONFIG_ENV_OFFSET_OOB)
422 ret = get_nand_env_oob(&nand_info[0], &nand_env_oob_offset);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200423 /*
424 * If unable to read environment offset from NAND OOB then fall through
Ben Gardinerc9f73512010-07-05 13:27:07 -0400425 * to the normal environment reading code below
426 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200427 if (!ret) {
Ben Gardinerc9f73512010-07-05 13:27:07 -0400428 printf("Found Environment offset in OOB..\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200429 } else {
430 set_default_env("!no env offset in OOB");
431 return;
432 }
Ben Gardinerc9f73512010-07-05 13:27:07 -0400433#endif
434
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200435 ret = readenv(CONFIG_ENV_OFFSET, (u_char *)buf);
436 if (ret) {
437 set_default_env("!readenv() failed");
438 return;
439 }
wdenk13a56952004-06-09 14:58:14 +0000440
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200441 env_import(buf, 1);
wdenk13a56952004-06-09 14:58:14 +0000442#endif /* ! ENV_IS_EMBEDDED */
wdenk13a56952004-06-09 14:58:14 +0000443}
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200444#endif /* CONFIG_ENV_OFFSET_REDUND */