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 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 24 | #ifndef __ASSEMBLY__ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 25 | #define __ASSEMBLY__ /* Dirty trick to get only #defines */ |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 26 | #endif |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 27 | #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 28 | #include <config.h> |
Wolfgang Denk | dc17fb6 | 2005-08-03 22:32:02 +0200 | [diff] [blame] | 29 | #undef __ASSEMBLY__ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 30 | #include <environment.h> |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 31 | #include <linux/stringify.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 32 | |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 33 | /* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 34 | #if defined(__APPLE__) |
| 35 | /* Leading underscore on symbols */ |
| 36 | # define SYM_CHAR "_" |
| 37 | #else /* No leading character on symbols */ |
| 38 | # define SYM_CHAR |
| 39 | #endif |
| 40 | |
| 41 | /* |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 42 | * Generate embedded environment table |
| 43 | * inside U-Boot image, if needed. |
| 44 | */ |
Mike Frysinger | c3eb3fe | 2011-07-08 10:44:25 +0000 | [diff] [blame] | 45 | #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC) |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 46 | /* |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 47 | * Only put the environment in it's own section when we are building |
| 48 | * U-Boot proper. The host based program "tools/envcrc" does not need |
| 49 | * a seperate section. Note that ENV_CRC is only defined when building |
| 50 | * U-Boot itself. |
| 51 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #if (defined(CONFIG_SYS_USE_PPCENV) || defined(CONFIG_NAND_U_BOOT)) && \ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 53 | defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | /* XXX - This only works with GNU C */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 55 | # define __PPCENV__ __attribute__ ((section(".ppcenv"))) |
| 56 | # define __PPCTEXT__ __attribute__ ((section(".text"))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 57 | |
| 58 | #elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 59 | # define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/ |
| 60 | # define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 61 | |
| 62 | #else /* Environment is embedded in U-Boot's .text section */ |
| 63 | /* XXX - This only works with GNU C */ |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 64 | # define __PPCENV__ __attribute__ ((section(".text"))) |
| 65 | # define __PPCTEXT__ __attribute__ ((section(".text"))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 66 | #endif |
| 67 | |
| 68 | /* |
| 69 | * Macros to generate global absolutes. |
| 70 | */ |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 71 | #if defined(__bfin__) |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 72 | # define GEN_SET_VALUE(name, value) \ |
| 73 | asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value)) |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 74 | #else |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 75 | # define GEN_SET_VALUE(name, value) \ |
| 76 | asm(GEN_SYMNAME(name) " = " GEN_VALUE(value)) |
Mike Frysinger | 4087bc8 | 2008-02-04 19:26:54 -0500 | [diff] [blame] | 77 | #endif |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 78 | #define GEN_SYMNAME(str) SYM_CHAR #str |
| 79 | #define GEN_VALUE(str) #str |
| 80 | #define GEN_ABS(name, value) \ |
| 81 | asm(".globl " GEN_SYMNAME(name)); \ |
| 82 | GEN_SET_VALUE(name, value) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 83 | |
| 84 | /* |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 85 | * Check to see if we are building with a |
| 86 | * computed CRC. Otherwise define it as ~0. |
| 87 | */ |
| 88 | #if !defined(ENV_CRC) |
Igor Grinberg | bd2a23a | 2011-11-07 01:14:06 +0000 | [diff] [blame] | 89 | # define ENV_CRC (~0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 90 | #endif |
| 91 | |
Joe Hershberger | ddd8418 | 2012-10-12 08:48:51 +0000 | [diff] [blame] | 92 | #define DEFAULT_ENV_INSTANCE_EMBEDDED |
| 93 | #include <env_default.h> |
| 94 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 95 | #ifdef CONFIG_ENV_ADDR_REDUND |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 96 | env_t redundand_environment __PPCENV__ = { |
| 97 | 0, /* CRC Sum: invalid */ |
| 98 | 0, /* Flags: invalid */ |
| 99 | { |
| 100 | "\0" |
| 101 | } |
| 102 | }; |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 103 | #endif /* CONFIG_ENV_ADDR_REDUND */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 104 | |
| 105 | /* |
| 106 | * These will end up in the .text section |
| 107 | * if the environment strings are embedded |
| 108 | * in the image. When this is used for |
| 109 | * tools/envcrc, they are placed in the |
| 110 | * .data/.sdata section. |
| 111 | * |
| 112 | */ |
| 113 | unsigned long env_size __PPCTEXT__ = sizeof(env_t); |
| 114 | |
| 115 | /* |
| 116 | * Add in absolutes. |
| 117 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 118 | GEN_ABS(env_offset, CONFIG_ENV_OFFSET); |
Wolfgang Denk | a747a7f | 2009-10-27 00:03:32 +0100 | [diff] [blame] | 119 | |
| 120 | #endif /* ENV_IS_EMBEDDED */ |