blob: b8158c0e0bc5c910017e626398f1904cf52e1fdb [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
Maxime Ripardd780cdc2017-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. Dayc5b1e5d2016-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. Dayc5b1e5d2016-09-07 14:27:59 -040030 *************************************************************************/
wdenkc6097192002-11-03 00:24:07 +000031
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020032#if defined(CONFIG_ENV_IS_IN_FLASH)
Igor Grinberg8954e632011-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 Grinberg8954e632011-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-VILLARD7e1cda62008-09-10 22:48:06 +020039# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
Igor Grinberg8954e632011-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-VILLARD7e1cda62008-09-10 22:48:06 +020043# if defined(CONFIG_ENV_SECT_SIZE) || defined(CONFIG_ENV_SIZE)
Igor Grinberg8954e632011-11-07 01:13:55 +000044# ifndef CONFIG_ENV_SECT_SIZE
45# define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
wdenkd730fbc2003-03-06 14:23:06 +000046# endif
Igor Grinberg8954e632011-11-07 01:13:55 +000047# ifndef CONFIG_ENV_SIZE
48# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
wdenkd730fbc2003-03-06 14:23:06 +000049# endif
50# else
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-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
Tom Rinif4bdf1b2019-11-18 20:02:07 -050053# 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
wdenkc6097192002-11-03 00:24:07 +000058# endif
Igor Grinberg8954e632011-11-07 01:13:55 +000059# 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 Grinbergd766c512011-12-25 01:42:57 +000062# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000063# endif
Mike Frysinger9e800f42009-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-VILLARD53db4cd2008-09-10 22:48:04 +020068#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000069
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020070#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardiner5fc8b7f2010-07-05 13:27:07 -040071# 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
76extern 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 Gardiner5fc8b7f2010-07-05 13:27:07 -040082# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020083# ifndef CONFIG_ENV_SIZE
84# error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_NAND"
Markus Klotzbuecher5d113e02006-03-20 18:02:44 +010085# endif
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020086#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuecher5d113e02006-03-20 18:02:44 +010087
Joe Hershberger0c5faa82013-04-08 10:32:51 +000088#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 Frysinger9e800f42009-07-24 16:34:32 -0400103/* Embedded env is only supported for some flash types */
104#ifdef CONFIG_ENV_IS_EMBEDDED
Igor Grinberg8954e632011-11-07 01:13:55 +0000105# 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 Frysinger9e800f42009-07-24 16:34:32 -0400109# 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 Grinbergd766c512011-12-25 01:42:57 +0000118# define ENV_IS_EMBEDDED
Mike Frysinger9e800f42009-07-24 16:34:32 -0400119#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 Denk7728b742011-07-30 14:01:08 +0000124# ifndef CONFIG_ENV_IS_EMBEDDED
125# define CONFIG_ENV_IS_EMBEDDED
126# endif
Mike Frysinger9e800f42009-07-24 16:34:32 -0400127# endif
128#endif
129
Mike Frysinger4ad8e9f2009-07-02 19:23:25 -0400130#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +0000131
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200132#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysingera2c67e92008-03-31 11:02:01 -0400133# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +0000134#else
Mike Frysingera2c67e92008-03-31 11:02:01 -0400135# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +0000136#endif
137
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200138#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000139
Simon Glass48d3ebc2019-08-01 09:47:11 -0600140/*
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 Grinberg8954e632011-11-07 01:13:55 +0000154typedef struct environment_s {
Mike Frysingera2c67e92008-03-31 11:02:01 -0400155 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200156#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glass4686d8f2019-08-01 09:47:08 -0600157 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +0000158#endif
159 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rini6b6ee8a2017-11-14 08:39:35 -0500160} env_t;
wdenkc6097192002-11-03 00:24:07 +0000161
Igor Grinberg23b54b92011-11-17 06:07:23 +0000162#ifdef ENV_IS_EMBEDDED
Simon Glass204eb222019-08-01 09:47:03 -0600163extern env_t embedded_environment;
Igor Grinberg23b54b92011-11-17 06:07:23 +0000164#endif /* ENV_IS_EMBEDDED */
165
Igor Grinberg6d67c732011-11-07 01:13:57 +0000166extern const unsigned char default_environment[];
Igor Grinberg3e773592011-11-07 01:14:11 +0000167
Mike Frysinger92d7a992010-12-08 06:26:04 -0500168#ifndef DO_DEPS_ONLY
169
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600170#include <env_attr.h>
171#include <env_callback.h>
Joe Hershberger71497d02012-12-11 22:16:31 -0600172#include <env_flags.h>
Mike Frysinger92d7a992010-12-08 06:26:04 -0500173#include <search.h>
174
Simon Glassc10a88e2017-08-03 12:21:58 -0600175enum env_location {
York Sun470947d2018-02-07 14:17:11 -0800176 ENVL_UNKNOWN,
Simon Glassc10a88e2017-08-03 12:21:58 -0600177 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 Glassc10a88e2017-08-03 12:21:58 -0600191};
192
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100193/* value for the various operations we want to perform on the env */
194enum 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 Wunderlich33afa932019-06-29 11:36:19 +0200199 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100200};
201
Simon Glassc10a88e2017-08-03 12:21:58 -0600202struct env_driver {
Simon Glassd8273ed2017-08-03 12:22:03 -0600203 const char *name;
Simon Glassc10a88e2017-08-03 12:21:58 -0600204 enum env_location location;
205
206 /**
Simon Glassc10a88e2017-08-03 12:21:58 -0600207 * load() - Load the environment from storage
208 *
209 * This method is optional. If not provided, no environment will be
210 * loaded.
Simon Glass99778492017-08-03 12:22:17 -0600211 *
212 * @return 0 if OK, -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600213 */
Simon Glass99778492017-08-03 12:22:17 -0600214 int (*load)(void);
Simon Glassc10a88e2017-08-03 12:21:58 -0600215
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 Wunderlich33afa932019-06-29 11:36:19 +0200226 * 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 Glassc10a88e2017-08-03 12:21:58 -0600235 * init() - Set up the initial pre-relocation environment
236 *
237 * This method is optional.
238 *
Simon Glassd40d8042017-08-03 12:22:02 -0600239 * @return 0 if OK, -ENOENT if no initial environment could be found,
240 * other -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600241 */
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 Glassd8273ed2017-08-03 12:22:03 -0600249/* 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 Glassc10a88e2017-08-03 12:21:58 -0600256#ifdef CONFIG_CMD_SAVEENV
257#define env_save_ptr(x) x
258#else
259#define env_save_ptr(x) NULL
260#endif
261
Mike Frysinger92d7a992010-12-08 06:26:04 -0500262extern struct hsearch_data env_htab;
263
Igor Grinberg8954e632011-11-07 01:13:55 +0000264#endif /* DO_DEPS_ONLY */
Mike Frysinger92d7a992010-12-08 06:26:04 -0500265
Simon Glass9d1f6192019-08-02 09:44:25 -0600266#endif /* _ENV_INTERNAL_H_ */