ARM: add relocation support
[kernel/u-boot.git] / arch / arm / lib / board.c
1 /*
2  * (C) Copyright 2002-2006
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2002
6  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7  * Marius Groeger <mgroeger@sysgo.de>
8  *
9  * See file CREDITS for list of people who contributed to this
10  * project.
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License as
14  * published by the Free Software Foundation; either version 2 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25  * MA 02111-1307 USA
26  */
27
28 /*
29  * To match the U-Boot user interface on ARM platforms to the U-Boot
30  * standard (as on PPC platforms), some messages with debug character
31  * are removed from the default U-Boot build.
32  *
33  * Define DEBUG here if you want additional info as shown below
34  * printed upon startup:
35  *
36  * U-Boot code: 00F00000 -> 00F3C774  BSS: -> 00FC3274
37  * IRQ Stack: 00ebff7c
38  * FIQ Stack: 00ebef7c
39  */
40
41 #include <common.h>
42 #include <command.h>
43 #include <malloc.h>
44 #include <stdio_dev.h>
45 #include <timestamp.h>
46 #include <version.h>
47 #include <net.h>
48 #include <serial.h>
49 #include <nand.h>
50 #include <onenand_uboot.h>
51 #include <mmc.h>
52
53 #ifdef CONFIG_BITBANGMII
54 #include <miiphy.h>
55 #endif
56
57 #ifdef CONFIG_DRIVER_SMC91111
58 #include "../drivers/net/smc91111.h"
59 #endif
60 #ifdef CONFIG_DRIVER_LAN91C96
61 #include "../drivers/net/lan91c96.h"
62 #endif
63
64 DECLARE_GLOBAL_DATA_PTR;
65
66 ulong monitor_flash_len;
67
68 #ifdef CONFIG_HAS_DATAFLASH
69 extern int  AT91F_DataflashInit(void);
70 extern void dataflash_print_info(void);
71 #endif
72
73 #ifndef CONFIG_IDENT_STRING
74 #define CONFIG_IDENT_STRING ""
75 #endif
76
77 const char version_string[] =
78         U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"CONFIG_IDENT_STRING;
79
80 #ifdef CONFIG_DRIVER_RTL8019
81 extern void rtl8019_get_enetaddr (uchar * addr);
82 #endif
83
84 #if defined(CONFIG_HARD_I2C) || \
85     defined(CONFIG_SOFT_I2C)
86 #include <i2c.h>
87 #endif
88
89
90 /************************************************************************
91  * Coloured LED functionality
92  ************************************************************************
93  * May be supplied by boards if desired
94  */
95 void inline __coloured_LED_init (void) {}
96 void coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
97 void inline __red_LED_on (void) {}
98 void red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
99 void inline __red_LED_off(void) {}
100 void red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
101 void inline __green_LED_on(void) {}
102 void green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
103 void inline __green_LED_off(void) {}
104 void green_LED_off(void) __attribute__((weak, alias("__green_LED_off")));
105 void inline __yellow_LED_on(void) {}
106 void yellow_LED_on(void) __attribute__((weak, alias("__yellow_LED_on")));
107 void inline __yellow_LED_off(void) {}
108 void yellow_LED_off(void) __attribute__((weak, alias("__yellow_LED_off")));
109 void inline __blue_LED_on(void) {}
110 void blue_LED_on(void) __attribute__((weak, alias("__blue_LED_on")));
111 void inline __blue_LED_off(void) {}
112 void blue_LED_off(void) __attribute__((weak, alias("__blue_LED_off")));
113
114 /************************************************************************
115  * Init Utilities                                                       *
116  ************************************************************************
117  * Some of this code should be moved into the core functions,
118  * or dropped completely,
119  * but let's get it working (again) first...
120  */
121
122 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
123 #define CONFIG_BAUDRATE 115200
124 #endif
125 static int init_baudrate (void)
126 {
127         char tmp[64];   /* long enough for environment variables */
128         int i = getenv_f("baudrate", tmp, sizeof (tmp));
129
130 #if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
131         gd->baudrate = (i > 0)
132 #else
133         gd->bd->bi_baudrate = gd->baudrate = (i > 0)
134 #endif
135                         ? (int) simple_strtoul (tmp, NULL, 10)
136                         : CONFIG_BAUDRATE;
137
138         return (0);
139 }
140
141 static int display_banner (void)
142 {
143         printf ("\n\n%s\n\n", version_string);
144         debug ("U-Boot code: %08lX -> %08lX  BSS: -> %08lX\n",
145 #if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
146                _TEXT_BASE,
147 #else
148                _armboot_start,
149 #endif
150                _bss_start, _bss_end);
151 #ifdef CONFIG_MODEM_SUPPORT
152         debug ("Modem Support enabled\n");
153 #endif
154 #ifdef CONFIG_USE_IRQ
155         debug ("IRQ Stack: %08lx\n", IRQ_STACK_START);
156         debug ("FIQ Stack: %08lx\n", FIQ_STACK_START);
157 #endif
158
159         return (0);
160 }
161
162 /*
163  * WARNING: this code looks "cleaner" than the PowerPC version, but
164  * has the disadvantage that you either get nothing, or everything.
165  * On PowerPC, you might see "DRAM: " before the system hangs - which
166  * gives a simple yet clear indication which part of the
167  * initialization if failing.
168  */
169 static int display_dram_config (void)
170 {
171         int i;
172
173 #ifdef DEBUG
174         puts ("RAM Configuration:\n");
175
176         for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
177                 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
178                 print_size (gd->bd->bi_dram[i].size, "\n");
179         }
180 #else
181         ulong size = 0;
182
183         for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
184                 size += gd->bd->bi_dram[i].size;
185         }
186         puts("DRAM:  ");
187         print_size(size, "\n");
188 #endif
189
190         return (0);
191 }
192
193 #if defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
194 #ifndef CONFIG_SYS_NO_FLASH
195 static void display_flash_config (ulong size)
196 {
197         puts ("Flash: ");
198         print_size (size, "\n");
199 }
200 #endif /* CONFIG_SYS_NO_FLASH */
201 #endif
202
203 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
204 static int init_func_i2c (void)
205 {
206         puts ("I2C:   ");
207         i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
208         puts ("ready\n");
209         return (0);
210 }
211 #endif
212
213 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
214 #include <pci.h>
215 static int arm_pci_init(void)
216 {
217         pci_init();
218         return 0;
219 }
220 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
221
222 /*
223  * Breathe some life into the board...
224  *
225  * Initialize a serial port as console, and carry out some hardware
226  * tests.
227  *
228  * The first part of initialization is running from Flash memory;
229  * its main purpose is to initialize the RAM so that we
230  * can relocate the monitor code to RAM.
231  */
232
233 /*
234  * All attempts to come up with a "common" initialization sequence
235  * that works for all boards and architectures failed: some of the
236  * requirements are just _too_ different. To get rid of the resulting
237  * mess of board dependent #ifdef'ed code we now make the whole
238  * initialization sequence configurable to the user.
239  *
240  * The requirements for any new initalization function is simple: it
241  * receives a pointer to the "global data" structure as it's only
242  * argument, and returns an integer return code, where 0 means
243  * "continue" and != 0 means "fatal error, hang the system".
244  */
245 typedef int (init_fnc_t) (void);
246
247 int print_cpuinfo (void);
248
249 #if defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
250 init_fnc_t *init_sequence[] = {
251 #if defined(CONFIG_ARCH_CPU_INIT)
252         arch_cpu_init,          /* basic arch cpu dependent setup */
253 #endif
254         board_init,             /* basic board dependent setup */
255 #if defined(CONFIG_USE_IRQ)
256         interrupt_init,         /* set up exceptions */
257 #endif
258         timer_init,             /* initialize timer */
259 #ifdef CONFIG_FSL_ESDHC
260         get_clocks,
261 #endif
262         env_init,               /* initialize environment */
263         init_baudrate,          /* initialze baudrate settings */
264         serial_init,            /* serial communications setup */
265         console_init_f,         /* stage 1 init of console */
266         display_banner,         /* say that we are here */
267 #if defined(CONFIG_DISPLAY_CPUINFO)
268         print_cpuinfo,          /* display cpu info (and speed) */
269 #endif
270 #if defined(CONFIG_DISPLAY_BOARDINFO)
271         checkboard,             /* display board info */
272 #endif
273 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
274         init_func_i2c,
275 #endif
276         dram_init,              /* configure available RAM banks */
277 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
278         arm_pci_init,
279 #endif
280         display_dram_config,
281         NULL,
282 };
283
284 void start_armboot (void)
285 {
286         init_fnc_t **init_fnc_ptr;
287         char *s;
288 #if defined(CONFIG_VFD) || defined(CONFIG_LCD)
289         unsigned long addr;
290 #endif
291
292         /* Pointer is writable since we allocated a register for it */
293         gd = (gd_t*)(_armboot_start - CONFIG_SYS_MALLOC_LEN - sizeof(gd_t));
294         /* compiler optimization barrier needed for GCC >= 3.4 */
295         __asm__ __volatile__("": : :"memory");
296
297         memset ((void*)gd, 0, sizeof (gd_t));
298         gd->bd = (bd_t*)((char*)gd - sizeof(bd_t));
299         memset (gd->bd, 0, sizeof (bd_t));
300
301         gd->flags |= GD_FLG_RELOC;
302
303         monitor_flash_len = _bss_start - _armboot_start;
304
305         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
306                 if ((*init_fnc_ptr)() != 0) {
307                         hang ();
308                 }
309         }
310
311         /* armboot_start is defined in the board-specific linker script */
312         mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN,
313                         CONFIG_SYS_MALLOC_LEN);
314
315 #ifndef CONFIG_SYS_NO_FLASH
316         /* configure available FLASH banks */
317         display_flash_config (flash_init ());
318 #endif /* CONFIG_SYS_NO_FLASH */
319
320 #ifdef CONFIG_VFD
321 #       ifndef PAGE_SIZE
322 #         define PAGE_SIZE 4096
323 #       endif
324         /*
325          * reserve memory for VFD display (always full pages)
326          */
327         /* bss_end is defined in the board-specific linker script */
328         addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
329         vfd_setmem (addr);
330         gd->fb_base = addr;
331 #endif /* CONFIG_VFD */
332
333 #ifdef CONFIG_LCD
334         /* board init may have inited fb_base */
335         if (!gd->fb_base) {
336 #               ifndef PAGE_SIZE
337 #                 define PAGE_SIZE 4096
338 #               endif
339                 /*
340                  * reserve memory for LCD display (always full pages)
341                  */
342                 /* bss_end is defined in the board-specific linker script */
343                 addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
344                 lcd_setmem (addr);
345                 gd->fb_base = addr;
346         }
347 #endif /* CONFIG_LCD */
348
349 #if defined(CONFIG_CMD_NAND)
350         puts ("NAND:  ");
351         nand_init();            /* go init the NAND */
352 #endif
353
354 #if defined(CONFIG_CMD_ONENAND)
355         onenand_init();
356 #endif
357
358 #ifdef CONFIG_HAS_DATAFLASH
359         AT91F_DataflashInit();
360         dataflash_print_info();
361 #endif
362
363 #ifdef CONFIG_GENERIC_MMC
364 /*
365  * MMC initialization is called before relocating env.
366  * Thus It is required that operations like pin multiplexer
367  * be put in board_init.
368  */
369         puts ("MMC:   ");
370         mmc_initialize (gd->bd);
371 #endif
372
373         /* initialize environment */
374         env_relocate ();
375
376 #ifdef CONFIG_VFD
377         /* must do this after the framebuffer is allocated */
378         drv_vfd_init();
379 #endif /* CONFIG_VFD */
380
381 #ifdef CONFIG_SERIAL_MULTI
382         serial_initialize();
383 #endif
384
385         /* IP Address */
386         gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
387
388         stdio_init ();  /* get the devices list going. */
389
390         jumptable_init ();
391
392 #if defined(CONFIG_API)
393         /* Initialize API */
394         api_init ();
395 #endif
396
397         console_init_r ();      /* fully init console as a device */
398
399 #if defined(CONFIG_ARCH_MISC_INIT)
400         /* miscellaneous arch dependent initialisations */
401         arch_misc_init ();
402 #endif
403 #if defined(CONFIG_MISC_INIT_R)
404         /* miscellaneous platform dependent initialisations */
405         misc_init_r ();
406 #endif
407
408         /* enable exceptions */
409         enable_interrupts ();
410
411         /* Perform network card initialisation if necessary */
412 #ifdef CONFIG_DRIVER_TI_EMAC
413         /* XXX: this needs to be moved to board init */
414 extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
415         if (getenv ("ethaddr")) {
416                 uchar enetaddr[6];
417                 eth_getenv_enetaddr("ethaddr", enetaddr);
418                 davinci_eth_set_mac_addr(enetaddr);
419         }
420 #endif
421
422 #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
423         /* XXX: this needs to be moved to board init */
424         if (getenv ("ethaddr")) {
425                 uchar enetaddr[6];
426                 eth_getenv_enetaddr("ethaddr", enetaddr);
427                 smc_set_mac_addr(enetaddr);
428         }
429 #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
430
431         /* Initialize from environment */
432         if ((s = getenv ("loadaddr")) != NULL) {
433                 load_addr = simple_strtoul (s, NULL, 16);
434         }
435 #if defined(CONFIG_CMD_NET)
436         if ((s = getenv ("bootfile")) != NULL) {
437                 copy_filename (BootFile, s, sizeof (BootFile));
438         }
439 #endif
440
441 #ifdef BOARD_LATE_INIT
442         board_late_init ();
443 #endif
444
445 #ifdef CONFIG_BITBANGMII
446         bb_miiphy_init();
447 #endif
448 #if defined(CONFIG_CMD_NET)
449 #if defined(CONFIG_NET_MULTI)
450         puts ("Net:   ");
451 #endif
452         eth_initialize(gd->bd);
453 #if defined(CONFIG_RESET_PHY_R)
454         debug ("Reset Ethernet PHY\n");
455         reset_phy();
456 #endif
457 #endif
458         /* main_loop() can return to retry autoboot, if so just run it again. */
459         for (;;) {
460                 main_loop ();
461         }
462
463         /* NOTREACHED - no way out of command loop except booting */
464 }
465 #else
466 void __dram_init_banksize(void)
467 {
468         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
469         gd->bd->bi_dram[0].size =  gd->ram_size;
470 }
471 void dram_init_banksize(void)
472         __attribute__((weak, alias("__dram_init_banksize")));
473
474 init_fnc_t *init_sequence[] = {
475 #if defined(CONFIG_ARCH_CPU_INIT)
476         arch_cpu_init,          /* basic arch cpu dependent setup */
477 #endif
478 #if defined(CONFIG_BOARD_EARLY_INIT_F)
479         board_early_init_f,
480 #endif
481         timer_init,             /* initialize timer */
482 #ifdef CONFIG_FSL_ESDHC
483         get_clocks,
484 #endif
485         env_init,               /* initialize environment */
486         init_baudrate,          /* initialze baudrate settings */
487         serial_init,            /* serial communications setup */
488         console_init_f,         /* stage 1 init of console */
489         display_banner,         /* say that we are here */
490 #if defined(CONFIG_DISPLAY_CPUINFO)
491         print_cpuinfo,          /* display cpu info (and speed) */
492 #endif
493 #if defined(CONFIG_DISPLAY_BOARDINFO)
494         checkboard,             /* display board info */
495 #endif
496 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
497         init_func_i2c,
498 #endif
499         dram_init,              /* configure available RAM banks */
500 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
501         arm_pci_init,
502 #endif
503         NULL,
504 };
505
506 void board_init_f (ulong bootflag)
507 {
508         bd_t *bd;
509         init_fnc_t **init_fnc_ptr;
510         gd_t *id;
511         ulong addr, addr_sp;
512
513         /* Pointer is writable since we allocated a register for it */
514         gd = (gd_t *) (CONFIG_SYS_INIT_SP_ADDR);
515         /* compiler optimization barrier needed for GCC >= 3.4 */
516         __asm__ __volatile__("": : :"memory");
517
518         memset ((void*)gd, 0, sizeof (gd_t));
519
520         gd->mon_len = _bss_end - _TEXT_BASE;
521
522         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
523                 if ((*init_fnc_ptr)() != 0) {
524                         hang ();
525                 }
526         }
527
528         debug ("monitor len: %08lX\n", gd->mon_len);
529         /*
530          * Ram is setup, size stored in gd !!
531          */
532         debug ("ramsize: %08lX\n", gd->ram_size);
533 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
534         /*
535          * Subtract specified amount of memory to hide so that it won't
536          * get "touched" at all by U-Boot. By fixing up gd->ram_size
537          * the Linux kernel should now get passed the now "corrected"
538          * memory size and won't touch it either. This should work
539          * for arch/ppc and arch/powerpc. Only Linux board ports in
540          * arch/powerpc with bootwrapper support, that recalculate the
541          * memory size from the SDRAM controller setup will have to
542          * get fixed.
543          */
544         gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
545 #endif
546
547         addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
548
549 #ifdef CONFIG_LOGBUFFER
550 #ifndef CONFIG_ALT_LB_ADDR
551         /* reserve kernel log buffer */
552         addr -= (LOGBUFF_RESERVE);
553         debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr);
554 #endif
555 #endif
556
557 #ifdef CONFIG_PRAM
558         /*
559          * reserve protected RAM
560          */
561         i = getenv_r ("pram", (char *)tmp, sizeof (tmp));
562         reg = (i > 0) ? simple_strtoul ((const char *)tmp, NULL, 10) : CONFIG_PRAM;
563         addr -= (reg << 10);            /* size is in kB */
564         debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
565 #endif /* CONFIG_PRAM */
566
567 #if !(defined(CONFIG_SYS_NO_ICACHE) && defined(CONFIG_SYS_NO_DCACHE))
568         /* reserve TLB table */
569         addr -= (4096 * 4);
570
571         /* round down to next 64 kB limit */
572         addr &= ~(0x10000 - 1);
573
574         gd->tlb_addr = addr;
575         debug ("TLB table at: %08lx\n", addr);
576 #endif
577
578         /* round down to next 4 kB limit */
579         addr &= ~(4096 - 1);
580         debug ("Top of RAM usable for U-Boot at: %08lx\n", addr);
581
582 #ifdef CONFIG_VFD
583 #       ifndef PAGE_SIZE
584 #         define PAGE_SIZE 4096
585 #       endif
586         /*
587          * reserve memory for VFD display (always full pages)
588          */
589         addr -= vfd_setmem (addr);
590         gd->fb_base = addr;
591 #endif /* CONFIG_VFD */
592
593 #ifdef CONFIG_LCD
594         /* reserve memory for LCD display (always full pages) */
595         addr = lcd_setmem (addr);
596         gd->fb_base = addr;
597 #endif /* CONFIG_LCD */
598
599         /*
600          * reserve memory for U-Boot code, data & bss
601          * round down to next 4 kB limit
602          */
603         addr -= gd->mon_len;
604         addr &= ~(4096 - 1);
605
606         debug ("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
607
608 #ifndef CONFIG_PRELOADER
609         /*
610          * reserve memory for malloc() arena
611          */
612         addr_sp = addr - TOTAL_MALLOC_LEN;
613         debug ("Reserving %dk for malloc() at: %08lx\n",
614                         TOTAL_MALLOC_LEN >> 10, addr_sp);
615         /*
616          * (permanently) allocate a Board Info struct
617          * and a permanent copy of the "global" data
618          */
619         addr_sp -= sizeof (bd_t);
620         bd = (bd_t *) addr_sp;
621         gd->bd = bd;
622         debug ("Reserving %zu Bytes for Board Info at: %08lx\n",
623                         sizeof (bd_t), addr_sp);
624         addr_sp -= sizeof (gd_t);
625         id = (gd_t *) addr_sp;
626         debug ("Reserving %zu Bytes for Global Data at: %08lx\n",
627                         sizeof (gd_t), addr_sp);
628
629         /* setup stackpointer for exeptions */
630         gd->irq_sp = addr_sp;
631 #ifdef CONFIG_USE_IRQ
632         addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
633         debug ("Reserving %zu Bytes for IRQ stack at: %08lx\n",
634                 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
635 #endif
636         /* leave 3 words for abort-stack    */
637         addr_sp -= 3;
638
639         /* 8-byte alignment for ABI compliance */
640         addr_sp &= ~0x07;
641 #else
642         addr_sp += 128; /* leave 32 words for abort-stack   */
643         gd->irq_sp = addr_sp;
644 #endif
645
646         debug ("New Stack Pointer is: %08lx\n", addr_sp);
647
648 #ifdef CONFIG_POST
649         post_bootmode_init();
650         post_run (NULL, POST_ROM | post_bootmode_get(0));
651 #endif
652
653         gd->bd->bi_baudrate = gd->baudrate;
654         /* Ram ist board specific, so move it to board code ... */
655         dram_init_banksize();
656         display_dram_config();  /* and display it */
657
658         gd->relocaddr = addr;
659         gd->start_addr_sp = addr_sp;
660         gd->reloc_off = addr - _TEXT_BASE;
661         debug ("relocation Offset is: %08lx\n", gd->reloc_off);
662         memcpy (id, (void *)gd, sizeof (gd_t));
663
664         relocate_code (addr_sp, id, addr);
665
666         /* NOTREACHED - relocate_code() does not return */
667 }
668
669 #if !defined(CONFIG_SYS_NO_FLASH)
670 static char *failed = "*** failed ***\n";
671 #endif
672
673 /************************************************************************
674  *
675  * This is the next part if the initialization sequence: we are now
676  * running from RAM and have a "normal" C environment, i. e. global
677  * data can be written, BSS has been cleared, the stack size in not
678  * that critical any more, etc.
679  *
680  ************************************************************************
681  */
682 void board_init_r (gd_t *id, ulong dest_addr)
683 {
684         char *s;
685         bd_t *bd;
686         ulong malloc_start;
687 #if !defined(CONFIG_SYS_NO_FLASH)
688         ulong flash_size;
689 #endif
690 #if !defined(CONFIG_RELOC_FIXUP_WORKS)
691         extern void malloc_bin_reloc (void);
692 #if defined(CONFIG_CMD_BMP)
693         extern void bmp_reloc(void);
694 #endif
695 #if defined(CONFIG_CMD_I2C)
696         extern void i2c_reloc(void);
697 #endif
698 #endif
699
700         gd = id;
701         bd = gd->bd;
702
703         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
704
705         monitor_flash_len = _bss_start - _TEXT_BASE;
706         debug ("monitor flash len: %08lX\n", monitor_flash_len);
707         board_init();   /* Setup chipselects */
708
709 #ifdef CONFIG_SERIAL_MULTI
710         serial_initialize();
711 #endif
712
713         debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
714
715 #if !defined(CONFIG_RELOC_FIXUP_WORKS)
716         /*
717          * We have to relocate the command table manually
718          */
719         fixup_cmdtable(&__u_boot_cmd_start,
720                 (ulong)(&__u_boot_cmd_end - &__u_boot_cmd_start));
721 #if defined(CONFIG_CMD_BMP)
722         bmp_reloc();
723 #endif
724 #if defined(CONFIG_CMD_I2C)
725         i2c_reloc();
726 #endif
727 #endif /* !defined(CONFIG_RELOC_FIXUP_WORKS) */
728
729 #ifdef CONFIG_LOGBUFFER
730         logbuff_init_ptrs ();
731 #endif
732 #ifdef CONFIG_POST
733         post_output_backlog ();
734 #ifndef CONFIG_RELOC_FIXUP_WORKS
735         post_reloc ();
736 #endif
737 #endif
738
739         /* The Malloc area is immediately below the monitor copy in DRAM */
740         malloc_start = dest_addr - TOTAL_MALLOC_LEN;
741         mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
742 #if !defined(CONFIG_RELOC_FIXUP_WORKS)
743         malloc_bin_reloc ();
744 #endif
745
746 #if !defined(CONFIG_SYS_NO_FLASH)
747         puts ("FLASH: ");
748
749         if ((flash_size = flash_init ()) > 0) {
750 # ifdef CONFIG_SYS_FLASH_CHECKSUM
751                 print_size (flash_size, "");
752                 /*
753                  * Compute and print flash CRC if flashchecksum is set to 'y'
754                  *
755                  * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
756                  */
757                 s = getenv ("flashchecksum");
758                 if (s && (*s == 'y')) {
759                         printf ("  CRC: %08X",
760                                 crc32 (0, (const unsigned char *) CONFIG_SYS_FLASH_BASE, flash_size)
761                         );
762                 }
763                 putc ('\n');
764 # else  /* !CONFIG_SYS_FLASH_CHECKSUM */
765                 print_size (flash_size, "\n");
766 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
767         } else {
768                 puts (failed);
769                 hang ();
770         }
771 #endif
772
773 #if defined(CONFIG_CMD_NAND)
774         puts ("NAND:  ");
775         nand_init();            /* go init the NAND */
776 #endif
777
778 #if defined(CONFIG_CMD_ONENAND)
779         onenand_init();
780 #endif
781
782 #ifdef CONFIG_HAS_DATAFLASH
783         AT91F_DataflashInit();
784         dataflash_print_info();
785 #endif
786
787         /* initialize environment */
788         env_relocate ();
789
790 #ifdef CONFIG_VFD
791         /* must do this after the framebuffer is allocated */
792         drv_vfd_init();
793 #endif /* CONFIG_VFD */
794
795         /* IP Address */
796         gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
797
798         stdio_init ();  /* get the devices list going. */
799
800         jumptable_init ();
801
802 #if defined(CONFIG_API)
803         /* Initialize API */
804         api_init ();
805 #endif
806
807         console_init_r ();      /* fully init console as a device */
808
809 #if defined(CONFIG_ARCH_MISC_INIT)
810         /* miscellaneous arch dependent initialisations */
811         arch_misc_init ();
812 #endif
813 #if defined(CONFIG_MISC_INIT_R)
814         /* miscellaneous platform dependent initialisations */
815         misc_init_r ();
816 #endif
817
818          /* set up exceptions */
819         interrupt_init ();
820         /* enable exceptions */
821         enable_interrupts ();
822
823         /* Perform network card initialisation if necessary */
824 #ifdef CONFIG_DRIVER_TI_EMAC
825         /* XXX: this needs to be moved to board init */
826 extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
827         if (getenv ("ethaddr")) {
828                 uchar enetaddr[6];
829                 eth_getenv_enetaddr("ethaddr", enetaddr);
830                 davinci_eth_set_mac_addr(enetaddr);
831         }
832 #endif
833
834 #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
835         /* XXX: this needs to be moved to board init */
836         if (getenv ("ethaddr")) {
837                 uchar enetaddr[6];
838                 eth_getenv_enetaddr("ethaddr", enetaddr);
839                 smc_set_mac_addr(enetaddr);
840         }
841 #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
842
843         /* Initialize from environment */
844         if ((s = getenv ("loadaddr")) != NULL) {
845                 load_addr = simple_strtoul (s, NULL, 16);
846         }
847 #if defined(CONFIG_CMD_NET)
848         if ((s = getenv ("bootfile")) != NULL) {
849                 copy_filename (BootFile, s, sizeof (BootFile));
850         }
851 #endif
852
853 #ifdef BOARD_LATE_INIT
854         board_late_init ();
855 #endif
856
857 #ifdef CONFIG_GENERIC_MMC
858         puts ("MMC:   ");
859         mmc_initialize (gd->bd);
860 #endif
861
862 #ifdef CONFIG_BITBANGMII
863         bb_miiphy_init();
864 #endif
865 #if defined(CONFIG_CMD_NET)
866 #if defined(CONFIG_NET_MULTI)
867         puts ("Net:   ");
868 #endif
869         eth_initialize(gd->bd);
870 #if defined(CONFIG_RESET_PHY_R)
871         debug ("Reset Ethernet PHY\n");
872         reset_phy();
873 #endif
874 #endif
875
876 #ifdef CONFIG_POST
877         post_run (NULL, POST_RAM | post_bootmode_get(0));
878 #endif
879
880 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
881         /*
882          * Export available size of memory for Linux,
883          * taking into account the protected RAM at top of memory
884          */
885         {
886                 ulong pram;
887                 uchar memsz[32];
888 #ifdef CONFIG_PRAM
889                 char *s;
890
891                 if ((s = getenv ("pram")) != NULL) {
892                         pram = simple_strtoul (s, NULL, 10);
893                 } else {
894                         pram = CONFIG_PRAM;
895                 }
896 #else
897                 pram=0;
898 #endif
899 #ifdef CONFIG_LOGBUFFER
900 #ifndef CONFIG_ALT_LB_ADDR
901                 /* Also take the logbuffer into account (pram is in kB) */
902                 pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024;
903 #endif
904 #endif
905                 sprintf ((char *)memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
906                 setenv ("mem", (char *)memsz);
907         }
908 #endif
909
910         /* main_loop() can return to retry autoboot, if so just run it again. */
911         for (;;) {
912                 main_loop ();
913         }
914
915         /* NOTREACHED - no way out of command loop except booting */
916 }
917 #endif /* defined(CONFIG_SYS_ARM_WITHOUT_RELOC) */
918
919 void hang (void)
920 {
921         puts ("### ERROR ### Please RESET the board ###\n");
922         for (;;);
923 }