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 | |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 8 | #include <asm/global_data.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 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> |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 21 | #include <dm/ofnode.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 22 | |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 23 | #define ENV_MMC_INVALID_OFFSET ((s64)-1) |
| 24 | |
Patrick Delaunay | d2103e2 | 2022-11-10 11:49:01 +0100 | [diff] [blame] | 25 | #if defined(CONFIG_ENV_MMC_USE_DT) |
| 26 | /* ENV offset is invalid when not defined in Device Tree */ |
| 27 | #define ENV_MMC_OFFSET ENV_MMC_INVALID_OFFSET |
| 28 | #define ENV_MMC_OFFSET_REDUND ENV_MMC_INVALID_OFFSET |
| 29 | |
| 30 | #else |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 31 | /* Default ENV offset when not defined in Device Tree */ |
| 32 | #define ENV_MMC_OFFSET CONFIG_ENV_OFFSET |
| 33 | |
| 34 | #if defined(CONFIG_ENV_OFFSET_REDUND) |
| 35 | #define ENV_MMC_OFFSET_REDUND CONFIG_ENV_OFFSET_REDUND |
| 36 | #else |
| 37 | #define ENV_MMC_OFFSET_REDUND ENV_MMC_INVALID_OFFSET |
| 38 | #endif |
Patrick Delaunay | d2103e2 | 2022-11-10 11:49:01 +0100 | [diff] [blame] | 39 | #endif |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 40 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
| 42 | |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 43 | /* |
| 44 | * In case the environment is redundant, stored in eMMC hardware boot |
| 45 | * partition and the environment and redundant environment offsets are |
| 46 | * identical, store the environment and redundant environment in both |
| 47 | * eMMC boot partitions, one copy in each. |
| 48 | * */ |
| 49 | #if (defined(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && \ |
| 50 | (CONFIG_SYS_MMC_ENV_PART == 1) && \ |
| 51 | (CONFIG_ENV_OFFSET == CONFIG_ENV_OFFSET_REDUND)) |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 52 | #define ENV_MMC_HWPART_REDUND 1 |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 53 | #endif |
| 54 | |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 55 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Rasmus Villemoes | d7c59bf | 2024-09-12 15:41:39 +0200 | [diff] [blame] | 56 | |
| 57 | static int mmc_env_partition_by_name(struct blk_desc *desc, const char *str, |
| 58 | struct disk_partition *info) |
| 59 | { |
| 60 | int i, ret; |
| 61 | |
| 62 | for (i = 1;; i++) { |
| 63 | ret = part_get_info(desc, i, info); |
| 64 | if (ret < 0) |
| 65 | return ret; |
| 66 | |
| 67 | if (!strncmp((const char *)info->name, str, sizeof(info->name))) |
| 68 | return 0; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | static int mmc_env_partition_by_guid(struct blk_desc *desc, struct disk_partition *info) |
| 73 | { |
| 74 | const efi_guid_t env_guid = PARTITION_U_BOOT_ENVIRONMENT; |
| 75 | efi_guid_t type_guid; |
| 76 | int i, ret; |
| 77 | |
| 78 | for (i = 1;; i++) { |
| 79 | ret = part_get_info(desc, i, info); |
| 80 | if (ret < 0) |
| 81 | return ret; |
| 82 | |
| 83 | uuid_str_to_bin(disk_partition_type_guid(info), type_guid.b, UUID_STR_FORMAT_GUID); |
| 84 | if (!memcmp(&env_guid, &type_guid, sizeof(efi_guid_t))) |
| 85 | return 0; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | |
Patrick Delaunay | 5d4f7b4 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 90 | static inline int mmc_offset_try_partition(const char *str, int copy, s64 *val) |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 91 | { |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 92 | struct disk_partition info; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 93 | struct blk_desc *desc; |
Rasmus Villemoes | 9402e3b | 2024-09-12 15:41:40 +0200 | [diff] [blame^] | 94 | lbaint_t len; |
| 95 | int ret; |
Patrick Delaunay | 2b2f727 | 2020-06-15 10:38:55 +0200 | [diff] [blame] | 96 | char dev_str[4]; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 97 | |
Patrick Delaunay | 2b2f727 | 2020-06-15 10:38:55 +0200 | [diff] [blame] | 98 | snprintf(dev_str, sizeof(dev_str), "%d", mmc_get_env_dev()); |
| 99 | ret = blk_get_device_by_str("mmc", dev_str, &desc); |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 100 | if (ret < 0) |
| 101 | return (ret); |
| 102 | |
Rasmus Villemoes | d7c59bf | 2024-09-12 15:41:39 +0200 | [diff] [blame] | 103 | if (str) { |
| 104 | ret = mmc_env_partition_by_name(desc, str, &info); |
| 105 | } else if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID) && !str) { |
| 106 | ret = mmc_env_partition_by_guid(desc, &info); |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 107 | } |
Rasmus Villemoes | d7c59bf | 2024-09-12 15:41:39 +0200 | [diff] [blame] | 108 | if (ret < 0) |
| 109 | return ret; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 110 | |
| 111 | /* round up to info.blksz */ |
Patrick Delaunay | 76b640c | 2020-06-15 10:38:56 +0200 | [diff] [blame] | 112 | len = DIV_ROUND_UP(CONFIG_ENV_SIZE, info.blksz); |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 113 | |
Rasmus Villemoes | 9402e3b | 2024-09-12 15:41:40 +0200 | [diff] [blame^] | 114 | if ((1 + copy) * len > info.size) { |
| 115 | printf("Partition '%s' [0x"LBAF"; 0x"LBAF"] too small for %senvironment, required size 0x"LBAF" blocks\n", |
| 116 | (const char*)info.name, info.start, info.size, |
| 117 | copy ? "two copies of " : "", (1 + copy)*len); |
| 118 | return -ENOSPC; |
| 119 | } |
| 120 | |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 121 | /* use the top of the partion for the environment */ |
Patrick Delaunay | 5d4f7b4 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 122 | *val = (info.start + info.size - (1 + copy) * len) * info.blksz; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 127 | static inline s64 mmc_offset(struct mmc *mmc, int copy) |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 128 | { |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 129 | const struct { |
| 130 | const char *offset_redund; |
| 131 | const char *partition; |
| 132 | const char *offset; |
| 133 | } dt_prop = { |
| 134 | .offset_redund = "u-boot,mmc-env-offset-redundant", |
| 135 | .partition = "u-boot,mmc-env-partition", |
| 136 | .offset = "u-boot,mmc-env-offset", |
| 137 | }; |
Philipp Tomsich | fd37466 | 2017-11-21 23:29:40 +0100 | [diff] [blame] | 138 | s64 val = 0, defvalue; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 139 | const char *propname; |
| 140 | const char *str; |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 141 | int hwpart = 0; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 142 | int err; |
| 143 | |
Mattijs Korpershoek | b2345db | 2024-07-19 17:38:54 +0200 | [diff] [blame] | 144 | #if defined(CONFIG_SYS_MMC_ENV_PART) |
| 145 | hwpart = mmc_get_env_part(mmc); |
| 146 | #endif |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 147 | |
Emmanuel Di Fede | 9e70676 | 2023-06-14 12:05:28 +0200 | [diff] [blame] | 148 | #if defined(CONFIG_ENV_MMC_PARTITION) |
| 149 | str = CONFIG_ENV_MMC_PARTITION; |
| 150 | #else |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 151 | /* look for the partition in mmc CONFIG_SYS_MMC_ENV_DEV */ |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 152 | str = ofnode_conf_read_str(dt_prop.partition); |
Emmanuel Di Fede | 9e70676 | 2023-06-14 12:05:28 +0200 | [diff] [blame] | 153 | #endif |
| 154 | |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 155 | if (str) { |
| 156 | /* try to place the environment at end of the partition */ |
Patrick Delaunay | 5d4f7b4 | 2020-06-15 10:38:57 +0200 | [diff] [blame] | 157 | err = mmc_offset_try_partition(str, copy, &val); |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 158 | if (!err) |
| 159 | return val; |
Patrick Delaunay | 52e9aa3 | 2022-11-10 11:49:04 +0100 | [diff] [blame] | 160 | debug("env partition '%s' not found (%d)", str, err); |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 161 | } |
| 162 | |
Patrick Delaunay | 80105d8 | 2022-11-10 11:49:03 +0100 | [diff] [blame] | 163 | /* try the GPT partition with "U-Boot ENV" TYPE GUID */ |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 164 | if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID) && hwpart == 0) { |
Patrick Delaunay | 80105d8 | 2022-11-10 11:49:03 +0100 | [diff] [blame] | 165 | err = mmc_offset_try_partition(NULL, copy, &val); |
| 166 | if (!err) |
| 167 | return val; |
| 168 | } |
| 169 | |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 170 | defvalue = ENV_MMC_OFFSET; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 171 | propname = dt_prop.offset; |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 172 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 173 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && copy) { |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 174 | defvalue = ENV_MMC_OFFSET_REDUND; |
Jorge Ramirez-Ortiz | c9e87ba | 2017-11-06 14:16:37 +0100 | [diff] [blame] | 175 | propname = dt_prop.offset_redund; |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 176 | } |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 177 | |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 178 | return ofnode_conf_read_int(propname, defvalue); |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 179 | } |
| 180 | #else |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 181 | static inline s64 mmc_offset(struct mmc *mmc, int copy) |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 182 | { |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 183 | s64 offset = ENV_MMC_OFFSET; |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 184 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 185 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT) && copy) |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 186 | offset = ENV_MMC_OFFSET_REDUND; |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 187 | |
Philipp Tomsich | f8b8a55 | 2017-05-16 00:16:31 +0200 | [diff] [blame] | 188 | return offset; |
| 189 | } |
| 190 | #endif |
| 191 | |
| 192 | __weak int mmc_get_env_addr(struct mmc *mmc, int copy, u32 *env_addr) |
| 193 | { |
Marek Vasut | 5b4acb0 | 2023-02-09 13:30:10 +0100 | [diff] [blame] | 194 | s64 offset = mmc_offset(mmc, copy); |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 195 | |
Patrick Delaunay | f7e07a7 | 2022-11-10 11:48:58 +0100 | [diff] [blame] | 196 | if (offset == ENV_MMC_INVALID_OFFSET) { |
| 197 | printf("Invalid ENV offset in MMC, copy=%d\n", copy); |
| 198 | return -ENOENT; |
| 199 | } |
| 200 | |
Stephen Warren | 5c088ee | 2013-06-11 15:14:02 -0600 | [diff] [blame] | 201 | if (offset < 0) |
| 202 | offset += mmc->capacity; |
| 203 | |
| 204 | *env_addr = offset; |
| 205 | |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 206 | return 0; |
| 207 | } |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 208 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 209 | #ifdef CONFIG_SYS_MMC_ENV_PART |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 210 | __weak uint mmc_get_env_part(struct mmc *mmc) |
| 211 | { |
| 212 | return CONFIG_SYS_MMC_ENV_PART; |
| 213 | } |
| 214 | |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 215 | static unsigned char env_mmc_orig_hwpart; |
| 216 | |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 217 | static int mmc_set_env_part(struct mmc *mmc, uint part) |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 218 | { |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 219 | int dev = mmc_get_env_dev(); |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 220 | int ret = 0; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 221 | |
Simon Glass | e33a5c6 | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 222 | ret = blk_select_hwpart_devnum(UCLASS_MMC, dev, part); |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 223 | if (ret) |
| 224 | puts("MMC partition switch failed\n"); |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 225 | |
| 226 | return ret; |
| 227 | } |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 228 | |
| 229 | static bool mmc_set_env_part_init(struct mmc *mmc) |
| 230 | { |
| 231 | env_mmc_orig_hwpart = mmc_get_blk_desc(mmc)->hwpart; |
| 232 | if (mmc_set_env_part(mmc, mmc_get_env_part(mmc))) |
| 233 | return false; |
| 234 | |
| 235 | return true; |
| 236 | } |
| 237 | |
| 238 | static int mmc_set_env_part_restore(struct mmc *mmc) |
| 239 | { |
| 240 | return mmc_set_env_part(mmc, env_mmc_orig_hwpart); |
| 241 | } |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 242 | #else |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 243 | static inline int mmc_set_env_part(struct mmc *mmc, uint part) {return 0; }; |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 244 | static bool mmc_set_env_part_init(struct mmc *mmc) {return true; } |
| 245 | static inline int mmc_set_env_part_restore(struct mmc *mmc) {return 0; }; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 246 | #endif |
| 247 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 248 | static const char *init_mmc_for_env(struct mmc *mmc) |
Dmitry Lifshitz | 6e7b7df | 2014-07-30 13:19:06 +0300 | [diff] [blame] | 249 | { |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 250 | if (!mmc) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 251 | return "No MMC card found"; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 252 | |
Sjoerd Simons | d48b8d1 | 2018-03-22 22:53:50 +0100 | [diff] [blame] | 253 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 01b73fe | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 254 | struct udevice *dev; |
| 255 | |
| 256 | if (blk_get_from_parent(mmc->dev, &dev)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 257 | return "No block device"; |
Simon Glass | 01b73fe | 2017-05-27 11:37:18 -0600 | [diff] [blame] | 258 | #else |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 259 | if (mmc_init(mmc)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 260 | return "MMC init failed"; |
Simon Glass | e7017a3 | 2017-04-23 20:02:04 -0600 | [diff] [blame] | 261 | #endif |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 262 | if (!mmc_set_env_part_init(mmc)) |
Yaniv Levinsky | c5d548a | 2018-06-24 19:16:57 +0300 | [diff] [blame] | 263 | return "MMC partition switch failed"; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 264 | |
| 265 | return NULL; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 266 | } |
| 267 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 268 | static void fini_mmc_for_env(struct mmc *mmc) |
| 269 | { |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 270 | mmc_set_env_part_restore(mmc); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 273 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD) |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 274 | static inline int write_env(struct mmc *mmc, unsigned long size, |
| 275 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 276 | { |
| 277 | uint blk_start, blk_cnt, n; |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 278 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 279 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 280 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 281 | blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 282 | |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 283 | n = blk_dwrite(desc, blk_start, blk_cnt, (u_char *)buffer); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 284 | |
| 285 | return (n == blk_cnt) ? 0 : -1; |
| 286 | } |
| 287 | |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 288 | static int env_mmc_save(void) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 289 | { |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 290 | ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 291 | int dev = mmc_get_env_dev(); |
| 292 | struct mmc *mmc = find_mmc_device(dev); |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 293 | u32 offset; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 294 | int ret, copy = 0; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 295 | const char *errmsg; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 296 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 297 | errmsg = init_mmc_for_env(mmc); |
| 298 | if (errmsg) { |
| 299 | printf("%s\n", errmsg); |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 300 | return 1; |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 301 | } |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 302 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 303 | ret = env_export(env_new); |
| 304 | if (ret) |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 305 | goto fini; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 306 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 307 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) { |
| 308 | if (gd->env_valid == ENV_VALID) |
| 309 | copy = 1; |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 310 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 311 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 312 | ret = mmc_set_env_part(mmc, copy + 1); |
| 313 | if (ret) |
| 314 | goto fini; |
| 315 | } |
Ye Li | ccd0542 | 2023-01-31 14:41:58 +0800 | [diff] [blame] | 316 | } |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 317 | |
Ye Li | ccd0542 | 2023-01-31 14:41:58 +0800 | [diff] [blame] | 318 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 319 | ret = 1; |
| 320 | goto fini; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 323 | printf("Writing to %sMMC(%d)... ", copy ? "redundant " : "", dev); |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 324 | if (write_env(mmc, CONFIG_ENV_SIZE, offset, (u_char *)env_new)) { |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 325 | puts("failed\n"); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 326 | ret = 1; |
| 327 | goto fini; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 328 | } |
| 329 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 330 | ret = 0; |
| 331 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 332 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) |
| 333 | gd->env_valid = gd->env_valid == ENV_REDUND ? ENV_VALID : ENV_REDUND; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 334 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 335 | fini: |
| 336 | fini_mmc_for_env(mmc); |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 337 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 338 | return ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 339 | } |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 340 | |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 341 | static inline int erase_env(struct mmc *mmc, unsigned long size, |
| 342 | unsigned long offset) |
| 343 | { |
| 344 | uint blk_start, blk_cnt, n; |
| 345 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Patrick Delaunay | d722670 | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 346 | u32 erase_size; |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 347 | |
Patrick Delaunay | d722670 | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 348 | erase_size = mmc->erase_grp_size * desc->blksz; |
| 349 | blk_start = ALIGN_DOWN(offset, erase_size) / desc->blksz; |
| 350 | blk_cnt = ALIGN(size, erase_size) / desc->blksz; |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 351 | |
| 352 | n = blk_derase(desc, blk_start, blk_cnt); |
Patrick Delaunay | d722670 | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 353 | printf("%d blocks erased at 0x%x: %s\n", n, blk_start, |
| 354 | (n == blk_cnt) ? "OK" : "ERROR"); |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 355 | |
| 356 | return (n == blk_cnt) ? 0 : 1; |
| 357 | } |
| 358 | |
| 359 | static int env_mmc_erase(void) |
| 360 | { |
| 361 | int dev = mmc_get_env_dev(); |
| 362 | struct mmc *mmc = find_mmc_device(dev); |
| 363 | int ret, copy = 0; |
| 364 | u32 offset; |
| 365 | const char *errmsg; |
| 366 | |
| 367 | errmsg = init_mmc_for_env(mmc); |
| 368 | if (errmsg) { |
| 369 | printf("%s\n", errmsg); |
| 370 | return 1; |
| 371 | } |
| 372 | |
Marek Vasut | f47f87f | 2021-10-06 18:29:53 +0200 | [diff] [blame] | 373 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 374 | ret = CMD_RET_FAILURE; |
| 375 | goto fini; |
| 376 | } |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 377 | |
Patrick Delaunay | d722670 | 2022-02-15 16:23:23 +0100 | [diff] [blame] | 378 | printf("\n"); |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 379 | ret = erase_env(mmc, CONFIG_ENV_SIZE, offset); |
| 380 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 381 | if (IS_ENABLED(CONFIG_SYS_REDUNDAND_ENVIRONMENT)) { |
| 382 | copy = 1; |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 383 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 384 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 385 | ret = mmc_set_env_part(mmc, copy + 1); |
| 386 | if (ret) |
| 387 | goto fini; |
| 388 | } |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 389 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 390 | if (mmc_get_env_addr(mmc, copy, &offset)) { |
| 391 | ret = CMD_RET_FAILURE; |
| 392 | goto fini; |
| 393 | } |
| 394 | |
| 395 | ret |= erase_env(mmc, CONFIG_ENV_SIZE, offset); |
Marek Vasut | f47f87f | 2021-10-06 18:29:53 +0200 | [diff] [blame] | 396 | } |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 397 | |
Marek Vasut | f47f87f | 2021-10-06 18:29:53 +0200 | [diff] [blame] | 398 | fini: |
| 399 | fini_mmc_for_env(mmc); |
Frank Wunderlich | 3485392 | 2019-06-29 11:36:20 +0200 | [diff] [blame] | 400 | return ret; |
| 401 | } |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 402 | #endif /* CONFIG_CMD_SAVEENV && !CONFIG_SPL_BUILD */ |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 403 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 404 | static inline int read_env(struct mmc *mmc, unsigned long size, |
| 405 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 406 | { |
| 407 | uint blk_start, blk_cnt, n; |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 408 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 409 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 410 | blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len; |
| 411 | blk_cnt = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 412 | |
Simon Glass | 5461acb | 2016-05-14 14:03:03 -0600 | [diff] [blame] | 413 | n = blk_dread(desc, blk_start, blk_cnt, (uchar *)buffer); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 414 | |
| 415 | return (n == blk_cnt) ? 0 : -1; |
| 416 | } |
| 417 | |
Patrick Delaunay | 8566050 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 418 | #if defined(ENV_IS_EMBEDDED) |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 419 | static int env_mmc_load(void) |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 420 | { |
Patrick Delaunay | 8566050 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 421 | return 0; |
| 422 | } |
| 423 | #elif defined(CONFIG_SYS_REDUNDAND_ENVIRONMENT) |
| 424 | static int env_mmc_load(void) |
| 425 | { |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 426 | struct mmc *mmc; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 427 | u32 offset1, offset2; |
| 428 | int read1_fail = 0, read2_fail = 0; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 429 | int ret; |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 430 | int dev = mmc_get_env_dev(); |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 431 | const char *errmsg = NULL; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 432 | |
Markus Niebel | 452a272 | 2013-10-04 15:48:03 +0200 | [diff] [blame] | 433 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env1, 1); |
| 434 | ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env2, 1); |
| 435 | |
Faiz Abbas | 26862b4 | 2018-02-12 19:24:31 +0530 | [diff] [blame] | 436 | mmc_initialize(NULL); |
| 437 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 438 | mmc = find_mmc_device(dev); |
| 439 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 440 | errmsg = init_mmc_for_env(mmc); |
| 441 | if (errmsg) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 442 | ret = -EIO; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 443 | goto err; |
| 444 | } |
| 445 | |
| 446 | if (mmc_get_env_addr(mmc, 0, &offset1) || |
| 447 | mmc_get_env_addr(mmc, 1, &offset2)) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 448 | ret = -EIO; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 449 | goto fini; |
| 450 | } |
| 451 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 452 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 453 | ret = mmc_set_env_part(mmc, 1); |
| 454 | if (ret) |
| 455 | goto fini; |
| 456 | } |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 457 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 458 | read1_fail = read_env(mmc, CONFIG_ENV_SIZE, offset1, tmp_env1); |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 459 | |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 460 | if (IS_ENABLED(ENV_MMC_HWPART_REDUND)) { |
| 461 | ret = mmc_set_env_part(mmc, 2); |
| 462 | if (ret) |
| 463 | goto fini; |
| 464 | } |
Marek Vasut | d11d1be | 2021-10-17 19:23:36 +0200 | [diff] [blame] | 465 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 466 | read2_fail = read_env(mmc, CONFIG_ENV_SIZE, offset2, tmp_env2); |
| 467 | |
Simon Goldschmidt | 31f044b | 2018-01-31 14:47:11 +0100 | [diff] [blame] | 468 | ret = env_import_redund((char *)tmp_env1, read1_fail, (char *)tmp_env2, |
Marek Vasut | 890feec | 2020-07-07 20:51:35 +0200 | [diff] [blame] | 469 | read2_fail, H_EXTERNAL); |
Quentin Schulz | 97b34f6 | 2024-04-15 14:43:57 +0200 | [diff] [blame] | 470 | printf("Reading from %sMMC(%d)... ", gd->env_valid == ENV_REDUND ? "redundant " : "", dev); |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 471 | |
| 472 | fini: |
| 473 | fini_mmc_for_env(mmc); |
| 474 | err: |
| 475 | if (ret) |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 476 | env_set_default(errmsg, 0); |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 477 | |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 478 | return ret; |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 479 | } |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 480 | #else /* ! CONFIG_SYS_REDUNDAND_ENVIRONMENT */ |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 481 | static int env_mmc_load(void) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 482 | { |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 483 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 484 | struct mmc *mmc; |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 485 | u32 offset; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 486 | int ret; |
Clemens Gruber | e92029c | 2016-01-20 15:43:37 +0100 | [diff] [blame] | 487 | int dev = mmc_get_env_dev(); |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 488 | const char *errmsg; |
Pankit Garg | 0536b44 | 2019-11-19 09:49:31 +0000 | [diff] [blame] | 489 | env_t *ep = NULL; |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 490 | |
Tom Rini | b9c8cca | 2014-03-28 12:03:34 -0400 | [diff] [blame] | 491 | mmc = find_mmc_device(dev); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 492 | |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 493 | errmsg = init_mmc_for_env(mmc); |
| 494 | if (errmsg) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 495 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 496 | goto err; |
| 497 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 498 | |
Michael Heimpold | d196bd8 | 2013-04-10 10:36:19 +0000 | [diff] [blame] | 499 | if (mmc_get_env_addr(mmc, 0, &offset)) { |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 500 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 501 | goto fini; |
| 502 | } |
| 503 | |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 504 | if (read_env(mmc, CONFIG_ENV_SIZE, offset, buf)) { |
Tim Harvey | c75648d | 2015-05-08 14:52:09 -0700 | [diff] [blame] | 505 | errmsg = "!read failed"; |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 506 | ret = -EIO; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 507 | goto fini; |
| 508 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 509 | |
Quentin Schulz | 97b34f6 | 2024-04-15 14:43:57 +0200 | [diff] [blame] | 510 | printf("Reading from MMC(%d)... ", dev); |
| 511 | |
Marek Vasut | 890feec | 2020-07-07 20:51:35 +0200 | [diff] [blame] | 512 | ret = env_import(buf, 1, H_EXTERNAL); |
Pankit Garg | 0536b44 | 2019-11-19 09:49:31 +0000 | [diff] [blame] | 513 | if (!ret) { |
| 514 | ep = (env_t *)buf; |
| 515 | gd->env_addr = (ulong)&ep->data; |
| 516 | } |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 517 | |
| 518 | fini: |
| 519 | fini_mmc_for_env(mmc); |
| 520 | err: |
| 521 | if (ret) |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 522 | env_set_default(errmsg, 0); |
Patrick Delaunay | 8566050 | 2022-11-10 11:49:00 +0100 | [diff] [blame] | 523 | |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 524 | return ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 525 | } |
Patrick Delaunay | 46c9016 | 2022-11-10 11:48:59 +0100 | [diff] [blame] | 526 | #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */ |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 527 | |
| 528 | U_BOOT_ENV_LOCATION(mmc) = { |
| 529 | .location = ENVL_MMC, |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 530 | ENV_NAME("MMC") |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 531 | .load = env_mmc_load, |
Simon Glass | f7fac5e | 2023-11-18 14:04:51 -0700 | [diff] [blame] | 532 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD) |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 533 | .save = env_save_ptr(env_mmc_save), |
Patrick Delaunay | 1af031a | 2021-02-09 11:48:50 +0100 | [diff] [blame] | 534 | .erase = ENV_ERASE_PTR(env_mmc_erase) |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 535 | #endif |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 536 | }; |