wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2010 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 5 | * (C) Copyright 2008 |
| 6 | * Stuart Wood, Lab X Technologies <stuart.wood@labxtechnologies.com> |
| 7 | * |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 8 | * (C) Copyright 2004 |
| 9 | * Jian Zhang, Texas Instruments, jzhang@ti.com. |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 10 | * |
| 11 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 12 | * Andreas Heppel <aheppel@sysgo.de> |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 13 | * |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 14 | * 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 Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 33 | #define DEBUG |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 34 | |
| 35 | #include <common.h> |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 36 | #include <command.h> |
| 37 | #include <environment.h> |
| 38 | #include <linux/stddef.h> |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 39 | #include <malloc.h> |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 40 | #include <nand.h> |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 41 | #include <search.h> |
| 42 | #include <errno.h> |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 43 | |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 44 | #if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 45 | #define CMD_SAVEENV |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 46 | #elif defined(CONFIG_ENV_OFFSET_REDUND) |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 47 | #error Cannot use CONFIG_ENV_OFFSET_REDUND without CONFIG_CMD_SAVEENV & CONFIG_CMD_NAND |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 48 | #endif |
| 49 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 50 | #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 |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 52 | #endif |
| 53 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 54 | #ifndef CONFIG_ENV_RANGE |
| 55 | #define CONFIG_ENV_RANGE CONFIG_ENV_SIZE |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 56 | #endif |
| 57 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 58 | char *env_name_spec = "NAND"; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 59 | |
| 60 | |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 61 | #if defined(ENV_IS_EMBEDDED) |
Igor Grinberg | 994bc67 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 62 | env_t *env_ptr = &environment; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 63 | #elif defined(CONFIG_NAND_ENV_DST) |
| 64 | env_t *env_ptr = (env_t *)CONFIG_NAND_ENV_DST; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 65 | #else /* ! ENV_IS_EMBEDDED */ |
wdenk | 49822e2 | 2004-06-19 21:19:10 +0000 | [diff] [blame] | 66 | env_t *env_ptr = 0; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 67 | #endif /* ENV_IS_EMBEDDED */ |
| 68 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 69 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 70 | |
| 71 | uchar env_get_char_spec (int index) |
| 72 | { |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 73 | return ( *((uchar *)(gd->env_addr + index)) ); |
| 74 | } |
| 75 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 76 | /* |
| 77 | * This is called before nand_init() so we can't read NAND to |
| 78 | * validate env data. |
| 79 | * |
| 80 | * Mark it OK for now. env_relocate() in env_common.c will call our |
| 81 | * relocate function which does the real validation. |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 82 | * |
| 83 | * When using a NAND boot image (like sequoia_nand), the environment |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 84 | * can be embedded or attached to the U-Boot image in NAND flash. |
| 85 | * This way the SPL loads not only the U-Boot image from NAND but |
| 86 | * also the environment. |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 87 | */ |
| 88 | int env_init(void) |
| 89 | { |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 90 | #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_NAND_ENV_DST) |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 91 | int crc1_ok = 0, crc2_ok = 0; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 92 | env_t *tmp_env1; |
| 93 | |
| 94 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 95 | env_t *tmp_env2; |
| 96 | |
| 97 | tmp_env2 = (env_t *)((ulong)env_ptr + CONFIG_ENV_SIZE); |
| 98 | crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc); |
| 99 | #endif |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 100 | |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 101 | tmp_env1 = env_ptr; |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 102 | |
| 103 | crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc); |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 104 | |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 105 | if (!crc1_ok && !crc2_ok) { |
| 106 | gd->env_addr = 0; |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 107 | gd->env_valid = 0; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 108 | |
| 109 | return 0; |
| 110 | } else if (crc1_ok && !crc2_ok) { |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 111 | gd->env_valid = 1; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 112 | } |
| 113 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 114 | else if (!crc1_ok && crc2_ok) { |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 115 | gd->env_valid = 2; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 116 | } else { |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 117 | /* both ok - check serial */ |
| 118 | if(tmp_env1->flags == 255 && tmp_env2->flags == 0) |
| 119 | gd->env_valid = 2; |
| 120 | else if(tmp_env2->flags == 255 && tmp_env1->flags == 0) |
| 121 | gd->env_valid = 1; |
| 122 | else if(tmp_env1->flags > tmp_env2->flags) |
| 123 | gd->env_valid = 1; |
| 124 | else if(tmp_env2->flags > tmp_env1->flags) |
| 125 | gd->env_valid = 2; |
| 126 | else /* flags are equal - almost impossible */ |
| 127 | gd->env_valid = 1; |
| 128 | } |
| 129 | |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 130 | if (gd->env_valid == 2) |
| 131 | env_ptr = tmp_env2; |
| 132 | else |
| 133 | #endif |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 134 | if (gd->env_valid == 1) |
| 135 | env_ptr = tmp_env1; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 136 | |
| 137 | gd->env_addr = (ulong)env_ptr->data; |
| 138 | |
| 139 | #else /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */ |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 140 | gd->env_addr = (ulong)&default_environment[0]; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 141 | gd->env_valid = 1; |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 142 | #endif /* ENV_IS_EMBEDDED || CONFIG_NAND_ENV_DST */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 143 | |
| 144 | return (0); |
| 145 | } |
| 146 | |
| 147 | #ifdef CMD_SAVEENV |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 148 | /* |
| 149 | * The legacy NAND code saved the environment in the first NAND device i.e., |
| 150 | * nand_dev_desc + 0. This is also the behaviour using the new NAND code. |
| 151 | */ |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 152 | int writeenv(size_t offset, u_char *buf) |
| 153 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 154 | size_t end = offset + CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 155 | size_t amount_saved = 0; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 156 | size_t blocksize, len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 157 | |
| 158 | u_char *char_ptr; |
| 159 | |
| 160 | blocksize = nand_info[0].erasesize; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 161 | len = min(blocksize, CONFIG_ENV_SIZE); |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 162 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 163 | while (amount_saved < CONFIG_ENV_SIZE && offset < end) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 164 | if (nand_block_isbad(&nand_info[0], offset)) { |
| 165 | offset += blocksize; |
| 166 | } else { |
| 167 | char_ptr = &buf[amount_saved]; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 168 | if (nand_write(&nand_info[0], offset, &len, |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 169 | char_ptr)) |
| 170 | return 1; |
| 171 | offset += blocksize; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 172 | amount_saved += len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 173 | } |
| 174 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 175 | if (amount_saved != CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 176 | return 1; |
| 177 | |
| 178 | return 0; |
| 179 | } |
Scott Wood | eef1d71 | 2011-02-08 15:25:02 -0600 | [diff] [blame] | 180 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 181 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Scott Wood | eef1d71 | 2011-02-08 15:25:02 -0600 | [diff] [blame] | 182 | static unsigned char env_flags; |
| 183 | |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 184 | int saveenv(void) |
| 185 | { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 186 | env_t env_new; |
| 187 | ssize_t len; |
| 188 | char *res; |
| 189 | int ret = 0; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 190 | nand_erase_options_t nand_erase_options; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 191 | |
Daniel Hobi | 3b250ff | 2011-05-18 15:21:08 +0200 | [diff] [blame] | 192 | memset(&nand_erase_options, 0, sizeof(nand_erase_options)); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 193 | nand_erase_options.length = CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 194 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 195 | if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 196 | return 1; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 197 | |
| 198 | res = (char *)&env_new.data; |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 199 | len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, 0, NULL); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 200 | if (len < 0) { |
| 201 | error("Cannot export environment: errno = %d\n", errno); |
| 202 | return 1; |
| 203 | } |
| 204 | env_new.crc = crc32(0, env_new.data, ENV_SIZE); |
Scott Wood | eef1d71 | 2011-02-08 15:25:02 -0600 | [diff] [blame] | 205 | env_new.flags = ++env_flags; /* increase the serial */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 206 | |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 207 | if(gd->env_valid == 1) { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 208 | puts("Erasing redundant NAND...\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 209 | nand_erase_options.offset = CONFIG_ENV_OFFSET_REDUND; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 210 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 211 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 212 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 213 | puts("Writing to redundant NAND... "); |
| 214 | ret = writeenv(CONFIG_ENV_OFFSET_REDUND, |
| 215 | (u_char *)&env_new); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 216 | } else { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 217 | puts("Erasing NAND...\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 218 | nand_erase_options.offset = CONFIG_ENV_OFFSET; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 219 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 220 | return 1; |
| 221 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 222 | puts("Writing to NAND... "); |
| 223 | ret = writeenv(CONFIG_ENV_OFFSET, |
| 224 | (u_char *)&env_new); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 225 | } |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 226 | if (ret) { |
| 227 | puts("FAILED!\n"); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 228 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 229 | } |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 230 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 231 | puts("done\n"); |
| 232 | |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 233 | gd->env_valid = (gd->env_valid == 2 ? 1 : 2); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 234 | |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 235 | return ret; |
| 236 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 237 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 238 | int saveenv(void) |
| 239 | { |
Wolfgang Denk | d52fb7e | 2006-03-11 22:53:33 +0100 | [diff] [blame] | 240 | int ret = 0; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 241 | env_t env_new; |
| 242 | ssize_t len; |
| 243 | char *res; |
Philip Balister | 9e4006bc | 2008-06-16 08:58:07 -0400 | [diff] [blame] | 244 | nand_erase_options_t nand_erase_options; |
Wolfgang Denk | e093a24 | 2008-06-28 23:34:37 +0200 | [diff] [blame] | 245 | |
Daniel Hobi | 3b250ff | 2011-05-18 15:21:08 +0200 | [diff] [blame] | 246 | memset(&nand_erase_options, 0, sizeof(nand_erase_options)); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 247 | nand_erase_options.length = CONFIG_ENV_RANGE; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 248 | nand_erase_options.offset = CONFIG_ENV_OFFSET; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 249 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 250 | if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 251 | return 1; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 252 | |
| 253 | res = (char *)&env_new.data; |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 254 | len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, 0, NULL); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 255 | if (len < 0) { |
| 256 | error("Cannot export environment: errno = %d\n", errno); |
| 257 | return 1; |
| 258 | } |
| 259 | env_new.crc = crc32(0, env_new.data, ENV_SIZE); |
| 260 | |
| 261 | puts("Erasing Nand...\n"); |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 262 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 263 | return 1; |
| 264 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 265 | puts("Writing to Nand... "); |
| 266 | if (writeenv(CONFIG_ENV_OFFSET, (u_char *)&env_new)) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 267 | puts("FAILED!\n"); |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 268 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 269 | } |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 270 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 271 | puts("done\n"); |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 272 | return ret; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 273 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 274 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 275 | #endif /* CMD_SAVEENV */ |
| 276 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 277 | int readenv(size_t offset, u_char * buf) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 278 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 279 | size_t end = offset + CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 280 | size_t amount_loaded = 0; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 281 | size_t blocksize, len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 282 | |
| 283 | u_char *char_ptr; |
| 284 | |
| 285 | blocksize = nand_info[0].erasesize; |
Mike Frysinger | 962ad59 | 2010-08-11 23:42:26 -0400 | [diff] [blame] | 286 | if (!blocksize) |
| 287 | return 1; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 288 | len = min(blocksize, CONFIG_ENV_SIZE); |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 289 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 290 | while (amount_loaded < CONFIG_ENV_SIZE && offset < end) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 291 | if (nand_block_isbad(&nand_info[0], offset)) { |
| 292 | offset += blocksize; |
| 293 | } else { |
| 294 | char_ptr = &buf[amount_loaded]; |
Steve Sakoman | 068a208 | 2010-12-03 13:25:43 +0000 | [diff] [blame] | 295 | if (nand_read_skip_bad(&nand_info[0], offset, &len, char_ptr)) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 296 | return 1; |
| 297 | offset += blocksize; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 298 | amount_loaded += len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 299 | } |
| 300 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 301 | if (amount_loaded != CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 302 | return 1; |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 307 | #ifdef CONFIG_ENV_OFFSET_OOB |
| 308 | int get_nand_env_oob(nand_info_t *nand, unsigned long *result) |
| 309 | { |
| 310 | struct mtd_oob_ops ops; |
| 311 | uint32_t oob_buf[ENV_OFFSET_SIZE/sizeof(uint32_t)]; |
| 312 | int ret; |
| 313 | |
| 314 | ops.datbuf = NULL; |
| 315 | ops.mode = MTD_OOB_AUTO; |
| 316 | ops.ooboffs = 0; |
| 317 | ops.ooblen = ENV_OFFSET_SIZE; |
| 318 | ops.oobbuf = (void *) oob_buf; |
| 319 | |
| 320 | ret = nand->read_oob(nand, ENV_OFFSET_SIZE, &ops); |
Scott Wood | 53504a2 | 2010-07-12 18:17:40 -0500 | [diff] [blame] | 321 | if (ret) { |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 322 | printf("error reading OOB block 0\n"); |
Scott Wood | 53504a2 | 2010-07-12 18:17:40 -0500 | [diff] [blame] | 323 | return ret; |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 324 | } |
Scott Wood | 53504a2 | 2010-07-12 18:17:40 -0500 | [diff] [blame] | 325 | |
| 326 | if (oob_buf[0] == ENV_OOB_MARKER) { |
| 327 | *result = oob_buf[1] * nand->erasesize; |
| 328 | } else if (oob_buf[0] == ENV_OOB_MARKER_OLD) { |
| 329 | *result = oob_buf[1]; |
| 330 | } else { |
| 331 | printf("No dynamic environment marker in OOB block 0\n"); |
| 332 | return -ENOENT; |
| 333 | } |
| 334 | |
| 335 | return 0; |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 336 | } |
| 337 | #endif |
| 338 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 339 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 340 | void env_relocate_spec(void) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 341 | { |
| 342 | #if !defined(ENV_IS_EMBEDDED) |
Markus Klotzbuecher | 2770bcb | 2006-03-24 15:43:16 +0100 | [diff] [blame] | 343 | int crc1_ok = 0, crc2_ok = 0; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 344 | env_t *ep, *tmp_env1, *tmp_env2; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 345 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 346 | tmp_env1 = (env_t *)malloc(CONFIG_ENV_SIZE); |
| 347 | tmp_env2 = (env_t *)malloc(CONFIG_ENV_SIZE); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 348 | |
Wolfgang Denk | 15b86c3 | 2010-01-16 21:50:26 -0700 | [diff] [blame] | 349 | if ((tmp_env1 == NULL) || (tmp_env2 == NULL)) { |
| 350 | puts("Can't allocate buffers for environment\n"); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 351 | free(tmp_env1); |
| 352 | free(tmp_env2); |
| 353 | set_default_env("!malloc() failed"); |
| 354 | return; |
Wolfgang Denk | 15b86c3 | 2010-01-16 21:50:26 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 357 | if (readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1)) |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 358 | puts("No Valid Environment Area found\n"); |
| 359 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 360 | if (readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2)) |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 361 | puts("No Valid Redundant Environment Area found\n"); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 362 | |
| 363 | crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc); |
| 364 | crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc); |
| 365 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 366 | if (!crc1_ok && !crc2_ok) { |
derek@siconix.com | 5a9427d | 2009-01-26 14:08:17 -0700 | [diff] [blame] | 367 | free(tmp_env1); |
| 368 | free(tmp_env2); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 369 | set_default_env("!bad CRC"); |
| 370 | return; |
| 371 | } else if (crc1_ok && !crc2_ok) { |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 372 | gd->env_valid = 1; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 373 | } else if (!crc1_ok && crc2_ok) { |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 374 | gd->env_valid = 2; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 375 | } else { |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 376 | /* both ok - check serial */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 377 | if (tmp_env1->flags == 255 && tmp_env2->flags == 0) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 378 | gd->env_valid = 2; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 379 | else if (tmp_env2->flags == 255 && tmp_env1->flags == 0) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 380 | gd->env_valid = 1; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 381 | else if (tmp_env1->flags > tmp_env2->flags) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 382 | gd->env_valid = 1; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 383 | else if (tmp_env2->flags > tmp_env1->flags) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 384 | gd->env_valid = 2; |
| 385 | else /* flags are equal - almost impossible */ |
| 386 | gd->env_valid = 1; |
| 387 | |
| 388 | } |
| 389 | |
| 390 | free(env_ptr); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 391 | |
| 392 | if (gd->env_valid == 1) |
| 393 | ep = tmp_env1; |
| 394 | else |
| 395 | ep = tmp_env2; |
| 396 | |
Scott Wood | eef1d71 | 2011-02-08 15:25:02 -0600 | [diff] [blame] | 397 | env_flags = ep->flags; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 398 | env_import((char *)ep, 0); |
| 399 | |
| 400 | free(tmp_env1); |
| 401 | free(tmp_env2); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 402 | |
| 403 | #endif /* ! ENV_IS_EMBEDDED */ |
| 404 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 405 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 406 | /* |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 407 | * The legacy NAND code saved the environment in the first NAND |
| 408 | * device i.e., nand_dev_desc + 0. This is also the behaviour using |
| 409 | * the new NAND code. |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 410 | */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 411 | void env_relocate_spec (void) |
| 412 | { |
| 413 | #if !defined(ENV_IS_EMBEDDED) |
Wolfgang Denk | d52fb7e | 2006-03-11 22:53:33 +0100 | [diff] [blame] | 414 | int ret; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 415 | char buf[CONFIG_ENV_SIZE]; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 416 | |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 417 | #if defined(CONFIG_ENV_OFFSET_OOB) |
| 418 | ret = get_nand_env_oob(&nand_info[0], &nand_env_oob_offset); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 419 | /* |
| 420 | * If unable to read environment offset from NAND OOB then fall through |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 421 | * to the normal environment reading code below |
| 422 | */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 423 | if (!ret) { |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 424 | printf("Found Environment offset in OOB..\n"); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 425 | } else { |
| 426 | set_default_env("!no env offset in OOB"); |
| 427 | return; |
| 428 | } |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 429 | #endif |
| 430 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 431 | ret = readenv(CONFIG_ENV_OFFSET, (u_char *)buf); |
| 432 | if (ret) { |
| 433 | set_default_env("!readenv() failed"); |
| 434 | return; |
| 435 | } |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 436 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 437 | env_import(buf, 1); |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 438 | #endif /* ! ENV_IS_EMBEDDED */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 439 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 440 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |