]> git.sur5r.net Git - u-boot/blob - arch/arm/lib/board.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[u-boot] / 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 <version.h>
46 #include <net.h>
47 #include <serial.h>
48 #include <nand.h>
49 #include <onenand_uboot.h>
50 #include <mmc.h>
51
52 #ifdef CONFIG_BITBANGMII
53 #include <miiphy.h>
54 #endif
55
56 #ifdef CONFIG_DRIVER_SMC91111
57 #include "../drivers/net/smc91111.h"
58 #endif
59 #ifdef CONFIG_DRIVER_LAN91C96
60 #include "../drivers/net/lan91c96.h"
61 #endif
62
63 DECLARE_GLOBAL_DATA_PTR;
64
65 ulong monitor_flash_len;
66
67 #ifdef CONFIG_HAS_DATAFLASH
68 extern int  AT91F_DataflashInit(void);
69 extern void dataflash_print_info(void);
70 #endif
71
72 #ifdef CONFIG_DRIVER_RTL8019
73 extern void rtl8019_get_enetaddr (uchar * addr);
74 #endif
75
76 #if defined(CONFIG_HARD_I2C) || \
77     defined(CONFIG_SOFT_I2C)
78 #include <i2c.h>
79 #endif
80
81
82 /************************************************************************
83  * Coloured LED functionality
84  ************************************************************************
85  * May be supplied by boards if desired
86  */
87 inline void __coloured_LED_init(void) {}
88 void coloured_LED_init(void)
89         __attribute__((weak, alias("__coloured_LED_init")));
90 inline void __red_LED_on(void) {}
91 void red_LED_on(void) __attribute__((weak, alias("__red_LED_on")));
92 inline void __red_LED_off(void) {}
93 void red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
94 inline void __green_LED_on(void) {}
95 void green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
96 inline void __green_LED_off(void) {}
97 void green_LED_off(void) __attribute__((weak, alias("__green_LED_off")));
98 inline void __yellow_LED_on(void) {}
99 void yellow_LED_on(void) __attribute__((weak, alias("__yellow_LED_on")));
100 inline void __yellow_LED_off(void) {}
101 void yellow_LED_off(void) __attribute__((weak, alias("__yellow_LED_off")));
102 inline void __blue_LED_on(void) {}
103 void blue_LED_on(void) __attribute__((weak, alias("__blue_LED_on")));
104 inline void __blue_LED_off(void) {}
105 void blue_LED_off(void) __attribute__((weak, alias("__blue_LED_off")));
106
107 /*
108  ************************************************************************
109  * Init Utilities                                                       *
110  ************************************************************************
111  * Some of this code should be moved into the core functions,
112  * or dropped completely,
113  * but let's get it working (again) first...
114  */
115
116 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
117 #define CONFIG_BAUDRATE 115200
118 #endif
119 static int init_baudrate(void)
120 {
121         char tmp[64];   /* long enough for environment variables */
122         int i = getenv_f("baudrate", tmp, sizeof(tmp));
123
124         gd->baudrate = (i > 0)
125                         ? (int) simple_strtoul(tmp, NULL, 10)
126                         : CONFIG_BAUDRATE;
127
128         return (0);
129 }
130
131 static int display_banner(void)
132 {
133         printf("\n\n%s\n\n", version_string);
134         debug("U-Boot code: %08lX -> %08lX  BSS: -> %08lX\n",
135                _TEXT_BASE,
136                _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
137 #ifdef CONFIG_MODEM_SUPPORT
138         debug("Modem Support enabled\n");
139 #endif
140 #ifdef CONFIG_USE_IRQ
141         debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
142         debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
143 #endif
144
145         return (0);
146 }
147
148 /*
149  * WARNING: this code looks "cleaner" than the PowerPC version, but
150  * has the disadvantage that you either get nothing, or everything.
151  * On PowerPC, you might see "DRAM: " before the system hangs - which
152  * gives a simple yet clear indication which part of the
153  * initialization if failing.
154  */
155 static int display_dram_config(void)
156 {
157         int i;
158
159 #ifdef DEBUG
160         puts("RAM Configuration:\n");
161
162         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
163                 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
164                 print_size(gd->bd->bi_dram[i].size, "\n");
165         }
166 #else
167         ulong size = 0;
168
169         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
170                 size += gd->bd->bi_dram[i].size;
171
172         puts("DRAM:  ");
173         print_size(size, "\n");
174 #endif
175
176         return (0);
177 }
178
179 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
180 static int init_func_i2c(void)
181 {
182         puts("I2C:   ");
183         i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
184         puts("ready\n");
185         return (0);
186 }
187 #endif
188
189 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
190 #include <pci.h>
191 static int arm_pci_init(void)
192 {
193         pci_init();
194         return 0;
195 }
196 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
197
198 /*
199  * Breathe some life into the board...
200  *
201  * Initialize a serial port as console, and carry out some hardware
202  * tests.
203  *
204  * The first part of initialization is running from Flash memory;
205  * its main purpose is to initialize the RAM so that we
206  * can relocate the monitor code to RAM.
207  */
208
209 /*
210  * All attempts to come up with a "common" initialization sequence
211  * that works for all boards and architectures failed: some of the
212  * requirements are just _too_ different. To get rid of the resulting
213  * mess of board dependent #ifdef'ed code we now make the whole
214  * initialization sequence configurable to the user.
215  *
216  * The requirements for any new initalization function is simple: it
217  * receives a pointer to the "global data" structure as it's only
218  * argument, and returns an integer return code, where 0 means
219  * "continue" and != 0 means "fatal error, hang the system".
220  */
221 typedef int (init_fnc_t) (void);
222
223 int print_cpuinfo(void);
224
225 void __dram_init_banksize(void)
226 {
227         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
228         gd->bd->bi_dram[0].size =  gd->ram_size;
229 }
230 void dram_init_banksize(void)
231         __attribute__((weak, alias("__dram_init_banksize")));
232
233 init_fnc_t *init_sequence[] = {
234 #if defined(CONFIG_ARCH_CPU_INIT)
235         arch_cpu_init,          /* basic arch cpu dependent setup */
236 #endif
237 #if defined(CONFIG_BOARD_EARLY_INIT_F)
238         board_early_init_f,
239 #endif
240         timer_init,             /* initialize timer */
241 #ifdef CONFIG_FSL_ESDHC
242         get_clocks,
243 #endif
244         env_init,               /* initialize environment */
245         init_baudrate,          /* initialze baudrate settings */
246         serial_init,            /* serial communications setup */
247         console_init_f,         /* stage 1 init of console */
248         display_banner,         /* say that we are here */
249 #if defined(CONFIG_DISPLAY_CPUINFO)
250         print_cpuinfo,          /* display cpu info (and speed) */
251 #endif
252 #if defined(CONFIG_DISPLAY_BOARDINFO)
253         checkboard,             /* display board info */
254 #endif
255 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
256         init_func_i2c,
257 #endif
258         dram_init,              /* configure available RAM banks */
259         NULL,
260 };
261
262 void board_init_f(ulong bootflag)
263 {
264         bd_t *bd;
265         init_fnc_t **init_fnc_ptr;
266         gd_t *id;
267         ulong addr, addr_sp;
268
269         /* Pointer is writable since we allocated a register for it */
270         gd = (gd_t *) ((CONFIG_SYS_INIT_SP_ADDR) & ~0x07);
271         /* compiler optimization barrier needed for GCC >= 3.4 */
272         __asm__ __volatile__("": : :"memory");
273
274         memset((void *)gd, 0, sizeof(gd_t));
275
276         gd->mon_len = _bss_end_ofs;
277
278 #ifdef CONFIG_MACH_TYPE
279         gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
280 #endif
281
282         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
283                 if ((*init_fnc_ptr)() != 0) {
284                         hang ();
285                 }
286         }
287
288         debug("monitor len: %08lX\n", gd->mon_len);
289         /*
290          * Ram is setup, size stored in gd !!
291          */
292         debug("ramsize: %08lX\n", gd->ram_size);
293 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
294         /*
295          * Subtract specified amount of memory to hide so that it won't
296          * get "touched" at all by U-Boot. By fixing up gd->ram_size
297          * the Linux kernel should now get passed the now "corrected"
298          * memory size and won't touch it either. This should work
299          * for arch/ppc and arch/powerpc. Only Linux board ports in
300          * arch/powerpc with bootwrapper support, that recalculate the
301          * memory size from the SDRAM controller setup will have to
302          * get fixed.
303          */
304         gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
305 #endif
306
307         addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
308
309 #ifdef CONFIG_LOGBUFFER
310 #ifndef CONFIG_ALT_LB_ADDR
311         /* reserve kernel log buffer */
312         addr -= (LOGBUFF_RESERVE);
313         debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
314                 addr);
315 #endif
316 #endif
317
318 #ifdef CONFIG_PRAM
319         /*
320          * reserve protected RAM
321          */
322         i = getenv_r("pram", (char *)tmp, sizeof(tmp));
323         reg = (i > 0) ? simple_strtoul((const char *)tmp, NULL, 10) :
324                 CONFIG_PRAM;
325         addr -= (reg << 10);            /* size is in kB */
326         debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
327 #endif /* CONFIG_PRAM */
328
329 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
330         /* reserve TLB table */
331         addr -= (4096 * 4);
332
333         /* round down to next 64 kB limit */
334         addr &= ~(0x10000 - 1);
335
336         gd->tlb_addr = addr;
337         debug("TLB table at: %08lx\n", addr);
338 #endif
339
340         /* round down to next 4 kB limit */
341         addr &= ~(4096 - 1);
342         debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
343
344 #ifdef CONFIG_LCD
345 #ifdef CONFIG_FB_ADDR
346         gd->fb_base = CONFIG_FB_ADDR;
347 #else
348         /* reserve memory for LCD display (always full pages) */
349         addr = lcd_setmem(addr);
350         gd->fb_base = addr;
351 #endif /* CONFIG_FB_ADDR */
352 #endif /* CONFIG_LCD */
353
354         /*
355          * reserve memory for U-Boot code, data & bss
356          * round down to next 4 kB limit
357          */
358         addr -= gd->mon_len;
359         addr &= ~(4096 - 1);
360
361         debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
362
363 #ifndef CONFIG_SPL_BUILD
364         /*
365          * reserve memory for malloc() arena
366          */
367         addr_sp = addr - TOTAL_MALLOC_LEN;
368         debug("Reserving %dk for malloc() at: %08lx\n",
369                         TOTAL_MALLOC_LEN >> 10, addr_sp);
370         /*
371          * (permanently) allocate a Board Info struct
372          * and a permanent copy of the "global" data
373          */
374         addr_sp -= sizeof (bd_t);
375         bd = (bd_t *) addr_sp;
376         gd->bd = bd;
377         debug("Reserving %zu Bytes for Board Info at: %08lx\n",
378                         sizeof (bd_t), addr_sp);
379         addr_sp -= sizeof (gd_t);
380         id = (gd_t *) addr_sp;
381         debug("Reserving %zu Bytes for Global Data at: %08lx\n",
382                         sizeof (gd_t), addr_sp);
383
384         /* setup stackpointer for exeptions */
385         gd->irq_sp = addr_sp;
386 #ifdef CONFIG_USE_IRQ
387         addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
388         debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
389                 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
390 #endif
391         /* leave 3 words for abort-stack    */
392         addr_sp -= 12;
393
394         /* 8-byte alignment for ABI compliance */
395         addr_sp &= ~0x07;
396 #else
397         addr_sp += 128; /* leave 32 words for abort-stack   */
398         gd->irq_sp = addr_sp;
399 #endif
400
401         debug("New Stack Pointer is: %08lx\n", addr_sp);
402
403 #ifdef CONFIG_POST
404         post_bootmode_init();
405         post_run(NULL, POST_ROM | post_bootmode_get(0));
406 #endif
407
408         gd->bd->bi_baudrate = gd->baudrate;
409         /* Ram ist board specific, so move it to board code ... */
410         dram_init_banksize();
411         display_dram_config();  /* and display it */
412
413         gd->relocaddr = addr;
414         gd->start_addr_sp = addr_sp;
415         gd->reloc_off = addr - _TEXT_BASE;
416         debug("relocation Offset is: %08lx\n", gd->reloc_off);
417         memcpy(id, (void *)gd, sizeof(gd_t));
418
419         relocate_code(addr_sp, id, addr);
420
421         /* NOTREACHED - relocate_code() does not return */
422 }
423
424 #if !defined(CONFIG_SYS_NO_FLASH)
425 static char *failed = "*** failed ***\n";
426 #endif
427
428 /*
429  ************************************************************************
430  *
431  * This is the next part if the initialization sequence: we are now
432  * running from RAM and have a "normal" C environment, i. e. global
433  * data can be written, BSS has been cleared, the stack size in not
434  * that critical any more, etc.
435  *
436  ************************************************************************
437  */
438
439 void board_init_r(gd_t *id, ulong dest_addr)
440 {
441         char *s;
442         bd_t *bd;
443         ulong malloc_start;
444 #if !defined(CONFIG_SYS_NO_FLASH)
445         ulong flash_size;
446 #endif
447
448         gd = id;
449         bd = gd->bd;
450
451         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
452
453         monitor_flash_len = _end_ofs;
454         /*
455          * Enable D$:
456          * I$, if needed, must be already enabled in start.S
457          */
458         dcache_enable();
459
460         debug("monitor flash len: %08lX\n", monitor_flash_len);
461         board_init();   /* Setup chipselects */
462
463 #ifdef CONFIG_SERIAL_MULTI
464         serial_initialize();
465 #endif
466
467         debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
468
469 #ifdef CONFIG_LOGBUFFER
470         logbuff_init_ptrs();
471 #endif
472 #ifdef CONFIG_POST
473         post_output_backlog();
474 #endif
475
476         /* The Malloc area is immediately below the monitor copy in DRAM */
477         malloc_start = dest_addr - TOTAL_MALLOC_LEN;
478         mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
479
480 #if !defined(CONFIG_SYS_NO_FLASH)
481         puts("Flash: ");
482
483         flash_size = flash_init();
484         if (flash_size > 0) {
485 # ifdef CONFIG_SYS_FLASH_CHECKSUM
486                 print_size(flash_size, "");
487                 /*
488                  * Compute and print flash CRC if flashchecksum is set to 'y'
489                  *
490                  * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
491                  */
492                 s = getenv("flashchecksum");
493                 if (s && (*s == 'y')) {
494                         printf("  CRC: %08X", crc32(0,
495                                 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
496                                 flash_size));
497                 }
498                 putc('\n');
499 # else  /* !CONFIG_SYS_FLASH_CHECKSUM */
500                 print_size(flash_size, "\n");
501 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
502         } else {
503                 puts(failed);
504                 hang();
505         }
506 #endif
507
508 #if defined(CONFIG_CMD_NAND)
509         puts("NAND:  ");
510         nand_init();            /* go init the NAND */
511 #endif
512
513 #if defined(CONFIG_CMD_ONENAND)
514         onenand_init();
515 #endif
516
517 #ifdef CONFIG_GENERIC_MMC
518        puts("MMC:   ");
519        mmc_initialize(bd);
520 #endif
521
522 #ifdef CONFIG_HAS_DATAFLASH
523         AT91F_DataflashInit();
524         dataflash_print_info();
525 #endif
526
527         /* initialize environment */
528         env_relocate();
529
530 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
531         arm_pci_init();
532 #endif
533
534         /* IP Address */
535         gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
536
537         stdio_init();   /* get the devices list going. */
538
539         jumptable_init();
540
541 #if defined(CONFIG_API)
542         /* Initialize API */
543         api_init();
544 #endif
545
546         console_init_r();       /* fully init console as a device */
547
548 #if defined(CONFIG_ARCH_MISC_INIT)
549         /* miscellaneous arch dependent initialisations */
550         arch_misc_init();
551 #endif
552 #if defined(CONFIG_MISC_INIT_R)
553         /* miscellaneous platform dependent initialisations */
554         misc_init_r();
555 #endif
556
557          /* set up exceptions */
558         interrupt_init();
559         /* enable exceptions */
560         enable_interrupts();
561
562         /* Perform network card initialisation if necessary */
563 #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
564         /* XXX: this needs to be moved to board init */
565         if (getenv("ethaddr")) {
566                 uchar enetaddr[6];
567                 eth_getenv_enetaddr("ethaddr", enetaddr);
568                 smc_set_mac_addr(enetaddr);
569         }
570 #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
571
572         /* Initialize from environment */
573         s = getenv("loadaddr");
574         if (s != NULL)
575                 load_addr = simple_strtoul(s, NULL, 16);
576 #if defined(CONFIG_CMD_NET)
577         s = getenv("bootfile");
578         if (s != NULL)
579                 copy_filename(BootFile, s, sizeof(BootFile));
580 #endif
581
582 #ifdef BOARD_LATE_INIT
583         board_late_init();
584 #endif
585
586 #ifdef CONFIG_BITBANGMII
587         bb_miiphy_init();
588 #endif
589 #if defined(CONFIG_CMD_NET)
590 #if defined(CONFIG_NET_MULTI)
591         puts("Net:   ");
592 #endif
593         eth_initialize(gd->bd);
594 #if defined(CONFIG_RESET_PHY_R)
595         debug("Reset Ethernet PHY\n");
596         reset_phy();
597 #endif
598 #endif
599
600 #ifdef CONFIG_POST
601         post_run(NULL, POST_RAM | post_bootmode_get(0));
602 #endif
603
604 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
605         /*
606          * Export available size of memory for Linux,
607          * taking into account the protected RAM at top of memory
608          */
609         {
610                 ulong pram;
611                 uchar memsz[32];
612 #ifdef CONFIG_PRAM
613                 char *s;
614
615                 s = getenv("pram");
616                 if (s != NULL)
617                         pram = simple_strtoul(s, NULL, 10);
618                 else
619                         pram = CONFIG_PRAM;
620 #else
621                 pram = 0;
622 #endif
623 #ifdef CONFIG_LOGBUFFER
624 #ifndef CONFIG_ALT_LB_ADDR
625                 /* Also take the logbuffer into account (pram is in kB) */
626                 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
627 #endif
628 #endif
629                 sprintf((char *)memsz, "%ldk", (bd->bi_memsize / 1024) - pram);
630                 setenv("mem", (char *)memsz);
631         }
632 #endif
633
634         /* main_loop() can return to retry autoboot, if so just run it again. */
635         for (;;) {
636                 main_loop();
637         }
638
639         /* NOTREACHED - no way out of command loop except booting */
640 }
641
642 void hang(void)
643 {
644         puts("### ERROR ### Please RESET the board ###\n");
645         for (;;);
646 }