Tom Rini | 10e4779 | 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 | 9d1f619 | 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 | 9d1f619 | 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 | d780cdc | 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 | c5b1e5d | 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 | c5b1e5d | 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 | 53db4cd | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 32 | #if defined(CONFIG_ENV_IS_IN_FLASH) |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 33 | # ifndef CONFIG_ENV_ADDR |
| 34 | # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 35 | # endif |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 36 | # ifndef CONFIG_ENV_OFFSET |
| 37 | # define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 38 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 39 | # if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND) |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 40 | # define CONFIG_ENV_ADDR_REDUND \ |
| 41 | (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 42 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 43 | # if defined(CONFIG_ENV_SECT_SIZE) || defined(CONFIG_ENV_SIZE) |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 44 | # ifndef CONFIG_ENV_SECT_SIZE |
| 45 | # define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE |
wdenk | d730fbc | 2003-03-06 14:23:06 +0000 | [diff] [blame] | 46 | # endif |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 47 | # ifndef CONFIG_ENV_SIZE |
| 48 | # define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE |
wdenk | d730fbc | 2003-03-06 14:23:06 +0000 | [diff] [blame] | 49 | # endif |
| 50 | # else |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 51 | # error "Both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE undefined" |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | # endif |
Tom Rini | f4bdf1b | 2019-11-18 20:02:07 -0500 | [diff] [blame^] | 53 | # if defined(CONFIG_ENV_ADDR_REDUND) && \ |
| 54 | ((CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \ |
| 55 | (CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SIZE) <= \ |
| 56 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) |
| 57 | # define ENV_IS_EMBEDDED |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 58 | # endif |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 59 | # if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \ |
| 60 | (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= \ |
| 61 | (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) |
Igor Grinberg | d766c51 | 2011-12-25 01:42:57 +0000 | [diff] [blame] | 62 | # define ENV_IS_EMBEDDED |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 63 | # endif |
Mike Frysinger | 9e800f4 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 64 | # ifdef CONFIG_ENV_IS_EMBEDDED |
| 65 | # error "do not define CONFIG_ENV_IS_EMBEDDED in your board config" |
| 66 | # error "it is calculated automatically for you" |
| 67 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | 53db4cd | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 68 | #endif /* CONFIG_ENV_IS_IN_FLASH */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 69 | |
Jean-Christophe PLAGNIOL-VILLARD | dda84dd | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 70 | #if defined(CONFIG_ENV_IS_IN_NAND) |
Ben Gardiner | 5fc8b7f | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 71 | # if defined(CONFIG_ENV_OFFSET_OOB) |
| 72 | # ifdef CONFIG_ENV_OFFSET_REDUND |
| 73 | # error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB" |
| 74 | # error "is set" |
| 75 | # endif |
| 76 | extern unsigned long nand_env_oob_offset; |
| 77 | # define CONFIG_ENV_OFFSET nand_env_oob_offset |
| 78 | # else |
| 79 | # ifndef CONFIG_ENV_OFFSET |
| 80 | # error "Need to define CONFIG_ENV_OFFSET when using CONFIG_ENV_IS_IN_NAND" |
| 81 | # endif |
Ben Gardiner | 5fc8b7f | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 82 | # endif /* CONFIG_ENV_OFFSET_OOB */ |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 83 | # ifndef CONFIG_ENV_SIZE |
| 84 | # error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_NAND" |
Markus Klotzbuecher | 5d113e0 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 85 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | dda84dd | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 86 | #endif /* CONFIG_ENV_IS_IN_NAND */ |
Markus Klotzbuecher | 5d113e0 | 2006-03-20 18:02:44 +0100 | [diff] [blame] | 87 | |
Joe Hershberger | 0c5faa8 | 2013-04-08 10:32:51 +0000 | [diff] [blame] | 88 | #if defined(CONFIG_ENV_IS_IN_UBI) |
| 89 | # ifndef CONFIG_ENV_UBI_PART |
| 90 | # error "Need to define CONFIG_ENV_UBI_PART when using CONFIG_ENV_IS_IN_UBI" |
| 91 | # endif |
| 92 | # ifndef CONFIG_ENV_UBI_VOLUME |
| 93 | # error "Need to define CONFIG_ENV_UBI_VOLUME when using CONFIG_ENV_IS_IN_UBI" |
| 94 | # endif |
| 95 | # ifndef CONFIG_ENV_SIZE |
| 96 | # error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_UBI" |
| 97 | # endif |
| 98 | # ifndef CONFIG_CMD_UBI |
| 99 | # error "Need to define CONFIG_CMD_UBI when using CONFIG_ENV_IS_IN_UBI" |
| 100 | # endif |
| 101 | #endif /* CONFIG_ENV_IS_IN_UBI */ |
| 102 | |
Mike Frysinger | 9e800f4 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 103 | /* Embedded env is only supported for some flash types */ |
| 104 | #ifdef CONFIG_ENV_IS_EMBEDDED |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 105 | # if !defined(CONFIG_ENV_IS_IN_FLASH) && \ |
| 106 | !defined(CONFIG_ENV_IS_IN_NAND) && \ |
| 107 | !defined(CONFIG_ENV_IS_IN_ONENAND) && \ |
| 108 | !defined(CONFIG_ENV_IS_IN_SPI_FLASH) |
Mike Frysinger | 9e800f4 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 109 | # error "CONFIG_ENV_IS_EMBEDDED not supported for your flash type" |
| 110 | # endif |
| 111 | #endif |
| 112 | |
| 113 | /* |
| 114 | * For the flash types where embedded env is supported, but it cannot be |
| 115 | * calculated automatically (i.e. NAND), take the board opt-in. |
| 116 | */ |
| 117 | #if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED) |
Igor Grinberg | d766c51 | 2011-12-25 01:42:57 +0000 | [diff] [blame] | 118 | # define ENV_IS_EMBEDDED |
Mike Frysinger | 9e800f4 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 119 | #endif |
| 120 | |
| 121 | /* The build system likes to know if the env is embedded */ |
| 122 | #ifdef DO_DEPS_ONLY |
| 123 | # ifdef ENV_IS_EMBEDDED |
Wolfgang Denk | 7728b74 | 2011-07-30 14:01:08 +0000 | [diff] [blame] | 124 | # ifndef CONFIG_ENV_IS_EMBEDDED |
| 125 | # define CONFIG_ENV_IS_EMBEDDED |
| 126 | # endif |
Mike Frysinger | 9e800f4 | 2009-07-24 16:34:32 -0400 | [diff] [blame] | 127 | # endif |
| 128 | #endif |
| 129 | |
Mike Frysinger | 4ad8e9f | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 130 | #include "compiler.h" |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 131 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 132 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
Mike Frysinger | a2c67e9 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 133 | # define ENV_HEADER_SIZE (sizeof(uint32_t) + 1) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 134 | #else |
Mike Frysinger | a2c67e9 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 135 | # define ENV_HEADER_SIZE (sizeof(uint32_t)) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 136 | #endif |
| 137 | |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 138 | #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 139 | |
Simon Glass | 48d3ebc | 2019-08-01 09:47:11 -0600 | [diff] [blame] | 140 | /* |
| 141 | * If the environment is in RAM, allocate extra space for it in the malloc |
| 142 | * region. |
| 143 | */ |
| 144 | #if defined(CONFIG_ENV_IS_EMBEDDED) |
| 145 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
| 146 | #elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \ |
| 147 | (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \ |
| 148 | defined(CONFIG_ENV_IS_IN_NVRAM) |
| 149 | #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) |
| 150 | #else |
| 151 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
| 152 | #endif |
| 153 | |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 154 | typedef struct environment_s { |
Mike Frysinger | a2c67e9 | 2008-03-31 11:02:01 -0400 | [diff] [blame] | 155 | uint32_t crc; /* CRC32 over data bytes */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
Simon Glass | 4686d8f | 2019-08-01 09:47:08 -0600 | [diff] [blame] | 157 | unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 158 | #endif |
| 159 | unsigned char data[ENV_SIZE]; /* Environment data */ |
Tom Rini | 6b6ee8a | 2017-11-14 08:39:35 -0500 | [diff] [blame] | 160 | } env_t; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 161 | |
Igor Grinberg | 23b54b9 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 162 | #ifdef ENV_IS_EMBEDDED |
Simon Glass | 204eb22 | 2019-08-01 09:47:03 -0600 | [diff] [blame] | 163 | extern env_t embedded_environment; |
Igor Grinberg | 23b54b9 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 164 | #endif /* ENV_IS_EMBEDDED */ |
| 165 | |
Igor Grinberg | 6d67c73 | 2011-11-07 01:13:57 +0000 | [diff] [blame] | 166 | extern const unsigned char default_environment[]; |
Igor Grinberg | 3e77359 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 167 | |
Mike Frysinger | 92d7a99 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 168 | #ifndef DO_DEPS_ONLY |
| 169 | |
Joe Hershberger | 60fd3ad | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 170 | #include <env_attr.h> |
| 171 | #include <env_callback.h> |
Joe Hershberger | 71497d0 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 172 | #include <env_flags.h> |
Mike Frysinger | 92d7a99 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 173 | #include <search.h> |
| 174 | |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 175 | enum env_location { |
York Sun | 470947d | 2018-02-07 14:17:11 -0800 | [diff] [blame] | 176 | ENVL_UNKNOWN, |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 177 | ENVL_EEPROM, |
| 178 | ENVL_EXT4, |
| 179 | ENVL_FAT, |
| 180 | ENVL_FLASH, |
| 181 | ENVL_MMC, |
| 182 | ENVL_NAND, |
| 183 | ENVL_NVRAM, |
| 184 | ENVL_ONENAND, |
| 185 | ENVL_REMOTE, |
| 186 | ENVL_SPI_FLASH, |
| 187 | ENVL_UBI, |
| 188 | ENVL_NOWHERE, |
| 189 | |
| 190 | ENVL_COUNT, |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 191 | }; |
| 192 | |
Maxime Ripard | fd3158e | 2018-01-23 21:16:52 +0100 | [diff] [blame] | 193 | /* value for the various operations we want to perform on the env */ |
| 194 | enum env_operation { |
| 195 | ENVOP_GET_CHAR, /* we want to call the get_char function */ |
| 196 | ENVOP_INIT, /* we want to call the init function */ |
| 197 | ENVOP_LOAD, /* we want to call the load function */ |
| 198 | ENVOP_SAVE, /* we want to call the save function */ |
Frank Wunderlich | 33afa93 | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 199 | ENVOP_ERASE, /* we want to call the erase function */ |
Maxime Ripard | fd3158e | 2018-01-23 21:16:52 +0100 | [diff] [blame] | 200 | }; |
| 201 | |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 202 | struct env_driver { |
Simon Glass | d8273ed | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 203 | const char *name; |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 204 | enum env_location location; |
| 205 | |
| 206 | /** |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 207 | * load() - Load the environment from storage |
| 208 | * |
| 209 | * This method is optional. If not provided, no environment will be |
| 210 | * loaded. |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 211 | * |
| 212 | * @return 0 if OK, -ve on error |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 213 | */ |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 214 | int (*load)(void); |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 215 | |
| 216 | /** |
| 217 | * save() - Save the environment to storage |
| 218 | * |
| 219 | * This method is required for 'saveenv' to work. |
| 220 | * |
| 221 | * @return 0 if OK, -ve on error |
| 222 | */ |
| 223 | int (*save)(void); |
| 224 | |
| 225 | /** |
Frank Wunderlich | 33afa93 | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 226 | * erase() - Erase the environment on storage |
| 227 | * |
| 228 | * This method is optional and required for 'eraseenv' to work. |
| 229 | * |
| 230 | * @return 0 if OK, -ve on error |
| 231 | */ |
| 232 | int (*erase)(void); |
| 233 | |
| 234 | /** |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 235 | * init() - Set up the initial pre-relocation environment |
| 236 | * |
| 237 | * This method is optional. |
| 238 | * |
Simon Glass | d40d804 | 2017-08-03 12:22:02 -0600 | [diff] [blame] | 239 | * @return 0 if OK, -ENOENT if no initial environment could be found, |
| 240 | * other -ve on error |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 241 | */ |
| 242 | int (*init)(void); |
| 243 | }; |
| 244 | |
| 245 | /* Declare a new environment location driver */ |
| 246 | #define U_BOOT_ENV_LOCATION(__name) \ |
| 247 | ll_entry_declare(struct env_driver, __name, env_driver) |
| 248 | |
Simon Glass | d8273ed | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 249 | /* Declare the name of a location */ |
| 250 | #ifdef CONFIG_CMD_SAVEENV |
| 251 | #define ENV_NAME(_name) .name = _name, |
| 252 | #else |
| 253 | #define ENV_NAME(_name) |
| 254 | #endif |
| 255 | |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 256 | #ifdef CONFIG_CMD_SAVEENV |
| 257 | #define env_save_ptr(x) x |
| 258 | #else |
| 259 | #define env_save_ptr(x) NULL |
| 260 | #endif |
| 261 | |
Mike Frysinger | 92d7a99 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 262 | extern struct hsearch_data env_htab; |
| 263 | |
Igor Grinberg | 8954e63 | 2011-11-07 01:13:55 +0000 | [diff] [blame] | 264 | #endif /* DO_DEPS_ONLY */ |
Mike Frysinger | 92d7a99 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 265 | |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 266 | #endif /* _ENV_INTERNAL_H_ */ |