blob: 6a69494646893aaeb227ebfb43839cd0ab76b20c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkc6097192002-11-03 00:24:07 +00002/*
Simon Glassf3998fd2019-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 Glassf3998fd2019-08-02 09:44:25 -060015#ifndef _ENV_INTERNAL_H_
16#define _ENV_INTERNAL_H_
wdenkc6097192002-11-03 00:24:07 +000017
Maxime Ripardfb1c43c2017-02-27 18:22:03 +010018#include <linux/kconfig.h>
19
wdenkc6097192002-11-03 00:24:07 +000020/**************************************************************************
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. Dayfc0b5942016-09-07 14:27:59 -040028 * The environment is preceded by a 32 bit CRC over the data part.
wdenkc6097192002-11-03 00:24:07 +000029 *
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -040030 *************************************************************************/
wdenkc6097192002-11-03 00:24:07 +000031
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020032#if defined(CONFIG_ENV_IS_IN_FLASH)
Tom Rinia8992e72019-11-18 20:02:07 -050033# 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
wdenkc6097192002-11-03 00:24:07 +000038# endif
Igor Grinberg507651d2011-11-07 01:13:55 +000039# 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 Grinberg6f403ba2011-12-25 01:42:57 +000042# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000043# endif
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020044#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000045
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020046#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardinerc9f73512010-07-05 13:27:07 -040047# if defined(CONFIG_ENV_OFFSET_OOB)
48# ifdef CONFIG_ENV_OFFSET_REDUND
49# error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB"
50# error "is set"
51# endif
52extern unsigned long nand_env_oob_offset;
Ben Gardinerc9f73512010-07-05 13:27:07 -040053# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020054#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuechere443c942006-03-20 18:02:44 +010055
Mike Frysinger37566092009-07-02 19:23:25 -040056#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +000057
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040059# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +000060#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040061# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +000062#endif
63
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020064#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +000065
Simon Glassf030b7b2019-08-01 09:47:11 -060066/*
67 * If the environment is in RAM, allocate extra space for it in the malloc
68 * region.
69 */
Tom Rini6bd23722022-12-02 16:42:17 -050070#if defined(ENV_IS_EMBEDDED)
Simon Glassf030b7b2019-08-01 09:47:11 -060071#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
72#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
73 (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
74 defined(CONFIG_ENV_IS_IN_NVRAM)
75#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
76#else
77#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
78#endif
79
Igor Grinberg507651d2011-11-07 01:13:55 +000080typedef struct environment_s {
Mike Frysinger89cdab72008-03-31 11:02:01 -040081 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glassd3716dd2019-08-01 09:47:08 -060083 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +000084#endif
85 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rinic6831c72017-11-14 08:39:35 -050086} env_t;
wdenkc6097192002-11-03 00:24:07 +000087
Igor Grinberg994bc672011-11-17 06:07:23 +000088#ifdef ENV_IS_EMBEDDED
Simon Glassbe54ec12019-08-01 09:47:03 -060089extern env_t embedded_environment;
Igor Grinberg994bc672011-11-17 06:07:23 +000090#endif /* ENV_IS_EMBEDDED */
91
Pali Rohár93f40482020-12-23 12:21:28 +010092#ifdef DEFAULT_ENV_IS_RW
Marek Behúnc5cbbe32021-10-22 15:47:24 +020093extern char default_environment[];
Pali Rohár93f40482020-12-23 12:21:28 +010094#else
Marek Behúnc5cbbe32021-10-22 15:47:24 +020095extern const char default_environment[];
Pali Rohár93f40482020-12-23 12:21:28 +010096#endif
Igor Grinberg27aafe92011-11-07 01:14:11 +000097
Mike Frysinger2eb15732010-12-08 06:26:04 -050098#ifndef DO_DEPS_ONLY
99
Joe Hershberger170ab112012-12-11 22:16:24 -0600100#include <env_attr.h>
101#include <env_callback.h>
Joe Hershberger25980902012-12-11 22:16:31 -0600102#include <env_flags.h>
Mike Frysinger2eb15732010-12-08 06:26:04 -0500103#include <search.h>
104
Simon Glass4415f1d2017-08-03 12:21:58 -0600105enum env_location {
York Sune1caa582018-02-07 14:17:11 -0800106 ENVL_UNKNOWN,
Simon Glass4415f1d2017-08-03 12:21:58 -0600107 ENVL_EEPROM,
108 ENVL_EXT4,
109 ENVL_FAT,
110 ENVL_FLASH,
111 ENVL_MMC,
112 ENVL_NAND,
113 ENVL_NVRAM,
114 ENVL_ONENAND,
115 ENVL_REMOTE,
116 ENVL_SPI_FLASH,
117 ENVL_UBI,
118 ENVL_NOWHERE,
119
120 ENVL_COUNT,
Simon Glass4415f1d2017-08-03 12:21:58 -0600121};
122
Maxime Ripard8a3a7e22018-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 Wunderlichcd121bd2019-06-29 11:36:19 +0200129 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100130};
131
Simon Glass4415f1d2017-08-03 12:21:58 -0600132struct env_driver {
Simon Glassac358be2017-08-03 12:22:03 -0600133 const char *name;
Simon Glass4415f1d2017-08-03 12:21:58 -0600134 enum env_location location;
135
136 /**
Simon Glass4415f1d2017-08-03 12:21:58 -0600137 * load() - Load the environment from storage
138 *
Patrick Delaunay466d9852020-07-28 11:51:19 +0200139 * This method is required for loading environment
Simon Glassc5951992017-08-03 12:22:17 -0600140 *
141 * @return 0 if OK, -ve on error
Simon Glass4415f1d2017-08-03 12:21:58 -0600142 */
Simon Glassc5951992017-08-03 12:22:17 -0600143 int (*load)(void);
Simon Glass4415f1d2017-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 Wunderlichcd121bd2019-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 Glass4415f1d2017-08-03 12:21:58 -0600164 * init() - Set up the initial pre-relocation environment
165 *
166 * This method is optional.
167 *
Simon Glass79388222017-08-03 12:22:02 -0600168 * @return 0 if OK, -ENOENT if no initial environment could be found,
169 * other -ve on error
Simon Glass4415f1d2017-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 Glassac358be2017-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 Glass4415f1d2017-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 Villemoes82b2f412020-02-19 09:47:40 +0000191#define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL)
Simon Glasscbacacd2023-02-05 15:36:29 -0700192#define ENV_ERASE_PTR(x) (IS_ENABLED(CONFIG_CMD_ERASEENV) ? (x) : NULL)
Rasmus Villemoes82b2f412020-02-19 09:47:40 +0000193
Mike Frysinger2eb15732010-12-08 06:26:04 -0500194extern struct hsearch_data env_htab;
195
Patrick Delaunay2f96b322020-06-19 14:03:35 +0200196/**
Patrick Delaunay879369e2020-06-15 16:52:17 +0200197 * env_ext4_get_intf() - Provide the interface for env in EXT4
198 *
199 * It is a weak function allowing board to overidde the default interface for
200 * U-Boot env in EXT4: CONFIG_ENV_EXT4_INTERFACE
201 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100202 * Return: string of interface, empty if not supported
Patrick Delaunay879369e2020-06-15 16:52:17 +0200203 */
204const char *env_ext4_get_intf(void);
205
206/**
207 * env_ext4_get_dev_part() - Provide the device and partition for env in EXT4
208 *
209 * It is a weak function allowing board to overidde the default device and
210 * partition used for U-Boot env in EXT4: CONFIG_ENV_EXT4_DEVICE_AND_PART
211 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100212 * Return: string of device and partition
Patrick Delaunay879369e2020-06-15 16:52:17 +0200213 */
214const char *env_ext4_get_dev_part(void);
215
216/**
Marek Vasutde70e882022-04-06 02:21:32 +0200217 * arch_env_get_location()- Provide the best location for the U-Boot environment
218 *
219 * It is a weak function allowing board to overidde the environment location
220 * on architecture level. This has lower priority than env_get_location(),
221 * which can be defined on board level.
222 *
223 * @op: operations performed on the environment
224 * @prio: priority between the multiple environments, 0 being the
225 * highest priority
226 * Return: an enum env_location value on success, or -ve error code.
227 */
228enum env_location arch_env_get_location(enum env_operation op, int prio);
229
230/**
Patrick Delaunay2f96b322020-06-19 14:03:35 +0200231 * env_get_location()- Provide the best location for the U-Boot environment
232 *
233 * It is a weak function allowing board to overidde the environment location
Marek Vasutde70e882022-04-06 02:21:32 +0200234 * on board level. This has higher priority than arch_env_get_location(),
235 * which can be defined on architecture level.
Patrick Delaunay2f96b322020-06-19 14:03:35 +0200236 *
237 * @op: operations performed on the environment
238 * @prio: priority between the multiple environments, 0 being the
239 * highest priority
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100240 * Return: an enum env_location value on success, or -ve error code.
Patrick Delaunay2f96b322020-06-19 14:03:35 +0200241 */
242enum env_location env_get_location(enum env_operation op, int prio);
He Yongeb68ead2022-02-18 00:07:25 +0800243
244/**
245 * env_fat_get_intf() - Provide the interface for env in FAT
246 *
247 * It is a weak function allowing board to overidde the default interface for
248 * U-Boot env in FAT: CONFIG_ENV_FAT_INTERFACE
249 *
250 * Return: string of interface, empty if not supported
251 */
252const char *env_fat_get_intf(void);
253
254/**
255 * env_fat_get_dev_part() - Provide the device and partition for env in FAT
256 *
257 * It is a weak function allowing board to overidde the default device and
258 * partition used for U-Boot env in FAT: CONFIG_ENV_FAT_DEVICE_AND_PART
259 *
260 * Return: string of device and partition
261 */
262char *env_fat_get_dev_part(void);
Igor Grinberg507651d2011-11-07 01:13:55 +0000263#endif /* DO_DEPS_ONLY */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500264
Simon Glassf3998fd2019-08-02 09:44:25 -0600265#endif /* _ENV_INTERNAL_H_ */