Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 2 | /* |
Mingkai Hu | a55fce3 | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 3 | * (C) Copyright 2008-2011 Freescale Semiconductor, Inc. |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* #define DEBUG */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 9 | #include <asm/global_data.h> |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 10 | |
| 11 | #include <command.h> |
Simon Glass | 9738586 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 13 | #include <env_internal.h> |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 14 | #include <fdtdec.h> |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 15 | #include <linux/stddef.h> |
| 16 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 17 | #include <memalign.h> |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 18 | #include <mmc.h> |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 19 | #include <part.h> |
Lei Wen | 9f84f21 | 2010-11-10 07:39:23 +0800 | [diff] [blame] | 20 | #include <search.h> |
Lei Wen | ff833ed | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 21 | #include <errno.h> |
Simon Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 22 | #include <dm/ofnode.h> |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 23 | |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 24 | #define __STR(X) #X |
| 25 | #define STR(X) __STR(X) |
| 26 | |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 27 | #define ENV_MMC_INVALID_OFFSET ((s64)-1) |
| 28 | |
Patrick Delaunay | 41e143f | 2022-11-10 11:49:01 +0100 | [diff] [blame] | 29 | #if defined(CONFIG_ENV_MMC_USE_DT) |
| 30 | /* ENV offset is invalid when not defined in Device Tree */ |
| 31 | #define ENV_MMC_OFFSET ENV_MMC_INVALID_OFFSET |
| 32 | #define ENV_MMC_OFFSET_REDUND ENV_MMC_INVALID_OFFSET |
| 33 | |
| 34 | #else |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 35 | /* Default ENV offset when not defined in Device Tree */ |
| 36 | #define ENV_MMC_OFFSET CONFIG_ENV_OFFSET |
| 37 | |
| 38 | #if defined(CONFIG_ENV_OFFSET_REDUND) |
| 39 | #define ENV_MMC_OFFSET_REDUND CONFIG_ENV_OFFSET_REDUND |
| 40 | #else |
| 41 | #define ENV_MMC_OFFSET_REDUND ENV_MMC_INVALID_OFFSET |
| 42 | #endif |
Patrick Delaunay | 41e143f | 2022-11-10 11:49:01 +0100 | [diff] [blame] | 43 | #endif |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 44 | |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 45 | DECLARE_GLOBAL_DATA_PTR; |
| 46 | |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 47 | /* |
| 48 | * In case the environment is redundant, stored in eMMC hardware boot |
| 49 | * partition and the environment and redundant environment offsets are |
| 50 | * identical, store the environment and redundant environment in both |
| 51 | * eMMC boot partitions, one copy in each. |
| 52 | * */ |
| 53 | #if (defined(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && \ |
| 54 | (CONFIG_SYS_MMC_ENV_PART == 1) && \ |
| 55 | (CONFIG_ENV_OFFSET == CONFIG_ENV_OFFSET_REDUND)) |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 56 | #define ENV_MMC_HWPART_REDUND 1 |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 57 | #endif |
| 58 | |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 59 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Patrick Delaunay | eff8195 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 60 | static inline int mmc_offset_try_partition(const char *str, int copy, s64 *val) |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 61 | { |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 62 | struct disk_partition info; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 63 | struct blk_desc *desc; |
| 64 | int len, i, ret; |
Patrick Delaunay | 530cb45 | 2020-06-15 10:38:55 +0200 | [diff] [blame] | 65 | char dev_str[4]; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 66 | |
Patrick Delaunay | 530cb45 | 2020-06-15 10:38:55 +0200 | [diff] [blame] | 67 | snprintf(dev_str, sizeof(dev_str), "%d", mmc_get_env_dev()); |
| 68 | ret = blk_get_device_by_str("mmc", dev_str, &desc); |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 69 | if (ret < 0) |
| 70 | return (ret); |
| 71 | |
| 72 | for (i = 1;;i++) { |
| 73 | ret = part_get_info(desc, i, &info); |
| 74 | if (ret < 0) |
| 75 | return ret; |
| 76 | |
Patrick Delaunay | eb78787 | 2022-11-10 11:49:03 +0100 | [diff] [blame] | 77 | if (str && !strncmp((const char *)info.name, str, sizeof(info.name))) |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 78 | break; |
Patrick Delaunay | eb78787 | 2022-11-10 11:49:03 +0100 | [diff] [blame] | 79 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 80 | if (!str) { |
| 81 | const efi_guid_t env_guid = PARTITION_U_BOOT_ENVIRONMENT; |
| 82 | efi_guid_t type_guid; |
| 83 | |
| 84 | uuid_str_to_bin(info.type_guid, type_guid.b, UUID_STR_FORMAT_GUID); |
| 85 | if (!memcmp(&env_guid, &type_guid, sizeof(efi_guid_t))) |
| 86 | break; |
| 87 | } |
| 88 | #endif |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /* round up to info.blksz */ |
Patrick Delaunay | 66fba3a | 2020-06-15 10:38:56 +0200 | [diff] [blame] | 92 | len = DIV_ROUND_UP(CONFIG_ENV_SIZE, info.blksz); |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 93 | |
| 94 | /* use the top of the partion for the environment */ |
Patrick Delaunay | eff8195 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 95 | *val = (info.start + info.size - (1 + copy) * len) * info.blksz; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 96 | |
| 97 | return 0; |
| 98 | } |
| 99 | |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 100 | static inline s64 mmc_offset(int copy) |
| 101 | { |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 102 | const struct { |
| 103 | const char *offset_redund; |
| 104 | const char *partition; |
| 105 | const char *offset; |
| 106 | } dt_prop = { |
| 107 | .offset_redund = "u-boot,mmc-env-offset-redundant", |
| 108 | .partition = "u-boot,mmc-env-partition", |
| 109 | .offset = "u-boot,mmc-env-offset", |
| 110 | }; |
Philipp Tomsich | 745d8de | 2017-11-21 23:29:40 +0100 | [diff] [blame] | 111 | s64 val = 0, defvalue; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 112 | const char *propname; |
| 113 | const char *str; |
| 114 | int err; |
| 115 | |
| 116 | /* look for the partition in mmc CONFIG_SYS_MMC_ENV_DEV */ |
Simon Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 117 | str = ofnode_conf_read_str(dt_prop.partition); |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 118 | if (str) { |
| 119 | /* try to place the environment at end of the partition */ |
Patrick Delaunay | eff8195 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 120 | err = mmc_offset_try_partition(str, copy, &val); |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 121 | if (!err) |
| 122 | return val; |
Patrick Delaunay | 01b0798 | 2022-11-10 11:49:04 +0100 | [diff] [blame^] | 123 | debug("env partition '%s' not found (%d)", str, err); |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Patrick Delaunay | eb78787 | 2022-11-10 11:49:03 +0100 | [diff] [blame] | 126 | /* try the GPT partition with "U-Boot ENV" TYPE GUID */ |
| 127 | if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID)) { |
| 128 | err = mmc_offset_try_partition(NULL, copy, &val); |
| 129 | if (!err) |
| 130 | return val; |
| 131 | } |
| 132 | |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 133 | defvalue = ENV_MMC_OFFSET; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 134 | propname = dt_prop.offset; |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 135 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 136 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && copy) { |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 137 | defvalue = ENV_MMC_OFFSET_REDUND; |
Jorge Ramirez-Ortiz | 03ab46c | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 138 | propname = dt_prop.offset_redund; |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 139 | } |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 140 | |
Simon Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 141 | return ofnode_conf_read_int(propname, defvalue); |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 142 | } |
| 143 | #else |
| 144 | static inline s64 mmc_offset(int copy) |
Mingkai Hu | a55fce3 | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 145 | { |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 146 | s64 offset = ENV_MMC_OFFSET; |
Stephen Warren | 24dc203 | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 147 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 148 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && copy) |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 149 | offset = ENV_MMC_OFFSET_REDUND; |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 150 | |
Philipp Tomsich | 8ab507b | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 151 | return offset; |
| 152 | } |
| 153 | #endif |
| 154 | |
| 155 | __weak int mmc_get_env_addr(struct mmc *mmc, int copy, u32 *env_addr) |
| 156 | { |
| 157 | s64 offset = mmc_offset(copy); |
Stephen Warren | 24dc203 | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 158 | |
Patrick Delaunay | f080c4c | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 159 | if (offset == ENV_MMC_INVALID_OFFSET) { |
| 160 | printf("Invalid ENV offset in MMC, copy=%d\n", copy); |
| 161 | return -ENOENT; |
| 162 | } |
| 163 | |
Stephen Warren | 24dc203 | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 164 | if (offset < 0) |
| 165 | offset += mmc->capacity; |
| 166 | |
| 167 | *env_addr = offset; |
| 168 | |
Mingkai Hu | a55fce3 | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 169 | return 0; |
| 170 | } |
Mingkai Hu | a55fce3 | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 171 | |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 172 | #ifdef CONFIG_SYS_MMC_ENV_PART |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 173 | __weak uint mmc_get_env_part(struct mmc *mmc) |
| 174 | { |
| 175 | return CONFIG_SYS_MMC_ENV_PART; |
| 176 | } |
| 177 | |
Stephen Warren | 1e0f92a | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 178 | static unsigned char env_mmc_orig_hwpart; |
| 179 | |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 180 | static int mmc_set_env_part(struct mmc *mmc, uint part) |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 181 | { |
Clemens Gruber | f7b6144 | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 182 | int dev = mmc_get_env_dev(); |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 183 | int ret = 0; |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 184 | |
Simon Glass | dbfa32c | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 185 | ret = blk_select_hwpart_devnum(UCLASS_MMC, dev, part); |
Stephen Warren | 1e0f92a | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 186 | if (ret) |
| 187 | puts("MMC partition switch failed\n"); |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 188 | |
| 189 | return ret; |
| 190 | } |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 191 | |
| 192 | static bool mmc_set_env_part_init(struct mmc *mmc) |
| 193 | { |
| 194 | env_mmc_orig_hwpart = mmc_get_blk_desc(mmc)->hwpart; |
| 195 | if (mmc_set_env_part(mmc, mmc_get_env_part(mmc))) |
| 196 | return false; |
| 197 | |
| 198 | return true; |
| 199 | } |
| 200 | |
| 201 | static int mmc_set_env_part_restore(struct mmc *mmc) |
| 202 | { |
| 203 | return mmc_set_env_part(mmc, env_mmc_orig_hwpart); |
| 204 | } |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 205 | #else |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 206 | static inline int mmc_set_env_part(struct mmc *mmc, uint part) {return 0; }; |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 207 | static bool mmc_set_env_part_init(struct mmc *mmc) {return true; } |
| 208 | static inline int mmc_set_env_part_restore(struct mmc *mmc) {return 0; }; |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 209 | #endif |
| 210 | |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 211 | static const char *init_mmc_for_env(struct mmc *mmc) |
Dmitry Lifshitz | 97d2fb9 | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 212 | { |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 213 | if (!mmc) |
Yaniv Levinsky | b2bb9bc | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 214 | return "No MMC card found"; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 215 | |
Sjoerd Simons | 5e4546d | 2018-03-22 22:53:50 +0100 | [diff] [blame] | 216 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 1d9907c | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 217 | struct udevice *dev; |
| 218 | |
| 219 | if (blk_get_from_parent(mmc->dev, &dev)) |
Yaniv Levinsky | b2bb9bc | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 220 | return "No block device"; |
Simon Glass | 1d9907c | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 221 | #else |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 222 | if (mmc_init(mmc)) |
Yaniv Levinsky | b2bb9bc | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 223 | return "MMC init failed"; |
Simon Glass | 86d78c7 | 2017-04-23 20:02:04 -0600 | [diff] [blame] | 224 | #endif |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 225 | if (!mmc_set_env_part_init(mmc)) |
Yaniv Levinsky | b2bb9bc | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 226 | return "MMC partition switch failed"; |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 227 | |
| 228 | return NULL; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 229 | } |
| 230 | |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 231 | static void fini_mmc_for_env(struct mmc *mmc) |
| 232 | { |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 233 | mmc_set_env_part_restore(mmc); |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 236 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD) |
Igor Grinberg | ecbfb62 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 237 | static inline int write_env(struct mmc *mmc, unsigned long size, |
| 238 | unsigned long offset, const void *buffer) |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 239 | { |
| 240 | uint blk_start, blk_cnt, n; |
Simon Glass | da89892 | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 241 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 242 | |
Igor Grinberg | ecbfb62 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 243 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 244 | blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 245 | |
Simon Glass | da89892 | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 246 | n = blk_dwrite(desc, blk_start, blk_cnt, (u_char *)buffer); |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 247 | |
| 248 | return (n == blk_cnt) ? 0 : -1; |
| 249 | } |
| 250 | |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 251 | static int env_mmc_save(void) |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 252 | { |
Tom Rini | a840b8e | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 253 | ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); |
Clemens Gruber | f7b6144 | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 254 | int dev = mmc_get_env_dev(); |
| 255 | struct mmc *mmc = find_mmc_device(dev); |
Igor Grinberg | ecbfb62 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 256 | u32 offset; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 257 | int ret, copy = 0; |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 258 | const char *errmsg; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 259 | |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 260 | errmsg = init_mmc_for_env(mmc); |
| 261 | if (errmsg) { |
| 262 | printf("%s\n", errmsg); |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 263 | return 1; |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 264 | } |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 265 | |
Marek Vasut | d73c129 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 266 | ret = env_export(env_new); |
| 267 | if (ret) |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 268 | goto fini; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 269 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 270 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) { |
| 271 | if (gd->env_valid == ENV_VALID) |
| 272 | copy = 1; |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 273 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 274 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 275 | ret = mmc_set_env_part(mmc, copy + 1); |
| 276 | if (ret) |
| 277 | goto fini; |
| 278 | } |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 279 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 280 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 281 | ret = 1; |
| 282 | goto fini; |
| 283 | } |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Clemens Gruber | f7b6144 | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 286 | printf("Writing to %sMMC(%d)... ", copy ? "redundant " : "", dev); |
Stephen Warren | 42a3c44 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 287 | if (write_env(mmc, CONFIG_ENV_SIZE, offset, (u_char *)env_new)) { |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 288 | puts("failed\n"); |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 289 | ret = 1; |
| 290 | goto fini; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 291 | } |
| 292 | |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 293 | ret = 0; |
| 294 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 295 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) |
| 296 | gd->env_valid = gd->env_valid == ENV_REDUND ? ENV_VALID : ENV_REDUND; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 297 | |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 298 | fini: |
| 299 | fini_mmc_for_env(mmc); |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 300 | |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 301 | return ret; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 302 | } |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 303 | |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 304 | static inline int erase_env(struct mmc *mmc, unsigned long size, |
| 305 | unsigned long offset) |
| 306 | { |
| 307 | uint blk_start, blk_cnt, n; |
| 308 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Patrick Delaunay | ab5ea4d | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 309 | u32 erase_size; |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 310 | |
Patrick Delaunay | ab5ea4d | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 311 | erase_size = mmc->erase_grp_size * desc->blksz; |
| 312 | blk_start = ALIGN_DOWN(offset, erase_size) / desc->blksz; |
| 313 | blk_cnt = ALIGN(size, erase_size) / desc->blksz; |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 314 | |
| 315 | n = blk_derase(desc, blk_start, blk_cnt); |
Patrick Delaunay | ab5ea4d | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 316 | printf("%d blocks erased at 0x%x: %s\n", n, blk_start, |
| 317 | (n == blk_cnt) ? "OK" : "ERROR"); |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 318 | |
| 319 | return (n == blk_cnt) ? 0 : 1; |
| 320 | } |
| 321 | |
| 322 | static int env_mmc_erase(void) |
| 323 | { |
| 324 | int dev = mmc_get_env_dev(); |
| 325 | struct mmc *mmc = find_mmc_device(dev); |
| 326 | int ret, copy = 0; |
| 327 | u32 offset; |
| 328 | const char *errmsg; |
| 329 | |
| 330 | errmsg = init_mmc_for_env(mmc); |
| 331 | if (errmsg) { |
| 332 | printf("%s\n", errmsg); |
| 333 | return 1; |
| 334 | } |
| 335 | |
Marek Vasut | d07a6e3 | 2021-10-06 18:29:53 +0200 | [diff] [blame] | 336 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 337 | ret = CMD_RET_FAILURE; |
| 338 | goto fini; |
| 339 | } |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 340 | |
Patrick Delaunay | ab5ea4d | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 341 | printf("\n"); |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 342 | ret = erase_env(mmc, CONFIG_ENV_SIZE, offset); |
| 343 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 344 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) { |
| 345 | copy = 1; |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 346 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 347 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 348 | ret = mmc_set_env_part(mmc, copy + 1); |
| 349 | if (ret) |
| 350 | goto fini; |
| 351 | } |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 352 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 353 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 354 | ret = CMD_RET_FAILURE; |
| 355 | goto fini; |
| 356 | } |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 357 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 358 | ret |= erase_env(mmc, CONFIG_ENV_SIZE, offset); |
| 359 | } |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 360 | |
Marek Vasut | d07a6e3 | 2021-10-06 18:29:53 +0200 | [diff] [blame] | 361 | fini: |
| 362 | fini_mmc_for_env(mmc); |
Frank Wunderlich | 81f087e | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 363 | return ret; |
| 364 | } |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 365 | #endif /* CONFIG_CMD_SAVEENV && !CONFIG_SPL_BUILD */ |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 366 | |
Igor Grinberg | ecbfb62 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 367 | static inline int read_env(struct mmc *mmc, unsigned long size, |
| 368 | unsigned long offset, const void *buffer) |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 369 | { |
| 370 | uint blk_start, blk_cnt, n; |
Simon Glass | da89892 | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 371 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 372 | |
Igor Grinberg | ecbfb62 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 373 | blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len; |
| 374 | blk_cnt = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 375 | |
Simon Glass | da89892 | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 376 | n = blk_dread(desc, blk_start, blk_cnt, (uchar *)buffer); |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 377 | |
| 378 | return (n == blk_cnt) ? 0 : -1; |
| 379 | } |
| 380 | |
Patrick Delaunay | d948e71 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 381 | #if defined(ENV_IS_EMBEDDED) |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 382 | static int env_mmc_load(void) |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 383 | { |
Patrick Delaunay | d948e71 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 384 | return 0; |
| 385 | } |
| 386 | #elif defined(CONFIG_SYS_REDUNDAND_ENVIRONMENT) |
| 387 | static int env_mmc_load(void) |
| 388 | { |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 389 | struct mmc *mmc; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 390 | u32 offset1, offset2; |
| 391 | int read1_fail = 0, read2_fail = 0; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 392 | int ret; |
Clemens Gruber | f7b6144 | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 393 | int dev = mmc_get_env_dev(); |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 394 | const char *errmsg = NULL; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 395 | |
Markus Niebel | 6ef41fd | 2013-10-04 15:48:03 +0200 | [diff] [blame] | 396 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env1, 1); |
| 397 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env2, 1); |
| 398 | |
Faiz Abbas | aae518f | 2018-02-12 19:24:31 +0530 | [diff] [blame] | 399 | mmc_initialize(NULL); |
| 400 | |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 401 | mmc = find_mmc_device(dev); |
| 402 | |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 403 | errmsg = init_mmc_for_env(mmc); |
| 404 | if (errmsg) { |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 405 | ret = -EIO; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 406 | goto err; |
| 407 | } |
| 408 | |
| 409 | if (mmc_get_env_addr(mmc, 0, &offset1) || |
| 410 | mmc_get_env_addr(mmc, 1, &offset2)) { |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 411 | ret = -EIO; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 412 | goto fini; |
| 413 | } |
| 414 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 415 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 416 | ret = mmc_set_env_part(mmc, 1); |
| 417 | if (ret) |
| 418 | goto fini; |
| 419 | } |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 420 | |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 421 | read1_fail = read_env(mmc, CONFIG_ENV_SIZE, offset1, tmp_env1); |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 422 | |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 423 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 424 | ret = mmc_set_env_part(mmc, 2); |
| 425 | if (ret) |
| 426 | goto fini; |
| 427 | } |
Marek Vasut | 509f36e | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 428 | |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 429 | read2_fail = read_env(mmc, CONFIG_ENV_SIZE, offset2, tmp_env2); |
| 430 | |
Simon Goldschmidt | e07096e | 2018-01-31 14:47:11 +0100 | [diff] [blame] | 431 | ret = env_import_redund((char *)tmp_env1, read1_fail, (char *)tmp_env2, |
Marek Vasut | dfe4b7e | 2020-07-07 20:51:35 +0200 | [diff] [blame] | 432 | read2_fail, H_EXTERNAL); |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 433 | |
| 434 | fini: |
| 435 | fini_mmc_for_env(mmc); |
| 436 | err: |
| 437 | if (ret) |
Simon Glass | 9738586 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 438 | env_set_default(errmsg, 0); |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 439 | |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 440 | return ret; |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 441 | } |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 442 | #else /* ! CONFIG_SYS_REDUNDAND_ENVIRONMENT */ |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 443 | static int env_mmc_load(void) |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 444 | { |
Tom Rini | a840b8e | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 445 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 446 | struct mmc *mmc; |
Mingkai Hu | a55fce3 | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 447 | u32 offset; |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 448 | int ret; |
Clemens Gruber | f7b6144 | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 449 | int dev = mmc_get_env_dev(); |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 450 | const char *errmsg; |
Pankit Garg | c2342f6 | 2019-11-19 09:49:31 +0000 | [diff] [blame] | 451 | env_t *ep = NULL; |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 452 | |
Tom Rini | c929f82 | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 453 | mmc = find_mmc_device(dev); |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 454 | |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 455 | errmsg = init_mmc_for_env(mmc); |
| 456 | if (errmsg) { |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 457 | ret = -EIO; |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 458 | goto err; |
| 459 | } |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 460 | |
Michael Heimpold | a1d25a3 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 461 | if (mmc_get_env_addr(mmc, 0, &offset)) { |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 462 | ret = -EIO; |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 463 | goto fini; |
| 464 | } |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 465 | |
Tom Rini | a840b8e | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 466 | if (read_env(mmc, CONFIG_ENV_SIZE, offset, buf)) { |
Tim Harvey | eda75c3 | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 467 | errmsg = "!read failed"; |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 468 | ret = -EIO; |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 469 | goto fini; |
| 470 | } |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 471 | |
Marek Vasut | dfe4b7e | 2020-07-07 20:51:35 +0200 | [diff] [blame] | 472 | ret = env_import(buf, 1, H_EXTERNAL); |
Pankit Garg | c2342f6 | 2019-11-19 09:49:31 +0000 | [diff] [blame] | 473 | if (!ret) { |
| 474 | ep = (env_t *)buf; |
| 475 | gd->env_addr = (ulong)&ep->data; |
| 476 | } |
Stephen Warren | 27ee0f3 | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 477 | |
| 478 | fini: |
| 479 | fini_mmc_for_env(mmc); |
| 480 | err: |
| 481 | if (ret) |
Simon Glass | 9738586 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 482 | env_set_default(errmsg, 0); |
Patrick Delaunay | d948e71 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 483 | |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 484 | return ret; |
Terry Lv | b4eceac | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 485 | } |
Patrick Delaunay | 036a358 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 486 | #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */ |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 487 | |
| 488 | U_BOOT_ENV_LOCATION(mmc) = { |
| 489 | .location = ENVL_MMC, |
Simon Glass | d8273ed | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 490 | ENV_NAME("MMC") |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 491 | .load = env_mmc_load, |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 492 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 493 | .save = env_save_ptr(env_mmc_save), |
Patrick Delaunay | 50f6f11 | 2021-02-09 11:48:50 +0100 | [diff] [blame] | 494 | .erase = ENV_ERASE_PTR(env_mmc_erase) |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 495 | #endif |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 496 | }; |