wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 1 | /* |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 2 | * (C) Copyright 2008 |
| 3 | * Stuart Wood, Lab X Technologies <stuart.wood@labxtechnologies.com> |
| 4 | * |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 5 | * (C) Copyright 2004 |
| 6 | * Jian Zhang, Texas Instruments, jzhang@ti.com. |
| 7 | |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 8 | * (C) Copyright 2000-2006 |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 9 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 10 | * |
| 11 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 12 | * Andreas Heppel <aheppel@sysgo.de> |
| 13 | |
| 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 | |
| 33 | /* #define DEBUG */ |
| 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> |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 41 | |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 42 | #if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 43 | #define CMD_SAVEENV |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 44 | #elif defined(CONFIG_ENV_OFFSET_REDUND) |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 45 | #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] | 46 | #endif |
| 47 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 48 | #if defined(CONFIG_ENV_SIZE_REDUND) && (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE) |
| 49 | #error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 50 | #endif |
| 51 | |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 52 | #ifdef CONFIG_INFERNO |
| 53 | #error CONFIG_INFERNO not supported yet |
| 54 | #endif |
| 55 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 56 | #ifndef CONFIG_ENV_RANGE |
| 57 | #define CONFIG_ENV_RANGE CONFIG_ENV_SIZE |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 58 | #endif |
| 59 | |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 60 | int nand_legacy_rw (struct nand_chip* nand, int cmd, |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 61 | size_t start, size_t len, |
| 62 | size_t * retlen, u_char * buf); |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 63 | |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 64 | /* references to names in env_common.c */ |
| 65 | extern uchar default_environment[]; |
| 66 | extern int default_environment_size; |
| 67 | |
| 68 | char * env_name_spec = "NAND"; |
| 69 | |
| 70 | |
| 71 | #ifdef ENV_IS_EMBEDDED |
| 72 | extern uchar environment[]; |
| 73 | env_t *env_ptr = (env_t *)(&environment[0]); |
| 74 | #else /* ! ENV_IS_EMBEDDED */ |
wdenk | 49822e2 | 2004-06-19 21:19:10 +0000 | [diff] [blame] | 75 | env_t *env_ptr = 0; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 76 | #endif /* ENV_IS_EMBEDDED */ |
| 77 | |
| 78 | |
| 79 | /* local functions */ |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 80 | #if !defined(ENV_IS_EMBEDDED) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 81 | static void use_default(void); |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 82 | #endif |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 83 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 84 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 85 | |
| 86 | uchar env_get_char_spec (int index) |
| 87 | { |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 88 | return ( *((uchar *)(gd->env_addr + index)) ); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | /* this is called before nand_init() |
| 93 | * so we can't read Nand to validate env data. |
| 94 | * Mark it OK for now. env_relocate() in env_common.c |
Marcel Ziswiler | 99c2b43 | 2008-06-22 16:13:46 +0200 | [diff] [blame] | 95 | * will call our relocate function which does the real |
| 96 | * validation. |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 97 | * |
| 98 | * When using a NAND boot image (like sequoia_nand), the environment |
| 99 | * can be embedded or attached to the U-Boot image in NAND flash. This way |
| 100 | * the SPL loads not only the U-Boot image from NAND but also the |
| 101 | * environment. |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 102 | */ |
| 103 | int env_init(void) |
| 104 | { |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 105 | #if defined(ENV_IS_EMBEDDED) |
dirk.behme@googlemail.com | 378e7ec | 2008-04-30 18:02:59 +0200 | [diff] [blame] | 106 | size_t total; |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 107 | int crc1_ok = 0, crc2_ok = 0; |
| 108 | env_t *tmp_env1, *tmp_env2; |
| 109 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 110 | total = CONFIG_ENV_SIZE; |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 111 | |
| 112 | tmp_env1 = env_ptr; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 113 | tmp_env2 = (env_t *)((ulong)env_ptr + CONFIG_ENV_SIZE); |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 114 | |
| 115 | crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc); |
| 116 | crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc); |
| 117 | |
| 118 | if (!crc1_ok && !crc2_ok) |
| 119 | gd->env_valid = 0; |
| 120 | else if(crc1_ok && !crc2_ok) |
| 121 | gd->env_valid = 1; |
| 122 | else if(!crc1_ok && crc2_ok) |
| 123 | gd->env_valid = 2; |
| 124 | else { |
| 125 | /* both ok - check serial */ |
| 126 | if(tmp_env1->flags == 255 && tmp_env2->flags == 0) |
| 127 | gd->env_valid = 2; |
| 128 | else if(tmp_env2->flags == 255 && tmp_env1->flags == 0) |
| 129 | gd->env_valid = 1; |
| 130 | else if(tmp_env1->flags > tmp_env2->flags) |
| 131 | gd->env_valid = 1; |
| 132 | else if(tmp_env2->flags > tmp_env1->flags) |
| 133 | gd->env_valid = 2; |
| 134 | else /* flags are equal - almost impossible */ |
| 135 | gd->env_valid = 1; |
| 136 | } |
| 137 | |
| 138 | if (gd->env_valid == 1) |
| 139 | env_ptr = tmp_env1; |
| 140 | else if (gd->env_valid == 2) |
| 141 | env_ptr = tmp_env2; |
| 142 | #else /* ENV_IS_EMBEDDED */ |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 143 | gd->env_addr = (ulong)&default_environment[0]; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 144 | gd->env_valid = 1; |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 145 | #endif /* ENV_IS_EMBEDDED */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 146 | |
| 147 | return (0); |
| 148 | } |
| 149 | |
| 150 | #ifdef CMD_SAVEENV |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 151 | /* |
| 152 | * The legacy NAND code saved the environment in the first NAND device i.e., |
| 153 | * nand_dev_desc + 0. This is also the behaviour using the new NAND code. |
| 154 | */ |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 155 | int writeenv(size_t offset, u_char *buf) |
| 156 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 157 | size_t end = offset + CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 158 | size_t amount_saved = 0; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 159 | size_t blocksize, len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 160 | |
| 161 | u_char *char_ptr; |
| 162 | |
| 163 | blocksize = nand_info[0].erasesize; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 164 | len = min(blocksize, CONFIG_ENV_SIZE); |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 165 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 166 | while (amount_saved < CONFIG_ENV_SIZE && offset < end) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 167 | if (nand_block_isbad(&nand_info[0], offset)) { |
| 168 | offset += blocksize; |
| 169 | } else { |
| 170 | char_ptr = &buf[amount_saved]; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 171 | if (nand_write(&nand_info[0], offset, &len, |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 172 | char_ptr)) |
| 173 | return 1; |
| 174 | offset += blocksize; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 175 | amount_saved += len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 176 | } |
| 177 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 178 | if (amount_saved != CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 179 | return 1; |
| 180 | |
| 181 | return 0; |
| 182 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 183 | #ifdef CONFIG_ENV_OFFSET_REDUND |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 184 | int saveenv(void) |
| 185 | { |
Wolfgang Denk | 4ca79f4 | 2008-04-28 12:08:18 +0200 | [diff] [blame] | 186 | size_t total; |
Markus Klotzbuecher | 2770bcb | 2006-03-24 15:43:16 +0100 | [diff] [blame] | 187 | int ret = 0; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 188 | nand_erase_options_t nand_erase_options; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 189 | |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 190 | env_ptr->flags++; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 191 | total = CONFIG_ENV_SIZE; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 192 | |
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 | nand_erase_options.quiet = 0; |
| 195 | nand_erase_options.jffs2 = 0; |
| 196 | nand_erase_options.scrub = 0; |
| 197 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 198 | if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 199 | return 1; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 200 | if(gd->env_valid == 1) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 201 | puts ("Erasing redundant Nand...\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 202 | nand_erase_options.offset = CONFIG_ENV_OFFSET_REDUND; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 203 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 204 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 205 | |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 206 | puts ("Writing to redundant Nand... "); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 207 | ret = writeenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) env_ptr); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 208 | } else { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 209 | puts ("Erasing Nand...\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 210 | nand_erase_options.offset = CONFIG_ENV_OFFSET; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 211 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 212 | return 1; |
| 213 | |
| 214 | puts ("Writing to Nand... "); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 215 | ret = writeenv(CONFIG_ENV_OFFSET, (u_char *) env_ptr); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 216 | } |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 217 | if (ret) { |
| 218 | puts("FAILED!\n"); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 219 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 220 | } |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 221 | |
| 222 | puts ("done\n"); |
| 223 | gd->env_valid = (gd->env_valid == 2 ? 1 : 2); |
| 224 | return ret; |
| 225 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 226 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 227 | int saveenv(void) |
| 228 | { |
dirk.behme@googlemail.com | 378e7ec | 2008-04-30 18:02:59 +0200 | [diff] [blame] | 229 | size_t total; |
Wolfgang Denk | d52fb7e | 2006-03-11 22:53:33 +0100 | [diff] [blame] | 230 | int ret = 0; |
Philip Balister | 9e4006bc | 2008-06-16 08:58:07 -0400 | [diff] [blame] | 231 | nand_erase_options_t nand_erase_options; |
Wolfgang Denk | e093a24 | 2008-06-28 23:34:37 +0200 | [diff] [blame] | 232 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 233 | nand_erase_options.length = CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 234 | nand_erase_options.quiet = 0; |
| 235 | nand_erase_options.jffs2 = 0; |
| 236 | nand_erase_options.scrub = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 237 | nand_erase_options.offset = CONFIG_ENV_OFFSET; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 238 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 239 | if (CONFIG_ENV_RANGE < CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 240 | return 1; |
| 241 | puts ("Erasing Nand...\n"); |
| 242 | if (nand_erase_opts(&nand_info[0], &nand_erase_options)) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 243 | return 1; |
| 244 | |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 245 | puts ("Writing to Nand... "); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 246 | total = CONFIG_ENV_SIZE; |
| 247 | if (writeenv(CONFIG_ENV_OFFSET, (u_char *) env_ptr)) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 248 | puts("FAILED!\n"); |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 249 | return 1; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 250 | } |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 251 | |
| 252 | puts ("done\n"); |
| 253 | return ret; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 254 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 255 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 256 | #endif /* CMD_SAVEENV */ |
| 257 | |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 258 | int readenv (size_t offset, u_char * buf) |
| 259 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 260 | size_t end = offset + CONFIG_ENV_RANGE; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 261 | size_t amount_loaded = 0; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 262 | size_t blocksize, len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 263 | |
| 264 | u_char *char_ptr; |
| 265 | |
| 266 | blocksize = nand_info[0].erasesize; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 267 | len = min(blocksize, CONFIG_ENV_SIZE); |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 268 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 269 | while (amount_loaded < CONFIG_ENV_SIZE && offset < end) { |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 270 | if (nand_block_isbad(&nand_info[0], offset)) { |
| 271 | offset += blocksize; |
| 272 | } else { |
| 273 | char_ptr = &buf[amount_loaded]; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 274 | if (nand_read(&nand_info[0], offset, &len, char_ptr)) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 275 | return 1; |
| 276 | offset += blocksize; |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 277 | amount_loaded += len; |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 278 | } |
| 279 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 280 | if (amount_loaded != CONFIG_ENV_SIZE) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 281 | return 1; |
| 282 | |
| 283 | return 0; |
| 284 | } |
| 285 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 286 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 287 | void env_relocate_spec (void) |
| 288 | { |
| 289 | #if !defined(ENV_IS_EMBEDDED) |
Wolfgang Denk | f7b16a0 | 2008-04-29 23:32:20 +0200 | [diff] [blame] | 290 | size_t total; |
Markus Klotzbuecher | 2770bcb | 2006-03-24 15:43:16 +0100 | [diff] [blame] | 291 | int crc1_ok = 0, crc2_ok = 0; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 292 | env_t *tmp_env1, *tmp_env2; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 293 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 294 | total = CONFIG_ENV_SIZE; |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 295 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 296 | tmp_env1 = (env_t *) malloc(CONFIG_ENV_SIZE); |
| 297 | tmp_env2 = (env_t *) malloc(CONFIG_ENV_SIZE); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 298 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 299 | if (readenv(CONFIG_ENV_OFFSET, (u_char *) tmp_env1)) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 300 | puts("No Valid Environment Area Found\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 301 | if (readenv(CONFIG_ENV_OFFSET_REDUND, (u_char *) tmp_env2)) |
Stuart Wood | cc49cad | 2008-05-30 16:05:28 -0400 | [diff] [blame] | 302 | puts("No Valid Reundant Environment Area Found\n"); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 303 | |
| 304 | crc1_ok = (crc32(0, tmp_env1->data, ENV_SIZE) == tmp_env1->crc); |
| 305 | crc2_ok = (crc32(0, tmp_env2->data, ENV_SIZE) == tmp_env2->crc); |
| 306 | |
derek@siconix.com | 5a9427d | 2009-01-26 14:08:17 -0700 | [diff] [blame] | 307 | if(!crc1_ok && !crc2_ok) { |
| 308 | free(tmp_env1); |
| 309 | free(tmp_env2); |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 310 | return use_default(); |
derek@siconix.com | 5a9427d | 2009-01-26 14:08:17 -0700 | [diff] [blame] | 311 | } else if(crc1_ok && !crc2_ok) |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 312 | gd->env_valid = 1; |
| 313 | else if(!crc1_ok && crc2_ok) |
| 314 | gd->env_valid = 2; |
| 315 | else { |
| 316 | /* both ok - check serial */ |
| 317 | if(tmp_env1->flags == 255 && tmp_env2->flags == 0) |
| 318 | gd->env_valid = 2; |
| 319 | else if(tmp_env2->flags == 255 && tmp_env1->flags == 0) |
| 320 | gd->env_valid = 1; |
| 321 | else if(tmp_env1->flags > tmp_env2->flags) |
| 322 | gd->env_valid = 1; |
| 323 | else if(tmp_env2->flags > tmp_env1->flags) |
| 324 | gd->env_valid = 2; |
| 325 | else /* flags are equal - almost impossible */ |
| 326 | gd->env_valid = 1; |
| 327 | |
| 328 | } |
| 329 | |
| 330 | free(env_ptr); |
| 331 | if(gd->env_valid == 1) { |
| 332 | env_ptr = tmp_env1; |
| 333 | free(tmp_env2); |
| 334 | } else { |
| 335 | env_ptr = tmp_env2; |
| 336 | free(tmp_env1); |
| 337 | } |
| 338 | |
| 339 | #endif /* ! ENV_IS_EMBEDDED */ |
| 340 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 341 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
Bartlomiej Sieka | addb2e1 | 2006-03-05 18:57:33 +0100 | [diff] [blame] | 342 | /* |
| 343 | * The legacy NAND code saved the environment in the first NAND device i.e., |
| 344 | * nand_dev_desc + 0. This is also the behaviour using the new NAND code. |
| 345 | */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 346 | void env_relocate_spec (void) |
| 347 | { |
| 348 | #if !defined(ENV_IS_EMBEDDED) |
Wolfgang Denk | d52fb7e | 2006-03-11 22:53:33 +0100 | [diff] [blame] | 349 | int ret; |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 350 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 351 | ret = readenv(CONFIG_ENV_OFFSET, (u_char *) env_ptr); |
Guennadi Liakhovetski | c3db8c6 | 2008-07-31 12:38:26 +0200 | [diff] [blame] | 352 | if (ret) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 353 | return use_default(); |
| 354 | |
| 355 | if (crc32(0, env_ptr->data, ENV_SIZE) != env_ptr->crc) |
| 356 | return use_default(); |
| 357 | #endif /* ! ENV_IS_EMBEDDED */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 358 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 359 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 360 | |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 361 | #if !defined(ENV_IS_EMBEDDED) |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 362 | static void use_default() |
| 363 | { |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 364 | puts ("*** Warning - bad CRC or NAND, using default environment\n\n"); |
Harald Welte | 5bb12db | 2008-07-07 15:40:39 +0800 | [diff] [blame] | 365 | set_default_env(); |
wdenk | 13a5695 | 2004-06-09 14:58:14 +0000 | [diff] [blame] | 366 | } |
Stefan Roese | d12ae80 | 2006-09-12 20:19:10 +0200 | [diff] [blame] | 367 | #endif |