2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2001
|
|
|
|
* Erik Theisen, Wave 7 Optics, etheisen@mindspring.com.
|
|
|
|
*/
|
|
|
|
|
2016-11-16 01:02:31 +00:00
|
|
|
#include <linux/kconfig.h>
|
|
|
|
|
2005-08-03 20:32:02 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2011-11-07 01:14:06 +00:00
|
|
|
#define __ASSEMBLY__ /* Dirty trick to get only #defines */
|
2005-08-03 20:32:02 +00:00
|
|
|
#endif
|
2011-11-07 01:14:06 +00:00
|
|
|
#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
|
2002-11-03 00:24:07 +00:00
|
|
|
#include <config.h>
|
2005-08-03 20:32:02 +00:00
|
|
|
#undef __ASSEMBLY__
|
2019-08-02 15:44:25 +00:00
|
|
|
#include <env_internal.h>
|
2012-09-23 15:41:24 +00:00
|
|
|
#include <linux/stringify.h>
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2011-11-07 01:14:06 +00:00
|
|
|
/* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */
|
2002-11-03 00:24:07 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
/* Leading underscore on symbols */
|
|
|
|
# define SYM_CHAR "_"
|
|
|
|
#else /* No leading character on symbols */
|
|
|
|
# define SYM_CHAR
|
|
|
|
#endif
|
|
|
|
|
2009-10-26 23:03:32 +00:00
|
|
|
/*
|
|
|
|
* Generate embedded environment table
|
|
|
|
* inside U-Boot image, if needed.
|
|
|
|
*/
|
2011-07-08 10:44:25 +00:00
|
|
|
#if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC)
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
2017-07-28 21:46:37 +00:00
|
|
|
* Put the environment in the .text section when we are building
|
2002-11-03 00:24:07 +00:00
|
|
|
* U-Boot proper. The host based program "tools/envcrc" does not need
|
2017-07-28 21:46:37 +00:00
|
|
|
* a seperate section.
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
2017-07-28 21:46:37 +00:00
|
|
|
#if defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
|
2018-03-16 16:20:53 +00:00
|
|
|
# define __UBOOT_ENV_SECTION__(name) /*XXX DO_NOT_DEL_THIS_COMMENT*/
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#else /* Environment is embedded in U-Boot's .text section */
|
|
|
|
/* XXX - This only works with GNU C */
|
2018-03-16 16:20:53 +00:00
|
|
|
# define __UBOOT_ENV_SECTION__(name) __attribute__ ((section(".text."#name)))
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros to generate global absolutes.
|
|
|
|
*/
|
2008-02-05 00:26:54 +00:00
|
|
|
#if defined(__bfin__)
|
2011-11-07 01:14:06 +00:00
|
|
|
# define GEN_SET_VALUE(name, value) \
|
|
|
|
asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value))
|
2008-02-05 00:26:54 +00:00
|
|
|
#else
|
2011-11-07 01:14:06 +00:00
|
|
|
# define GEN_SET_VALUE(name, value) \
|
|
|
|
asm(GEN_SYMNAME(name) " = " GEN_VALUE(value))
|
|
|
|
#endif
|
|
|
|
#define GEN_SYMNAME(str) SYM_CHAR #str
|
|
|
|
#define GEN_VALUE(str) #str
|
|
|
|
#define GEN_ABS(name, value) \
|
|
|
|
asm(".globl " GEN_SYMNAME(name)); \
|
|
|
|
GEN_SET_VALUE(name, value)
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see if we are building with a
|
|
|
|
* computed CRC. Otherwise define it as ~0.
|
|
|
|
*/
|
|
|
|
#if !defined(ENV_CRC)
|
2011-11-07 01:14:06 +00:00
|
|
|
# define ENV_CRC (~0)
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
|
2012-10-12 08:48:51 +00:00
|
|
|
#define DEFAULT_ENV_INSTANCE_EMBEDDED
|
|
|
|
#include <env_default.h>
|
|
|
|
|
2008-09-10 20:48:06 +00:00
|
|
|
#ifdef CONFIG_ENV_ADDR_REDUND
|
2018-03-16 16:20:53 +00:00
|
|
|
env_t redundand_environment __UBOOT_ENV_SECTION__(redundand_environment) = {
|
2002-11-03 00:24:07 +00:00
|
|
|
0, /* CRC Sum: invalid */
|
|
|
|
0, /* Flags: invalid */
|
|
|
|
{
|
|
|
|
"\0"
|
|
|
|
}
|
|
|
|
};
|
2008-09-10 20:48:06 +00:00
|
|
|
#endif /* CONFIG_ENV_ADDR_REDUND */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These will end up in the .text section
|
|
|
|
* if the environment strings are embedded
|
|
|
|
* in the image. When this is used for
|
|
|
|
* tools/envcrc, they are placed in the
|
|
|
|
* .data/.sdata section.
|
|
|
|
*
|
|
|
|
*/
|
2018-03-16 16:20:53 +00:00
|
|
|
unsigned long env_size __UBOOT_ENV_SECTION__(env_size) = sizeof(env_t);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add in absolutes.
|
|
|
|
*/
|
2019-11-19 01:02:10 +00:00
|
|
|
GEN_ABS(env_offset, (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE));
|
2009-10-26 23:03:32 +00:00
|
|
|
|
|
|
|
#endif /* ENV_IS_EMBEDDED */
|