blob: ee939ba4293bf1b3f2a2081b062991df34d75b33 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkc6097192002-11-03 00:24:07 +00002/*
Simon Glass9d1f6192019-08-02 09:44:25 -06003 * 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 *
wdenkc6097192002-11-03 00:24:07 +000011 * (C) Copyright 2002
12 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkc6097192002-11-03 00:24:07 +000013 */
14
Simon Glass9d1f6192019-08-02 09:44:25 -060015#ifndef _ENV_INTERNAL_H_
16#define _ENV_INTERNAL_H_
wdenkc6097192002-11-03 00:24:07 +000017
18/**************************************************************************
19 *
20 * The "environment" is stored as a list of '\0' terminated
21 * "name=value" strings. The end of the list is marked by a double
22 * '\0'. New entries are always added at the end. Deleting an entry
23 * shifts the remaining entries to the front. Replacing an entry is a
24 * combination of deleting the old value and adding the new one.
25 *
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -040026 * The environment is preceded by a 32 bit CRC over the data part.
wdenkc6097192002-11-03 00:24:07 +000027 *
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -040028 *************************************************************************/
wdenkc6097192002-11-03 00:24:07 +000029
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020030#if defined(CONFIG_ENV_IS_IN_FLASH)
Tom Rinif4bdf1b2019-11-18 20:02:07 -050031# if defined(CONFIG_ENV_ADDR_REDUND) && \
32 ((CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
33 (CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SIZE) <= \
34 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
35# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000036# endif
Igor Grinberg8954e632011-11-07 01:13:55 +000037# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
38 (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= \
39 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Igor Grinbergd766c512011-12-25 01:42:57 +000040# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000041# endif
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020042#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000043
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020044#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardiner5fc8b7f2010-07-05 13:27:07 -040045# if defined(CONFIG_ENV_OFFSET_OOB)
46# ifdef CONFIG_ENV_OFFSET_REDUND
47# error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB"
48# error "is set"
49# endif
50extern unsigned long nand_env_oob_offset;
Ben Gardiner5fc8b7f2010-07-05 13:27:07 -040051# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020052#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuecher5d113e02006-03-20 18:02:44 +010053
Mike Frysinger4ad8e9f2009-07-02 19:23:25 -040054#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +000055
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020056#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysingera2c67e92008-03-31 11:02:01 -040057# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +000058#else
Mike Frysingera2c67e92008-03-31 11:02:01 -040059# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +000060#endif
61
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020062#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +000063
Simon Glass48d3ebc2019-08-01 09:47:11 -060064/*
65 * If the environment is in RAM, allocate extra space for it in the malloc
66 * region.
67 */
Tom Rini4714ab22022-12-02 16:42:17 -050068#if defined(ENV_IS_EMBEDDED)
Simon Glass48d3ebc2019-08-01 09:47:11 -060069#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
70#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
71 (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
72 defined(CONFIG_ENV_IS_IN_NVRAM)
73#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
74#else
75#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
76#endif
77
Igor Grinberg8954e632011-11-07 01:13:55 +000078typedef struct environment_s {
Mike Frysingera2c67e92008-03-31 11:02:01 -040079 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020080#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glass4686d8f2019-08-01 09:47:08 -060081 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +000082#endif
83 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rini6b6ee8a2017-11-14 08:39:35 -050084} env_t;
wdenkc6097192002-11-03 00:24:07 +000085
Igor Grinberg23b54b92011-11-17 06:07:23 +000086#ifdef ENV_IS_EMBEDDED
Simon Glass204eb222019-08-01 09:47:03 -060087extern env_t embedded_environment;
Igor Grinberg23b54b92011-11-17 06:07:23 +000088#endif /* ENV_IS_EMBEDDED */
89
Algapally Santosh Sagar0ed240e2023-09-21 16:50:42 +053090#ifdef CONFIG_DEFAULT_ENV_IS_RW
Marek Behún73d25342021-10-22 15:47:24 +020091extern char default_environment[];
Pali Rohár3c72b1b2020-12-23 12:21:28 +010092#else
Marek Behún73d25342021-10-22 15:47:24 +020093extern const char default_environment[];
Pali Rohár3c72b1b2020-12-23 12:21:28 +010094#endif
Igor Grinberg3e773592011-11-07 01:14:11 +000095
Mike Frysinger92d7a992010-12-08 06:26:04 -050096#ifndef DO_DEPS_ONLY
97
Joe Hershberger60fd3ad2012-12-11 22:16:24 -060098#include <env_attr.h>
99#include <env_callback.h>
Joe Hershberger71497d02012-12-11 22:16:31 -0600100#include <env_flags.h>
Mike Frysinger92d7a992010-12-08 06:26:04 -0500101#include <search.h>
102
Simon Glassc726f282024-08-21 10:19:08 -0600103/* this is stored as bits in gd->env_has_init so is limited to 16 entries */
Simon Glassc10a88e2017-08-03 12:21:58 -0600104enum env_location {
York Sun470947d2018-02-07 14:17:11 -0800105 ENVL_UNKNOWN,
Simon Glassc10a88e2017-08-03 12:21:58 -0600106 ENVL_EEPROM,
107 ENVL_EXT4,
108 ENVL_FAT,
109 ENVL_FLASH,
110 ENVL_MMC,
111 ENVL_NAND,
112 ENVL_NVRAM,
113 ENVL_ONENAND,
114 ENVL_REMOTE,
115 ENVL_SPI_FLASH,
Christian Marangif13466e2025-04-07 20:59:51 +0200116 ENVL_MTD,
Simon Glassc10a88e2017-08-03 12:21:58 -0600117 ENVL_UBI,
118 ENVL_NOWHERE,
119
120 ENVL_COUNT,
Simon Glassc10a88e2017-08-03 12:21:58 -0600121};
122
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100123/* value for the various operations we want to perform on the env */
124enum env_operation {
125 ENVOP_GET_CHAR, /* we want to call the get_char function */
126 ENVOP_INIT, /* we want to call the init function */
127 ENVOP_LOAD, /* we want to call the load function */
128 ENVOP_SAVE, /* we want to call the save function */
Frank Wunderlich33afa932019-06-29 11:36:19 +0200129 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100130};
131
Simon Glassc10a88e2017-08-03 12:21:58 -0600132struct env_driver {
Simon Glassd8273ed2017-08-03 12:22:03 -0600133 const char *name;
Simon Glassc10a88e2017-08-03 12:21:58 -0600134 enum env_location location;
135
136 /**
Simon Glassc10a88e2017-08-03 12:21:58 -0600137 * load() - Load the environment from storage
138 *
Patrick Delaunayeebd74d2020-07-28 11:51:19 +0200139 * This method is required for loading environment
Simon Glass99778492017-08-03 12:22:17 -0600140 *
141 * @return 0 if OK, -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600142 */
Simon Glass99778492017-08-03 12:22:17 -0600143 int (*load)(void);
Simon Glassc10a88e2017-08-03 12:21:58 -0600144
145 /**
146 * save() - Save the environment to storage
147 *
148 * This method is required for 'saveenv' to work.
149 *
150 * @return 0 if OK, -ve on error
151 */
152 int (*save)(void);
153
154 /**
Frank Wunderlich33afa932019-06-29 11:36:19 +0200155 * erase() - Erase the environment on storage
156 *
157 * This method is optional and required for 'eraseenv' to work.
158 *
159 * @return 0 if OK, -ve on error
160 */
161 int (*erase)(void);
162
163 /**
Simon Glassc10a88e2017-08-03 12:21:58 -0600164 * init() - Set up the initial pre-relocation environment
165 *
166 * This method is optional.
167 *
Simon Glassd40d8042017-08-03 12:22:02 -0600168 * @return 0 if OK, -ENOENT if no initial environment could be found,
169 * other -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600170 */
171 int (*init)(void);
172};
173
174/* Declare a new environment location driver */
175#define U_BOOT_ENV_LOCATION(__name) \
176 ll_entry_declare(struct env_driver, __name, env_driver)
177
Simon Glassd8273ed2017-08-03 12:22:03 -0600178/* Declare the name of a location */
179#ifdef CONFIG_CMD_SAVEENV
180#define ENV_NAME(_name) .name = _name,
181#else
182#define ENV_NAME(_name)
183#endif
184
Simon Glassc10a88e2017-08-03 12:21:58 -0600185#ifdef CONFIG_CMD_SAVEENV
186#define env_save_ptr(x) x
187#else
188#define env_save_ptr(x) NULL
189#endif
190
Rasmus Villemoes2c9e0a72020-02-19 09:47:40 +0000191#define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL)
Simon Glass3cc00c42023-02-05 15:36:29 -0700192#define ENV_ERASE_PTR(x) (IS_ENABLED(CONFIG_CMD_ERASEENV) ? (x) : NULL)
Rasmus Villemoes2c9e0a72020-02-19 09:47:40 +0000193
Mike Frysinger92d7a992010-12-08 06:26:04 -0500194extern struct hsearch_data env_htab;
195
Patrick Delaunayc149a3b2020-06-19 14:03:35 +0200196/**
Tom Rinib8ca93f2023-10-26 14:31:16 -0400197 * env_do_env_set() - Perform the actual setting of an environment variable
198 *
199 * Due to the number of places we may need to set an environmental variable
200 * from we have an exposed internal function that performs the real work and
201 * then call this from both the command line function as well as other
202 * locations.
203 *
204 * Return: 0 on success or 1 on failure
205 */
206int env_do_env_set(int flag, int argc, char *const argv[], int env_flag);
207
208/**
Patrick Delaunay0f4f5db2020-06-15 16:52:17 +0200209 * env_ext4_get_intf() - Provide the interface for env in EXT4
210 *
211 * It is a weak function allowing board to overidde the default interface for
212 * U-Boot env in EXT4: CONFIG_ENV_EXT4_INTERFACE
213 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100214 * Return: string of interface, empty if not supported
Patrick Delaunay0f4f5db2020-06-15 16:52:17 +0200215 */
216const char *env_ext4_get_intf(void);
217
218/**
219 * env_ext4_get_dev_part() - Provide the device and partition for env in EXT4
220 *
221 * It is a weak function allowing board to overidde the default device and
222 * partition used for U-Boot env in EXT4: CONFIG_ENV_EXT4_DEVICE_AND_PART
223 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100224 * Return: string of device and partition
Patrick Delaunay0f4f5db2020-06-15 16:52:17 +0200225 */
226const char *env_ext4_get_dev_part(void);
227
228/**
Marek Vasutf92cf582022-04-06 02:21:32 +0200229 * arch_env_get_location()- Provide the best location for the U-Boot environment
230 *
231 * It is a weak function allowing board to overidde the environment location
232 * on architecture level. This has lower priority than env_get_location(),
233 * which can be defined on board level.
234 *
235 * @op: operations performed on the environment
236 * @prio: priority between the multiple environments, 0 being the
237 * highest priority
238 * Return: an enum env_location value on success, or -ve error code.
239 */
240enum env_location arch_env_get_location(enum env_operation op, int prio);
241
242/**
Patrick Delaunayc149a3b2020-06-19 14:03:35 +0200243 * env_get_location()- Provide the best location for the U-Boot environment
244 *
245 * It is a weak function allowing board to overidde the environment location
Marek Vasutf92cf582022-04-06 02:21:32 +0200246 * on board level. This has higher priority than arch_env_get_location(),
247 * which can be defined on architecture level.
Patrick Delaunayc149a3b2020-06-19 14:03:35 +0200248 *
249 * @op: operations performed on the environment
250 * @prio: priority between the multiple environments, 0 being the
251 * highest priority
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100252 * Return: an enum env_location value on success, or -ve error code.
Patrick Delaunayc149a3b2020-06-19 14:03:35 +0200253 */
254enum env_location env_get_location(enum env_operation op, int prio);
He Yong25936aa2022-02-18 00:07:25 +0800255
256/**
257 * env_fat_get_intf() - Provide the interface for env in FAT
258 *
259 * It is a weak function allowing board to overidde the default interface for
260 * U-Boot env in FAT: CONFIG_ENV_FAT_INTERFACE
261 *
262 * Return: string of interface, empty if not supported
263 */
264const char *env_fat_get_intf(void);
265
266/**
267 * env_fat_get_dev_part() - Provide the device and partition for env in FAT
268 *
269 * It is a weak function allowing board to overidde the default device and
270 * partition used for U-Boot env in FAT: CONFIG_ENV_FAT_DEVICE_AND_PART
271 *
272 * Return: string of device and partition
273 */
274char *env_fat_get_dev_part(void);
Igor Grinberg8954e632011-11-07 01:13:55 +0000275#endif /* DO_DEPS_ONLY */
Mike Frysinger92d7a992010-12-08 06:26:04 -0500276
Simon Glass9d1f6192019-08-02 09:44:25 -0600277#endif /* _ENV_INTERNAL_H_ */