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