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