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