2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2001
|
|
|
|
* Erik Theisen, Wave 7 Optics, etheisen@mindspring.com.
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
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__
|
2002-11-03 00:24:07 +00:00
|
|
|
#include <environment.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
|
|
|
/*
|
|
|
|
* Only put the environment in it's own section when we are building
|
|
|
|
* U-Boot proper. The host based program "tools/envcrc" does not need
|
|
|
|
* a seperate section. Note that ENV_CRC is only defined when building
|
|
|
|
* U-Boot itself.
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
#if (defined(CONFIG_SYS_USE_PPCENV) || defined(CONFIG_NAND_U_BOOT)) && \
|
2011-11-07 01:14:06 +00:00
|
|
|
defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
|
2002-11-03 00:24:07 +00:00
|
|
|
/* XXX - This only works with GNU C */
|
2011-11-07 01:14:06 +00:00
|
|
|
# define __PPCENV__ __attribute__ ((section(".ppcenv")))
|
|
|
|
# define __PPCTEXT__ __attribute__ ((section(".text")))
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
|
2011-11-07 01:14:06 +00:00
|
|
|
# define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
|
|
|
|
# define __PPCTEXT__ /*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 */
|
2011-11-07 01:14:06 +00:00
|
|
|
# define __PPCENV__ __attribute__ ((section(".text")))
|
|
|
|
# define __PPCTEXT__ __attribute__ ((section(".text")))
|
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
|
2002-11-03 00:24:07 +00:00
|
|
|
env_t redundand_environment __PPCENV__ = {
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
unsigned long env_size __PPCTEXT__ = sizeof(env_t);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add in absolutes.
|
|
|
|
*/
|
2008-09-10 20:48:06 +00:00
|
|
|
GEN_ABS(env_offset, CONFIG_ENV_OFFSET);
|
2009-10-26 23:03:32 +00:00
|
|
|
|
|
|
|
#endif /* ENV_IS_EMBEDDED */
|