env_embedded.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. #ifndef __ASSEMBLY__
  24. #define __ASSEMBLY__ /* Dirty trick to get only #defines */
  25. #endif
  26. #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
  27. #include <config.h>
  28. #undef __ASSEMBLY__
  29. #include <environment.h>
  30. #include <linux/stringify.h>
  31. /* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */
  32. #if defined(__APPLE__)
  33. /* Leading underscore on symbols */
  34. # define SYM_CHAR "_"
  35. #else /* No leading character on symbols */
  36. # define SYM_CHAR
  37. #endif
  38. /*
  39. * Generate embedded environment table
  40. * inside U-Boot image, if needed.
  41. */
  42. #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC)
  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. */
  49. #if (defined(CONFIG_SYS_USE_PPCENV) || defined(CONFIG_NAND_U_BOOT)) && \
  50. defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
  51. /* XXX - This only works with GNU C */
  52. # define __PPCENV__ __attribute__ ((section(".ppcenv")))
  53. # define __PPCTEXT__ __attribute__ ((section(".text")))
  54. #elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
  55. # define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
  56. # define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
  57. #else /* Environment is embedded in U-Boot's .text section */
  58. /* XXX - This only works with GNU C */
  59. # define __PPCENV__ __attribute__ ((section(".text")))
  60. # define __PPCTEXT__ __attribute__ ((section(".text")))
  61. #endif
  62. /*
  63. * Macros to generate global absolutes.
  64. */
  65. #if defined(__bfin__)
  66. # define GEN_SET_VALUE(name, value) \
  67. asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value))
  68. #else
  69. # define GEN_SET_VALUE(name, value) \
  70. asm(GEN_SYMNAME(name) " = " GEN_VALUE(value))
  71. #endif
  72. #define GEN_SYMNAME(str) SYM_CHAR #str
  73. #define GEN_VALUE(str) #str
  74. #define GEN_ABS(name, value) \
  75. asm(".globl " GEN_SYMNAME(name)); \
  76. GEN_SET_VALUE(name, value)
  77. /*
  78. * Check to see if we are building with a
  79. * computed CRC. Otherwise define it as ~0.
  80. */
  81. #if !defined(ENV_CRC)
  82. # define ENV_CRC (~0)
  83. #endif
  84. env_t environment __PPCENV__ = {
  85. ENV_CRC, /* CRC Sum */
  86. #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
  87. 1, /* Flags: valid */
  88. #endif
  89. {
  90. #if defined(CONFIG_BOOTARGS)
  91. "bootargs=" CONFIG_BOOTARGS "\0"
  92. #endif
  93. #if defined(CONFIG_BOOTCOMMAND)
  94. "bootcmd=" CONFIG_BOOTCOMMAND "\0"
  95. #endif
  96. #if defined(CONFIG_RAMBOOTCOMMAND)
  97. "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
  98. #endif
  99. #if defined(CONFIG_NFSBOOTCOMMAND)
  100. "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
  101. #endif
  102. #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
  103. "bootdelay=" __stringify(CONFIG_BOOTDELAY) "\0"
  104. #endif
  105. #if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
  106. "baudrate=" __stringify(CONFIG_BAUDRATE) "\0"
  107. #endif
  108. #ifdef CONFIG_LOADS_ECHO
  109. "loads_echo=" __stringify(CONFIG_LOADS_ECHO) "\0"
  110. #endif
  111. #ifdef CONFIG_ETHADDR
  112. "ethaddr=" __stringify(CONFIG_ETHADDR) "\0"
  113. #endif
  114. #ifdef CONFIG_ETH1ADDR
  115. "eth1addr=" __stringify(CONFIG_ETH1ADDR) "\0"
  116. #endif
  117. #ifdef CONFIG_ETH2ADDR
  118. "eth2addr=" __stringify(CONFIG_ETH2ADDR) "\0"
  119. #endif
  120. #ifdef CONFIG_ETH3ADDR
  121. "eth3addr=" __stringify(CONFIG_ETH3ADDR) "\0"
  122. #endif
  123. #ifdef CONFIG_ETH4ADDR
  124. "eth4addr=" __stringify(CONFIG_ETH4ADDR) "\0"
  125. #endif
  126. #ifdef CONFIG_ETH5ADDR
  127. "eth5addr=" __stringify(CONFIG_ETH5ADDR) "\0"
  128. #endif
  129. #ifdef CONFIG_ETHPRIME
  130. "ethprime=" CONFIG_ETHPRIME "\0"
  131. #endif
  132. #ifdef CONFIG_IPADDR
  133. "ipaddr=" __stringify(CONFIG_IPADDR) "\0"
  134. #endif
  135. #ifdef CONFIG_SERVERIP
  136. "serverip=" __stringify(CONFIG_SERVERIP) "\0"
  137. #endif
  138. #ifdef CONFIG_SYS_AUTOLOAD
  139. "autoload=" CONFIG_SYS_AUTOLOAD "\0"
  140. #endif
  141. #ifdef CONFIG_ROOTPATH
  142. "rootpath=" CONFIG_ROOTPATH "\0"
  143. #endif
  144. #ifdef CONFIG_GATEWAYIP
  145. "gatewayip=" __stringify(CONFIG_GATEWAYIP) "\0"
  146. #endif
  147. #ifdef CONFIG_NETMASK
  148. "netmask=" __stringify(CONFIG_NETMASK) "\0"
  149. #endif
  150. #ifdef CONFIG_HOSTNAME
  151. "hostname=" __stringify(CONFIG_HOSTNAME) "\0"
  152. #endif
  153. #ifdef CONFIG_BOOTFILE
  154. "bootfile=" CONFIG_BOOTFILE "\0"
  155. #endif
  156. #ifdef CONFIG_LOADADDR
  157. "loadaddr=" __stringify(CONFIG_LOADADDR) "\0"
  158. #endif
  159. #ifdef CONFIG_PREBOOT
  160. "preboot=" CONFIG_PREBOOT "\0"
  161. #endif
  162. #ifdef CONFIG_CLOCKS_IN_MHZ
  163. "clocks_in_mhz=" "1" "\0"
  164. #endif
  165. #if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
  166. "pcidelay=" __stringify(CONFIG_PCI_BOOTDELAY)"\0"
  167. #endif
  168. #ifdef CONFIG_ENV_VARS_UBOOT_CONFIG
  169. "arch=" CONFIG_SYS_ARCH "\0"
  170. "cpu=" CONFIG_SYS_CPU "\0"
  171. "board=" CONFIG_SYS_BOARD "\0"
  172. #ifdef CONFIG_SYS_VENDOR
  173. "vendor=" CONFIG_SYS_VENDOR "\0"
  174. #endif
  175. #ifdef CONFIG_SYS_SOC
  176. "soc=" CONFIG_SYS_SOC "\0"
  177. #endif
  178. #endif
  179. #ifdef CONFIG_EXTRA_ENV_SETTINGS
  180. CONFIG_EXTRA_ENV_SETTINGS
  181. #endif
  182. "\0" /* Term. env_t.data with 2 NULs */
  183. }
  184. };
  185. #ifdef CONFIG_ENV_ADDR_REDUND
  186. env_t redundand_environment __PPCENV__ = {
  187. 0, /* CRC Sum: invalid */
  188. 0, /* Flags: invalid */
  189. {
  190. "\0"
  191. }
  192. };
  193. #endif /* CONFIG_ENV_ADDR_REDUND */
  194. /*
  195. * These will end up in the .text section
  196. * if the environment strings are embedded
  197. * in the image. When this is used for
  198. * tools/envcrc, they are placed in the
  199. * .data/.sdata section.
  200. *
  201. */
  202. unsigned long env_size __PPCTEXT__ = sizeof(env_t);
  203. /*
  204. * Add in absolutes.
  205. */
  206. GEN_ABS(env_offset, CONFIG_ENV_OFFSET);
  207. #endif /* ENV_IS_EMBEDDED */