3 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
25 #define __ASSEMBLY__ /* Dirty trick to get only #defines */
27 #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
30 #include <environment.h>
33 * Handle HOSTS that have prepended
34 * crap on symbol names, not TARGETS.
36 #if defined(__APPLE__)
37 /* Leading underscore on symbols */
39 #else /* No leading character on symbols */
44 * Generate embedded environment table
45 * inside U-Boot image, if needed.
47 #if defined(ENV_IS_EMBEDDED)
49 * Only put the environment in it's own section when we are building
50 * U-Boot proper. The host based program "tools/envcrc" does not need
51 * a seperate section. Note that ENV_CRC is only defined when building
54 #if (defined(CONFIG_CMI) || \
55 defined(CONFIG_FADS) || \
56 defined(CONFIG_HYMOD) || \
57 defined(CONFIG_ICU862) || \
58 defined(CONFIG_R360MPI) || \
59 defined(CONFIG_TQM8xxL) || \
60 defined(CONFIG_RRVISION) || \
61 defined(CONFIG_TRAB) || \
62 defined(CONFIG_PPCHAMELEONEVB) ) && \
63 defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
64 /* XXX - This only works with GNU C */
65 # define __PPCENV__ __attribute__ ((section(".ppcenv")))
66 # define __PPCTEXT__ __attribute__ ((section(".text")))
68 #elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
69 # define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
70 # define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
72 #else /* Environment is embedded in U-Boot's .text section */
73 /* XXX - This only works with GNU C */
74 # define __PPCENV__ __attribute__ ((section(".text")))
75 # define __PPCTEXT__ __attribute__ ((section(".text")))
79 * Macros to generate global absolutes.
81 #define GEN_SYMNAME(str) SYM_CHAR #str
82 #define GEN_VALUE(str) #str
83 #define GEN_ABS(name, value) \
84 asm (".globl " GEN_SYMNAME(name)); \
85 asm (GEN_SYMNAME(name) " = " GEN_VALUE(value))
88 * Macros to transform values
89 * into environment strings.
92 #define MK_STR(x) XMK_STR(x)
95 * Check to see if we are building with a
96 * computed CRC. Otherwise define it as ~0.
102 env_t environment __PPCENV__ = {
103 ENV_CRC, /* CRC Sum */
104 #ifdef CFG_REDUNDAND_ENVIRONMENT
105 1, /* Flags: valid */
108 #if defined(CONFIG_BOOTARGS)
109 "bootargs=" CONFIG_BOOTARGS "\0"
111 #if defined(CONFIG_BOOTCOMMAND)
112 "bootcmd=" CONFIG_BOOTCOMMAND "\0"
114 #if defined(CONFIG_RAMBOOTCOMMAND)
115 "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
117 #if defined(CONFIG_NFSBOOTCOMMAND)
118 "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
120 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
121 "bootdelay=" MK_STR(CONFIG_BOOTDELAY) "\0"
123 #if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
124 "baudrate=" MK_STR(CONFIG_BAUDRATE) "\0"
126 #ifdef CONFIG_LOADS_ECHO
127 "loads_echo=" MK_STR(CONFIG_LOADS_ECHO) "\0"
129 #ifdef CONFIG_ETHADDR
130 "ethaddr=" MK_STR(CONFIG_ETHADDR) "\0"
132 #ifdef CONFIG_ETH1ADDR
133 "eth1addr=" MK_STR(CONFIG_ETH1ADDR) "\0"
135 #ifdef CONFIG_ETH2ADDR
136 "eth2addr=" MK_STR(CONFIG_ETH2ADDR) "\0"
138 #ifdef CONFIG_ETH3ADDR
139 "eth3addr=" MK_STR(CONFIG_ETH3ADDR) "\0"
141 #ifdef CONFIG_ETHPRIME
142 "ethprime=" CONFIG_ETHPRIME "\0"
145 "ipaddr=" MK_STR(CONFIG_IPADDR) "\0"
147 #ifdef CONFIG_SERVERIP
148 "serverip=" MK_STR(CONFIG_SERVERIP) "\0"
151 "autoload=" CFG_AUTOLOAD "\0"
153 #ifdef CONFIG_ROOTPATH
154 "rootpath=" MK_STR(CONFIG_ROOTPATH) "\0"
156 #ifdef CONFIG_GATEWAYIP
157 "gatewayip=" MK_STR(CONFIG_GATEWAYIP) "\0"
159 #ifdef CONFIG_NETMASK
160 "netmask=" MK_STR(CONFIG_NETMASK) "\0"
162 #ifdef CONFIG_HOSTNAME
163 "hostname=" MK_STR(CONFIG_HOSTNAME) "\0"
165 #ifdef CONFIG_BOOTFILE
166 "bootfile=" MK_STR(CONFIG_BOOTFILE) "\0"
168 #ifdef CONFIG_LOADADDR
169 "loadaddr=" MK_STR(CONFIG_LOADADDR) "\0"
171 #ifdef CONFIG_PREBOOT
172 "preboot=" CONFIG_PREBOOT "\0"
174 #ifdef CONFIG_CLOCKS_IN_MHZ
175 "clocks_in_mhz=" "1" "\0"
177 #if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
178 "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0"
180 #ifdef CONFIG_EXTRA_ENV_SETTINGS
181 CONFIG_EXTRA_ENV_SETTINGS
183 "\0" /* Term. env_t.data with 2 NULs */
186 #ifdef CFG_ENV_ADDR_REDUND
187 env_t redundand_environment __PPCENV__ = {
188 0, /* CRC Sum: invalid */
189 0, /* Flags: invalid */
194 #endif /* CFG_ENV_ADDR_REDUND */
197 * These will end up in the .text section
198 * if the environment strings are embedded
199 * in the image. When this is used for
200 * tools/envcrc, they are placed in the
201 * .data/.sdata section.
204 unsigned long env_size __PPCTEXT__ = sizeof(env_t);
209 GEN_ABS(env_offset, CFG_ENV_OFFSET);
211 #endif /* ENV_IS_EMBEDDED */