blob: d520e6a55b5c9fa38536894869f565352e2e0c18 [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
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-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 Grinberg8954e632011-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 Grinbergd766c512011-12-25 01:42:57 +000059# define ENV_IS_EMBEDDED
wdenkc6097192002-11-03 00:24:07 +000060# endif
Mike Frysinger9e800f42009-07-24 16:34:32 -040061# ifdef CONFIG_ENV_IS_EMBEDDED
62# error "do not define CONFIG_ENV_IS_EMBEDDED in your board config"
63# error "it is calculated automatically for you"
64# endif
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +020065#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkc6097192002-11-03 00:24:07 +000066
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020067#if defined(CONFIG_ENV_IS_IN_NAND)
Ben Gardiner5fc8b7f2010-07-05 13:27:07 -040068# if defined(CONFIG_ENV_OFFSET_OOB)
69# ifdef CONFIG_ENV_OFFSET_REDUND
70# error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB"
71# error "is set"
72# endif
73extern unsigned long nand_env_oob_offset;
74# define CONFIG_ENV_OFFSET nand_env_oob_offset
75# else
76# ifndef CONFIG_ENV_OFFSET
77# error "Need to define CONFIG_ENV_OFFSET when using CONFIG_ENV_IS_IN_NAND"
78# endif
Ben Gardiner5fc8b7f2010-07-05 13:27:07 -040079# endif /* CONFIG_ENV_OFFSET_OOB */
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +020080# ifndef CONFIG_ENV_SIZE
81# error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_NAND"
Markus Klotzbuecher5d113e02006-03-20 18:02:44 +010082# endif
Jean-Christophe PLAGNIOL-VILLARDdda84dd2008-09-10 22:47:58 +020083#endif /* CONFIG_ENV_IS_IN_NAND */
Markus Klotzbuecher5d113e02006-03-20 18:02:44 +010084
Joe Hershberger0c5faa82013-04-08 10:32:51 +000085#if defined(CONFIG_ENV_IS_IN_UBI)
86# ifndef CONFIG_ENV_UBI_PART
87# error "Need to define CONFIG_ENV_UBI_PART when using CONFIG_ENV_IS_IN_UBI"
88# endif
89# ifndef CONFIG_ENV_UBI_VOLUME
90# error "Need to define CONFIG_ENV_UBI_VOLUME when using CONFIG_ENV_IS_IN_UBI"
91# endif
92# ifndef CONFIG_ENV_SIZE
93# error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_UBI"
94# endif
95# ifndef CONFIG_CMD_UBI
96# error "Need to define CONFIG_CMD_UBI when using CONFIG_ENV_IS_IN_UBI"
97# endif
98#endif /* CONFIG_ENV_IS_IN_UBI */
99
Mike Frysinger9e800f42009-07-24 16:34:32 -0400100/* Embedded env is only supported for some flash types */
101#ifdef CONFIG_ENV_IS_EMBEDDED
Igor Grinberg8954e632011-11-07 01:13:55 +0000102# if !defined(CONFIG_ENV_IS_IN_FLASH) && \
103 !defined(CONFIG_ENV_IS_IN_NAND) && \
104 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
105 !defined(CONFIG_ENV_IS_IN_SPI_FLASH)
Mike Frysinger9e800f42009-07-24 16:34:32 -0400106# error "CONFIG_ENV_IS_EMBEDDED not supported for your flash type"
107# endif
108#endif
109
110/*
111 * For the flash types where embedded env is supported, but it cannot be
112 * calculated automatically (i.e. NAND), take the board opt-in.
113 */
114#if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED)
Igor Grinbergd766c512011-12-25 01:42:57 +0000115# define ENV_IS_EMBEDDED
Mike Frysinger9e800f42009-07-24 16:34:32 -0400116#endif
117
118/* The build system likes to know if the env is embedded */
119#ifdef DO_DEPS_ONLY
120# ifdef ENV_IS_EMBEDDED
Wolfgang Denk7728b742011-07-30 14:01:08 +0000121# ifndef CONFIG_ENV_IS_EMBEDDED
122# define CONFIG_ENV_IS_EMBEDDED
123# endif
Mike Frysinger9e800f42009-07-24 16:34:32 -0400124# endif
125#endif
126
Mike Frysinger4ad8e9f2009-07-02 19:23:25 -0400127#include "compiler.h"
wdenkc6097192002-11-03 00:24:07 +0000128
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysingera2c67e92008-03-31 11:02:01 -0400130# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenkc6097192002-11-03 00:24:07 +0000131#else
Mike Frysingera2c67e92008-03-31 11:02:01 -0400132# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenkc6097192002-11-03 00:24:07 +0000133#endif
134
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200135#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenkc6097192002-11-03 00:24:07 +0000136
Simon Glass48d3ebc2019-08-01 09:47:11 -0600137/*
138 * If the environment is in RAM, allocate extra space for it in the malloc
139 * region.
140 */
141#if defined(CONFIG_ENV_IS_EMBEDDED)
142#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
143#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
144 (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
145 defined(CONFIG_ENV_IS_IN_NVRAM)
146#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
147#else
148#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
149#endif
150
Igor Grinberg8954e632011-11-07 01:13:55 +0000151typedef struct environment_s {
Mike Frysingera2c67e92008-03-31 11:02:01 -0400152 uint32_t crc; /* CRC32 over data bytes */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200153#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Simon Glass4686d8f2019-08-01 09:47:08 -0600154 unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
wdenkc6097192002-11-03 00:24:07 +0000155#endif
156 unsigned char data[ENV_SIZE]; /* Environment data */
Tom Rini6b6ee8a2017-11-14 08:39:35 -0500157} env_t;
wdenkc6097192002-11-03 00:24:07 +0000158
Igor Grinberg23b54b92011-11-17 06:07:23 +0000159#ifdef ENV_IS_EMBEDDED
Simon Glass204eb222019-08-01 09:47:03 -0600160extern env_t embedded_environment;
Igor Grinberg23b54b92011-11-17 06:07:23 +0000161#endif /* ENV_IS_EMBEDDED */
162
Igor Grinberg6d67c732011-11-07 01:13:57 +0000163extern const unsigned char default_environment[];
Igor Grinberg3e773592011-11-07 01:14:11 +0000164
Mike Frysinger92d7a992010-12-08 06:26:04 -0500165#ifndef DO_DEPS_ONLY
166
Joe Hershberger60fd3ad2012-12-11 22:16:24 -0600167#include <env_attr.h>
168#include <env_callback.h>
Joe Hershberger71497d02012-12-11 22:16:31 -0600169#include <env_flags.h>
Mike Frysinger92d7a992010-12-08 06:26:04 -0500170#include <search.h>
171
Simon Glassc10a88e2017-08-03 12:21:58 -0600172enum env_location {
York Sun470947d2018-02-07 14:17:11 -0800173 ENVL_UNKNOWN,
Simon Glassc10a88e2017-08-03 12:21:58 -0600174 ENVL_EEPROM,
175 ENVL_EXT4,
176 ENVL_FAT,
177 ENVL_FLASH,
178 ENVL_MMC,
179 ENVL_NAND,
180 ENVL_NVRAM,
181 ENVL_ONENAND,
182 ENVL_REMOTE,
183 ENVL_SPI_FLASH,
184 ENVL_UBI,
185 ENVL_NOWHERE,
186
187 ENVL_COUNT,
Simon Glassc10a88e2017-08-03 12:21:58 -0600188};
189
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100190/* value for the various operations we want to perform on the env */
191enum env_operation {
192 ENVOP_GET_CHAR, /* we want to call the get_char function */
193 ENVOP_INIT, /* we want to call the init function */
194 ENVOP_LOAD, /* we want to call the load function */
195 ENVOP_SAVE, /* we want to call the save function */
Frank Wunderlich33afa932019-06-29 11:36:19 +0200196 ENVOP_ERASE, /* we want to call the erase function */
Maxime Ripardfd3158e2018-01-23 21:16:52 +0100197};
198
Simon Glassc10a88e2017-08-03 12:21:58 -0600199struct env_driver {
Simon Glassd8273ed2017-08-03 12:22:03 -0600200 const char *name;
Simon Glassc10a88e2017-08-03 12:21:58 -0600201 enum env_location location;
202
203 /**
Simon Glassc10a88e2017-08-03 12:21:58 -0600204 * load() - Load the environment from storage
205 *
206 * This method is optional. If not provided, no environment will be
207 * loaded.
Simon Glass99778492017-08-03 12:22:17 -0600208 *
209 * @return 0 if OK, -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600210 */
Simon Glass99778492017-08-03 12:22:17 -0600211 int (*load)(void);
Simon Glassc10a88e2017-08-03 12:21:58 -0600212
213 /**
214 * save() - Save the environment to storage
215 *
216 * This method is required for 'saveenv' to work.
217 *
218 * @return 0 if OK, -ve on error
219 */
220 int (*save)(void);
221
222 /**
Frank Wunderlich33afa932019-06-29 11:36:19 +0200223 * erase() - Erase the environment on storage
224 *
225 * This method is optional and required for 'eraseenv' to work.
226 *
227 * @return 0 if OK, -ve on error
228 */
229 int (*erase)(void);
230
231 /**
Simon Glassc10a88e2017-08-03 12:21:58 -0600232 * init() - Set up the initial pre-relocation environment
233 *
234 * This method is optional.
235 *
Simon Glassd40d8042017-08-03 12:22:02 -0600236 * @return 0 if OK, -ENOENT if no initial environment could be found,
237 * other -ve on error
Simon Glassc10a88e2017-08-03 12:21:58 -0600238 */
239 int (*init)(void);
240};
241
242/* Declare a new environment location driver */
243#define U_BOOT_ENV_LOCATION(__name) \
244 ll_entry_declare(struct env_driver, __name, env_driver)
245
Simon Glassd8273ed2017-08-03 12:22:03 -0600246/* Declare the name of a location */
247#ifdef CONFIG_CMD_SAVEENV
248#define ENV_NAME(_name) .name = _name,
249#else
250#define ENV_NAME(_name)
251#endif
252
Simon Glassc10a88e2017-08-03 12:21:58 -0600253#ifdef CONFIG_CMD_SAVEENV
254#define env_save_ptr(x) x
255#else
256#define env_save_ptr(x) NULL
257#endif
258
Mike Frysinger92d7a992010-12-08 06:26:04 -0500259extern struct hsearch_data env_htab;
260
Igor Grinberg8954e632011-11-07 01:13:55 +0000261#endif /* DO_DEPS_ONLY */
Mike Frysinger92d7a992010-12-08 06:26:04 -0500262
Simon Glass9d1f6192019-08-02 09:44:25 -0600263#endif /* _ENV_INTERNAL_H_ */