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