Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 2 | /* |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 3 | * (C) Copyright 2008-2011 Freescale Semiconductor, Inc. |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* #define DEBUG */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | |
| 10 | #include <command.h> |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 12 | #include <env_internal.h> |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 13 | #include <fdtdec.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 14 | #include <linux/stddef.h> |
| 15 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 16 | #include <memalign.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 17 | #include <mmc.h> |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 18 | #include <part.h> |
Lei Wen | 6d1d51b | 2010-11-10 07:39:23 +0800 | [diff] [blame] | 19 | #include <search.h> |
Lei Wen | e79f483 | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 20 | #include <errno.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 21 | |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 22 | #define __STR(X) #X |
| 23 | #define STR(X) __STR(X) |
| 24 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 25 | #if defined(CONFIG_ENV_SIZE_REDUND) && \ |
| 26 | (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE) |
| 27 | #error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE |
| 28 | #endif |
| 29 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 32 | #if !defined(CONFIG_ENV_OFFSET) |
| 33 | #define CONFIG_ENV_OFFSET 0 |
| 34 | #endif |
| 35 | |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 36 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 37 | static inline int mmc_offset_try_partition(const char *str, s64 *val) |
| 38 | { |
| 39 | disk_partition_t info; |
| 40 | struct blk_desc *desc; |
| 41 | int len, i, ret; |
| 42 | |
| 43 | ret = blk_get_device_by_str("mmc", STR(CONFIG_SYS_MMC_ENV_DEV), &desc); |
| 44 | if (ret < 0) |
| 45 | return (ret); |
| 46 | |
| 47 | for (i = 1;;i++) { |
| 48 | ret = part_get_info(desc, i, &info); |
| 49 | if (ret < 0) |
| 50 | return ret; |
| 51 | |
| 52 | if (!strncmp((const char *)info.name, str, sizeof(str))) |
| 53 | break; |
| 54 | } |
| 55 | |
| 56 | /* round up to info.blksz */ |
| 57 | len = (CONFIG_ENV_SIZE + info.blksz - 1) & ~(info.blksz - 1); |
| 58 | |
| 59 | /* use the top of the partion for the environment */ |
| 60 | *val = (info.start + info.size - 1) - len / info.blksz; |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 65 | static inline s64 mmc_offset(int copy) |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 66 | { |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 67 | const struct { |
| 68 | const char *offset_redund; |
| 69 | const char *partition; |
| 70 | const char *offset; |
| 71 | } dt_prop = { |
| 72 | .offset_redund = "u-boot,mmc-env-offset-redundant", |
| 73 | .partition = "u-boot,mmc-env-partition", |
| 74 | .offset = "u-boot,mmc-env-offset", |
| 75 | }; |
Philipp Tomsich | fd37466 | 2017-11-21 23:29:40 +0100 | [diff] [blame] | 76 | s64 val = 0, defvalue; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 77 | const char *propname; |
| 78 | const char *str; |
| 79 | int err; |
| 80 | |
| 81 | /* look for the partition in mmc CONFIG_SYS_MMC_ENV_DEV */ |
| 82 | str = fdtdec_get_config_string(gd->fdt_blob, dt_prop.partition); |
| 83 | if (str) { |
| 84 | /* try to place the environment at end of the partition */ |
| 85 | err = mmc_offset_try_partition(str, &val); |
| 86 | if (!err) |
| 87 | return val; |
| 88 | } |
| 89 | |
| 90 | defvalue = CONFIG_ENV_OFFSET; |
| 91 | propname = dt_prop.offset; |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 92 | |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 93 | #if defined(CONFIG_ENV_OFFSET_REDUND) |
| 94 | if (copy) { |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 95 | defvalue = CONFIG_ENV_OFFSET_REDUND; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 96 | propname = dt_prop.offset_redund; |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 97 | } |
| 98 | #endif |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 99 | return fdtdec_get_config_int(gd->fdt_blob, propname, defvalue); |
| 100 | } |
| 101 | #else |
| 102 | static inline s64 mmc_offset(int copy) |
| 103 | { |
| 104 | s64 offset = CONFIG_ENV_OFFSET; |
| 105 | |
| 106 | #if defined(CONFIG_ENV_OFFSET_REDUND) |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 107 | if (copy) |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 108 | offset = CONFIG_ENV_OFFSET_REDUND; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 109 | #endif |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 110 | return offset; |
| 111 | } |
| 112 | #endif |
| 113 | |
| 114 | __weak int mmc_get_env_addr(struct mmc *mmc, int copy, u32 *env_addr) |
| 115 | { |
| 116 | s64 offset = mmc_offset(copy); |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 117 | |
| 118 | if (offset < 0) |
| 119 | offset += mmc->capacity; |
| 120 | |
| 121 | *env_addr = offset; |
| 122 | |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 123 | return 0; |
| 124 | } |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 125 | |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 126 | __weak int mmc_get_env_dev(void) |
| 127 | { |
| 128 | return CONFIG_SYS_MMC_ENV_DEV; |
| 129 | } |
| 130 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 131 | #ifdef CONFIG_SYS_MMC_ENV_PART |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 132 | __weak uint mmc_get_env_part(struct mmc *mmc) |
| 133 | { |
| 134 | return CONFIG_SYS_MMC_ENV_PART; |
| 135 | } |
| 136 | |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 137 | static unsigned char env_mmc_orig_hwpart; |
| 138 | |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 139 | static int mmc_set_env_part(struct mmc *mmc) |
| 140 | { |
| 141 | uint part = mmc_get_env_part(mmc); |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 142 | int dev = mmc_get_env_dev(); |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 143 | int ret = 0; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 144 | |
Simon Glass | 69f45cd | 2016-05-01 13:52:29 -0600 | [diff] [blame] | 145 | env_mmc_orig_hwpart = mmc_get_blk_desc(mmc)->hwpart; |
| 146 | ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part); |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 147 | if (ret) |
| 148 | puts("MMC partition switch failed\n"); |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 149 | |
| 150 | return ret; |
| 151 | } |
| 152 | #else |
| 153 | static inline int mmc_set_env_part(struct mmc *mmc) {return 0; }; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 154 | #endif |
| 155 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 156 | static const char *init_mmc_for_env(struct mmc *mmc) |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 157 | { |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 158 | if (!mmc) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 159 | return "No MMC card found"; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 160 | |
Sjoerd Simons | d48b8d1 | 2018-03-22 22:53:50 +0100 | [diff] [blame] | 161 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01b73fe | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 162 | struct udevice *dev; |
| 163 | |
| 164 | if (blk_get_from_parent(mmc->dev, &dev)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 165 | return "No block device"; |
Simon Glass | 01b73fe | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 166 | #else |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 167 | if (mmc_init(mmc)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 168 | return "MMC init failed"; |
Simon Glass | e7017a3 | 2017-04-23 20:02:04 -0600 | [diff] [blame] | 169 | #endif |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 170 | if (mmc_set_env_part(mmc)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 171 | return "MMC partition switch failed"; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 172 | |
| 173 | return NULL; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 174 | } |
| 175 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 176 | static void fini_mmc_for_env(struct mmc *mmc) |
| 177 | { |
| 178 | #ifdef CONFIG_SYS_MMC_ENV_PART |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 179 | int dev = mmc_get_env_dev(); |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 180 | |
Simon Glass | 69f45cd | 2016-05-01 13:52:29 -0600 | [diff] [blame] | 181 | blk_select_hwpart_devnum(IF_TYPE_MMC, dev, env_mmc_orig_hwpart); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 182 | #endif |
| 183 | } |
| 184 | |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 185 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD) |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 186 | static inline int write_env(struct mmc *mmc, unsigned long size, |
| 187 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 188 | { |
| 189 | uint blk_start, blk_cnt, n; |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 190 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 191 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 192 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 193 | blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 194 | |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 195 | n = blk_dwrite(desc, blk_start, blk_cnt, (u_char *)buffer); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 196 | |
| 197 | return (n == blk_cnt) ? 0 : -1; |
| 198 | } |
| 199 | |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 200 | static int env_mmc_save(void) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 201 | { |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 202 | ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 203 | int dev = mmc_get_env_dev(); |
| 204 | struct mmc *mmc = find_mmc_device(dev); |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 205 | u32 offset; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 206 | int ret, copy = 0; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 207 | const char *errmsg; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 208 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 209 | errmsg = init_mmc_for_env(mmc); |
| 210 | if (errmsg) { |
| 211 | printf("%s\n", errmsg); |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 212 | return 1; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 213 | } |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 214 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 215 | ret = env_export(env_new); |
| 216 | if (ret) |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 217 | goto fini; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 218 | |
| 219 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Simon Glass | 203e94f | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 220 | if (gd->env_valid == ENV_VALID) |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 221 | copy = 1; |
| 222 | #endif |
| 223 | |
| 224 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 225 | ret = 1; |
| 226 | goto fini; |
| 227 | } |
| 228 | |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 229 | printf("Writing to %sMMC(%d)... ", copy ? "redundant " : "", dev); |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 230 | if (write_env(mmc, CONFIG_ENV_SIZE, offset, (u_char *)env_new)) { |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 231 | puts("failed\n"); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 232 | ret = 1; |
| 233 | goto fini; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 234 | } |
| 235 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 236 | ret = 0; |
| 237 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 238 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Simon Glass | 203e94f | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 239 | gd->env_valid = gd->env_valid == ENV_REDUND ? ENV_VALID : ENV_REDUND; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 240 | #endif |
| 241 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 242 | fini: |
| 243 | fini_mmc_for_env(mmc); |
| 244 | return ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 245 | } |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 246 | |
| 247 | #if defined(CONFIG_CMD_ERASEENV) |
| 248 | static inline int erase_env(struct mmc *mmc, unsigned long size, |
| 249 | unsigned long offset) |
| 250 | { |
| 251 | uint blk_start, blk_cnt, n; |
| 252 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
| 253 | |
| 254 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 255 | blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len; |
| 256 | |
| 257 | n = blk_derase(desc, blk_start, blk_cnt); |
| 258 | printf("%d blocks erased: %s\n", n, (n == blk_cnt) ? "OK" : "ERROR"); |
| 259 | |
| 260 | return (n == blk_cnt) ? 0 : 1; |
| 261 | } |
| 262 | |
| 263 | static int env_mmc_erase(void) |
| 264 | { |
| 265 | int dev = mmc_get_env_dev(); |
| 266 | struct mmc *mmc = find_mmc_device(dev); |
| 267 | int ret, copy = 0; |
| 268 | u32 offset; |
| 269 | const char *errmsg; |
| 270 | |
| 271 | errmsg = init_mmc_for_env(mmc); |
| 272 | if (errmsg) { |
| 273 | printf("%s\n", errmsg); |
| 274 | return 1; |
| 275 | } |
| 276 | |
| 277 | if (mmc_get_env_addr(mmc, copy, &offset)) |
| 278 | return CMD_RET_FAILURE; |
| 279 | |
| 280 | ret = erase_env(mmc, CONFIG_ENV_SIZE, offset); |
| 281 | |
| 282 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 283 | copy = 1; |
| 284 | |
| 285 | if (mmc_get_env_addr(mmc, copy, &offset)) |
| 286 | return CMD_RET_FAILURE; |
| 287 | |
| 288 | ret |= erase_env(mmc, CONFIG_ENV_SIZE, offset); |
| 289 | #endif |
| 290 | |
| 291 | return ret; |
| 292 | } |
| 293 | #endif /* CONFIG_CMD_ERASEENV */ |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 294 | #endif /* CONFIG_CMD_SAVEENV && !CONFIG_SPL_BUILD */ |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 295 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 296 | static inline int read_env(struct mmc *mmc, unsigned long size, |
| 297 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 298 | { |
| 299 | uint blk_start, blk_cnt, n; |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 300 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 301 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 302 | blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len; |
| 303 | blk_cnt = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 304 | |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 305 | n = blk_dread(desc, blk_start, blk_cnt, (uchar *)buffer); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 306 | |
| 307 | return (n == blk_cnt) ? 0 : -1; |
| 308 | } |
| 309 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 310 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 311 | static int env_mmc_load(void) |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 312 | { |
| 313 | #if !defined(ENV_IS_EMBEDDED) |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 314 | struct mmc *mmc; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 315 | u32 offset1, offset2; |
| 316 | int read1_fail = 0, read2_fail = 0; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 317 | int ret; |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 318 | int dev = mmc_get_env_dev(); |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 319 | const char *errmsg = NULL; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 320 | |
Markus Niebel | 452a272 | 2013-10-04 15:48:03 +0200 | [diff] [blame] | 321 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env1, 1); |
| 322 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env2, 1); |
| 323 | |
Faiz Abbas | 26862b4 | 2018-02-12 19:24:31 +0530 | [diff] [blame] | 324 | mmc_initialize(NULL); |
| 325 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 326 | mmc = find_mmc_device(dev); |
| 327 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 328 | errmsg = init_mmc_for_env(mmc); |
| 329 | if (errmsg) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 330 | ret = -EIO; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 331 | goto err; |
| 332 | } |
| 333 | |
| 334 | if (mmc_get_env_addr(mmc, 0, &offset1) || |
| 335 | mmc_get_env_addr(mmc, 1, &offset2)) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 336 | ret = -EIO; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 337 | goto fini; |
| 338 | } |
| 339 | |
| 340 | read1_fail = read_env(mmc, CONFIG_ENV_SIZE, offset1, tmp_env1); |
| 341 | read2_fail = read_env(mmc, CONFIG_ENV_SIZE, offset2, tmp_env2); |
| 342 | |
Simon Goldschmidt | 31f044b | 2018-01-31 14:47:11 +0100 | [diff] [blame] | 343 | ret = env_import_redund((char *)tmp_env1, read1_fail, (char *)tmp_env2, |
| 344 | read2_fail); |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 345 | |
| 346 | fini: |
| 347 | fini_mmc_for_env(mmc); |
| 348 | err: |
| 349 | if (ret) |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 350 | env_set_default(errmsg, 0); |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 351 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 352 | #endif |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 353 | return ret; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 354 | } |
| 355 | #else /* ! CONFIG_ENV_OFFSET_REDUND */ |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 356 | static int env_mmc_load(void) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 357 | { |
| 358 | #if !defined(ENV_IS_EMBEDDED) |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 359 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 360 | struct mmc *mmc; |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 361 | u32 offset; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 362 | int ret; |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 363 | int dev = mmc_get_env_dev(); |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 364 | const char *errmsg; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 365 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 366 | mmc = find_mmc_device(dev); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 367 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 368 | errmsg = init_mmc_for_env(mmc); |
| 369 | if (errmsg) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 370 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 371 | goto err; |
| 372 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 373 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 374 | if (mmc_get_env_addr(mmc, 0, &offset)) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 375 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 376 | goto fini; |
| 377 | } |
| 378 | |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 379 | if (read_env(mmc, CONFIG_ENV_SIZE, offset, buf)) { |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 380 | errmsg = "!read failed"; |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 381 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 382 | goto fini; |
| 383 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 384 | |
Simon Goldschmidt | 2166ebf | 2018-01-31 14:47:12 +0100 | [diff] [blame] | 385 | ret = env_import(buf, 1); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 386 | |
| 387 | fini: |
| 388 | fini_mmc_for_env(mmc); |
| 389 | err: |
| 390 | if (ret) |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 391 | env_set_default(errmsg, 0); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 392 | #endif |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 393 | return ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 394 | } |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 395 | #endif /* CONFIG_ENV_OFFSET_REDUND */ |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 396 | |
| 397 | U_BOOT_ENV_LOCATION(mmc) = { |
| 398 | .location = ENVL_MMC, |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 399 | ENV_NAME("MMC") |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 400 | .load = env_mmc_load, |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 401 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 402 | .save = env_save_ptr(env_mmc_save), |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 403 | #if defined(CONFIG_CMD_ERASEENV) |
| 404 | .erase = env_mmc_erase, |
| 405 | #endif |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 406 | #endif |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 407 | }; |