board.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
  3. * Scott McNutt <smcnutt@psyent.com>
  4. *
  5. * (C) Copyright 2000-2002
  6. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <devices.h>
  28. #include <watchdog.h>
  29. #include <net.h>
  30. /*
  31. * All attempts to come up with a "common" initialization sequence
  32. * that works for all boards and architectures failed: some of the
  33. * requirements are just _too_ different. To get rid of the resulting
  34. * mess of board dependend #ifdef'ed code we now make the whole
  35. * initialization sequence configurable to the user.
  36. *
  37. * The requirements for any new initalization function is simple: it
  38. * receives a pointer to the "global data" structure as it's only
  39. * argument, and returns an integer return code, where 0 means
  40. * "continue" and != 0 means "fatal error, hang the system".
  41. */
  42. extern void malloc_bin_reloc (void);
  43. typedef int (init_fnc_t) (void);
  44. extern unsigned _vectors[];
  45. /*
  46. * Begin and End of memory area for malloc(), and current "brk"
  47. */
  48. static ulong mem_malloc_start = 0;
  49. static ulong mem_malloc_end = 0;
  50. static ulong mem_malloc_brk = 0;
  51. /*
  52. * The Malloc area is immediately below the monitor copy in RAM
  53. */
  54. static void mem_malloc_init (void)
  55. {
  56. mem_malloc_start = CFG_MALLOC_BASE;
  57. mem_malloc_end = mem_malloc_start + CFG_MALLOC_LEN;
  58. mem_malloc_brk = mem_malloc_start;
  59. memset ((void *) mem_malloc_start,
  60. 0,
  61. mem_malloc_end - mem_malloc_start);
  62. }
  63. void *sbrk (ptrdiff_t increment)
  64. {
  65. ulong old = mem_malloc_brk;
  66. ulong new = old + increment;
  67. if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
  68. return (NULL);
  69. }
  70. mem_malloc_brk = new;
  71. return ((void *) old);
  72. }
  73. /************************************************************************
  74. * Initialization sequence *
  75. ***********************************************************************/
  76. init_fnc_t *init_sequence[] = {
  77. #if defined(CONFIG_BOARD_PRE_INIT)
  78. board_pre_init, /* Call board-specific init code early.*/
  79. #endif
  80. env_init,
  81. serial_init,
  82. console_init_f,
  83. display_options,
  84. checkcpu,
  85. checkboard,
  86. NULL, /* Terminate this list */
  87. };
  88. /***********************************************************************/
  89. void board_init (void)
  90. {
  91. DECLARE_GLOBAL_DATA_PTR;
  92. bd_t *bd;
  93. init_fnc_t **init_fnc_ptr;
  94. char *s, *e;
  95. int i;
  96. /* Pointer is writable since we allocated a register for it.
  97. * Nios treats CFG_GBL_DATA_OFFSET as an address.
  98. */
  99. gd = (gd_t *)CFG_GBL_DATA_OFFSET;
  100. memset( gd, 0, CFG_GBL_DATA_SIZE );
  101. /* Copy exception vectors to the correct location.
  102. */
  103. memcpy( (void *)CFG_VECT_BASE, _vectors, 256 );
  104. gd->bd = (bd_t *)(gd+1); /* At end of global data */
  105. gd->baudrate = CONFIG_BAUDRATE;
  106. gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
  107. bd = gd->bd;
  108. bd->bi_memstart = CFG_SDRAM_BASE;
  109. bd->bi_memsize = CFG_SDRAM_SIZE;
  110. bd->bi_flashstart = CFG_FLASH_BASE;
  111. bd->bi_sramstart= CFG_SRAM_BASE;
  112. bd->bi_sramsize = CFG_SRAM_SIZE;
  113. bd->bi_baudrate = CONFIG_BAUDRATE;
  114. for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
  115. if ((*init_fnc_ptr) () != 0) {
  116. hang ();
  117. }
  118. }
  119. bd->bi_flashsize = flash_init();
  120. mem_malloc_init();
  121. malloc_bin_reloc();
  122. env_relocate();
  123. bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
  124. s = getenv ("ethaddr");
  125. for (i = 0; i < 6; ++i) {
  126. bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0;
  127. if (s) s = (*e) ? e + 1 : e;
  128. }
  129. devices_init();
  130. jumptable_init();
  131. console_init_r();
  132. /*
  133. */
  134. interrupt_init ();
  135. /* main_loop */
  136. for (;;) {
  137. WATCHDOG_RESET ();
  138. main_loop ();
  139. }
  140. }
  141. /***********************************************************************/
  142. void hang (void)
  143. {
  144. puts("### ERROR ### Please reset board ###\n");
  145. for (;;);
  146. }