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