blob: e89fbdb1b75bbbc82aa812e2c31ca5703b033ea5 [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
Mike Frysinger0a9e4e72009-07-24 16:34:32 -040044# 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-VILLARD5a1aceb2008-09-10 22:48:04 +020048#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000049
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020050#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardinerc9f73512010-07-05 13:27:07 -040051# 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
56extern unsigned long nand_env_oob_offset;
57# define CONFIG_ENV_OFFSET nand_env_oob_offset
Ben Gardinerc9f73512010-07-05 13:27:07 -040058# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020059#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuechere443c942006-03-20 18:02:44 +010060
Mike Frysinger0a9e4e72009-07-24 16:34:32 -040061/*
62 * For the flash types where embedded env is supported, but it cannot be
63 * calculated automatically (i.e. NAND), take the board opt-in.
64 */
65#if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED)
Igor Grinberg6f403ba2011-12-25 01:42:57 +000066# define ENV_IS_EMBEDDED
Mike Frysinger0a9e4e72009-07-24 16:34:32 -040067#endif
68
69/* The build system likes to know if the env is embedded */
70#ifdef DO_DEPS_ONLY
71# ifdef ENV_IS_EMBEDDED
Wolfgang Denk33a6b9e2011-07-30 14:01:08 +000072# ifndef CONFIG_ENV_IS_EMBEDDED
73# define CONFIG_ENV_IS_EMBEDDED
74# endif
Mike Frysinger0a9e4e72009-07-24 16:34:32 -040075# endif
76#endif
77
Mike Frysinger37566092009-07-02 19:23:25 -040078#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +000079
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040081# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +000082#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040083# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +000084#endif
85
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020086#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +000087
Simon Glassf030b7b2019-08-01 09:47:11 -060088/*
89 * If the environment is in RAM, allocate extra space for it in the malloc
90 * region.
91 */
92#if defined(CONFIG_ENV_IS_EMBEDDED)
93#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
94#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
95 (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
96 defined(CONFIG_ENV_IS_IN_NVRAM)
97#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
98#else
99#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
100#endif
101
Igor Grinberg507651d2011-11-07 01:13:55 +0000102typedef struct environment_s {
Mike Frysinger89cdab72008-03-31 11:02:01 -0400103 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glassd3716dd2019-08-01 09:47:08 -0600105 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +0000106#endif
107 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rinic6831c72017-11-14 08:39:35 -0500108} env_t;
wdenkc6097192002-11-03 00:24:07 +0000109
Igor Grinberg994bc672011-11-17 06:07:23 +0000110#ifdef ENV_IS_EMBEDDED
Simon Glassbe54ec12019-08-01 09:47:03 -0600111extern env_t embedded_environment;
Igor Grinberg994bc672011-11-17 06:07:23 +0000112#endif /* ENV_IS_EMBEDDED */
113
Igor Grinbergd1459f02011-11-07 01:13:57 +0000114extern const unsigned char default_environment[];
Igor Grinberg27aafe92011-11-07 01:14:11 +0000115
Mike Frysinger2eb15732010-12-08 06:26:04 -0500116#ifndef DO_DEPS_ONLY
117
Joe Hershberger170ab112012-12-11 22:16:24 -0600118#include <env_attr.h>
119#include <env_callback.h>
Joe Hershberger25980902012-12-11 22:16:31 -0600120#include <env_flags.h>
Mike Frysinger2eb15732010-12-08 06:26:04 -0500121#include <search.h>
122
Simon Glass4415f1d2017-08-03 12:21:58 -0600123enum env_location {
York Sune1caa582018-02-07 14:17:11 -0800124 ENVL_UNKNOWN,
Simon Glass4415f1d2017-08-03 12:21:58 -0600125 ENVL_EEPROM,
126 ENVL_EXT4,
127 ENVL_FAT,
128 ENVL_FLASH,
129 ENVL_MMC,
130 ENVL_NAND,
131 ENVL_NVRAM,
132 ENVL_ONENAND,
133 ENVL_REMOTE,
134 ENVL_SPI_FLASH,
135 ENVL_UBI,
136 ENVL_NOWHERE,
137
138 ENVL_COUNT,
Simon Glass4415f1d2017-08-03 12:21:58 -0600139};
140
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100141/* value for the various operations we want to perform on the env */
142enum env_operation {
143 ENVOP_GET_CHAR, /* we want to call the get_char function */
144 ENVOP_INIT, /* we want to call the init function */
145 ENVOP_LOAD, /* we want to call the load function */
146 ENVOP_SAVE, /* we want to call the save function */
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200147 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100148};
149
Simon Glass4415f1d2017-08-03 12:21:58 -0600150struct env_driver {
Simon Glassac358be2017-08-03 12:22:03 -0600151 const char *name;
Simon Glass4415f1d2017-08-03 12:21:58 -0600152 enum env_location location;
153
154 /**
Simon Glass4415f1d2017-08-03 12:21:58 -0600155 * load() - Load the environment from storage
156 *
157 * This method is optional. If not provided, no environment will be
158 * loaded.
Simon Glassc5951992017-08-03 12:22:17 -0600159 *
160 * @return 0 if OK, -ve on error
Simon Glass4415f1d2017-08-03 12:21:58 -0600161 */
Simon Glassc5951992017-08-03 12:22:17 -0600162 int (*load)(void);
Simon Glass4415f1d2017-08-03 12:21:58 -0600163
164 /**
165 * save() - Save the environment to storage
166 *
167 * This method is required for 'saveenv' to work.
168 *
169 * @return 0 if OK, -ve on error
170 */
171 int (*save)(void);
172
173 /**
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200174 * erase() - Erase the environment on storage
175 *
176 * This method is optional and required for 'eraseenv' to work.
177 *
178 * @return 0 if OK, -ve on error
179 */
180 int (*erase)(void);
181
182 /**
Simon Glass4415f1d2017-08-03 12:21:58 -0600183 * init() - Set up the initial pre-relocation environment
184 *
185 * This method is optional.
186 *
Simon Glass79388222017-08-03 12:22:02 -0600187 * @return 0 if OK, -ENOENT if no initial environment could be found,
188 * other -ve on error
Simon Glass4415f1d2017-08-03 12:21:58 -0600189 */
190 int (*init)(void);
191};
192
193/* Declare a new environment location driver */
194#define U_BOOT_ENV_LOCATION(__name) \
195 ll_entry_declare(struct env_driver, __name, env_driver)
196
Simon Glassac358be2017-08-03 12:22:03 -0600197/* Declare the name of a location */
198#ifdef CONFIG_CMD_SAVEENV
199#define ENV_NAME(_name) .name = _name,
200#else
201#define ENV_NAME(_name)
202#endif
203
Simon Glass4415f1d2017-08-03 12:21:58 -0600204#ifdef CONFIG_CMD_SAVEENV
205#define env_save_ptr(x) x
206#else
207#define env_save_ptr(x) NULL
208#endif
209
Rasmus Villemoes82b2f412020-02-19 09:47:40 +0000210#define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL)
211
Mike Frysinger2eb15732010-12-08 06:26:04 -0500212extern struct hsearch_data env_htab;
213
Igor Grinberg507651d2011-11-07 01:13:55 +0000214#endif /* DO_DEPS_ONLY */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500215
Simon Glassf3998fd2019-08-02 09:44:25 -0600216#endif /* _ENV_INTERNAL_H_ */