wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 8 | #ifndef __ASSEMBLY__ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 9 | #define __ASSEMBLY__ /* Dirty trick to get only #defines */ |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 10 | #endif |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 11 | #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | #include <config.h> |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 13 | #undef __ASSEMBLY__ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 14 | #include <environment.h> |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 15 | #include <linux/stringify.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 17 | /* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 18 | #if defined(__APPLE__) |
| 19 | /* Leading underscore on symbols */ |
| 20 | # define SYM_CHAR "_" |
| 21 | #else /* No leading character on symbols */ |
| 22 | # define SYM_CHAR |
| 23 | #endif |
| 24 | |
| 25 | /* |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 26 | * Generate embedded environment table |
| 27 | * inside U-Boot image, if needed. |
| 28 | */ |
Mike Frysinger | c3eb3fe | 2011-07-08 10:44:25 +0000 | [diff] [blame] | 29 | #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC) |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 30 | /* |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 31 | * Only put the environment in it's own section when we are building |
| 32 | * U-Boot proper. The host based program "tools/envcrc" does not need |
| 33 | * a seperate section. Note that ENV_CRC is only defined when building |
| 34 | * U-Boot itself. |
| 35 | */ |
Masahiro Yamada | 66948c2 | 2014-06-04 10:26:53 +0900 | [diff] [blame] | 36 | #if defined(CONFIG_SYS_USE_PPCENV) && \ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 37 | defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 38 | /* XXX - This only works with GNU C */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 39 | # define __PPCENV__ __attribute__ ((section(".ppcenv"))) |
| 40 | # define __PPCTEXT__ __attribute__ ((section(".text"))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 41 | |
| 42 | #elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 43 | # define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/ |
| 44 | # define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 45 | |
| 46 | #else /* Environment is embedded in U-Boot's .text section */ |
| 47 | /* XXX - This only works with GNU C */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 48 | # define __PPCENV__ __attribute__ ((section(".text"))) |
| 49 | # define __PPCTEXT__ __attribute__ ((section(".text"))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 50 | #endif |
| 51 | |
| 52 | /* |
| 53 | * Macros to generate global absolutes. |
| 54 | */ |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 55 | #if defined(__bfin__) |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 56 | # define GEN_SET_VALUE(name, value) \ |
| 57 | asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value)) |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 58 | #else |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 59 | # define GEN_SET_VALUE(name, value) \ |
| 60 | asm(GEN_SYMNAME(name) " = " GEN_VALUE(value)) |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 61 | #endif |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 62 | #define GEN_SYMNAME(str) SYM_CHAR #str |
| 63 | #define GEN_VALUE(str) #str |
| 64 | #define GEN_ABS(name, value) \ |
| 65 | asm(".globl " GEN_SYMNAME(name)); \ |
| 66 | GEN_SET_VALUE(name, value) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 67 | |
| 68 | /* |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 69 | * Check to see if we are building with a |
| 70 | * computed CRC. Otherwise define it as ~0. |
| 71 | */ |
| 72 | #if !defined(ENV_CRC) |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 73 | # define ENV_CRC (~0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 74 | #endif |
| 75 | |
Joe Hershberger | ddd8418 | 2012-10-12 08:48:51 +0000 | [diff] [blame] | 76 | #define DEFAULT_ENV_INSTANCE_EMBEDDED |
| 77 | #include <env_default.h> |
| 78 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 79 | #ifdef CONFIG_ENV_ADDR_REDUND |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 80 | env_t redundand_environment __PPCENV__ = { |
| 81 | 0, /* CRC Sum: invalid */ |
| 82 | 0, /* Flags: invalid */ |
| 83 | { |
| 84 | "\0" |
| 85 | } |
| 86 | }; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 87 | #endif /* CONFIG_ENV_ADDR_REDUND */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * These will end up in the .text section |
| 91 | * if the environment strings are embedded |
| 92 | * in the image. When this is used for |
| 93 | * tools/envcrc, they are placed in the |
| 94 | * .data/.sdata section. |
| 95 | * |
| 96 | */ |
| 97 | unsigned long env_size __PPCTEXT__ = sizeof(env_t); |
| 98 | |
| 99 | /* |
| 100 | * Add in absolutes. |
| 101 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 102 | GEN_ABS(env_offset, CONFIG_ENV_OFFSET); |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 103 | |
| 104 | #endif /* ENV_IS_EMBEDDED */ |