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