board.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /*
  2. * Copyright (C) 2004-2006 Atmel Corporation
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <command.h>
  24. #include <malloc.h>
  25. #include <devices.h>
  26. #include <version.h>
  27. #include <net.h>
  28. #include <asm/initcalls.h>
  29. #include <asm/sections.h>
  30. #ifndef CONFIG_IDENT_STRING
  31. #define CONFIG_IDENT_STRING ""
  32. #endif
  33. DECLARE_GLOBAL_DATA_PTR;
  34. const char version_string[] =
  35. U_BOOT_VERSION " (" __DATE__ " - " __TIME__ ") " CONFIG_IDENT_STRING;
  36. unsigned long monitor_flash_len;
  37. /*
  38. * Begin and end of memory area for malloc(), and current "brk"
  39. */
  40. static unsigned long mem_malloc_start = 0;
  41. static unsigned long mem_malloc_end = 0;
  42. static unsigned long mem_malloc_brk = 0;
  43. /* The malloc area is right below the monitor image in RAM */
  44. static void mem_malloc_init(void)
  45. {
  46. unsigned long monitor_addr;
  47. monitor_addr = CFG_MONITOR_BASE + gd->reloc_off;
  48. mem_malloc_end = monitor_addr;
  49. mem_malloc_start = mem_malloc_end - CFG_MALLOC_LEN;
  50. mem_malloc_brk = mem_malloc_start;
  51. printf("malloc: Using memory from 0x%08lx to 0x%08lx\n",
  52. mem_malloc_start, mem_malloc_end);
  53. memset ((void *)mem_malloc_start, 0,
  54. mem_malloc_end - mem_malloc_start);
  55. }
  56. void *sbrk(ptrdiff_t increment)
  57. {
  58. unsigned long old = mem_malloc_brk;
  59. unsigned long new = old + increment;
  60. if ((new < mem_malloc_start) || (new > mem_malloc_end))
  61. return NULL;
  62. mem_malloc_brk = new;
  63. return ((void *)old);
  64. }
  65. static int init_baudrate(void)
  66. {
  67. char tmp[64];
  68. int i;
  69. i = getenv_r("baudrate", tmp, sizeof(tmp));
  70. if (i > 0) {
  71. gd->baudrate = simple_strtoul(tmp, NULL, 10);
  72. } else {
  73. gd->baudrate = CONFIG_BAUDRATE;
  74. }
  75. return 0;
  76. }
  77. static int display_banner (void)
  78. {
  79. printf ("\n\n%s\n\n", version_string);
  80. printf ("U-Boot code: %p -> %p data: %p -> %p\n",
  81. _text, _etext, _data, _end);
  82. return 0;
  83. }
  84. void hang(void)
  85. {
  86. for (;;) ;
  87. }
  88. static int display_dram_config (void)
  89. {
  90. int i;
  91. puts ("DRAM Configuration:\n");
  92. for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
  93. printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
  94. print_size (gd->bd->bi_dram[i].size, "\n");
  95. }
  96. return 0;
  97. }
  98. static void display_flash_config (void)
  99. {
  100. puts ("Flash: ");
  101. print_size(gd->bd->bi_flashsize, " ");
  102. printf("at address 0x%08lx\n", gd->bd->bi_flashstart);
  103. }
  104. void board_init_f(ulong board_type)
  105. {
  106. gd_t gd_data;
  107. gd_t *new_gd;
  108. bd_t *bd;
  109. unsigned long *new_sp;
  110. unsigned long monitor_len;
  111. unsigned long monitor_addr;
  112. unsigned long addr;
  113. long sdram_size;
  114. /* Initialize the global data pointer */
  115. memset(&gd_data, 0, sizeof(gd_data));
  116. gd = &gd_data;
  117. /* Perform initialization sequence */
  118. board_early_init_f();
  119. cpu_init();
  120. env_init();
  121. init_baudrate();
  122. serial_init();
  123. console_init_f();
  124. display_banner();
  125. sdram_size = initdram(board_type);
  126. /* If we have no SDRAM, we can't go on */
  127. if (sdram_size <= 0)
  128. panic("No working SDRAM available\n");
  129. /*
  130. * Now that we have DRAM mapped and working, we can
  131. * relocate the code and continue running from DRAM.
  132. *
  133. * Reserve memory at end of RAM for (top down in that order):
  134. * - u-boot image
  135. * - heap for malloc()
  136. * - board info struct
  137. * - global data struct
  138. * - stack
  139. */
  140. addr = CFG_SDRAM_BASE + sdram_size;
  141. monitor_len = _end - _text;
  142. /*
  143. * Reserve memory for u-boot code, data and bss.
  144. * Round down to next 4 kB limit.
  145. */
  146. addr -= monitor_len;
  147. addr &= ~(4096UL - 1);
  148. monitor_addr = addr;
  149. /* Reserve memory for malloc() */
  150. addr -= CFG_MALLOC_LEN;
  151. /* Allocate a Board Info struct on a word boundary */
  152. addr -= sizeof(bd_t);
  153. addr &= ~3UL;
  154. gd->bd = bd = (bd_t *)addr;
  155. /* Allocate a new global data copy on a 8-byte boundary. */
  156. addr -= sizeof(gd_t);
  157. addr &= ~7UL;
  158. new_gd = (gd_t *)addr;
  159. /* And finally, a new, bigger stack. */
  160. new_sp = (unsigned long *)addr;
  161. gd->stack_end = addr;
  162. *(--new_sp) = 0;
  163. *(--new_sp) = 0;
  164. /*
  165. * Initialize the board information struct with the
  166. * information we have.
  167. */
  168. bd->bi_dram[0].start = CFG_SDRAM_BASE;
  169. bd->bi_dram[0].size = sdram_size;
  170. bd->bi_baudrate = gd->baudrate;
  171. memcpy(new_gd, gd, sizeof(gd_t));
  172. relocate_code((unsigned long)new_sp, new_gd, monitor_addr);
  173. }
  174. void board_init_r(gd_t *new_gd, ulong dest_addr)
  175. {
  176. extern void malloc_bin_reloc (void);
  177. #ifndef CFG_ENV_IS_NOWHERE
  178. extern char * env_name_spec;
  179. #endif
  180. cmd_tbl_t *cmdtp;
  181. bd_t *bd;
  182. gd = new_gd;
  183. bd = gd->bd;
  184. gd->flags |= GD_FLG_RELOC;
  185. gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
  186. monitor_flash_len = _edata - _text;
  187. /*
  188. * We have to relocate the command table manually
  189. */
  190. for (cmdtp = &__u_boot_cmd_start;
  191. cmdtp != &__u_boot_cmd_end; cmdtp++) {
  192. unsigned long addr;
  193. addr = (unsigned long)cmdtp->cmd + gd->reloc_off;
  194. cmdtp->cmd = (typeof(cmdtp->cmd))addr;
  195. addr = (unsigned long)cmdtp->name + gd->reloc_off;
  196. cmdtp->name = (typeof(cmdtp->name))addr;
  197. if (cmdtp->usage) {
  198. addr = (unsigned long)cmdtp->usage + gd->reloc_off;
  199. cmdtp->usage = (typeof(cmdtp->usage))addr;
  200. }
  201. #ifdef CFG_LONGHELP
  202. if (cmdtp->help) {
  203. addr = (unsigned long)cmdtp->help + gd->reloc_off;
  204. cmdtp->help = (typeof(cmdtp->help))addr;
  205. }
  206. #endif
  207. }
  208. /* there are some other pointer constants we must deal with */
  209. #ifndef CFG_ENV_IS_NOWHERE
  210. env_name_spec += gd->reloc_off;
  211. #endif
  212. timer_init();
  213. mem_malloc_init();
  214. malloc_bin_reloc();
  215. board_init_info();
  216. flash_init();
  217. if (bd->bi_flashsize)
  218. display_flash_config();
  219. if (bd->bi_dram[0].size)
  220. display_dram_config();
  221. gd->bd->bi_boot_params = malloc(CFG_BOOTPARAMS_LEN);
  222. if (!gd->bd->bi_boot_params)
  223. puts("WARNING: Cannot allocate space for boot parameters\n");
  224. /* initialize environment */
  225. env_relocate();
  226. devices_init();
  227. jumptable_init();
  228. console_init_r();
  229. for (;;) {
  230. main_loop();
  231. }
  232. }