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