]>
Commit | Line | Data |
---|---|---|
4e5ca3eb | 1 | /* |
bf9e3b38 WD |
2 | * (C) Copyright 2003 |
3 | * Josef Baumgartner <josef.baumgartner@telex.de> | |
4 | * | |
5 | * (C) Copyright 2000-2002 | |
4e5ca3eb WD |
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 | ||
27 | #include <common.h> | |
28 | #include <watchdog.h> | |
29 | #include <command.h> | |
30 | #include <malloc.h> | |
31 | #include <devices.h> | |
bf9e3b38 | 32 | |
8ae158cd | 33 | #include <asm/immap.h> |
bf9e3b38 | 34 | |
7def6b34 | 35 | #if defined(CONFIG_CMD_IDE) |
4e5ca3eb WD |
36 | #include <ide.h> |
37 | #endif | |
7def6b34 | 38 | #if defined(CONFIG_CMD_SCSI) |
4e5ca3eb WD |
39 | #include <scsi.h> |
40 | #endif | |
7def6b34 | 41 | #if defined(CONFIG_CMD_KGDB) |
4e5ca3eb WD |
42 | #include <kgdb.h> |
43 | #endif | |
44 | #ifdef CONFIG_STATUS_LED | |
45 | #include <status_led.h> | |
46 | #endif | |
47 | #include <net.h> | |
b71190f3 | 48 | #include <serial.h> |
7def6b34 | 49 | #if defined(CONFIG_CMD_BEDBUG) |
4e5ca3eb WD |
50 | #include <cmd_bedbug.h> |
51 | #endif | |
6d0f6bcf | 52 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
4e5ca3eb WD |
53 | #include <commproc.h> |
54 | #endif | |
55 | #include <version.h> | |
56 | ||
e2c22d78 SR |
57 | #if defined(CONFIG_HARD_I2C) || \ |
58 | defined(CONFIG_SOFT_I2C) | |
59 | #include <i2c.h> | |
60 | #endif | |
61 | ||
a7323bba TL |
62 | #ifdef CONFIG_CMD_SPI |
63 | #include <spi.h> | |
64 | #endif | |
65 | ||
ab6ba842 TL |
66 | #include <nand.h> |
67 | ||
d87080b7 WD |
68 | DECLARE_GLOBAL_DATA_PTR; |
69 | ||
4e5ca3eb WD |
70 | static char *failed = "*** failed ***\n"; |
71 | ||
72 | #ifdef CONFIG_PCU_E | |
73 | extern flash_info_t flash_info[]; | |
74 | #endif | |
75 | ||
bf9e3b38 WD |
76 | #include <environment.h> |
77 | ||
6d0f6bcf JCPV |
78 | #if ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \ |
79 | (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \ | |
9314cee6 | 80 | defined(CONFIG_ENV_IS_IN_NVRAM) |
6d0f6bcf | 81 | #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) |
4e5ca3eb | 82 | #else |
6d0f6bcf | 83 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
4e5ca3eb WD |
84 | #endif |
85 | ||
bf9e3b38 WD |
86 | extern ulong __init_end; |
87 | extern ulong _end; | |
88 | ||
89 | extern void timer_init(void); | |
90 | ||
91 | #if defined(CONFIG_WATCHDOG) | |
92 | # define INIT_FUNC_WATCHDOG_INIT watchdog_init, | |
93 | # define WATCHDOG_DISABLE watchdog_disable | |
94 | ||
95 | extern int watchdog_init(void); | |
96 | extern int watchdog_disable(void); | |
97 | #else | |
98 | # define INIT_FUNC_WATCHDOG_INIT /* undef */ | |
99 | # define WATCHDOG_DISABLE /* undef */ | |
100 | #endif /* CONFIG_WATCHDOG */ | |
101 | ||
102 | ulong monitor_flash_len; | |
103 | ||
4e5ca3eb WD |
104 | /* |
105 | * Begin and End of memory area for malloc(), and current "brk" | |
106 | */ | |
bf9e3b38 WD |
107 | static ulong mem_malloc_start = 0; |
108 | static ulong mem_malloc_end = 0; | |
109 | static ulong mem_malloc_brk = 0; | |
4e5ca3eb WD |
110 | |
111 | /************************************************************************ | |
112 | * Utilities * | |
113 | ************************************************************************ | |
114 | */ | |
115 | ||
116 | /* | |
117 | * The Malloc area is immediately below the monitor copy in DRAM | |
118 | */ | |
bf9e3b38 | 119 | static void mem_malloc_init (void) |
4e5ca3eb | 120 | { |
6d0f6bcf | 121 | ulong dest_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off; |
bf9e3b38 | 122 | |
4e5ca3eb WD |
123 | mem_malloc_end = dest_addr; |
124 | mem_malloc_start = dest_addr - TOTAL_MALLOC_LEN; | |
125 | mem_malloc_brk = mem_malloc_start; | |
126 | ||
bf9e3b38 WD |
127 | memset ((void *) mem_malloc_start, |
128 | 0, | |
4e5ca3eb WD |
129 | mem_malloc_end - mem_malloc_start); |
130 | } | |
131 | ||
132 | void *sbrk (ptrdiff_t increment) | |
133 | { | |
134 | ulong old = mem_malloc_brk; | |
135 | ulong new = old + increment; | |
136 | ||
bf9e3b38 WD |
137 | if ((new < mem_malloc_start) || |
138 | (new > mem_malloc_end) ) { | |
4e5ca3eb WD |
139 | return (NULL); |
140 | } | |
141 | mem_malloc_brk = new; | |
bf9e3b38 | 142 | return ((void *)old); |
4e5ca3eb WD |
143 | } |
144 | ||
bf9e3b38 WD |
145 | /* |
146 | * All attempts to come up with a "common" initialization sequence | |
147 | * that works for all boards and architectures failed: some of the | |
148 | * requirements are just _too_ different. To get rid of the resulting | |
149 | * mess of board dependend #ifdef'ed code we now make the whole | |
150 | * initialization sequence configurable to the user. | |
151 | * | |
152 | * The requirements for any new initalization function is simple: it | |
153 | * receives a pointer to the "global data" structure as it's only | |
154 | * argument, and returns an integer return code, where 0 means | |
155 | * "continue" and != 0 means "fatal error, hang the system". | |
156 | */ | |
157 | typedef int (init_fnc_t) (void); | |
158 | ||
159 | /************************************************************************ | |
8ae158cd | 160 | * Init Utilities |
bf9e3b38 WD |
161 | ************************************************************************ |
162 | * Some of this code should be moved into the core functions, | |
163 | * but let's get it working (again) first... | |
164 | */ | |
165 | ||
166 | static int init_baudrate (void) | |
4e5ca3eb | 167 | { |
6e37091a | 168 | char tmp[64]; /* long enough for environment variables */ |
bf9e3b38 WD |
169 | int i = getenv_r ("baudrate", tmp, sizeof (tmp)); |
170 | ||
171 | gd->baudrate = (i > 0) | |
172 | ? (int) simple_strtoul (tmp, NULL, 10) | |
173 | : CONFIG_BAUDRATE; | |
174 | return (0); | |
175 | } | |
4e5ca3eb | 176 | |
bf9e3b38 | 177 | /***********************************************************************/ |
4e5ca3eb | 178 | |
bf9e3b38 WD |
179 | static int init_func_ram (void) |
180 | { | |
bf9e3b38 WD |
181 | int board_type = 0; /* use dummy arg */ |
182 | puts ("DRAM: "); | |
4e5ca3eb | 183 | |
bf9e3b38 WD |
184 | if ((gd->ram_size = initdram (board_type)) > 0) { |
185 | print_size (gd->ram_size, "\n"); | |
186 | return (0); | |
187 | } | |
188 | puts (failed); | |
189 | return (1); | |
4e5ca3eb WD |
190 | } |
191 | ||
bf9e3b38 WD |
192 | /***********************************************************************/ |
193 | ||
e2c22d78 SR |
194 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
195 | static int init_func_i2c (void) | |
196 | { | |
197 | puts ("I2C: "); | |
6d0f6bcf | 198 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
e2c22d78 SR |
199 | puts ("ready\n"); |
200 | return (0); | |
201 | } | |
202 | #endif | |
203 | ||
a7323bba TL |
204 | #if defined(CONFIG_HARD_SPI) |
205 | static int init_func_spi (void) | |
206 | { | |
207 | puts ("SPI: "); | |
208 | spi_init (); | |
209 | puts ("ready\n"); | |
210 | return (0); | |
211 | } | |
212 | #endif | |
213 | ||
e2c22d78 SR |
214 | /***********************************************************************/ |
215 | ||
bf9e3b38 WD |
216 | /************************************************************************ |
217 | * Initialization sequence * | |
218 | ************************************************************************ | |
219 | */ | |
220 | ||
221 | init_fnc_t *init_sequence[] = { | |
d61ea148 | 222 | get_clocks, |
bf9e3b38 WD |
223 | env_init, |
224 | init_baudrate, | |
225 | serial_init, | |
226 | console_init_f, | |
227 | display_options, | |
228 | checkcpu, | |
229 | checkboard, | |
e2c22d78 SR |
230 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
231 | init_func_i2c, | |
a7323bba TL |
232 | #endif |
233 | #if defined(CONFIG_HARD_SPI) | |
234 | init_func_spi, | |
e2c22d78 | 235 | #endif |
bf9e3b38 | 236 | init_func_ram, |
6d0f6bcf | 237 | #if defined(CONFIG_SYS_DRAM_TEST) |
bf9e3b38 | 238 | testdram, |
6d0f6bcf | 239 | #endif /* CONFIG_SYS_DRAM_TEST */ |
bf9e3b38 WD |
240 | INIT_FUNC_WATCHDOG_INIT |
241 | NULL, /* Terminate this list */ | |
242 | }; | |
243 | ||
244 | ||
4e5ca3eb WD |
245 | /************************************************************************ |
246 | * | |
247 | * This is the first part of the initialization sequence that is | |
248 | * implemented in C, but still running from ROM. | |
249 | * | |
250 | * The main purpose is to provide a (serial) console interface as | |
251 | * soon as possible (so we can see any error messages), and to | |
252 | * initialize the RAM so that we can relocate the monitor code to | |
253 | * RAM. | |
254 | * | |
255 | * Be aware of the restrictions: global data is read-only, BSS is not | |
256 | * initialized, and stack space is limited to a few kB. | |
257 | * | |
258 | ************************************************************************ | |
259 | */ | |
260 | ||
bf9e3b38 WD |
261 | void |
262 | board_init_f (ulong bootflag) | |
4e5ca3eb | 263 | { |
4e5ca3eb | 264 | bd_t *bd; |
bf9e3b38 | 265 | ulong len, addr, addr_sp; |
483a0cf8 | 266 | ulong *paddr; |
bf9e3b38 WD |
267 | gd_t *id; |
268 | init_fnc_t **init_fnc_ptr; | |
269 | #ifdef CONFIG_PRAM | |
270 | int i; | |
271 | ulong reg; | |
6e37091a | 272 | char tmp[64]; /* long enough for environment variables */ |
bf9e3b38 | 273 | #endif |
4e5ca3eb | 274 | |
bf9e3b38 | 275 | /* Pointer is writable since we allocated a register for it */ |
6d0f6bcf | 276 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
93f6a677 WD |
277 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
278 | __asm__ __volatile__("": : :"memory"); | |
4e5ca3eb | 279 | |
bf9e3b38 WD |
280 | /* Clear initial global data */ |
281 | memset ((void *) gd, 0, sizeof (gd_t)); | |
4e5ca3eb | 282 | |
bf9e3b38 WD |
283 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
284 | if ((*init_fnc_ptr)() != 0) { | |
285 | hang (); | |
286 | } | |
4e5ca3eb | 287 | } |
4e5ca3eb WD |
288 | |
289 | /* | |
290 | * Now that we have DRAM mapped and working, we can | |
291 | * relocate the code and continue running from DRAM. | |
292 | * | |
293 | * Reserve memory at end of RAM for (top down in that order): | |
bf9e3b38 WD |
294 | * - protected RAM |
295 | * - LCD framebuffer | |
296 | * - monitor code | |
297 | * - board info struct | |
4e5ca3eb | 298 | */ |
6d0f6bcf | 299 | len = (ulong)&_end - CONFIG_SYS_MONITOR_BASE; |
4e5ca3eb | 300 | |
6d0f6bcf | 301 | addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size; |
4e5ca3eb | 302 | |
bf9e3b38 WD |
303 | #ifdef CONFIG_LOGBUFFER |
304 | /* reserve kernel log buffer */ | |
305 | addr -= (LOGBUFF_RESERVE); | |
306 | debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr); | |
307 | #endif | |
308 | ||
309 | #ifdef CONFIG_PRAM | |
310 | /* | |
311 | * reserve protected RAM | |
312 | */ | |
313 | i = getenv_r ("pram", tmp, sizeof (tmp)); | |
314 | reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM; | |
315 | addr -= (reg << 10); /* size is in kB */ | |
316 | debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr); | |
317 | #endif /* CONFIG_PRAM */ | |
4e5ca3eb | 318 | |
1552af70 TL |
319 | /* round down to next 4 kB limit */ |
320 | addr &= ~(4096 - 1); | |
321 | debug ("Top of RAM usable for U-Boot at: %08lx\n", addr); | |
322 | ||
323 | #ifdef CONFIG_LCD | |
324 | /* reserve memory for LCD display (always full pages) */ | |
325 | addr = lcd_setmem (addr); | |
326 | gd->fb_base = addr; | |
327 | #endif /* CONFIG_LCD */ | |
328 | ||
bf9e3b38 WD |
329 | /* |
330 | * reserve memory for U-Boot code, data & bss | |
331 | * round down to next 4 kB limit | |
332 | */ | |
4e5ca3eb | 333 | addr -= len; |
bf9e3b38 WD |
334 | addr &= ~(4096 - 1); |
335 | ||
336 | debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); | |
4e5ca3eb WD |
337 | |
338 | /* | |
bf9e3b38 | 339 | * reserve memory for malloc() arena |
4e5ca3eb | 340 | */ |
bf9e3b38 WD |
341 | addr_sp = addr - TOTAL_MALLOC_LEN; |
342 | debug ("Reserving %dk for malloc() at: %08lx\n", | |
343 | TOTAL_MALLOC_LEN >> 10, addr_sp); | |
4e5ca3eb | 344 | |
bf9e3b38 WD |
345 | /* |
346 | * (permanently) allocate a Board Info struct | |
347 | * and a permanent copy of the "global" data | |
348 | */ | |
349 | addr_sp -= sizeof (bd_t); | |
350 | bd = (bd_t *) addr_sp; | |
351 | gd->bd = bd; | |
b64f190b | 352 | debug ("Reserving %zu Bytes for Board Info at: %08lx\n", |
bf9e3b38 WD |
353 | sizeof (bd_t), addr_sp); |
354 | addr_sp -= sizeof (gd_t); | |
355 | id = (gd_t *) addr_sp; | |
b64f190b | 356 | debug ("Reserving %zu Bytes for Global Data at: %08lx\n", |
bf9e3b38 WD |
357 | sizeof (gd_t), addr_sp); |
358 | ||
53677ef1 | 359 | /* Reserve memory for boot params. */ |
6d0f6bcf | 360 | addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN; |
bf9e3b38 WD |
361 | bd->bi_boot_params = addr_sp; |
362 | debug ("Reserving %dk for boot parameters at: %08lx\n", | |
6d0f6bcf | 363 | CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp); |
4e5ca3eb | 364 | |
bf9e3b38 WD |
365 | /* |
366 | * Finally, we set up a new (bigger) stack. | |
367 | * | |
368 | * Leave some safety gap for SP, force alignment on 16 byte boundary | |
369 | * Clear initial stack frame | |
370 | */ | |
371 | addr_sp -= 16; | |
372 | addr_sp &= ~0xF; | |
483a0cf8 MB |
373 | |
374 | paddr = (ulong *)addr_sp; | |
375 | *paddr-- = 0; | |
376 | *paddr-- = 0; | |
377 | addr_sp = (ulong)paddr; | |
977b50f8 | 378 | |
bf9e3b38 | 379 | debug ("Stack Pointer at: %08lx\n", addr_sp); |
4e5ca3eb | 380 | |
bf9e3b38 WD |
381 | /* |
382 | * Save local variables to board info struct | |
383 | */ | |
6d0f6bcf | 384 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */ |
bf9e3b38 | 385 | bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */ |
6d0f6bcf JCPV |
386 | #ifdef CONFIG_SYS_INIT_RAM_ADDR |
387 | bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */ | |
388 | bd->bi_sramsize = CONFIG_SYS_INIT_RAM_END; /* size of SRAM memory */ | |
8e585f02 | 389 | #endif |
6d0f6bcf | 390 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ |
bf9e3b38 WD |
391 | |
392 | bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */ | |
393 | ||
394 | WATCHDOG_RESET (); | |
395 | bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */ | |
396 | bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */ | |
8ae158cd TL |
397 | #ifdef CONFIG_PCI |
398 | bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */ | |
399 | #endif | |
400 | #ifdef CONFIG_EXTRA_CLOCK | |
401 | bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */ | |
402 | bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */ | |
403 | bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */ | |
404 | #endif | |
bf9e3b38 | 405 | bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ |
4e5ca3eb | 406 | |
6d0f6bcf | 407 | #ifdef CONFIG_SYS_EXTBDINFO |
4e5ca3eb | 408 | strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version)); |
bf9e3b38 WD |
409 | strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version)); |
410 | #endif | |
411 | ||
412 | WATCHDOG_RESET (); | |
4e5ca3eb | 413 | |
bf9e3b38 WD |
414 | #ifdef CONFIG_POST |
415 | post_bootmode_init(); | |
416 | post_run (NULL, POST_ROM | post_bootmode_get(0)); | |
4e5ca3eb WD |
417 | #endif |
418 | ||
bf9e3b38 | 419 | WATCHDOG_RESET(); |
4e5ca3eb | 420 | |
bf9e3b38 WD |
421 | memcpy (id, (void *)gd, sizeof (gd_t)); |
422 | ||
6d0f6bcf | 423 | debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr); |
bf9e3b38 | 424 | relocate_code (addr_sp, id, addr); |
4e5ca3eb | 425 | |
bf9e3b38 WD |
426 | /* NOTREACHED - jump_to_ram() does not return */ |
427 | } | |
4e5ca3eb WD |
428 | |
429 | /************************************************************************ | |
430 | * | |
431 | * This is the next part if the initialization sequence: we are now | |
432 | * running from RAM and have a "normal" C environment, i. e. global | |
433 | * data can be written, BSS has been cleared, the stack size in not | |
434 | * that critical any more, etc. | |
435 | * | |
436 | ************************************************************************ | |
437 | */ | |
bf9e3b38 | 438 | void board_init_r (gd_t *id, ulong dest_addr) |
4e5ca3eb | 439 | { |
4e5ca3eb | 440 | cmd_tbl_t *cmdtp; |
bf9e3b38 | 441 | char *s, *e; |
4e5ca3eb | 442 | bd_t *bd; |
bf9e3b38 WD |
443 | int i; |
444 | extern void malloc_bin_reloc (void); | |
4e5ca3eb | 445 | |
93f6d725 | 446 | #ifndef CONFIG_ENV_IS_NOWHERE |
bf9e3b38 WD |
447 | extern char * env_name_spec; |
448 | #endif | |
6d0f6bcf | 449 | #ifndef CONFIG_SYS_NO_FLASH |
bf9e3b38 WD |
450 | ulong flash_size; |
451 | #endif | |
452 | gd = id; /* initialize RAM version of global data */ | |
4e5ca3eb | 453 | bd = gd->bd; |
bf9e3b38 WD |
454 | |
455 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ | |
456 | ||
8e585f02 TL |
457 | #ifdef CONFIG_SERIAL_MULTI |
458 | serial_initialize(); | |
459 | #endif | |
460 | ||
bf9e3b38 WD |
461 | debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
462 | ||
463 | WATCHDOG_RESET (); | |
464 | ||
6d0f6bcf | 465 | gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE; |
bf9e3b38 WD |
466 | |
467 | monitor_flash_len = (ulong)&__init_end - dest_addr; | |
468 | ||
469 | /* | |
470 | * We have to relocate the command table manually | |
471 | */ | |
472 | for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) { | |
473 | ulong addr; | |
474 | addr = (ulong) (cmdtp->cmd) + gd->reloc_off; | |
475 | #if 0 | |
476 | printf ("Command \"%s\": 0x%08lx => 0x%08lx\n", | |
477 | cmdtp->name, (ulong) (cmdtp->cmd), addr); | |
478 | #endif | |
479 | cmdtp->cmd = | |
480 | (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr; | |
481 | ||
482 | addr = (ulong)(cmdtp->name) + gd->reloc_off; | |
483 | cmdtp->name = (char *)addr; | |
484 | ||
485 | if (cmdtp->usage) { | |
486 | addr = (ulong)(cmdtp->usage) + gd->reloc_off; | |
487 | cmdtp->usage = (char *)addr; | |
488 | } | |
6d0f6bcf | 489 | #ifdef CONFIG_SYS_LONGHELP |
bf9e3b38 WD |
490 | if (cmdtp->help) { |
491 | addr = (ulong)(cmdtp->help) + gd->reloc_off; | |
492 | cmdtp->help = (char *)addr; | |
493 | } | |
494 | #endif | |
495 | } | |
496 | /* there are some other pointer constants we must deal with */ | |
93f6d725 | 497 | #ifndef CONFIG_ENV_IS_NOWHERE |
bf9e3b38 WD |
498 | env_name_spec += gd->reloc_off; |
499 | #endif | |
500 | ||
501 | WATCHDOG_RESET (); | |
502 | ||
503 | #ifdef CONFIG_LOGBUFFER | |
504 | logbuff_init_ptrs (); | |
505 | #endif | |
506 | #ifdef CONFIG_POST | |
507 | post_output_backlog (); | |
508 | post_reloc (); | |
509 | #endif | |
510 | WATCHDOG_RESET(); | |
511 | ||
512 | #if 0 | |
513 | /* instruction cache enabled in cpu_init_f() for faster relocation */ | |
514 | icache_enable (); /* it's time to enable the instruction cache */ | |
515 | #endif | |
4e5ca3eb WD |
516 | |
517 | /* | |
518 | * Setup trap handlers | |
519 | */ | |
6d0f6bcf | 520 | trap_init (CONFIG_SYS_SDRAM_BASE); |
4e5ca3eb | 521 | |
6d0f6bcf | 522 | #if !defined(CONFIG_SYS_NO_FLASH) |
4e5ca3eb WD |
523 | puts ("FLASH: "); |
524 | ||
525 | if ((flash_size = flash_init ()) > 0) { | |
6d0f6bcf | 526 | # ifdef CONFIG_SYS_FLASH_CHECKSUM |
bf9e3b38 | 527 | print_size (flash_size, ""); |
4e5ca3eb WD |
528 | /* |
529 | * Compute and print flash CRC if flashchecksum is set to 'y' | |
530 | * | |
bf9e3b38 | 531 | * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX |
4e5ca3eb WD |
532 | */ |
533 | s = getenv ("flashchecksum"); | |
534 | if (s && (*s == 'y')) { | |
535 | printf (" CRC: %08lX", | |
bf9e3b38 | 536 | crc32 (0, |
6d0f6bcf | 537 | (const unsigned char *) CONFIG_SYS_FLASH_BASE, |
bf9e3b38 WD |
538 | flash_size) |
539 | ); | |
4e5ca3eb WD |
540 | } |
541 | putc ('\n'); | |
6d0f6bcf | 542 | # else /* !CONFIG_SYS_FLASH_CHECKSUM */ |
bf9e3b38 | 543 | print_size (flash_size, "\n"); |
6d0f6bcf | 544 | # endif /* CONFIG_SYS_FLASH_CHECKSUM */ |
4e5ca3eb WD |
545 | } else { |
546 | puts (failed); | |
547 | hang (); | |
548 | } | |
549 | ||
6d0f6bcf | 550 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */ |
bf9e3b38 WD |
551 | bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */ |
552 | bd->bi_flashoffset = 0; | |
6d0f6bcf | 553 | #else /* CONFIG_SYS_NO_FLASH */ |
bf9e3b38 WD |
554 | bd->bi_flashsize = 0; |
555 | bd->bi_flashstart = 0; | |
556 | bd->bi_flashoffset = 0; | |
6d0f6bcf | 557 | #endif /* !CONFIG_SYS_NO_FLASH */ |
4e5ca3eb WD |
558 | |
559 | WATCHDOG_RESET (); | |
560 | ||
561 | /* initialize higher level parts of CPU like time base and timers */ | |
562 | cpu_init_r (); | |
563 | ||
564 | WATCHDOG_RESET (); | |
565 | ||
566 | /* initialize malloc() area */ | |
bf9e3b38 WD |
567 | mem_malloc_init (); |
568 | malloc_bin_reloc (); | |
4e5ca3eb WD |
569 | |
570 | #ifdef CONFIG_SPI | |
bb1f8b4f | 571 | # if !defined(CONFIG_ENV_IS_IN_EEPROM) |
4e5ca3eb WD |
572 | spi_init_f (); |
573 | # endif | |
574 | spi_init_r (); | |
575 | #endif | |
576 | ||
577 | /* relocate environment function pointers etc. */ | |
578 | env_relocate (); | |
579 | ||
bf9e3b38 WD |
580 | /* |
581 | * Fill in missing fields of bd_info. | |
582 | * We do this here, where we have "normal" access to the | |
583 | * environment; we used to do this still running from ROM, | |
584 | * where had to use getenv_r(), which can be pretty slow when | |
585 | * the environment is in EEPROM. | |
586 | */ | |
587 | s = getenv ("ethaddr"); | |
588 | for (i = 0; i < 6; ++i) { | |
589 | bd->bi_enetaddr[i] = s ? simple_strtoul (s, &e, 16) : 0; | |
590 | if (s) | |
591 | s = (*e) ? e + 1 : e; | |
592 | } | |
8e585f02 TL |
593 | #ifdef CONFIG_HAS_ETH1 |
594 | /* handle the 2nd ethernet address */ | |
595 | ||
596 | s = getenv ("eth1addr"); | |
597 | for (i = 0; i < 6; ++i) { | |
598 | bd->bi_enet1addr[i] = s ? simple_strtoul (s, &e, 16) : 0; | |
599 | if (s) | |
600 | s = (*e) ? e + 1 : e; | |
601 | } | |
602 | #endif | |
603 | #ifdef CONFIG_HAS_ETH2 | |
604 | /* handle the 3rd ethernet address */ | |
605 | ||
606 | s = getenv ("eth2addr"); | |
607 | for (i = 0; i < 6; ++i) { | |
608 | bd->bi_enet2addr[i] = s ? simple_strtoul (s, &e, 16) : 0; | |
609 | if (s) | |
610 | s = (*e) ? e + 1 : e; | |
611 | } | |
612 | #endif | |
613 | ||
614 | #ifdef CONFIG_HAS_ETH3 | |
615 | /* handle 4th ethernet address */ | |
616 | s = getenv("eth3addr"); | |
617 | for (i = 0; i < 6; ++i) { | |
618 | bd->bi_enet3addr[i] = s ? simple_strtoul (s, &e, 16) : 0; | |
619 | if (s) | |
620 | s = (*e) ? e + 1 : e; | |
621 | } | |
622 | #endif | |
bf9e3b38 | 623 | |
4e5ca3eb WD |
624 | /* IP Address */ |
625 | bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); | |
626 | ||
627 | WATCHDOG_RESET (); | |
628 | ||
8e585f02 TL |
629 | #if defined(CONFIG_PCI) |
630 | /* | |
631 | * Do pci configuration | |
632 | */ | |
633 | pci_init (); | |
634 | #endif | |
4e5ca3eb | 635 | |
bf9e3b38 WD |
636 | /** leave this here (after malloc(), environment and PCI are working) **/ |
637 | /* Initialize devices */ | |
638 | devices_init (); | |
4e5ca3eb | 639 | |
bf9e3b38 WD |
640 | /* Initialize the jump table for applications */ |
641 | jumptable_init (); | |
4e5ca3eb | 642 | |
bf9e3b38 WD |
643 | /* Initialize the console (after the relocation and devices init) */ |
644 | console_init_r (); | |
4e5ca3eb | 645 | |
e2c22d78 SR |
646 | #if defined(CONFIG_MISC_INIT_R) |
647 | /* miscellaneous platform dependent initialisations */ | |
648 | misc_init_r (); | |
649 | #endif | |
650 | ||
7def6b34 | 651 | #if defined(CONFIG_CMD_KGDB) |
4e5ca3eb WD |
652 | WATCHDOG_RESET (); |
653 | puts ("KGDB: "); | |
654 | kgdb_init (); | |
655 | #endif | |
656 | ||
bf9e3b38 WD |
657 | debug ("U-Boot relocated to %08lx\n", dest_addr); |
658 | ||
4e5ca3eb WD |
659 | /* |
660 | * Enable Interrupts | |
661 | */ | |
662 | interrupt_init (); | |
bf9e3b38 WD |
663 | |
664 | /* Must happen after interrupts are initialized since | |
665 | * an irq handler gets installed | |
666 | */ | |
667 | timer_init(); | |
668 | ||
42dfe7a1 | 669 | #ifdef CONFIG_SERIAL_SOFTWARE_FIFO |
bf9e3b38 WD |
670 | serial_buffered_init(); |
671 | #endif | |
672 | ||
673 | #ifdef CONFIG_STATUS_LED | |
674 | status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING); | |
675 | #endif | |
676 | ||
4e5ca3eb | 677 | udelay (20); |
bf9e3b38 | 678 | |
4e5ca3eb WD |
679 | set_timer (0); |
680 | ||
681 | /* Insert function pointers now that we have relocated the code */ | |
682 | ||
683 | /* Initialize from environment */ | |
684 | if ((s = getenv ("loadaddr")) != NULL) { | |
685 | load_addr = simple_strtoul (s, NULL, 16); | |
686 | } | |
7def6b34 | 687 | #if defined(CONFIG_CMD_NET) |
4e5ca3eb WD |
688 | if ((s = getenv ("bootfile")) != NULL) { |
689 | copy_filename (BootFile, s, sizeof (BootFile)); | |
690 | } | |
b3aff0cb | 691 | #endif |
4e5ca3eb WD |
692 | |
693 | WATCHDOG_RESET (); | |
694 | ||
7def6b34 | 695 | #if defined(CONFIG_CMD_DOC) |
bf9e3b38 WD |
696 | WATCHDOG_RESET (); |
697 | puts ("DOC: "); | |
698 | doc_init (); | |
699 | #endif | |
700 | ||
7def6b34 | 701 | #if defined(CONFIG_CMD_NAND) |
4e5ca3eb | 702 | WATCHDOG_RESET (); |
d860c34f | 703 | puts ("NAND: "); |
bf9e3b38 WD |
704 | nand_init(); /* go init the NAND */ |
705 | #endif | |
706 | ||
d61ea148 | 707 | #if defined(CONFIG_CMD_NET) |
bf9e3b38 | 708 | WATCHDOG_RESET(); |
8e585f02 | 709 | #if defined(FEC_ENET) |
bf9e3b38 WD |
710 | eth_init(bd); |
711 | #endif | |
8e585f02 TL |
712 | #if defined(CONFIG_NET_MULTI) |
713 | puts ("Net: "); | |
ab77bc54 | 714 | eth_initialize (bd); |
8e585f02 TL |
715 | #endif |
716 | #endif | |
bf9e3b38 WD |
717 | |
718 | #ifdef CONFIG_POST | |
719 | post_run (NULL, POST_RAM | post_bootmode_get(0)); | |
4e5ca3eb WD |
720 | #endif |
721 | ||
d61ea148 SR |
722 | #if defined(CONFIG_CMD_PCMCIA) \ |
723 | && !defined(CONFIG_CMD_IDE) | |
8e585f02 TL |
724 | WATCHDOG_RESET (); |
725 | puts ("PCMCIA:"); | |
726 | pcmcia_init (); | |
727 | #endif | |
728 | ||
d61ea148 | 729 | #if defined(CONFIG_CMD_IDE) |
8e585f02 TL |
730 | WATCHDOG_RESET (); |
731 | puts ("IDE: "); | |
732 | ide_init (); | |
d61ea148 | 733 | #endif |
8e585f02 | 734 | |
4e5ca3eb WD |
735 | #ifdef CONFIG_LAST_STAGE_INIT |
736 | WATCHDOG_RESET (); | |
737 | /* | |
738 | * Some parts can be only initialized if all others (like | |
739 | * Interrupts) are up and running (i.e. the PC-style ISA | |
740 | * keyboard). | |
741 | */ | |
742 | last_stage_init (); | |
743 | #endif | |
744 | ||
7def6b34 | 745 | #if defined(CONFIG_CMD_BEDBUG) |
4e5ca3eb WD |
746 | WATCHDOG_RESET (); |
747 | bedbug_init (); | |
748 | #endif | |
749 | ||
bf9e3b38 | 750 | #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER) |
4e5ca3eb WD |
751 | /* |
752 | * Export available size of memory for Linux, | |
753 | * taking into account the protected RAM at top of memory | |
754 | */ | |
755 | { | |
756 | ulong pram; | |
6e37091a | 757 | char memsz[32]; |
bf9e3b38 WD |
758 | #ifdef CONFIG_PRAM |
759 | char *s; | |
4e5ca3eb WD |
760 | |
761 | if ((s = getenv ("pram")) != NULL) { | |
762 | pram = simple_strtoul (s, NULL, 10); | |
763 | } else { | |
764 | pram = CONFIG_PRAM; | |
765 | } | |
bf9e3b38 WD |
766 | #else |
767 | pram=0; | |
768 | #endif | |
769 | #ifdef CONFIG_LOGBUFFER | |
770 | /* Also take the logbuffer into account (pram is in kB) */ | |
771 | pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024; | |
772 | #endif | |
4e5ca3eb WD |
773 | sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram); |
774 | setenv ("mem", memsz); | |
775 | } | |
776 | #endif | |
777 | ||
bf9e3b38 WD |
778 | #ifdef CONFIG_MODEM_SUPPORT |
779 | { | |
780 | extern int do_mdm_init; | |
781 | do_mdm_init = gd->do_mdm_init; | |
782 | } | |
783 | #endif | |
784 | ||
785 | #ifdef CONFIG_WATCHDOG | |
786 | /* disable watchdog if environment is set */ | |
787 | if ((s = getenv ("watchdog")) != NULL) { | |
788 | if (strncmp (s, "off", 3) == 0) { | |
789 | WATCHDOG_DISABLE (); | |
790 | } | |
791 | } | |
792 | #endif /* CONFIG_WATCHDOG*/ | |
793 | ||
794 | ||
4e5ca3eb WD |
795 | /* Initialization complete - start the monitor */ |
796 | ||
797 | /* main_loop() can return to retry autoboot, if so just run it again. */ | |
798 | for (;;) { | |
799 | WATCHDOG_RESET (); | |
800 | main_loop (); | |
801 | } | |
802 | ||
803 | /* NOTREACHED - no way out of command loop except booting */ | |
804 | } | |
805 | ||
bf9e3b38 WD |
806 | |
807 | void hang(void) | |
4e5ca3eb WD |
808 | { |
809 | puts ("### ERROR ### Please RESET the board ###\n"); | |
810 | for (;;); | |
811 | } |