blob: 8cc08ae4da972f708a167eea9f8c1b1ffdc9ea9d [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__
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000025#define __ASSEMBLY__ /* Dirty trick to get only #defines */
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020026#endif
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000027#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>
Marek Vasut5368c552012-09-23 17:41:24 +020031#include <linux/stringify.h>
wdenkc6097192002-11-03 00:24:07 +000032
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000033/* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */
wdenkc6097192002-11-03 00:24:07 +000034#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 Denka747a7f2009-10-27 00:03:32 +010042 * Generate embedded environment table
43 * inside U-Boot image, if needed.
44 */
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000045#if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC)
Wolfgang Denka747a7f2009-10-27 00:03:32 +010046/*
wdenkc6097192002-11-03 00:24:07 +000047 * 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-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#if (defined(CONFIG_SYS_USE_PPCENV) || defined(CONFIG_NAND_U_BOOT)) && \
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000053 defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
wdenkc6097192002-11-03 00:24:07 +000054/* XXX - This only works with GNU C */
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000055# define __PPCENV__ __attribute__ ((section(".ppcenv")))
56# define __PPCTEXT__ __attribute__ ((section(".text")))
wdenkc6097192002-11-03 00:24:07 +000057
58#elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000059# define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
60# define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
wdenkc6097192002-11-03 00:24:07 +000061
62#else /* Environment is embedded in U-Boot's .text section */
63/* XXX - This only works with GNU C */
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000064# define __PPCENV__ __attribute__ ((section(".text")))
65# define __PPCTEXT__ __attribute__ ((section(".text")))
wdenkc6097192002-11-03 00:24:07 +000066#endif
67
68/*
69 * Macros to generate global absolutes.
70 */
Mike Frysinger4087bc82008-02-04 19:26:54 -050071#if defined(__bfin__)
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000072# define GEN_SET_VALUE(name, value) \
73 asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value))
Mike Frysinger4087bc82008-02-04 19:26:54 -050074#else
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000075# define GEN_SET_VALUE(name, value) \
76 asm(GEN_SYMNAME(name) " = " GEN_VALUE(value))
Mike Frysinger4087bc82008-02-04 19:26:54 -050077#endif
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000078#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)
wdenkc6097192002-11-03 00:24:07 +000083
84/*
wdenkc6097192002-11-03 00:24:07 +000085 * Check to see if we are building with a
86 * computed CRC. Otherwise define it as ~0.
87 */
88#if !defined(ENV_CRC)
Igor Grinbergbd2a23a2011-11-07 01:14:06 +000089# define ENV_CRC (~0)
wdenkc6097192002-11-03 00:24:07 +000090#endif
91
92env_t environment __PPCENV__ = {
93 ENV_CRC, /* CRC Sum */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
wdenkc6097192002-11-03 00:24:07 +000095 1, /* Flags: valid */
96#endif
97 {
98#if defined(CONFIG_BOOTARGS)
99 "bootargs=" CONFIG_BOOTARGS "\0"
100#endif
101#if defined(CONFIG_BOOTCOMMAND)
102 "bootcmd=" CONFIG_BOOTCOMMAND "\0"
103#endif
104#if defined(CONFIG_RAMBOOTCOMMAND)
105 "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
106#endif
107#if defined(CONFIG_NFSBOOTCOMMAND)
108 "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
109#endif
110#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
Marek Vasut5368c552012-09-23 17:41:24 +0200111 "bootdelay=" __stringify(CONFIG_BOOTDELAY) "\0"
wdenkc6097192002-11-03 00:24:07 +0000112#endif
113#if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
Marek Vasut5368c552012-09-23 17:41:24 +0200114 "baudrate=" __stringify(CONFIG_BAUDRATE) "\0"
wdenkc6097192002-11-03 00:24:07 +0000115#endif
116#ifdef CONFIG_LOADS_ECHO
Marek Vasut5368c552012-09-23 17:41:24 +0200117 "loads_echo=" __stringify(CONFIG_LOADS_ECHO) "\0"
wdenkc6097192002-11-03 00:24:07 +0000118#endif
119#ifdef CONFIG_ETHADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200120 "ethaddr=" __stringify(CONFIG_ETHADDR) "\0"
wdenkc6097192002-11-03 00:24:07 +0000121#endif
122#ifdef CONFIG_ETH1ADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200123 "eth1addr=" __stringify(CONFIG_ETH1ADDR) "\0"
wdenkc6097192002-11-03 00:24:07 +0000124#endif
125#ifdef CONFIG_ETH2ADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200126 "eth2addr=" __stringify(CONFIG_ETH2ADDR) "\0"
wdenkc6097192002-11-03 00:24:07 +0000127#endif
wdenke2ffd592004-12-31 09:32:47 +0000128#ifdef CONFIG_ETH3ADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200129 "eth3addr=" __stringify(CONFIG_ETH3ADDR) "\0"
wdenke2ffd592004-12-31 09:32:47 +0000130#endif
richardretanubunc68a05f2008-09-29 18:28:23 -0400131#ifdef CONFIG_ETH4ADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200132 "eth4addr=" __stringify(CONFIG_ETH4ADDR) "\0"
richardretanubunc68a05f2008-09-29 18:28:23 -0400133#endif
134#ifdef CONFIG_ETH5ADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200135 "eth5addr=" __stringify(CONFIG_ETH5ADDR) "\0"
richardretanubunc68a05f2008-09-29 18:28:23 -0400136#endif
wdenkc6097192002-11-03 00:24:07 +0000137#ifdef CONFIG_ETHPRIME
138 "ethprime=" CONFIG_ETHPRIME "\0"
139#endif
140#ifdef CONFIG_IPADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200141 "ipaddr=" __stringify(CONFIG_IPADDR) "\0"
wdenkc6097192002-11-03 00:24:07 +0000142#endif
143#ifdef CONFIG_SERVERIP
Marek Vasut5368c552012-09-23 17:41:24 +0200144 "serverip=" __stringify(CONFIG_SERVERIP) "\0"
wdenkc6097192002-11-03 00:24:07 +0000145#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200146#ifdef CONFIG_SYS_AUTOLOAD
Igor Grinbergbd2a23a2011-11-07 01:14:06 +0000147 "autoload=" CONFIG_SYS_AUTOLOAD "\0"
wdenkc6097192002-11-03 00:24:07 +0000148#endif
149#ifdef CONFIG_ROOTPATH
Joe Hershberger8b3637c2011-10-13 13:03:47 +0000150 "rootpath=" CONFIG_ROOTPATH "\0"
wdenkc6097192002-11-03 00:24:07 +0000151#endif
152#ifdef CONFIG_GATEWAYIP
Marek Vasut5368c552012-09-23 17:41:24 +0200153 "gatewayip=" __stringify(CONFIG_GATEWAYIP) "\0"
wdenkc6097192002-11-03 00:24:07 +0000154#endif
155#ifdef CONFIG_NETMASK
Marek Vasut5368c552012-09-23 17:41:24 +0200156 "netmask=" __stringify(CONFIG_NETMASK) "\0"
wdenkc6097192002-11-03 00:24:07 +0000157#endif
158#ifdef CONFIG_HOSTNAME
Marek Vasut5368c552012-09-23 17:41:24 +0200159 "hostname=" __stringify(CONFIG_HOSTNAME) "\0"
wdenkc6097192002-11-03 00:24:07 +0000160#endif
161#ifdef CONFIG_BOOTFILE
Joe Hershbergerb3f44c22011-10-13 13:03:48 +0000162 "bootfile=" CONFIG_BOOTFILE "\0"
wdenkc6097192002-11-03 00:24:07 +0000163#endif
164#ifdef CONFIG_LOADADDR
Marek Vasut5368c552012-09-23 17:41:24 +0200165 "loadaddr=" __stringify(CONFIG_LOADADDR) "\0"
wdenkc6097192002-11-03 00:24:07 +0000166#endif
167#ifdef CONFIG_PREBOOT
168 "preboot=" CONFIG_PREBOOT "\0"
169#endif
170#ifdef CONFIG_CLOCKS_IN_MHZ
171 "clocks_in_mhz=" "1" "\0"
172#endif
stroesead10dd92003-02-14 11:21:23 +0000173#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
Marek Vasut5368c552012-09-23 17:41:24 +0200174 "pcidelay=" __stringify(CONFIG_PCI_BOOTDELAY)"\0"
stroesead10dd92003-02-14 11:21:23 +0000175#endif
Stephen Warren5e724ca2012-05-22 09:21:54 +0000176#ifdef CONFIG_ENV_VARS_UBOOT_CONFIG
177 "arch=" CONFIG_SYS_ARCH "\0"
178 "cpu=" CONFIG_SYS_CPU "\0"
179 "board=" CONFIG_SYS_BOARD "\0"
180#ifdef CONFIG_SYS_VENDOR
181 "vendor=" CONFIG_SYS_VENDOR "\0"
182#endif
183#ifdef CONFIG_SYS_SOC
184 "soc=" CONFIG_SYS_SOC "\0"
185#endif
186#endif
Igor Grinbergbd2a23a2011-11-07 01:14:06 +0000187#ifdef CONFIG_EXTRA_ENV_SETTINGS
wdenkc6097192002-11-03 00:24:07 +0000188 CONFIG_EXTRA_ENV_SETTINGS
189#endif
wdenkd0fb80c2003-01-11 09:48:40 +0000190 "\0" /* Term. env_t.data with 2 NULs */
wdenkc6097192002-11-03 00:24:07 +0000191 }
192};
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200193#ifdef CONFIG_ENV_ADDR_REDUND
wdenkc6097192002-11-03 00:24:07 +0000194env_t redundand_environment __PPCENV__ = {
195 0, /* CRC Sum: invalid */
196 0, /* Flags: invalid */
197 {
198 "\0"
199 }
200};
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200201#endif /* CONFIG_ENV_ADDR_REDUND */
wdenkc6097192002-11-03 00:24:07 +0000202
203/*
204 * These will end up in the .text section
205 * if the environment strings are embedded
206 * in the image. When this is used for
207 * tools/envcrc, they are placed in the
208 * .data/.sdata section.
209 *
210 */
211unsigned long env_size __PPCTEXT__ = sizeof(env_t);
212
213/*
214 * Add in absolutes.
215 */
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200216GEN_ABS(env_offset, CONFIG_ENV_OFFSET);
Wolfgang Denka747a7f2009-10-27 00:03:32 +0100217
218#endif /* ENV_IS_EMBEDDED */