env_embedded.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. /* Handle HOSTS that have prepended crap on symbol names, not TARGETS. */
  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. * Generate embedded environment table
  39. * inside U-Boot image, if needed.
  40. */
  41. #if defined(ENV_IS_EMBEDDED) || defined(CONFIG_BUILD_ENVCRC)
  42. /*
  43. * Only put the environment in it's own section when we are building
  44. * U-Boot proper. The host based program "tools/envcrc" does not need
  45. * a seperate section. Note that ENV_CRC is only defined when building
  46. * U-Boot itself.
  47. */
  48. #if (defined(CONFIG_SYS_USE_PPCENV) || defined(CONFIG_NAND_U_BOOT)) && \
  49. defined(ENV_CRC) /* Environment embedded in U-Boot .ppcenv section */
  50. /* XXX - This only works with GNU C */
  51. # define __PPCENV__ __attribute__ ((section(".ppcenv")))
  52. # define __PPCTEXT__ __attribute__ ((section(".text")))
  53. #elif defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
  54. # define __PPCENV__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
  55. # define __PPCTEXT__ /*XXX DO_NOT_DEL_THIS_COMMENT*/
  56. #else /* Environment is embedded in U-Boot's .text section */
  57. /* XXX - This only works with GNU C */
  58. # define __PPCENV__ __attribute__ ((section(".text")))
  59. # define __PPCTEXT__ __attribute__ ((section(".text")))
  60. #endif
  61. /*
  62. * Macros to generate global absolutes.
  63. */
  64. #if defined(__bfin__)
  65. # define GEN_SET_VALUE(name, value) \
  66. asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value))
  67. #else
  68. # define GEN_SET_VALUE(name, value) \
  69. asm(GEN_SYMNAME(name) " = " GEN_VALUE(value))
  70. #endif
  71. #define GEN_SYMNAME(str) SYM_CHAR #str
  72. #define GEN_VALUE(str) #str
  73. #define GEN_ABS(name, value) \
  74. asm(".globl " GEN_SYMNAME(name)); \
  75. GEN_SET_VALUE(name, value)
  76. /*
  77. * Macros to transform values
  78. * into environment strings.
  79. */
  80. #define XMK_STR(x) #x
  81. #define MK_STR(x) XMK_STR(x)
  82. /*
  83. * Check to see if we are building with a
  84. * computed CRC. Otherwise define it as ~0.
  85. */
  86. #if !defined(ENV_CRC)
  87. # define ENV_CRC (~0)
  88. #endif
  89. env_t environment __PPCENV__ = {
  90. ENV_CRC, /* CRC Sum */
  91. #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
  92. 1, /* Flags: valid */
  93. #endif
  94. {
  95. #if defined(CONFIG_BOOTARGS)
  96. "bootargs=" CONFIG_BOOTARGS "\0"
  97. #endif
  98. #if defined(CONFIG_BOOTCOMMAND)
  99. "bootcmd=" CONFIG_BOOTCOMMAND "\0"
  100. #endif
  101. #if defined(CONFIG_RAMBOOTCOMMAND)
  102. "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
  103. #endif
  104. #if defined(CONFIG_NFSBOOTCOMMAND)
  105. "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
  106. #endif
  107. #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
  108. "bootdelay=" MK_STR(CONFIG_BOOTDELAY) "\0"
  109. #endif
  110. #if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
  111. "baudrate=" MK_STR(CONFIG_BAUDRATE) "\0"
  112. #endif
  113. #ifdef CONFIG_LOADS_ECHO
  114. "loads_echo=" MK_STR(CONFIG_LOADS_ECHO) "\0"
  115. #endif
  116. #ifdef CONFIG_ETHADDR
  117. "ethaddr=" MK_STR(CONFIG_ETHADDR) "\0"
  118. #endif
  119. #ifdef CONFIG_ETH1ADDR
  120. "eth1addr=" MK_STR(CONFIG_ETH1ADDR) "\0"
  121. #endif
  122. #ifdef CONFIG_ETH2ADDR
  123. "eth2addr=" MK_STR(CONFIG_ETH2ADDR) "\0"
  124. #endif
  125. #ifdef CONFIG_ETH3ADDR
  126. "eth3addr=" MK_STR(CONFIG_ETH3ADDR) "\0"
  127. #endif
  128. #ifdef CONFIG_ETH4ADDR
  129. "eth4addr=" MK_STR(CONFIG_ETH4ADDR) "\0"
  130. #endif
  131. #ifdef CONFIG_ETH5ADDR
  132. "eth5addr=" MK_STR(CONFIG_ETH5ADDR) "\0"
  133. #endif
  134. #ifdef CONFIG_ETHPRIME
  135. "ethprime=" CONFIG_ETHPRIME "\0"
  136. #endif
  137. #ifdef CONFIG_IPADDR
  138. "ipaddr=" MK_STR(CONFIG_IPADDR) "\0"
  139. #endif
  140. #ifdef CONFIG_SERVERIP
  141. "serverip=" MK_STR(CONFIG_SERVERIP) "\0"
  142. #endif
  143. #ifdef CONFIG_SYS_AUTOLOAD
  144. "autoload=" CONFIG_SYS_AUTOLOAD "\0"
  145. #endif
  146. #ifdef CONFIG_ROOTPATH
  147. "rootpath=" CONFIG_ROOTPATH "\0"
  148. #endif
  149. #ifdef CONFIG_GATEWAYIP
  150. "gatewayip=" MK_STR(CONFIG_GATEWAYIP) "\0"
  151. #endif
  152. #ifdef CONFIG_NETMASK
  153. "netmask=" MK_STR(CONFIG_NETMASK) "\0"
  154. #endif
  155. #ifdef CONFIG_HOSTNAME
  156. "hostname=" MK_STR(CONFIG_HOSTNAME) "\0"
  157. #endif
  158. #ifdef CONFIG_BOOTFILE
  159. "bootfile=" CONFIG_BOOTFILE "\0"
  160. #endif
  161. #ifdef CONFIG_LOADADDR
  162. "loadaddr=" MK_STR(CONFIG_LOADADDR) "\0"
  163. #endif
  164. #ifdef CONFIG_PREBOOT
  165. "preboot=" CONFIG_PREBOOT "\0"
  166. #endif
  167. #ifdef CONFIG_CLOCKS_IN_MHZ
  168. "clocks_in_mhz=" "1" "\0"
  169. #endif
  170. #if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
  171. "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0"
  172. #endif
  173. #ifdef CONFIG_EXTRA_ENV_SETTINGS
  174. CONFIG_EXTRA_ENV_SETTINGS
  175. #endif
  176. "\0" /* Term. env_t.data with 2 NULs */
  177. }
  178. };
  179. #ifdef CONFIG_ENV_ADDR_REDUND
  180. env_t redundand_environment __PPCENV__ = {
  181. 0, /* CRC Sum: invalid */
  182. 0, /* Flags: invalid */
  183. {
  184. "\0"
  185. }
  186. };
  187. #endif /* CONFIG_ENV_ADDR_REDUND */
  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. */
  196. unsigned long env_size __PPCTEXT__ = sizeof(env_t);
  197. /*
  198. * Add in absolutes.
  199. */
  200. GEN_ABS(env_offset, CONFIG_ENV_OFFSET);
  201. #endif /* ENV_IS_EMBEDDED */