blob: 61a8d245f9e9bff8aa17857142cced243c0f5137 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
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
24#include <config.h>
25#include <environment.h>
26
27/*
28 * Handle HOSTS that have prepended
29 * crap on symbol names, not TARGETS.
30 */
31#if defined(__APPLE__)
32/* Leading underscore on symbols */
33# define SYM_CHAR "_"
34#else /* No leading character on symbols */
35# define SYM_CHAR
36#endif
37
38/*
39 * Generate embedded environment table
40 * inside U-Boot image, if needed.
41 */
42#if defined(ENV_IS_EMBEDDED)
43/*
44 * Only put the environment in it's own section when we are building
45 * U-Boot proper. The host based program "tools/envcrc" does not need
46 * a seperate section. Note that ENV_CRC is only defined when building
47 * U-Boot itself.
48 */
wdenk0db5bca2003-03-31 17:27:09 +000049#if (defined(CONFIG_CMI) || \
50 defined(CONFIG_FADS) || \
wdenkc6097192002-11-03 00:24:07 +000051 defined(CONFIG_HYMOD) || \
52 defined(CONFIG_ICU862) || \
53 defined(CONFIG_R360MPI) || \
54 defined(CONFIG_TQM8xxL) || \
55 defined(CONFIG_RRVISION) || \
wdenk998eaae2004-04-18 19:43:36 +000056 defined(CONFIG_TRAB) || \
57 defined(CONFIG_PPCHAMELEONEVB) ) && \
wdenkc6097192002-11-03 00:24:07 +000058 defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
59/* XXX - This only works with GNU C */
60# define __PPCENV__ __attribute__ ((section(".ppcenv")))
61# define __PPCTEXT__ __attribute__ ((section(".text")))
62
63#elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
64# define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
65# define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
66
67#else /* Environment is embedded in U-Boot's .text section */
68/* XXX - This only works with GNU C */
69# define __PPCENV__ __attribute__ ((section(".text")))
70# define __PPCTEXT__ __attribute__ ((section(".text")))
71#endif
72
73/*
74 * Macros to generate global absolutes.
75 */
76#define GEN_SYMNAME(str) SYM_CHAR #str
77#define GEN_VALUE(str) #str
78#define GEN_ABS(name, value) \
79 asm (".globl " GEN_SYMNAME(name)); \
80 asm (GEN_SYMNAME(name) " = " GEN_VALUE(value))
81
82/*
83 * Macros to transform values
84 * into environment strings.
85 */
86#define XMK_STR(x) #x
87#define MK_STR(x) XMK_STR(x)
88
89/*
90 * Check to see if we are building with a
91 * computed CRC. Otherwise define it as ~0.
92 */
93#if !defined(ENV_CRC)
94# define ENV_CRC ~0
95#endif
96
97env_t environment __PPCENV__ = {
98 ENV_CRC, /* CRC Sum */
99#ifdef CFG_REDUNDAND_ENVIRONMENT
100 1, /* Flags: valid */
101#endif
102 {
103#if defined(CONFIG_BOOTARGS)
104 "bootargs=" CONFIG_BOOTARGS "\0"
105#endif
106#if defined(CONFIG_BOOTCOMMAND)
107 "bootcmd=" CONFIG_BOOTCOMMAND "\0"
108#endif
109#if defined(CONFIG_RAMBOOTCOMMAND)
110 "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
111#endif
112#if defined(CONFIG_NFSBOOTCOMMAND)
113 "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
114#endif
115#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
116 "bootdelay=" MK_STR(CONFIG_BOOTDELAY) "\0"
117#endif
118#if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
119 "baudrate=" MK_STR(CONFIG_BAUDRATE) "\0"
120#endif
121#ifdef CONFIG_LOADS_ECHO
122 "loads_echo=" MK_STR(CONFIG_LOADS_ECHO) "\0"
123#endif
124#ifdef CONFIG_ETHADDR
125 "ethaddr=" MK_STR(CONFIG_ETHADDR) "\0"
126#endif
127#ifdef CONFIG_ETH1ADDR
128 "eth1addr=" MK_STR(CONFIG_ETH1ADDR) "\0"
129#endif
130#ifdef CONFIG_ETH2ADDR
131 "eth2addr=" MK_STR(CONFIG_ETH2ADDR) "\0"
132#endif
wdenke2ffd592004-12-31 09:32:47 +0000133#ifdef CONFIG_ETH3ADDR
134 "eth3addr=" MK_STR(CONFIG_ETH3ADDR) "\0"
135#endif
wdenkc6097192002-11-03 00:24:07 +0000136#ifdef CONFIG_ETHPRIME
137 "ethprime=" CONFIG_ETHPRIME "\0"
138#endif
139#ifdef CONFIG_IPADDR
140 "ipaddr=" MK_STR(CONFIG_IPADDR) "\0"
141#endif
142#ifdef CONFIG_SERVERIP
143 "serverip=" MK_STR(CONFIG_SERVERIP) "\0"
144#endif
145#ifdef CFG_AUTOLOAD
146 "autoload=" CFG_AUTOLOAD "\0"
147#endif
148#ifdef CONFIG_ROOTPATH
149 "rootpath=" MK_STR(CONFIG_ROOTPATH) "\0"
150#endif
151#ifdef CONFIG_GATEWAYIP
152 "gatewayip=" MK_STR(CONFIG_GATEWAYIP) "\0"
153#endif
154#ifdef CONFIG_NETMASK
155 "netmask=" MK_STR(CONFIG_NETMASK) "\0"
156#endif
157#ifdef CONFIG_HOSTNAME
158 "hostname=" MK_STR(CONFIG_HOSTNAME) "\0"
159#endif
160#ifdef CONFIG_BOOTFILE
161 "bootfile=" MK_STR(CONFIG_BOOTFILE) "\0"
162#endif
163#ifdef CONFIG_LOADADDR
164 "loadaddr=" MK_STR(CONFIG_LOADADDR) "\0"
165#endif
166#ifdef CONFIG_PREBOOT
167 "preboot=" CONFIG_PREBOOT "\0"
168#endif
169#ifdef CONFIG_CLOCKS_IN_MHZ
170 "clocks_in_mhz=" "1" "\0"
171#endif
stroesead10dd92003-02-14 11:21:23 +0000172#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
173 "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0"
174#endif
wdenkc6097192002-11-03 00:24:07 +0000175#ifdef CONFIG_EXTRA_ENV_SETTINGS
176 CONFIG_EXTRA_ENV_SETTINGS
177#endif
wdenkd0fb80c2003-01-11 09:48:40 +0000178 "\0" /* Term. env_t.data with 2 NULs */
wdenkc6097192002-11-03 00:24:07 +0000179 }
180};
181#ifdef CFG_ENV_ADDR_REDUND
182env_t redundand_environment __PPCENV__ = {
183 0, /* CRC Sum: invalid */
184 0, /* Flags: invalid */
185 {
186 "\0"
187 }
188};
189#endif /* CFG_ENV_ADDR_REDUND */
190
191/*
192 * These will end up in the .text section
193 * if the environment strings are embedded
194 * in the image. When this is used for
195 * tools/envcrc, they are placed in the
196 * .data/.sdata section.
197 *
198 */
199unsigned long env_size __PPCTEXT__ = sizeof(env_t);
200
201/*
202 * Add in absolutes.
203 */
204GEN_ABS(env_offset, CFG_ENV_OFFSET);
205
206#endif /* ENV_IS_EMBEDDED */