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