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