wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 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 | |
| 24 | #include <common.h> |
| 25 | #include <command.h> |
| 26 | #include <malloc.h> |
| 27 | #include <devices.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 28 | #include <version.h> |
| 29 | #include <net.h> |
| 30 | #include <environment.h> |
Jason McMullan | e996bc3 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 31 | #include <nand.h> |
Jason McMullan | 89a1550 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 32 | #include <spi.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 33 | |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 36 | #if ( ((CFG_ENV_ADDR+CFG_ENV_SIZE) < CFG_MONITOR_BASE) || \ |
| 37 | (CFG_ENV_ADDR >= (CFG_MONITOR_BASE + CFG_MONITOR_LEN)) ) || \ |
| 38 | defined(CFG_ENV_IS_IN_NVRAM) |
| 39 | #define TOTAL_MALLOC_LEN (CFG_MALLOC_LEN + CFG_ENV_SIZE) |
| 40 | #else |
| 41 | #define TOTAL_MALLOC_LEN CFG_MALLOC_LEN |
| 42 | #endif |
| 43 | |
| 44 | #undef DEBUG |
| 45 | |
| 46 | extern int timer_init(void); |
| 47 | |
wdenk | 7cb22f9 | 2003-12-27 19:24:54 +0000 | [diff] [blame] | 48 | extern int incaip_set_cpuclk(void); |
| 49 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 50 | extern ulong uboot_end_data; |
| 51 | extern ulong uboot_end; |
| 52 | |
| 53 | ulong monitor_flash_len; |
| 54 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 55 | const char version_string[] = |
| 56 | U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")"; |
| 57 | |
| 58 | static char *failed = "*** failed ***\n"; |
| 59 | |
| 60 | /* |
| 61 | * Begin and End of memory area for malloc(), and current "brk" |
| 62 | */ |
| 63 | static ulong mem_malloc_start; |
| 64 | static ulong mem_malloc_end; |
| 65 | static ulong mem_malloc_brk; |
| 66 | |
Jean-Christophe PLAGNIOL-VILLARD | 5c15010 | 2007-11-13 09:11:05 +0100 | [diff] [blame] | 67 | /* |
| 68 | * mips_io_port_base is the begin of the address space to which x86 style |
| 69 | * I/O ports are mapped. |
| 70 | */ |
| 71 | unsigned long mips_io_port_base = -1; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * The Malloc area is immediately below the monitor copy in DRAM |
| 75 | */ |
| 76 | static void mem_malloc_init (void) |
| 77 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 78 | ulong dest_addr = CFG_MONITOR_BASE + gd->reloc_off; |
| 79 | |
| 80 | mem_malloc_end = dest_addr; |
| 81 | mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN; |
| 82 | mem_malloc_brk = mem_malloc_start; |
| 83 | |
| 84 | memset ((void *) mem_malloc_start, |
| 85 | 0, |
| 86 | mem_malloc_end - mem_malloc_start); |
| 87 | } |
| 88 | |
| 89 | void *sbrk (ptrdiff_t increment) |
| 90 | { |
| 91 | ulong old = mem_malloc_brk; |
| 92 | ulong new = old + increment; |
| 93 | |
| 94 | if ((new < mem_malloc_start) || (new > mem_malloc_end)) { |
| 95 | return (NULL); |
| 96 | } |
| 97 | mem_malloc_brk = new; |
| 98 | return ((void *) old); |
| 99 | } |
| 100 | |
| 101 | |
| 102 | static int init_func_ram (void) |
| 103 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 104 | #ifdef CONFIG_BOARD_TYPES |
| 105 | int board_type = gd->board_type; |
| 106 | #else |
| 107 | int board_type = 0; /* use dummy arg */ |
| 108 | #endif |
| 109 | puts ("DRAM: "); |
| 110 | |
| 111 | if ((gd->ram_size = initdram (board_type)) > 0) { |
| 112 | print_size (gd->ram_size, "\n"); |
| 113 | return (0); |
| 114 | } |
| 115 | puts (failed); |
| 116 | return (1); |
| 117 | } |
| 118 | |
| 119 | static int display_banner(void) |
| 120 | { |
| 121 | |
| 122 | printf ("\n\n%s\n\n", version_string); |
| 123 | return (0); |
| 124 | } |
| 125 | |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 126 | #ifndef CFG_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 127 | static void display_flash_config(ulong size) |
| 128 | { |
| 129 | puts ("Flash: "); |
| 130 | print_size (size, "\n"); |
| 131 | } |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 132 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 133 | |
| 134 | static int init_baudrate (void) |
| 135 | { |
Wolfgang Denk | f013dac | 2005-12-04 00:40:34 +0100 | [diff] [blame] | 136 | char tmp[64]; /* long enough for environment variables */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 137 | int i = getenv_r ("baudrate", tmp, sizeof (tmp)); |
| 138 | |
| 139 | gd->baudrate = (i > 0) |
| 140 | ? (int) simple_strtoul (tmp, NULL, 10) |
| 141 | : CONFIG_BAUDRATE; |
| 142 | |
| 143 | return (0); |
| 144 | } |
| 145 | |
| 146 | |
| 147 | /* |
| 148 | * Breath some life into the board... |
| 149 | * |
| 150 | * The first part of initialization is running from Flash memory; |
| 151 | * its main purpose is to initialize the RAM so that we |
| 152 | * can relocate the monitor code to RAM. |
| 153 | */ |
| 154 | |
| 155 | /* |
| 156 | * All attempts to come up with a "common" initialization sequence |
| 157 | * that works for all boards and architectures failed: some of the |
| 158 | * requirements are just _too_ different. To get rid of the resulting |
| 159 | * mess of board dependend #ifdef'ed code we now make the whole |
| 160 | * initialization sequence configurable to the user. |
| 161 | * |
| 162 | * The requirements for any new initalization function is simple: it |
| 163 | * receives a pointer to the "global data" structure as it's only |
| 164 | * argument, and returns an integer return code, where 0 means |
| 165 | * "continue" and != 0 means "fatal error, hang the system". |
| 166 | */ |
| 167 | typedef int (init_fnc_t) (void); |
| 168 | |
| 169 | init_fnc_t *init_sequence[] = { |
| 170 | timer_init, |
| 171 | env_init, /* initialize environment */ |
wdenk | 7cb22f9 | 2003-12-27 19:24:54 +0000 | [diff] [blame] | 172 | #ifdef CONFIG_INCA_IP |
| 173 | incaip_set_cpuclk, /* set cpu clock according to environment variable */ |
| 174 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 175 | init_baudrate, /* initialze baudrate settings */ |
| 176 | serial_init, /* serial communications setup */ |
| 177 | console_init_f, |
| 178 | display_banner, /* say that we are here */ |
wdenk | 85ec0bc | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 179 | checkboard, |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 180 | init_func_ram, |
| 181 | NULL, |
| 182 | }; |
| 183 | |
| 184 | |
| 185 | void board_init_f(ulong bootflag) |
| 186 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 187 | gd_t gd_data, *id; |
| 188 | bd_t *bd; |
| 189 | init_fnc_t **init_fnc_ptr; |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 190 | ulong addr, addr_sp, len = (ulong)&uboot_end - CFG_MONITOR_BASE; |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 191 | ulong *s; |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 192 | #ifdef CONFIG_PURPLE |
| 193 | void copy_code (ulong); |
| 194 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 195 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 196 | /* Pointer is writable since we allocated a register for it. |
| 197 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 198 | gd = &gd_data; |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 199 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
| 200 | __asm__ __volatile__("": : :"memory"); |
| 201 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 202 | memset ((void *)gd, 0, sizeof (gd_t)); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 203 | |
| 204 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 205 | if ((*init_fnc_ptr)() != 0) { |
| 206 | hang (); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * Now that we have DRAM mapped and working, we can |
| 212 | * relocate the code and continue running from DRAM. |
| 213 | */ |
| 214 | addr = CFG_SDRAM_BASE + gd->ram_size; |
| 215 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 216 | /* We can reserve some RAM "on top" here. |
| 217 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 218 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 219 | /* round down to next 4 kB limit. |
| 220 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 221 | addr &= ~(4096 - 1); |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 222 | debug ("Top of RAM usable for U-Boot at: %08lx\n", addr); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 223 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 224 | /* Reserve memory for U-Boot code, data & bss |
| 225 | * round down to next 16 kB limit |
| 226 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 227 | addr -= len; |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 228 | addr &= ~(16 * 1024 - 1); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 229 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 230 | debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 231 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 232 | /* Reserve memory for malloc() arena. |
| 233 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 234 | addr_sp = addr - TOTAL_MALLOC_LEN; |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 235 | debug ("Reserving %dk for malloc() at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 236 | TOTAL_MALLOC_LEN >> 10, addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 237 | |
| 238 | /* |
| 239 | * (permanently) allocate a Board Info struct |
| 240 | * and a permanent copy of the "global" data |
| 241 | */ |
| 242 | addr_sp -= sizeof(bd_t); |
| 243 | bd = (bd_t *)addr_sp; |
| 244 | gd->bd = bd; |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 245 | debug ("Reserving %d Bytes for Board Info at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 246 | sizeof(bd_t), addr_sp); |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 247 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 248 | addr_sp -= sizeof(gd_t); |
| 249 | id = (gd_t *)addr_sp; |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 250 | debug ("Reserving %d Bytes for Global Data at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 251 | sizeof (gd_t), addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 252 | |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 253 | /* Reserve memory for boot params. |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 254 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 255 | addr_sp -= CFG_BOOTPARAMS_LEN; |
| 256 | bd->bi_boot_params = addr_sp; |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 257 | debug ("Reserving %dk for boot params() at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 258 | CFG_BOOTPARAMS_LEN >> 10, addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 259 | |
| 260 | /* |
| 261 | * Finally, we set up a new (bigger) stack. |
| 262 | * |
| 263 | * Leave some safety gap for SP, force alignment on 16 byte boundary |
| 264 | * Clear initial stack frame |
| 265 | */ |
| 266 | addr_sp -= 16; |
| 267 | addr_sp &= ~0xF; |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 268 | s = (ulong *)addr_sp; |
| 269 | *s-- = 0; |
| 270 | *s-- = 0; |
| 271 | addr_sp = (ulong)s; |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 272 | debug ("Stack Pointer at: %08lx\n", addr_sp); |
| 273 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 274 | /* |
| 275 | * Save local variables to board info struct |
| 276 | */ |
| 277 | bd->bi_memstart = CFG_SDRAM_BASE; /* start of DRAM memory */ |
| 278 | bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */ |
| 279 | bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ |
| 280 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 281 | memcpy (id, (void *)gd, sizeof (gd_t)); |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 282 | |
| 283 | /* On the purple board we copy the code in a special way |
| 284 | * in order to solve flash problems |
| 285 | */ |
| 286 | #ifdef CONFIG_PURPLE |
| 287 | copy_code(addr); |
| 288 | #endif |
| 289 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 290 | relocate_code (addr_sp, id, addr); |
| 291 | |
| 292 | /* NOTREACHED - relocate_code() does not return */ |
| 293 | } |
| 294 | /************************************************************************ |
| 295 | * |
| 296 | * This is the next part if the initialization sequence: we are now |
| 297 | * running from RAM and have a "normal" C environment, i. e. global |
| 298 | * data can be written, BSS has been cleared, the stack size in not |
| 299 | * that critical any more, etc. |
| 300 | * |
| 301 | ************************************************************************ |
| 302 | */ |
| 303 | |
| 304 | void board_init_r (gd_t *id, ulong dest_addr) |
| 305 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 306 | cmd_tbl_t *cmdtp; |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 307 | #ifndef CFG_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 308 | ulong size; |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 309 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 310 | extern void malloc_bin_reloc (void); |
| 311 | #ifndef CFG_ENV_IS_NOWHERE |
| 312 | extern char * env_name_spec; |
| 313 | #endif |
| 314 | char *s, *e; |
| 315 | bd_t *bd; |
| 316 | int i; |
| 317 | |
| 318 | gd = id; |
| 319 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
| 320 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 321 | debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 322 | |
| 323 | gd->reloc_off = dest_addr - CFG_MONITOR_BASE; |
| 324 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 325 | monitor_flash_len = (ulong)&uboot_end_data - dest_addr; |
| 326 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 327 | /* |
| 328 | * We have to relocate the command table manually |
| 329 | */ |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 330 | for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 331 | ulong addr; |
| 332 | |
| 333 | addr = (ulong) (cmdtp->cmd) + gd->reloc_off; |
| 334 | #if 0 |
| 335 | printf ("Command \"%s\": 0x%08lx => 0x%08lx\n", |
| 336 | cmdtp->name, (ulong) (cmdtp->cmd), addr); |
| 337 | #endif |
| 338 | cmdtp->cmd = |
| 339 | (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr; |
| 340 | |
| 341 | addr = (ulong)(cmdtp->name) + gd->reloc_off; |
| 342 | cmdtp->name = (char *)addr; |
| 343 | |
| 344 | if (cmdtp->usage) { |
| 345 | addr = (ulong)(cmdtp->usage) + gd->reloc_off; |
| 346 | cmdtp->usage = (char *)addr; |
| 347 | } |
| 348 | #ifdef CFG_LONGHELP |
| 349 | if (cmdtp->help) { |
| 350 | addr = (ulong)(cmdtp->help) + gd->reloc_off; |
| 351 | cmdtp->help = (char *)addr; |
| 352 | } |
| 353 | #endif |
| 354 | } |
| 355 | /* there are some other pointer constants we must deal with */ |
| 356 | #ifndef CFG_ENV_IS_NOWHERE |
| 357 | env_name_spec += gd->reloc_off; |
| 358 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 359 | |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 360 | bd = gd->bd; |
| 361 | |
| 362 | #ifndef CFG_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 363 | /* configure available FLASH banks */ |
| 364 | size = flash_init(); |
| 365 | display_flash_config (size); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 366 | bd->bi_flashsize = size; |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 367 | #endif |
| 368 | |
| 369 | bd->bi_flashstart = CFG_FLASH_BASE; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 370 | #if CFG_MONITOR_BASE == CFG_FLASH_BASE |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 371 | bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 372 | #else |
| 373 | bd->bi_flashoffset = 0; |
| 374 | #endif |
| 375 | |
| 376 | /* initialize malloc() area */ |
| 377 | mem_malloc_init(); |
| 378 | malloc_bin_reloc(); |
| 379 | |
| 380 | /* relocate environment function pointers etc. */ |
| 381 | env_relocate(); |
| 382 | |
| 383 | /* board MAC address */ |
| 384 | s = getenv ("ethaddr"); |
| 385 | for (i = 0; i < 6; ++i) { |
| 386 | bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0; |
| 387 | if (s) |
| 388 | s = (*e) ? e + 1 : e; |
| 389 | } |
| 390 | |
| 391 | /* IP Address */ |
| 392 | bd->bi_ip_addr = getenv_IPaddr("ipaddr"); |
| 393 | |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 394 | #if defined(CONFIG_PCI) |
| 395 | /* |
| 396 | * Do pci configuration |
| 397 | */ |
| 398 | pci_init(); |
| 399 | #endif |
| 400 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 401 | /** leave this here (after malloc(), environment and PCI are working) **/ |
| 402 | /* Initialize devices */ |
| 403 | devices_init (); |
| 404 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 405 | jumptable_init (); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 406 | |
| 407 | /* Initialize the console (after the relocation and devices init) */ |
| 408 | console_init_r (); |
| 409 | /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/ |
| 410 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 411 | /* Initialize from environment */ |
| 412 | if ((s = getenv ("loadaddr")) != NULL) { |
| 413 | load_addr = simple_strtoul (s, NULL, 16); |
| 414 | } |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 415 | #if defined(CONFIG_CMD_NET) |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 416 | if ((s = getenv ("bootfile")) != NULL) { |
| 417 | copy_filename (BootFile, s, sizeof (BootFile)); |
| 418 | } |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 419 | #endif |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 420 | |
Jason McMullan | e996bc3 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 421 | #ifdef CONFIG_CMD_NAND |
| 422 | puts ("NAND: "); |
| 423 | nand_init (); /* go init the NAND */ |
| 424 | #endif |
| 425 | |
Jason McMullan | 89a1550 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 426 | #ifdef CONFIG_CMD_SPI |
| 427 | puts ("SPI: "); |
| 428 | spi_init (); /* go init the SPI */ |
| 429 | puts ("ready\n"); |
| 430 | #endif |
| 431 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 432 | #if defined(CONFIG_MISC_INIT_R) |
| 433 | /* miscellaneous platform dependent initialisations */ |
| 434 | misc_init_r (); |
| 435 | #endif |
| 436 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 437 | #if defined(CONFIG_CMD_NET) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 438 | #if defined(CONFIG_NET_MULTI) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 439 | puts ("Net: "); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 440 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 441 | eth_initialize(gd->bd); |
| 442 | #endif |
| 443 | |
| 444 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 445 | for (;;) { |
| 446 | main_loop (); |
| 447 | } |
| 448 | |
| 449 | /* NOTREACHED - no way out of command loop except booting */ |
| 450 | } |
| 451 | |
| 452 | void hang (void) |
| 453 | { |
| 454 | puts ("### ERROR ### Please RESET the board ###\n"); |
| 455 | for (;;); |
| 456 | } |