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