blob: b1ddcb5adfd3b2f4216be90d40d33c85a81cea7b [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)
Igor Grinberg507651d2011-11-07 01:13:55 +000033# ifndef CONFIG_ENV_ADDR
34# define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
wdenkc6097192002-11-03 00:24:07 +000035# endif
Igor Grinberg507651d2011-11-07 01:13:55 +000036# ifndef CONFIG_ENV_OFFSET
37# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
wdenkc6097192002-11-03 00:24:07 +000038# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020039# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
Igor Grinberg507651d2011-11-07 01:13:55 +000040# define CONFIG_ENV_ADDR_REDUND \
41 (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
wdenkc6097192002-11-03 00:24:07 +000042# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020043# if defined(CONFIG_ENV_SECT_SIZE) || defined(CONFIG_ENV_SIZE)
Igor Grinberg507651d2011-11-07 01:13:55 +000044# ifndef CONFIG_ENV_SECT_SIZE
45# define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
wdenk500545c2003-03-06 14:23:06 +000046# endif
Igor Grinberg507651d2011-11-07 01:13:55 +000047# ifndef CONFIG_ENV_SIZE
48# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
wdenk500545c2003-03-06 14:23:06 +000049# endif
50# else
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020051# error "Both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE undefined"
wdenkc6097192002-11-03 00:24:07 +000052# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020053# if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
54# define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
wdenkc6097192002-11-03 00:24:07 +000055# endif
Igor Grinberg507651d2011-11-07 01:13:55 +000056# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
57 (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= \
58 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Igor Grinberg6f403ba2011-12-25 01:42:57 +000059# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000060# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020061# if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
Igor Grinberg6f403ba2011-12-25 01:42:57 +000062# define CONFIG_SYS_REDUNDAND_ENVIRONMENT
wdenkc6097192002-11-03 00:24:07 +000063# endif
Mike Frysinger0a9e4e72009-07-24 16:34:32 -040064# 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-VILLARD5a1aceb2008-09-10 22:48:04 +020068#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000069
Bo Shen5707df72013-05-15 09:38:16 +080070#if defined(CONFIG_ENV_IS_IN_MMC)
71# ifdef CONFIG_ENV_OFFSET_REDUND
72# define CONFIG_SYS_REDUNDAND_ENVIRONMENT
73# endif
74#endif
75
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020076#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardinerc9f73512010-07-05 13:27:07 -040077# if defined(CONFIG_ENV_OFFSET_OOB)
78# ifdef CONFIG_ENV_OFFSET_REDUND
79# error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB"
80# error "is set"
81# endif
82extern unsigned long nand_env_oob_offset;
83# define CONFIG_ENV_OFFSET nand_env_oob_offset
84# else
85# ifndef CONFIG_ENV_OFFSET
86# error "Need to define CONFIG_ENV_OFFSET when using CONFIG_ENV_IS_IN_NAND"
87# endif
88# ifdef CONFIG_ENV_OFFSET_REDUND
89# define CONFIG_SYS_REDUNDAND_ENVIRONMENT
90# endif
91# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020092# ifndef CONFIG_ENV_SIZE
93# error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_NAND"
Markus Klotzbuechere443c942006-03-20 18:02:44 +010094# endif
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020095#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuechere443c942006-03-20 18:02:44 +010096
Joe Hershberger2b744332013-04-08 10:32:51 +000097#if defined(CONFIG_ENV_IS_IN_UBI)
98# ifndef CONFIG_ENV_UBI_PART
99# error "Need to define CONFIG_ENV_UBI_PART when using CONFIG_ENV_IS_IN_UBI"
100# endif
101# ifndef CONFIG_ENV_UBI_VOLUME
102# error "Need to define CONFIG_ENV_UBI_VOLUME when using CONFIG_ENV_IS_IN_UBI"
103# endif
Joe Hershberger785881f2013-04-08 10:32:52 +0000104# if defined(CONFIG_ENV_UBI_VOLUME_REDUND)
105# define CONFIG_SYS_REDUNDAND_ENVIRONMENT
106# endif
Joe Hershberger2b744332013-04-08 10:32:51 +0000107# ifndef CONFIG_ENV_SIZE
108# error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_UBI"
109# endif
110# ifndef CONFIG_CMD_UBI
111# error "Need to define CONFIG_CMD_UBI when using CONFIG_ENV_IS_IN_UBI"
112# endif
113#endif /* CONFIG_ENV_IS_IN_UBI */
114
Mike Frysinger0a9e4e72009-07-24 16:34:32 -0400115/* Embedded env is only supported for some flash types */
116#ifdef CONFIG_ENV_IS_EMBEDDED
Igor Grinberg507651d2011-11-07 01:13:55 +0000117# if !defined(CONFIG_ENV_IS_IN_FLASH) && \
118 !defined(CONFIG_ENV_IS_IN_NAND) && \
119 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
120 !defined(CONFIG_ENV_IS_IN_SPI_FLASH)
Mike Frysinger0a9e4e72009-07-24 16:34:32 -0400121# error "CONFIG_ENV_IS_EMBEDDED not supported for your flash type"
122# endif
123#endif
124
125/*
126 * For the flash types where embedded env is supported, but it cannot be
127 * calculated automatically (i.e. NAND), take the board opt-in.
128 */
129#if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED)
Igor Grinberg6f403ba2011-12-25 01:42:57 +0000130# define ENV_IS_EMBEDDED
Mike Frysinger0a9e4e72009-07-24 16:34:32 -0400131#endif
132
133/* The build system likes to know if the env is embedded */
134#ifdef DO_DEPS_ONLY
135# ifdef ENV_IS_EMBEDDED
Wolfgang Denk33a6b9e2011-07-30 14:01:08 +0000136# ifndef CONFIG_ENV_IS_EMBEDDED
137# define CONFIG_ENV_IS_EMBEDDED
138# endif
Mike Frysinger0a9e4e72009-07-24 16:34:32 -0400139# endif
140#endif
141
Mike Frysinger37566092009-07-02 19:23:25 -0400142#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +0000143
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -0400145# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +0000146#else
Mike Frysinger89cdab72008-03-31 11:02:01 -0400147# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +0000148#endif
149
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200150#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000151
Simon Glassf030b7b2019-08-01 09:47:11 -0600152/*
153 * If the environment is in RAM, allocate extra space for it in the malloc
154 * region.
155 */
156#if defined(CONFIG_ENV_IS_EMBEDDED)
157#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
158#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
159 (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
160 defined(CONFIG_ENV_IS_IN_NVRAM)
161#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
162#else
163#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
164#endif
165
Igor Grinberg507651d2011-11-07 01:13:55 +0000166typedef struct environment_s {
Mike Frysinger89cdab72008-03-31 11:02:01 -0400167 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200168#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glassd3716dd2019-08-01 09:47:08 -0600169 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +0000170#endif
171 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rinic6831c72017-11-14 08:39:35 -0500172} env_t;
wdenkc6097192002-11-03 00:24:07 +0000173
Igor Grinberg994bc672011-11-17 06:07:23 +0000174#ifdef ENV_IS_EMBEDDED
Simon Glassbe54ec12019-08-01 09:47:03 -0600175extern env_t embedded_environment;
Igor Grinberg994bc672011-11-17 06:07:23 +0000176#endif /* ENV_IS_EMBEDDED */
177
Igor Grinbergd1459f02011-11-07 01:13:57 +0000178extern const unsigned char default_environment[];
Igor Grinberg27aafe92011-11-07 01:14:11 +0000179
Mike Frysinger2eb15732010-12-08 06:26:04 -0500180#ifndef DO_DEPS_ONLY
181
Joe Hershberger170ab112012-12-11 22:16:24 -0600182#include <env_attr.h>
183#include <env_callback.h>
Joe Hershberger25980902012-12-11 22:16:31 -0600184#include <env_flags.h>
Mike Frysinger2eb15732010-12-08 06:26:04 -0500185#include <search.h>
186
Simon Glass4415f1d2017-08-03 12:21:58 -0600187enum env_location {
York Sune1caa582018-02-07 14:17:11 -0800188 ENVL_UNKNOWN,
Simon Glass4415f1d2017-08-03 12:21:58 -0600189 ENVL_EEPROM,
190 ENVL_EXT4,
191 ENVL_FAT,
192 ENVL_FLASH,
193 ENVL_MMC,
194 ENVL_NAND,
195 ENVL_NVRAM,
196 ENVL_ONENAND,
197 ENVL_REMOTE,
198 ENVL_SPI_FLASH,
199 ENVL_UBI,
200 ENVL_NOWHERE,
201
202 ENVL_COUNT,
Simon Glass4415f1d2017-08-03 12:21:58 -0600203};
204
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100205/* value for the various operations we want to perform on the env */
206enum env_operation {
207 ENVOP_GET_CHAR, /* we want to call the get_char function */
208 ENVOP_INIT, /* we want to call the init function */
209 ENVOP_LOAD, /* we want to call the load function */
210 ENVOP_SAVE, /* we want to call the save function */
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200211 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripard8a3a7e22018-01-23 21:16:52 +0100212};
213
Simon Glass4415f1d2017-08-03 12:21:58 -0600214struct env_driver {
Simon Glassac358be2017-08-03 12:22:03 -0600215 const char *name;
Simon Glass4415f1d2017-08-03 12:21:58 -0600216 enum env_location location;
217
218 /**
Simon Glass4415f1d2017-08-03 12:21:58 -0600219 * load() - Load the environment from storage
220 *
221 * This method is optional. If not provided, no environment will be
222 * loaded.
Simon Glassc5951992017-08-03 12:22:17 -0600223 *
224 * @return 0 if OK, -ve on error
Simon Glass4415f1d2017-08-03 12:21:58 -0600225 */
Simon Glassc5951992017-08-03 12:22:17 -0600226 int (*load)(void);
Simon Glass4415f1d2017-08-03 12:21:58 -0600227
228 /**
229 * save() - Save the environment to storage
230 *
231 * This method is required for 'saveenv' to work.
232 *
233 * @return 0 if OK, -ve on error
234 */
235 int (*save)(void);
236
237 /**
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200238 * erase() - Erase the environment on storage
239 *
240 * This method is optional and required for 'eraseenv' to work.
241 *
242 * @return 0 if OK, -ve on error
243 */
244 int (*erase)(void);
245
246 /**
Simon Glass4415f1d2017-08-03 12:21:58 -0600247 * init() - Set up the initial pre-relocation environment
248 *
249 * This method is optional.
250 *
Simon Glass79388222017-08-03 12:22:02 -0600251 * @return 0 if OK, -ENOENT if no initial environment could be found,
252 * other -ve on error
Simon Glass4415f1d2017-08-03 12:21:58 -0600253 */
254 int (*init)(void);
255};
256
257/* Declare a new environment location driver */
258#define U_BOOT_ENV_LOCATION(__name) \
259 ll_entry_declare(struct env_driver, __name, env_driver)
260
Simon Glassac358be2017-08-03 12:22:03 -0600261/* Declare the name of a location */
262#ifdef CONFIG_CMD_SAVEENV
263#define ENV_NAME(_name) .name = _name,
264#else
265#define ENV_NAME(_name)
266#endif
267
Simon Glass4415f1d2017-08-03 12:21:58 -0600268#ifdef CONFIG_CMD_SAVEENV
269#define env_save_ptr(x) x
270#else
271#define env_save_ptr(x) NULL
272#endif
273
Mike Frysinger2eb15732010-12-08 06:26:04 -0500274extern struct hsearch_data env_htab;
275
Igor Grinberg507651d2011-11-07 01:13:55 +0000276#endif /* DO_DEPS_ONLY */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500277
Simon Glassf3998fd2019-08-02 09:44:25 -0600278#endif /* _ENV_INTERNAL_H_ */