Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | /* |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 3 | * Internal environment header file. This includes direct access to environment |
| 4 | * information such as its size and offset, direct access to the default |
| 5 | * environment and embedded environment (if used). It also provides environment |
| 6 | * drivers with various declarations. |
| 7 | * |
| 8 | * It should not be included by board files, drivers and code other than that |
| 9 | * related to the environment implementation. |
| 10 | * |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 11 | * (C) Copyright 2002 |
| 12 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 15 | #ifndef _ENV_INTERNAL_H_ |
| 16 | #define _ENV_INTERNAL_H_ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 17 | |
Maxime Ripard | fb1c43c | 2017-02-27 18:22:03 +0100 | [diff] [blame] | 18 | #include <linux/kconfig.h> |
| 19 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 20 | /************************************************************************** |
| 21 | * |
| 22 | * The "environment" is stored as a list of '\0' terminated |
| 23 | * "name=value" strings. The end of the list is marked by a double |
| 24 | * '\0'. New entries are always added at the end. Deleting an entry |
| 25 | * shifts the remaining entries to the front. Replacing an entry is a |
| 26 | * combination of deleting the old value and adding the new one. |
| 27 | * |
Robert P. J. Day | fc0b594 | 2016-09-07 14:27:59 -0400 | [diff] [blame] | 28 | * The environment is preceded by a 32 bit CRC over the data part. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 29 | * |
Robert P. J. Day | fc0b594 | 2016-09-07 14:27:59 -0400 | [diff] [blame] | 30 | *************************************************************************/ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 31 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 32 | #if defined(CONFIG_ENV_IS_IN_FLASH) |
Tom Rini | a8992e7 | 2019-11-18 20:02:07 -0500 | [diff] [blame] | 33 | # if defined(CONFIG_ENV_ADDR_REDUND) && \ |
| 34 | ((CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \ |
| 35 | (CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SIZE) <= \ |
| 36 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) |
| 37 | # define ENV_IS_EMBEDDED |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 38 | # endif |
Igor Grinberg | 507651d | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 39 | # if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \ |
| 40 | (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= \ |
| 41 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) |
Igor Grinberg | 6f403ba | 2011-12-25 01:42:57 +0000 | [diff] [blame] | 42 | # define ENV_IS_EMBEDDED |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | # endif |
Mike Frysinger | 0a9e4e7 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 44 | # ifdef CONFIG_ENV_IS_EMBEDDED |
| 45 | # error "do not define CONFIG_ENV_IS_EMBEDDED in your board config" |
| 46 | # error "it is calculated automatically for you" |
| 47 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 48 | #endif /* CONFIG_ENV_IS_IN_FLASH */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 49 | |
Jean-Christophe PLAGNIOL-VILLARD | 51bfee1 | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 50 | #if defined(CONFIG_ENV_IS_IN_NAND) |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 51 | # if defined(CONFIG_ENV_OFFSET_OOB) |
| 52 | # ifdef CONFIG_ENV_OFFSET_REDUND |
| 53 | # error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB" |
| 54 | # error "is set" |
| 55 | # endif |
| 56 | extern unsigned long nand_env_oob_offset; |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 57 | # endif /* CONFIG_ENV_OFFSET_OOB */ |
Jean-Christophe PLAGNIOL-VILLARD | 51bfee1 | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 58 | #endif /* CONFIG_ENV_IS_IN_NAND */ |
Markus Klotzbuecher | e443c94 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 59 | |
Mike Frysinger | 0a9e4e7 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 60 | /* |
| 61 | * For the flash types where embedded env is supported, but it cannot be |
| 62 | * calculated automatically (i.e. NAND), take the board opt-in. |
| 63 | */ |
| 64 | #if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED) |
Igor Grinberg | 6f403ba | 2011-12-25 01:42:57 +0000 | [diff] [blame] | 65 | # define ENV_IS_EMBEDDED |
Mike Frysinger | 0a9e4e7 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 66 | #endif |
| 67 | |
| 68 | /* The build system likes to know if the env is embedded */ |
| 69 | #ifdef DO_DEPS_ONLY |
| 70 | # ifdef ENV_IS_EMBEDDED |
Wolfgang Denk | 33a6b9e | 2011-07-30 14:01:08 +0000 | [diff] [blame] | 71 | # ifndef CONFIG_ENV_IS_EMBEDDED |
| 72 | # define CONFIG_ENV_IS_EMBEDDED |
| 73 | # endif |
Mike Frysinger | 0a9e4e7 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 74 | # endif |
| 75 | #endif |
| 76 | |
Mike Frysinger | 3756609 | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 77 | #include "compiler.h" |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 78 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
Mike Frysinger | 89cdab7 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 80 | # define ENV_HEADER_SIZE (sizeof(uint32_t) + 1) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 81 | #else |
Mike Frysinger | 89cdab7 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 82 | # define ENV_HEADER_SIZE (sizeof(uint32_t)) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 83 | #endif |
| 84 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 85 | #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 86 | |
Simon Glass | f030b7b | 2019-08-01 09:47:11 -0600 | [diff] [blame] | 87 | /* |
| 88 | * If the environment is in RAM, allocate extra space for it in the malloc |
| 89 | * region. |
| 90 | */ |
| 91 | #if defined(CONFIG_ENV_IS_EMBEDDED) |
| 92 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
| 93 | #elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \ |
| 94 | (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \ |
| 95 | defined(CONFIG_ENV_IS_IN_NVRAM) |
| 96 | #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) |
| 97 | #else |
| 98 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
| 99 | #endif |
| 100 | |
Igor Grinberg | 507651d | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 101 | typedef struct environment_s { |
Mike Frysinger | 89cdab7 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 102 | uint32_t crc; /* CRC32 over data bytes */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
Simon Glass | d3716dd | 2019-08-01 09:47:08 -0600 | [diff] [blame] | 104 | unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 105 | #endif |
| 106 | unsigned char data[ENV_SIZE]; /* Environment data */ |
Tom Rini | c6831c7 | 2017-11-14 08:39:35 -0500 | [diff] [blame] | 107 | } env_t; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 108 | |
Igor Grinberg | 994bc67 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 109 | #ifdef ENV_IS_EMBEDDED |
Simon Glass | be54ec1 | 2019-08-01 09:47:03 -0600 | [diff] [blame] | 110 | extern env_t embedded_environment; |
Igor Grinberg | 994bc67 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 111 | #endif /* ENV_IS_EMBEDDED */ |
| 112 | |
Pali Rohár | 93f4048 | 2020-12-23 12:21:28 +0100 | [diff] [blame] | 113 | #ifdef DEFAULT_ENV_IS_RW |
Marek Behún | c5cbbe3 | 2021-10-22 15:47:24 +0200 | [diff] [blame] | 114 | extern char default_environment[]; |
Pali Rohár | 93f4048 | 2020-12-23 12:21:28 +0100 | [diff] [blame] | 115 | #else |
Marek Behún | c5cbbe3 | 2021-10-22 15:47:24 +0200 | [diff] [blame] | 116 | extern const char default_environment[]; |
Pali Rohár | 93f4048 | 2020-12-23 12:21:28 +0100 | [diff] [blame] | 117 | #endif |
Igor Grinberg | 27aafe9 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 118 | |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 119 | #ifndef DO_DEPS_ONLY |
| 120 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 121 | #include <env_attr.h> |
| 122 | #include <env_callback.h> |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 123 | #include <env_flags.h> |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 124 | #include <search.h> |
| 125 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 126 | enum env_location { |
York Sun | e1caa58 | 2018-02-07 14:17:11 -0800 | [diff] [blame] | 127 | ENVL_UNKNOWN, |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 128 | ENVL_EEPROM, |
| 129 | ENVL_EXT4, |
| 130 | ENVL_FAT, |
| 131 | ENVL_FLASH, |
| 132 | ENVL_MMC, |
| 133 | ENVL_NAND, |
| 134 | ENVL_NVRAM, |
| 135 | ENVL_ONENAND, |
| 136 | ENVL_REMOTE, |
| 137 | ENVL_SPI_FLASH, |
| 138 | ENVL_UBI, |
| 139 | ENVL_NOWHERE, |
| 140 | |
| 141 | ENVL_COUNT, |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 142 | }; |
| 143 | |
Maxime Ripard | 8a3a7e2 | 2018-01-23 21:16:52 +0100 | [diff] [blame] | 144 | /* value for the various operations we want to perform on the env */ |
| 145 | enum env_operation { |
| 146 | ENVOP_GET_CHAR, /* we want to call the get_char function */ |
| 147 | ENVOP_INIT, /* we want to call the init function */ |
| 148 | ENVOP_LOAD, /* we want to call the load function */ |
| 149 | ENVOP_SAVE, /* we want to call the save function */ |
Frank Wunderlich | cd121bd | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 150 | ENVOP_ERASE, /* we want to call the erase function */ |
Maxime Ripard | 8a3a7e2 | 2018-01-23 21:16:52 +0100 | [diff] [blame] | 151 | }; |
| 152 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 153 | struct env_driver { |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 154 | const char *name; |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 155 | enum env_location location; |
| 156 | |
| 157 | /** |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 158 | * load() - Load the environment from storage |
| 159 | * |
Patrick Delaunay | 466d985 | 2020-07-28 11:51:19 +0200 | [diff] [blame] | 160 | * This method is required for loading environment |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 161 | * |
| 162 | * @return 0 if OK, -ve on error |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 163 | */ |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 164 | int (*load)(void); |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 165 | |
| 166 | /** |
| 167 | * save() - Save the environment to storage |
| 168 | * |
| 169 | * This method is required for 'saveenv' to work. |
| 170 | * |
| 171 | * @return 0 if OK, -ve on error |
| 172 | */ |
| 173 | int (*save)(void); |
| 174 | |
| 175 | /** |
Frank Wunderlich | cd121bd | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 176 | * erase() - Erase the environment on storage |
| 177 | * |
| 178 | * This method is optional and required for 'eraseenv' to work. |
| 179 | * |
| 180 | * @return 0 if OK, -ve on error |
| 181 | */ |
| 182 | int (*erase)(void); |
| 183 | |
| 184 | /** |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 185 | * init() - Set up the initial pre-relocation environment |
| 186 | * |
| 187 | * This method is optional. |
| 188 | * |
Simon Glass | 7938822 | 2017-08-03 12:22:02 -0600 | [diff] [blame] | 189 | * @return 0 if OK, -ENOENT if no initial environment could be found, |
| 190 | * other -ve on error |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 191 | */ |
| 192 | int (*init)(void); |
| 193 | }; |
| 194 | |
| 195 | /* Declare a new environment location driver */ |
| 196 | #define U_BOOT_ENV_LOCATION(__name) \ |
| 197 | ll_entry_declare(struct env_driver, __name, env_driver) |
| 198 | |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 199 | /* Declare the name of a location */ |
| 200 | #ifdef CONFIG_CMD_SAVEENV |
| 201 | #define ENV_NAME(_name) .name = _name, |
| 202 | #else |
| 203 | #define ENV_NAME(_name) |
| 204 | #endif |
| 205 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 206 | #ifdef CONFIG_CMD_SAVEENV |
| 207 | #define env_save_ptr(x) x |
| 208 | #else |
| 209 | #define env_save_ptr(x) NULL |
| 210 | #endif |
| 211 | |
Rasmus Villemoes | 82b2f41 | 2020-02-19 09:47:40 +0000 | [diff] [blame] | 212 | #define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL) |
Patrick Delaunay | 1af031a | 2021-02-09 11:48:50 +0100 | [diff] [blame] | 213 | #define ENV_ERASE_PTR(x) (CONFIG_IS_ENABLED(CMD_ERASEENV) ? (x) : NULL) |
Rasmus Villemoes | 82b2f41 | 2020-02-19 09:47:40 +0000 | [diff] [blame] | 214 | |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 215 | extern struct hsearch_data env_htab; |
| 216 | |
Patrick Delaunay | 2f96b32 | 2020-06-19 14:03:35 +0200 | [diff] [blame] | 217 | /** |
Patrick Delaunay | 879369e | 2020-06-15 16:52:17 +0200 | [diff] [blame] | 218 | * env_ext4_get_intf() - Provide the interface for env in EXT4 |
| 219 | * |
| 220 | * It is a weak function allowing board to overidde the default interface for |
| 221 | * U-Boot env in EXT4: CONFIG_ENV_EXT4_INTERFACE |
| 222 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 223 | * Return: string of interface, empty if not supported |
Patrick Delaunay | 879369e | 2020-06-15 16:52:17 +0200 | [diff] [blame] | 224 | */ |
| 225 | const char *env_ext4_get_intf(void); |
| 226 | |
| 227 | /** |
| 228 | * env_ext4_get_dev_part() - Provide the device and partition for env in EXT4 |
| 229 | * |
| 230 | * It is a weak function allowing board to overidde the default device and |
| 231 | * partition used for U-Boot env in EXT4: CONFIG_ENV_EXT4_DEVICE_AND_PART |
| 232 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 233 | * Return: string of device and partition |
Patrick Delaunay | 879369e | 2020-06-15 16:52:17 +0200 | [diff] [blame] | 234 | */ |
| 235 | const char *env_ext4_get_dev_part(void); |
| 236 | |
| 237 | /** |
Marek Vasut | de70e88 | 2022-04-06 02:21:32 +0200 | [diff] [blame] | 238 | * arch_env_get_location()- Provide the best location for the U-Boot environment |
| 239 | * |
| 240 | * It is a weak function allowing board to overidde the environment location |
| 241 | * on architecture level. This has lower priority than env_get_location(), |
| 242 | * which can be defined on board level. |
| 243 | * |
| 244 | * @op: operations performed on the environment |
| 245 | * @prio: priority between the multiple environments, 0 being the |
| 246 | * highest priority |
| 247 | * Return: an enum env_location value on success, or -ve error code. |
| 248 | */ |
| 249 | enum env_location arch_env_get_location(enum env_operation op, int prio); |
| 250 | |
| 251 | /** |
Patrick Delaunay | 2f96b32 | 2020-06-19 14:03:35 +0200 | [diff] [blame] | 252 | * env_get_location()- Provide the best location for the U-Boot environment |
| 253 | * |
| 254 | * It is a weak function allowing board to overidde the environment location |
Marek Vasut | de70e88 | 2022-04-06 02:21:32 +0200 | [diff] [blame] | 255 | * on board level. This has higher priority than arch_env_get_location(), |
| 256 | * which can be defined on architecture level. |
Patrick Delaunay | 2f96b32 | 2020-06-19 14:03:35 +0200 | [diff] [blame] | 257 | * |
| 258 | * @op: operations performed on the environment |
| 259 | * @prio: priority between the multiple environments, 0 being the |
| 260 | * highest priority |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 261 | * Return: an enum env_location value on success, or -ve error code. |
Patrick Delaunay | 2f96b32 | 2020-06-19 14:03:35 +0200 | [diff] [blame] | 262 | */ |
| 263 | enum env_location env_get_location(enum env_operation op, int prio); |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 264 | |
| 265 | /** |
| 266 | * env_fat_get_intf() - Provide the interface for env in FAT |
| 267 | * |
| 268 | * It is a weak function allowing board to overidde the default interface for |
| 269 | * U-Boot env in FAT: CONFIG_ENV_FAT_INTERFACE |
| 270 | * |
| 271 | * Return: string of interface, empty if not supported |
| 272 | */ |
| 273 | const char *env_fat_get_intf(void); |
| 274 | |
| 275 | /** |
| 276 | * env_fat_get_dev_part() - Provide the device and partition for env in FAT |
| 277 | * |
| 278 | * It is a weak function allowing board to overidde the default device and |
| 279 | * partition used for U-Boot env in FAT: CONFIG_ENV_FAT_DEVICE_AND_PART |
| 280 | * |
| 281 | * Return: string of device and partition |
| 282 | */ |
| 283 | char *env_fat_get_dev_part(void); |
Igor Grinberg | 507651d | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 284 | #endif /* DO_DEPS_ONLY */ |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 285 | |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 286 | #endif /* _ENV_INTERNAL_H_ */ |