2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
2019-08-02 15:44:25 +00:00
|
|
|
* Internal environment header file. This includes direct access to environment
|
|
|
|
* information such as its size and offset, direct access to the default
|
|
|
|
* environment and embedded environment (if used). It also provides environment
|
|
|
|
* drivers with various declarations.
|
|
|
|
*
|
|
|
|
* It should not be included by board files, drivers and code other than that
|
|
|
|
* related to the environment implementation.
|
|
|
|
*
|
2002-11-03 00:24:07 +00:00
|
|
|
* (C) Copyright 2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
2019-08-02 15:44:25 +00:00
|
|
|
#ifndef _ENV_INTERNAL_H_
|
|
|
|
#define _ENV_INTERNAL_H_
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2017-02-27 17:22:03 +00:00
|
|
|
#include <linux/kconfig.h>
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* The "environment" is stored as a list of '\0' terminated
|
|
|
|
* "name=value" strings. The end of the list is marked by a double
|
|
|
|
* '\0'. New entries are always added at the end. Deleting an entry
|
|
|
|
* shifts the remaining entries to the front. Replacing an entry is a
|
|
|
|
* combination of deleting the old value and adding the new one.
|
|
|
|
*
|
2016-09-07 18:27:59 +00:00
|
|
|
* The environment is preceded by a 32 bit CRC over the data part.
|
2002-11-03 00:24:07 +00:00
|
|
|
*
|
2016-09-07 18:27:59 +00:00
|
|
|
*************************************************************************/
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2008-09-10 20:48:04 +00:00
|
|
|
#if defined(CONFIG_ENV_IS_IN_FLASH)
|
2019-11-19 01:02:07 +00:00
|
|
|
# if defined(CONFIG_ENV_ADDR_REDUND) && \
|
|
|
|
((CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
|
|
|
|
(CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SIZE) <= \
|
|
|
|
(CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
|
|
|
|
# define ENV_IS_EMBEDDED
|
2002-11-03 00:24:07 +00:00
|
|
|
# endif
|
2011-11-07 01:13:55 +00:00
|
|
|
# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
|
|
|
|
(CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= \
|
|
|
|
(CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
|
2011-12-25 01:42:57 +00:00
|
|
|
# define ENV_IS_EMBEDDED
|
2002-11-03 00:24:07 +00:00
|
|
|
# endif
|
2009-07-24 20:34:32 +00:00
|
|
|
# ifdef CONFIG_ENV_IS_EMBEDDED
|
|
|
|
# error "do not define CONFIG_ENV_IS_EMBEDDED in your board config"
|
|
|
|
# error "it is calculated automatically for you"
|
|
|
|
# endif
|
2008-09-10 20:48:04 +00:00
|
|
|
#endif /* CONFIG_ENV_IS_IN_FLASH */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2008-09-10 20:47:58 +00:00
|
|
|
#if defined(CONFIG_ENV_IS_IN_NAND)
|
2010-07-05 17:27:07 +00:00
|
|
|
# if defined(CONFIG_ENV_OFFSET_OOB)
|
|
|
|
# ifdef CONFIG_ENV_OFFSET_REDUND
|
|
|
|
# error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB"
|
|
|
|
# error "is set"
|
|
|
|
# endif
|
|
|
|
extern unsigned long nand_env_oob_offset;
|
|
|
|
# define CONFIG_ENV_OFFSET nand_env_oob_offset
|
|
|
|
# endif /* CONFIG_ENV_OFFSET_OOB */
|
2008-09-10 20:47:58 +00:00
|
|
|
#endif /* CONFIG_ENV_IS_IN_NAND */
|
2006-03-20 17:02:44 +00:00
|
|
|
|
2009-07-24 20:34:32 +00:00
|
|
|
/*
|
|
|
|
* For the flash types where embedded env is supported, but it cannot be
|
|
|
|
* calculated automatically (i.e. NAND), take the board opt-in.
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_ENV_IS_EMBEDDED) && !defined(ENV_IS_EMBEDDED)
|
2011-12-25 01:42:57 +00:00
|
|
|
# define ENV_IS_EMBEDDED
|
2009-07-24 20:34:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The build system likes to know if the env is embedded */
|
|
|
|
#ifdef DO_DEPS_ONLY
|
|
|
|
# ifdef ENV_IS_EMBEDDED
|
2011-07-30 14:01:08 +00:00
|
|
|
# ifndef CONFIG_ENV_IS_EMBEDDED
|
|
|
|
# define CONFIG_ENV_IS_EMBEDDED
|
|
|
|
# endif
|
2009-07-24 20:34:32 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-07-02 23:23:25 +00:00
|
|
|
#include "compiler.h"
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
|
2008-03-31 15:02:01 +00:00
|
|
|
# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
|
2002-11-03 00:24:07 +00:00
|
|
|
#else
|
2008-03-31 15:02:01 +00:00
|
|
|
# define ENV_HEADER_SIZE (sizeof(uint32_t))
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
|
2008-09-10 20:48:06 +00:00
|
|
|
#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2019-08-01 15:47:11 +00:00
|
|
|
/*
|
|
|
|
* If the environment is in RAM, allocate extra space for it in the malloc
|
|
|
|
* region.
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_ENV_IS_EMBEDDED)
|
|
|
|
#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
|
|
|
|
#elif (CONFIG_ENV_ADDR + CONFIG_ENV_SIZE < CONFIG_SYS_MONITOR_BASE) || \
|
|
|
|
(CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN) || \
|
|
|
|
defined(CONFIG_ENV_IS_IN_NVRAM)
|
|
|
|
#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
|
|
|
|
#else
|
|
|
|
#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
|
|
|
|
#endif
|
|
|
|
|
2011-11-07 01:13:55 +00:00
|
|
|
typedef struct environment_s {
|
2008-03-31 15:02:01 +00:00
|
|
|
uint32_t crc; /* CRC32 over data bytes */
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
|
2019-08-01 15:47:08 +00:00
|
|
|
unsigned char flags; /* active/obsolete flags ENVF_REDUND_ */
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
unsigned char data[ENV_SIZE]; /* Environment data */
|
2017-11-14 13:39:35 +00:00
|
|
|
} env_t;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2011-11-17 06:07:23 +00:00
|
|
|
#ifdef ENV_IS_EMBEDDED
|
2019-08-01 15:47:03 +00:00
|
|
|
extern env_t embedded_environment;
|
2011-11-17 06:07:23 +00:00
|
|
|
#endif /* ENV_IS_EMBEDDED */
|
|
|
|
|
2020-12-23 11:21:28 +00:00
|
|
|
#ifdef DEFAULT_ENV_IS_RW
|
|
|
|
extern unsigned char default_environment[];
|
|
|
|
#else
|
2011-11-07 01:13:57 +00:00
|
|
|
extern const unsigned char default_environment[];
|
2020-12-23 11:21:28 +00:00
|
|
|
#endif
|
2011-11-07 01:14:11 +00:00
|
|
|
|
2010-12-08 11:26:04 +00:00
|
|
|
#ifndef DO_DEPS_ONLY
|
|
|
|
|
2012-12-12 04:16:24 +00:00
|
|
|
#include <env_attr.h>
|
|
|
|
#include <env_callback.h>
|
2012-12-12 04:16:31 +00:00
|
|
|
#include <env_flags.h>
|
2010-12-08 11:26:04 +00:00
|
|
|
#include <search.h>
|
|
|
|
|
2017-08-03 18:21:58 +00:00
|
|
|
enum env_location {
|
2018-02-07 22:17:11 +00:00
|
|
|
ENVL_UNKNOWN,
|
2017-08-03 18:21:58 +00:00
|
|
|
ENVL_EEPROM,
|
|
|
|
ENVL_EXT4,
|
|
|
|
ENVL_FAT,
|
|
|
|
ENVL_FLASH,
|
|
|
|
ENVL_MMC,
|
|
|
|
ENVL_NAND,
|
|
|
|
ENVL_NVRAM,
|
|
|
|
ENVL_ONENAND,
|
|
|
|
ENVL_REMOTE,
|
|
|
|
ENVL_SPI_FLASH,
|
|
|
|
ENVL_UBI,
|
|
|
|
ENVL_NOWHERE,
|
|
|
|
|
|
|
|
ENVL_COUNT,
|
|
|
|
};
|
|
|
|
|
2018-01-23 20:16:52 +00:00
|
|
|
/* value for the various operations we want to perform on the env */
|
|
|
|
enum env_operation {
|
|
|
|
ENVOP_GET_CHAR, /* we want to call the get_char function */
|
|
|
|
ENVOP_INIT, /* we want to call the init function */
|
|
|
|
ENVOP_LOAD, /* we want to call the load function */
|
|
|
|
ENVOP_SAVE, /* we want to call the save function */
|
2019-06-29 09:36:19 +00:00
|
|
|
ENVOP_ERASE, /* we want to call the erase function */
|
2018-01-23 20:16:52 +00:00
|
|
|
};
|
|
|
|
|
2017-08-03 18:21:58 +00:00
|
|
|
struct env_driver {
|
2017-08-03 18:22:03 +00:00
|
|
|
const char *name;
|
2017-08-03 18:21:58 +00:00
|
|
|
enum env_location location;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* load() - Load the environment from storage
|
|
|
|
*
|
2020-07-28 09:51:19 +00:00
|
|
|
* This method is required for loading environment
|
2017-08-03 18:22:17 +00:00
|
|
|
*
|
|
|
|
* @return 0 if OK, -ve on error
|
2017-08-03 18:21:58 +00:00
|
|
|
*/
|
2017-08-03 18:22:17 +00:00
|
|
|
int (*load)(void);
|
2017-08-03 18:21:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* save() - Save the environment to storage
|
|
|
|
*
|
|
|
|
* This method is required for 'saveenv' to work.
|
|
|
|
*
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int (*save)(void);
|
|
|
|
|
2019-06-29 09:36:19 +00:00
|
|
|
/**
|
|
|
|
* erase() - Erase the environment on storage
|
|
|
|
*
|
|
|
|
* This method is optional and required for 'eraseenv' to work.
|
|
|
|
*
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
|
|
|
int (*erase)(void);
|
|
|
|
|
2017-08-03 18:21:58 +00:00
|
|
|
/**
|
|
|
|
* init() - Set up the initial pre-relocation environment
|
|
|
|
*
|
|
|
|
* This method is optional.
|
|
|
|
*
|
2017-08-03 18:22:02 +00:00
|
|
|
* @return 0 if OK, -ENOENT if no initial environment could be found,
|
|
|
|
* other -ve on error
|
2017-08-03 18:21:58 +00:00
|
|
|
*/
|
|
|
|
int (*init)(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Declare a new environment location driver */
|
|
|
|
#define U_BOOT_ENV_LOCATION(__name) \
|
|
|
|
ll_entry_declare(struct env_driver, __name, env_driver)
|
|
|
|
|
2017-08-03 18:22:03 +00:00
|
|
|
/* Declare the name of a location */
|
|
|
|
#ifdef CONFIG_CMD_SAVEENV
|
|
|
|
#define ENV_NAME(_name) .name = _name,
|
|
|
|
#else
|
|
|
|
#define ENV_NAME(_name)
|
|
|
|
#endif
|
|
|
|
|
2017-08-03 18:21:58 +00:00
|
|
|
#ifdef CONFIG_CMD_SAVEENV
|
|
|
|
#define env_save_ptr(x) x
|
|
|
|
#else
|
|
|
|
#define env_save_ptr(x) NULL
|
|
|
|
#endif
|
|
|
|
|
2020-02-19 09:47:40 +00:00
|
|
|
#define ENV_SAVE_PTR(x) (CONFIG_IS_ENABLED(SAVEENV) ? (x) : NULL)
|
2021-02-09 10:48:50 +00:00
|
|
|
#define ENV_ERASE_PTR(x) (CONFIG_IS_ENABLED(CMD_ERASEENV) ? (x) : NULL)
|
2020-02-19 09:47:40 +00:00
|
|
|
|
2010-12-08 11:26:04 +00:00
|
|
|
extern struct hsearch_data env_htab;
|
|
|
|
|
2020-06-15 14:52:17 +00:00
|
|
|
/**
|
|
|
|
* env_ext4_get_intf() - Provide the interface for env in EXT4
|
|
|
|
*
|
|
|
|
* It is a weak function allowing board to overidde the default interface for
|
|
|
|
* U-Boot env in EXT4: CONFIG_ENV_EXT4_INTERFACE
|
|
|
|
*
|
|
|
|
* @return string of interface, empty if not supported
|
|
|
|
*/
|
|
|
|
const char *env_ext4_get_intf(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* env_ext4_get_dev_part() - Provide the device and partition for env in EXT4
|
|
|
|
*
|
|
|
|
* It is a weak function allowing board to overidde the default device and
|
|
|
|
* partition used for U-Boot env in EXT4: CONFIG_ENV_EXT4_DEVICE_AND_PART
|
|
|
|
*
|
|
|
|
* @return string of device and partition
|
|
|
|
*/
|
|
|
|
const char *env_ext4_get_dev_part(void);
|
|
|
|
|
2020-06-19 12:03:35 +00:00
|
|
|
/**
|
|
|
|
* env_get_location()- Provide the best location for the U-Boot environment
|
|
|
|
*
|
|
|
|
* It is a weak function allowing board to overidde the environment location
|
|
|
|
*
|
|
|
|
* @op: operations performed on the environment
|
|
|
|
* @prio: priority between the multiple environments, 0 being the
|
|
|
|
* highest priority
|
|
|
|
* @return an enum env_location value on success, or -ve error code.
|
|
|
|
*/
|
|
|
|
enum env_location env_get_location(enum env_operation op, int prio);
|
2011-11-07 01:13:55 +00:00
|
|
|
#endif /* DO_DEPS_ONLY */
|
2010-12-08 11:26:04 +00:00
|
|
|
|
2019-08-02 15:44:25 +00:00
|
|
|
#endif /* _ENV_INTERNAL_H_ */
|