]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/lib/board.c
13d761c1f755bd2fe8922f70b3ec7b4d8d337726
[karo-tx-uboot.git] / arch / powerpc / lib / board.c
1 /*
2  * (C) Copyright 2000-2011
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <watchdog.h>
10 #include <command.h>
11 #include <malloc.h>
12 #include <stdio_dev.h>
13 #ifdef CONFIG_8xx
14 #include <mpc8xx.h>
15 #endif
16 #ifdef CONFIG_5xx
17 #include <mpc5xx.h>
18 #endif
19 #ifdef CONFIG_MPC5xxx
20 #include <mpc5xxx.h>
21 #endif
22 #if defined(CONFIG_CMD_IDE)
23 #include <ide.h>
24 #endif
25 #if defined(CONFIG_CMD_SCSI)
26 #include <scsi.h>
27 #endif
28 #if defined(CONFIG_CMD_KGDB)
29 #include <kgdb.h>
30 #endif
31 #ifdef CONFIG_STATUS_LED
32 #include <status_led.h>
33 #endif
34 #include <net.h>
35 #ifdef CONFIG_GENERIC_MMC
36 #include <mmc.h>
37 #endif
38 #include <serial.h>
39 #ifdef CONFIG_SYS_ALLOC_DPRAM
40 #if !defined(CONFIG_CPM2)
41 #include <commproc.h>
42 #endif
43 #endif
44 #include <version.h>
45 #if defined(CONFIG_BAB7xx)
46 #include <w83c553f.h>
47 #endif
48 #include <dtt.h>
49 #if defined(CONFIG_POST)
50 #include <post.h>
51 #endif
52 #if defined(CONFIG_LOGBUFFER)
53 #include <logbuff.h>
54 #endif
55 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
56 #include <asm/cache.h>
57 #endif
58 #ifdef CONFIG_PS2KBD
59 #include <keyboard.h>
60 #endif
61
62 #ifdef CONFIG_ADDR_MAP
63 #include <asm/mmu.h>
64 #endif
65
66 #ifdef CONFIG_MP
67 #include <asm/mp.h>
68 #endif
69
70 #ifdef CONFIG_BITBANGMII
71 #include <miiphy.h>
72 #endif
73
74 #ifdef CONFIG_SYS_UPDATE_FLASH_SIZE
75 extern int update_flash_size(int flash_size);
76 #endif
77
78 #if defined(CONFIG_SC3)
79 extern void sc3_read_eeprom(void);
80 #endif
81
82 #if defined(CONFIG_CMD_DOC)
83 void doc_init(void);
84 #endif
85 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
86 #include <i2c.h>
87 #endif
88 #include <spi.h>
89 #include <nand.h>
90
91 static char *failed = "*** failed ***\n";
92
93 #if defined(CONFIG_OXC) || defined(CONFIG_RMU)
94 extern flash_info_t flash_info[];
95 #endif
96
97 #if defined(CONFIG_START_IDE)
98 extern int board_start_ide(void);
99 #endif
100 #include <environment.h>
101
102 DECLARE_GLOBAL_DATA_PTR;
103
104 #if !defined(CONFIG_SYS_MEM_TOP_HIDE)
105 #define CONFIG_SYS_MEM_TOP_HIDE 0
106 #endif
107
108 extern ulong __init_end;
109 extern ulong __bss_end;
110 ulong monitor_flash_len;
111
112 #if defined(CONFIG_CMD_BEDBUG)
113 #include <bedbug/type.h>
114 #endif
115
116 /*
117  * Utilities
118  */
119
120 /*
121  * All attempts to come up with a "common" initialization sequence
122  * that works for all boards and architectures failed: some of the
123  * requirements are just _too_ different. To get rid of the resulting
124  * mess of board dependend #ifdef'ed code we now make the whole
125  * initialization sequence configurable to the user.
126  *
127  * The requirements for any new initalization function is simple: it
128  * receives a pointer to the "global data" structure as it's only
129  * argument, and returns an integer return code, where 0 means
130  * "continue" and != 0 means "fatal error, hang the system".
131  */
132 typedef int (init_fnc_t)(void);
133
134 /*
135  * Init Utilities
136  *
137  * Some of this code should be moved into the core functions,
138  * but let's get it working (again) first...
139  */
140
141 static int init_baudrate(void)
142 {
143         gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
144         return 0;
145 }
146
147 /***********************************************************************/
148
149 static void __board_add_ram_info(int use_default)
150 {
151         /* please define platform specific board_add_ram_info() */
152 }
153
154 void board_add_ram_info(int)
155         __attribute__ ((weak, alias("__board_add_ram_info")));
156
157 static int __board_flash_wp_on(void)
158 {
159         /*
160          * Most flashes can't be detected when write protection is enabled,
161          * so provide a way to let U-Boot gracefully ignore write protected
162          * devices.
163          */
164         return 0;
165 }
166
167 int board_flash_wp_on(void)
168         __attribute__ ((weak, alias("__board_flash_wp_on")));
169
170 static void __cpu_secondary_init_r(void)
171 {
172 }
173
174 void cpu_secondary_init_r(void)
175         __attribute__ ((weak, alias("__cpu_secondary_init_r")));
176
177 static int init_func_ram(void)
178 {
179 #ifdef  CONFIG_BOARD_TYPES
180         int board_type = gd->board_type;
181 #else
182         int board_type = 0;     /* use dummy arg */
183 #endif
184         puts("DRAM:  ");
185
186         gd->ram_size = initdram(board_type);
187
188         if (gd->ram_size > 0) {
189                 print_size(gd->ram_size, "");
190                 board_add_ram_info(0);
191                 putc('\n');
192                 return 0;
193         }
194         puts(failed);
195         return 1;
196 }
197
198 /***********************************************************************/
199
200 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
201 static int init_func_i2c(void)
202 {
203         puts("I2C:   ");
204 #ifdef CONFIG_SYS_I2C
205         i2c_init_all();
206 #else
207         i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
208 #endif
209         puts("ready\n");
210         return 0;
211 }
212 #endif
213
214 #if defined(CONFIG_HARD_SPI)
215 static int init_func_spi(void)
216 {
217         puts("SPI:   ");
218         spi_init();
219         puts("ready\n");
220         return 0;
221 }
222 #endif
223
224 /***********************************************************************/
225
226 #if defined(CONFIG_WATCHDOG)
227 int init_func_watchdog_init(void)
228 {
229         puts("       Watchdog enabled\n");
230         WATCHDOG_RESET();
231         return 0;
232 }
233
234 int init_func_watchdog_reset(void)
235 {
236         WATCHDOG_RESET();
237         return 0;
238 }
239 #endif /* CONFIG_WATCHDOG */
240
241 /*
242  * Initialization sequence
243  */
244
245 static init_fnc_t *init_sequence[] = {
246 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
247         probecpu,
248 #endif
249 #if defined(CONFIG_BOARD_EARLY_INIT_F)
250         board_early_init_f,
251 #endif
252 #if !defined(CONFIG_8xx_CPUCLK_DEFAULT)
253         get_clocks,             /* get CPU and bus clocks (etc.) */
254 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
255     && !defined(CONFIG_TQM885D)
256         adjust_sdram_tbs_8xx,
257 #endif
258         init_timebase,
259 #endif
260 #ifdef CONFIG_SYS_ALLOC_DPRAM
261 #if !defined(CONFIG_CPM2)
262         dpram_init,
263 #endif
264 #endif
265 #if defined(CONFIG_BOARD_POSTCLK_INIT)
266         board_postclk_init,
267 #endif
268         env_init,
269 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
270         /* get CPU and bus clocks according to the environment variable */
271         get_clocks_866,
272         /* adjust sdram refresh rate according to the new clock */
273         sdram_adjust_866,
274         init_timebase,
275 #endif
276         init_baudrate,
277         serial_init,
278         console_init_f,
279         display_options,
280 #if defined(CONFIG_8260)
281         prt_8260_rsr,
282         prt_8260_clks,
283 #endif /* CONFIG_8260 */
284 #if defined(CONFIG_MPC83xx)
285         prt_83xx_rsr,
286 #endif
287         checkcpu,
288 #if defined(CONFIG_MPC5xxx)
289         prt_mpc5xxx_clks,
290 #endif /* CONFIG_MPC5xxx */
291         checkboard,
292         INIT_FUNC_WATCHDOG_INIT
293 #if defined(CONFIG_MISC_INIT_F)
294         misc_init_f,
295 #endif
296         INIT_FUNC_WATCHDOG_RESET
297 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
298         init_func_i2c,
299 #endif
300 #if defined(CONFIG_HARD_SPI)
301         init_func_spi,
302 #endif
303 #ifdef CONFIG_POST
304         post_init_f,
305 #endif
306         INIT_FUNC_WATCHDOG_RESET
307         init_func_ram,
308 #if defined(CONFIG_SYS_DRAM_TEST)
309         testdram,
310 #endif /* CONFIG_SYS_DRAM_TEST */
311         INIT_FUNC_WATCHDOG_RESET
312         NULL,   /* Terminate this list */
313 };
314
315 static int __fixup_cpu(void)
316 {
317         return 0;
318 }
319
320 int fixup_cpu(void) __attribute__((weak, alias("__fixup_cpu")));
321
322 /*
323  * This is the first part of the initialization sequence that is
324  * implemented in C, but still running from ROM.
325  *
326  * The main purpose is to provide a (serial) console interface as
327  * soon as possible (so we can see any error messages), and to
328  * initialize the RAM so that we can relocate the monitor code to
329  * RAM.
330  *
331  * Be aware of the restrictions: global data is read-only, BSS is not
332  * initialized, and stack space is limited to a few kB.
333  */
334
335 void board_init_f(ulong bootflag)
336 {
337         bd_t *bd;
338         ulong len, addr, addr_sp;
339         ulong *s;
340         gd_t *id;
341         init_fnc_t **init_fnc_ptr;
342
343 #ifdef CONFIG_PRAM
344         ulong reg;
345 #endif
346
347         /* Pointer is writable since we allocated a register for it */
348         gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
349         /* compiler optimization barrier needed for GCC >= 3.4 */
350         __asm__ __volatile__("":::"memory");
351
352 #if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
353     !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
354     !defined(CONFIG_MPC86xx)
355         /* Clear initial global data */
356         memset((void *) gd, 0, sizeof(gd_t));
357 #endif
358
359         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr)
360                 if ((*init_fnc_ptr) () != 0)
361                         hang();
362
363 #ifdef CONFIG_POST
364         post_bootmode_init();
365         post_run(NULL, POST_ROM | post_bootmode_get(NULL));
366 #endif
367
368         WATCHDOG_RESET();
369
370         /*
371          * Now that we have DRAM mapped and working, we can
372          * relocate the code and continue running from DRAM.
373          *
374          * Reserve memory at end of RAM for (top down in that order):
375          *  - area that won't get touched by U-Boot and Linux (optional)
376          *  - kernel log buffer
377          *  - protected RAM
378          *  - LCD framebuffer
379          *  - monitor code
380          *  - board info struct
381          */
382         len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
383
384         /*
385          * Subtract specified amount of memory to hide so that it won't
386          * get "touched" at all by U-Boot. By fixing up gd->ram_size
387          * the Linux kernel should now get passed the now "corrected"
388          * memory size and won't touch it either. This should work
389          * for arch/ppc and arch/powerpc. Only Linux board ports in
390          * arch/powerpc with bootwrapper support, that recalculate the
391          * memory size from the SDRAM controller setup will have to
392          * get fixed.
393          */
394         gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
395
396         addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize();
397
398 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
399         /*
400          * We need to make sure the location we intend to put secondary core
401          * boot code is reserved and not used by any part of u-boot
402          */
403         if (addr > determine_mp_bootpg(NULL)) {
404                 addr = determine_mp_bootpg(NULL);
405                 debug("Reserving MP boot page to %08lx\n", addr);
406         }
407 #endif
408
409 #ifdef CONFIG_LOGBUFFER
410 #ifndef CONFIG_ALT_LB_ADDR
411         /* reserve kernel log buffer */
412         addr -= (LOGBUFF_RESERVE);
413         debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
414               addr);
415 #endif
416 #endif
417
418 #ifdef CONFIG_PRAM
419         /*
420          * reserve protected RAM
421          */
422         reg = getenv_ulong("pram", 10, CONFIG_PRAM);
423         addr -= (reg << 10);    /* size is in kB */
424         debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
425 #endif /* CONFIG_PRAM */
426
427         /* round down to next 4 kB limit */
428         addr &= ~(4096 - 1);
429         debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
430
431 #ifdef CONFIG_LCD
432 #ifdef CONFIG_FB_ADDR
433         gd->fb_base = CONFIG_FB_ADDR;
434 #else
435         /* reserve memory for LCD display (always full pages) */
436         addr = lcd_setmem(addr);
437         gd->fb_base = addr;
438 #endif /* CONFIG_FB_ADDR */
439 #endif /* CONFIG_LCD */
440
441 #if defined(CONFIG_VIDEO) && defined(CONFIG_8xx)
442         /* reserve memory for video display (always full pages) */
443         addr = video_setmem(addr);
444         gd->fb_base = addr;
445 #endif /* CONFIG_VIDEO  */
446
447         /*
448          * reserve memory for U-Boot code, data & bss
449          * round down to next 4 kB limit
450          */
451         addr -= len;
452         addr &= ~(4096 - 1);
453 #ifdef CONFIG_E500
454         /* round down to next 64 kB limit so that IVPR stays aligned */
455         addr &= ~(65536 - 1);
456 #endif
457
458         debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr);
459
460         /*
461          * reserve memory for malloc() arena
462          */
463         addr_sp = addr - TOTAL_MALLOC_LEN;
464         debug("Reserving %dk for malloc() at: %08lx\n",
465               TOTAL_MALLOC_LEN >> 10, addr_sp);
466
467         /*
468          * (permanently) allocate a Board Info struct
469          * and a permanent copy of the "global" data
470          */
471         addr_sp -= sizeof(bd_t);
472         bd = (bd_t *) addr_sp;
473         memset(bd, 0, sizeof(bd_t));
474         gd->bd = bd;
475         debug("Reserving %zu Bytes for Board Info at: %08lx\n",
476               sizeof(bd_t), addr_sp);
477         addr_sp -= sizeof(gd_t);
478         id = (gd_t *) addr_sp;
479         debug("Reserving %zu Bytes for Global Data at: %08lx\n",
480               sizeof(gd_t), addr_sp);
481
482         /*
483          * Finally, we set up a new (bigger) stack.
484          *
485          * Leave some safety gap for SP, force alignment on 16 byte boundary
486          * Clear initial stack frame
487          */
488         addr_sp -= 16;
489         addr_sp &= ~0xF;
490         s = (ulong *) addr_sp;
491         *s = 0; /* Terminate back chain */
492         *++s = 0; /* NULL return address */
493         debug("Stack Pointer at: %08lx\n", addr_sp);
494
495         /*
496          * Save local variables to board info struct
497          */
498
499         bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;        /* start of memory */
500         bd->bi_memsize = gd->ram_size;                  /* size in bytes */
501
502 #ifdef CONFIG_SYS_SRAM_BASE
503         bd->bi_sramstart = CONFIG_SYS_SRAM_BASE;        /* start of SRAM */
504         bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;         /* size  of SRAM */
505 #endif
506
507 #if defined(CONFIG_8xx) || defined(CONFIG_8260) || defined(CONFIG_5xx) || \
508     defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
509         bd->bi_immr_base = CONFIG_SYS_IMMR;     /* base  of IMMR register     */
510 #endif
511 #if defined(CONFIG_MPC5xxx)
512         bd->bi_mbar_base = CONFIG_SYS_MBAR;     /* base of internal registers */
513 #endif
514 #if defined(CONFIG_MPC83xx)
515         bd->bi_immrbar = CONFIG_SYS_IMMR;
516 #endif
517
518         WATCHDOG_RESET();
519         bd->bi_intfreq = gd->cpu_clk;   /* Internal Freq, in Hz */
520         bd->bi_busfreq = gd->bus_clk;   /* Bus Freq,      in Hz */
521 #if defined(CONFIG_CPM2)
522         bd->bi_cpmfreq = gd->arch.cpm_clk;
523         bd->bi_brgfreq = gd->arch.brg_clk;
524         bd->bi_sccfreq = gd->arch.scc_clk;
525         bd->bi_vco = gd->arch.vco_out;
526 #endif /* CONFIG_CPM2 */
527 #if defined(CONFIG_MPC512X)
528         bd->bi_ipsfreq = gd->arch.ips_clk;
529 #endif /* CONFIG_MPC512X */
530 #if defined(CONFIG_MPC5xxx)
531         bd->bi_ipbfreq = gd->arch.ipb_clk;
532         bd->bi_pcifreq = gd->pci_clk;
533 #endif /* CONFIG_MPC5xxx */
534         bd->bi_baudrate = gd->baudrate; /* Console Baudrate     */
535
536 #ifdef CONFIG_SYS_EXTBDINFO
537         strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
538         strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
539                 sizeof(bd->bi_r_version));
540
541         bd->bi_procfreq = gd->cpu_clk;  /* Processor Speed, In Hz */
542         bd->bi_plb_busfreq = gd->bus_clk;
543 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
544     defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
545     defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
546         bd->bi_pci_busfreq = get_PCI_freq();
547         bd->bi_opbfreq = get_OPB_freq();
548 #elif defined(CONFIG_XILINX_405)
549         bd->bi_pci_busfreq = get_PCI_freq();
550 #endif
551 #endif
552
553         debug("New Stack Pointer is: %08lx\n", addr_sp);
554
555         WATCHDOG_RESET();
556
557         gd->relocaddr = addr;   /* Store relocation addr, useful for debug */
558
559         memcpy(id, (void *) gd, sizeof(gd_t));
560
561         relocate_code(addr_sp, id, addr);
562
563         /* NOTREACHED - relocate_code() does not return */
564 }
565
566 /*
567  * This is the next part if the initialization sequence: we are now
568  * running from RAM and have a "normal" C environment, i. e. global
569  * data can be written, BSS has been cleared, the stack size in not
570  * that critical any more, etc.
571  */
572 void board_init_r(gd_t *id, ulong dest_addr)
573 {
574         bd_t *bd;
575         ulong malloc_start;
576
577 #ifndef CONFIG_SYS_NO_FLASH
578         ulong flash_size;
579 #endif
580
581         gd = id;                /* initialize RAM version of global data */
582         bd = gd->bd;
583
584         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
585
586         /* The Malloc area is immediately below the monitor copy in DRAM */
587         malloc_start = dest_addr - TOTAL_MALLOC_LEN;
588
589 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
590         /*
591          * The gd->arch.cpu pointer is set to an address in flash before
592          * relocation.  We need to update it to point to the same CPU entry
593          * in RAM.
594          */
595         gd->arch.cpu += dest_addr - CONFIG_SYS_MONITOR_BASE;
596
597         /*
598          * If we didn't know the cpu mask & # cores, we can save them of
599          * now rather than 'computing' them constantly
600          */
601         fixup_cpu();
602 #endif
603
604 #ifdef CONFIG_SYS_EXTRA_ENV_RELOC
605         /*
606          * Some systems need to relocate the env_addr pointer early because the
607          * location it points to will get invalidated before env_relocate is
608          * called.  One example is on systems that might use a L2 or L3 cache
609          * in SRAM mode and initialize that cache from SRAM mode back to being
610          * a cache in cpu_init_r.
611          */
612         gd->env_addr += dest_addr - CONFIG_SYS_MONITOR_BASE;
613 #endif
614
615         serial_initialize();
616
617         debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
618
619         WATCHDOG_RESET();
620
621         /*
622          * Setup trap handlers
623          */
624         trap_init(dest_addr);
625
626 #ifdef CONFIG_ADDR_MAP
627         init_addr_map();
628 #endif
629
630 #if defined(CONFIG_BOARD_EARLY_INIT_R)
631         board_early_init_r();
632 #endif
633
634         monitor_flash_len = (ulong)&__init_end - dest_addr;
635
636         WATCHDOG_RESET();
637
638 #ifdef CONFIG_LOGBUFFER
639         logbuff_init_ptrs();
640 #endif
641 #ifdef CONFIG_POST
642         post_output_backlog();
643 #endif
644
645         WATCHDOG_RESET();
646
647 #if defined(CONFIG_SYS_DELAYED_ICACHE)
648         icache_enable();        /* it's time to enable the instruction cache */
649 #endif
650
651 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
652         unlock_ram_in_cache();  /* it's time to unlock D-cache in e500 */
653 #endif
654
655 #if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
656         /*
657          * Do early PCI configuration _before_ the flash gets initialised,
658          * because PCU ressources are crucial for flash access on some boards.
659          */
660         pci_init();
661 #endif
662 #if defined(CONFIG_WINBOND_83C553)
663         /*
664          * Initialise the ISA bridge
665          */
666         initialise_w83c553f();
667 #endif
668
669         asm("sync ; isync");
670
671         mem_malloc_init(malloc_start, TOTAL_MALLOC_LEN);
672
673 #if !defined(CONFIG_SYS_NO_FLASH)
674         puts("Flash: ");
675
676         if (board_flash_wp_on()) {
677                 printf("Uninitialized - Write Protect On\n");
678                 /* Since WP is on, we can't find real size.  Set to 0 */
679                 flash_size = 0;
680         } else if ((flash_size = flash_init()) > 0) {
681 #ifdef CONFIG_SYS_FLASH_CHECKSUM
682                 print_size(flash_size, "");
683                 /*
684                  * Compute and print flash CRC if flashchecksum is set to 'y'
685                  *
686                  * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
687                  */
688                 if (getenv_yesno("flashchecksum") == 1) {
689                         printf("  CRC: %08X",
690                                crc32(0,
691                                      (const unsigned char *)
692                                      CONFIG_SYS_FLASH_BASE, flash_size)
693                                 );
694                 }
695                 putc('\n');
696 #else  /* !CONFIG_SYS_FLASH_CHECKSUM */
697                 print_size(flash_size, "\n");
698 #endif /* CONFIG_SYS_FLASH_CHECKSUM */
699         } else {
700                 puts(failed);
701                 hang();
702         }
703
704         /* update start of FLASH memory    */
705         bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
706         /* size of FLASH memory (final value) */
707         bd->bi_flashsize = flash_size;
708
709 #if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
710         /* Make a update of the Memctrl. */
711         update_flash_size(flash_size);
712 #endif
713
714
715 #if defined(CONFIG_OXC) || defined(CONFIG_RMU)
716         /* flash mapped at end of memory map */
717         bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
718 #elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
719         bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
720 #endif
721 #endif /* !CONFIG_SYS_NO_FLASH */
722
723         WATCHDOG_RESET();
724
725         /* initialize higher level parts of CPU like time base and timers */
726         cpu_init_r();
727
728         WATCHDOG_RESET();
729
730 #ifdef CONFIG_SPI
731 #if !defined(CONFIG_ENV_IS_IN_EEPROM)
732         spi_init_f();
733 #endif
734         spi_init_r();
735 #endif
736
737 #if defined(CONFIG_CMD_NAND)
738         WATCHDOG_RESET();
739         puts("NAND:  ");
740         nand_init();            /* go init the NAND */
741 #endif
742
743 #ifdef CONFIG_GENERIC_MMC
744 /*
745  * MMC initialization is called before relocating env.
746  * Thus It is required that operations like pin multiplexer
747  * be put in board_init.
748  */
749         WATCHDOG_RESET();
750         puts("MMC:  ");
751         mmc_initialize(bd);
752 #endif
753
754         /* relocate environment function pointers etc. */
755         env_relocate();
756
757         /*
758          * after non-volatile devices & environment is setup and cpu code have
759          * another round to deal with any initialization that might require
760          * full access to the environment or loading of some image (firmware)
761          * from a non-volatile device
762          */
763         cpu_secondary_init_r();
764
765         /*
766          * Fill in missing fields of bd_info.
767          * We do this here, where we have "normal" access to the
768          * environment; we used to do this still running from ROM,
769          * where had to use getenv_f(), which can be pretty slow when
770          * the environment is in EEPROM.
771          */
772
773 #if defined(CONFIG_SYS_EXTBDINFO)
774 #if defined(CONFIG_405GP) || defined(CONFIG_405EP)
775 #if defined(CONFIG_I2CFAST)
776         /*
777          * set bi_iic_fast for linux taking environment variable
778          * "i2cfast" into account
779          */
780         {
781                 if (getenv_yesno("i2cfast") == 1) {
782                         bd->bi_iic_fast[0] = 1;
783                         bd->bi_iic_fast[1] = 1;
784                 }
785         }
786 #endif /* CONFIG_I2CFAST */
787 #endif /* CONFIG_405GP, CONFIG_405EP */
788 #endif /* CONFIG_SYS_EXTBDINFO */
789
790 #if defined(CONFIG_SC3)
791         sc3_read_eeprom();
792 #endif
793
794 #if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
795         mac_read_from_eeprom();
796 #endif
797
798 #ifdef  CONFIG_HERMES
799         if ((gd->board_type >> 16) == 2)
800                 bd->bi_ethspeed = gd->board_type & 0xFFFF;
801         else
802                 bd->bi_ethspeed = 0xFFFF;
803 #endif
804
805 #ifdef CONFIG_CMD_NET
806         /* kept around for legacy kernels only ... ignore the next section */
807         eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
808 #ifdef CONFIG_HAS_ETH1
809         eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
810 #endif
811 #ifdef CONFIG_HAS_ETH2
812         eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
813 #endif
814 #ifdef CONFIG_HAS_ETH3
815         eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
816 #endif
817 #ifdef CONFIG_HAS_ETH4
818         eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
819 #endif
820 #ifdef CONFIG_HAS_ETH5
821         eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
822 #endif
823 #endif /* CONFIG_CMD_NET */
824
825         WATCHDOG_RESET();
826
827 #if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
828         /*
829          * Do pci configuration
830          */
831         pci_init();
832 #endif
833
834 /** leave this here (after malloc(), environment and PCI are working) **/
835         /* Initialize stdio devices */
836         stdio_init();
837
838         /* Initialize the jump table for applications */
839         jumptable_init();
840
841 #if defined(CONFIG_API)
842         /* Initialize API */
843         api_init();
844 #endif
845
846         /* Initialize the console (after the relocation and devices init) */
847         console_init_r();
848
849 #if defined(CONFIG_MISC_INIT_R)
850         /* miscellaneous platform dependent initialisations */
851         misc_init_r();
852 #endif
853
854 #ifdef  CONFIG_HERMES
855         if (bd->bi_ethspeed != 0xFFFF)
856                 hermes_start_lxt980((int) bd->bi_ethspeed);
857 #endif
858
859 #if defined(CONFIG_CMD_KGDB)
860         WATCHDOG_RESET();
861         puts("KGDB:  ");
862         kgdb_init();
863 #endif
864
865         debug("U-Boot relocated to %08lx\n", dest_addr);
866
867         /*
868          * Enable Interrupts
869          */
870         interrupt_init();
871
872 #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
873         status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
874 #endif
875
876         udelay(20);
877
878         /* Initialize from environment */
879         load_addr = getenv_ulong("loadaddr", 16, load_addr);
880
881         WATCHDOG_RESET();
882
883 #if defined(CONFIG_CMD_SCSI)
884         WATCHDOG_RESET();
885         puts("SCSI:  ");
886         scsi_init();
887 #endif
888
889 #if defined(CONFIG_CMD_DOC)
890         WATCHDOG_RESET();
891         puts("DOC:   ");
892         doc_init();
893 #endif
894
895 #ifdef CONFIG_BITBANGMII
896         bb_miiphy_init();
897 #endif
898 #if defined(CONFIG_CMD_NET)
899         WATCHDOG_RESET();
900         puts("Net:   ");
901         eth_initialize(bd);
902 #endif
903
904 #if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
905         WATCHDOG_RESET();
906         debug("Reset Ethernet PHY\n");
907         reset_phy();
908 #endif
909
910 #ifdef CONFIG_POST
911         post_run(NULL, POST_RAM | post_bootmode_get(0));
912 #endif
913
914 #if defined(CONFIG_CMD_PCMCIA) \
915     && !defined(CONFIG_CMD_IDE)
916         WATCHDOG_RESET();
917         puts("PCMCIA:");
918         pcmcia_init();
919 #endif
920
921 #if defined(CONFIG_CMD_IDE)
922         WATCHDOG_RESET();
923 #ifdef  CONFIG_IDE_8xx_PCCARD
924         puts("PCMCIA:");
925 #else
926         puts("IDE:   ");
927 #endif
928 #if defined(CONFIG_START_IDE)
929         if (board_start_ide())
930                 ide_init();
931 #else
932         ide_init();
933 #endif
934 #endif
935
936 #ifdef CONFIG_LAST_STAGE_INIT
937         WATCHDOG_RESET();
938         /*
939          * Some parts can be only initialized if all others (like
940          * Interrupts) are up and running (i.e. the PC-style ISA
941          * keyboard).
942          */
943         last_stage_init();
944 #endif
945
946 #if defined(CONFIG_CMD_BEDBUG)
947         WATCHDOG_RESET();
948         bedbug_init();
949 #endif
950
951 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
952         /*
953          * Export available size of memory for Linux,
954          * taking into account the protected RAM at top of memory
955          */
956         {
957                 ulong pram = 0;
958                 char memsz[32];
959
960 #ifdef CONFIG_PRAM
961                 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
962 #endif
963 #ifdef CONFIG_LOGBUFFER
964 #ifndef CONFIG_ALT_LB_ADDR
965                 /* Also take the logbuffer into account (pram is in kB) */
966                 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
967 #endif
968 #endif
969                 sprintf(memsz, "%ldk", (ulong) (bd->bi_memsize / 1024) - pram);
970                 setenv("mem", memsz);
971         }
972 #endif
973
974 #ifdef CONFIG_PS2KBD
975         puts("PS/2:  ");
976         kbd_init();
977 #endif
978
979 #ifdef CONFIG_MODEM_SUPPORT
980         {
981                 extern int do_mdm_init;
982
983                 do_mdm_init = gd->do_mdm_init;
984         }
985 #endif
986
987         /* Initialization complete - start the monitor */
988
989         /* main_loop() can return to retry autoboot, if so just run it again. */
990         for (;;) {
991                 WATCHDOG_RESET();
992                 main_loop();
993         }
994
995         /* NOTREACHED - no way out of command loop except booting */
996 }
997
998 #if 0   /* We could use plain global data, but the resulting code is bigger */
999 /*
1000  * Pointer to initial global data area
1001  *
1002  * Here we initialize it.
1003  */
1004 #undef  XTRN_DECLARE_GLOBAL_DATA_PTR
1005 #define XTRN_DECLARE_GLOBAL_DATA_PTR    /* empty = allocate here */
1006 DECLARE_GLOBAL_DATA_PTR =
1007         (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
1008 #endif /* 0 */
1009
1010 /************************************************************************/