]> git.sur5r.net Git - u-boot/blob - lib_arm/board.c
Standardize mem_malloc_init() implementation
[u-boot] / lib_arm / 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_DRIVER_SMC91111
54 #include "../drivers/net/smc91111.h"
55 #endif
56 #ifdef CONFIG_DRIVER_LAN91C96
57 #include "../drivers/net/lan91c96.h"
58 #endif
59
60 DECLARE_GLOBAL_DATA_PTR;
61
62 ulong monitor_flash_len;
63
64 #ifdef CONFIG_HAS_DATAFLASH
65 extern int  AT91F_DataflashInit(void);
66 extern void dataflash_print_info(void);
67 #endif
68
69 #ifndef CONFIG_IDENT_STRING
70 #define CONFIG_IDENT_STRING ""
71 #endif
72
73 const char version_string[] =
74         U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"CONFIG_IDENT_STRING;
75
76 #ifdef CONFIG_DRIVER_RTL8019
77 extern void rtl8019_get_enetaddr (uchar * addr);
78 #endif
79
80 #if defined(CONFIG_HARD_I2C) || \
81     defined(CONFIG_SOFT_I2C)
82 #include <i2c.h>
83 #endif
84
85 static
86 void mem_malloc_init (ulong start, ulong size)
87 {
88         mem_malloc_start = start;
89         mem_malloc_end = start + size;
90         mem_malloc_brk = start;
91
92         memset ((void *)mem_malloc_start, 0, size);
93 }
94
95
96 /************************************************************************
97  * Coloured LED functionality
98  ************************************************************************
99  * May be supplied by boards if desired
100  */
101 void inline __coloured_LED_init (void) {}
102 void inline coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
103 void inline __red_LED_on (void) {}
104 void inline red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
105 void inline __red_LED_off(void) {}
106 void inline red_LED_off(void)        __attribute__((weak, alias("__red_LED_off")));
107 void inline __green_LED_on(void) {}
108 void inline green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
109 void inline __green_LED_off(void) {}
110 void inline green_LED_off(void)__attribute__((weak, alias("__green_LED_off")));
111 void inline __yellow_LED_on(void) {}
112 void inline yellow_LED_on(void)__attribute__((weak, alias("__yellow_LED_on")));
113 void inline __yellow_LED_off(void) {}
114 void inline yellow_LED_off(void)__attribute__((weak, alias("__yellow_LED_off")));
115 void inline __blue_LED_on(void) {}
116 void inline blue_LED_on(void)__attribute__((weak, alias("__blue_LED_on")));
117 void inline __blue_LED_off(void) {}
118 void inline blue_LED_off(void)__attribute__((weak, alias("__blue_LED_off")));
119
120 /************************************************************************
121  * Init Utilities                                                       *
122  ************************************************************************
123  * Some of this code should be moved into the core functions,
124  * or dropped completely,
125  * but let's get it working (again) first...
126  */
127
128 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
129 #define CONFIG_BAUDRATE 115200
130 #endif
131 static int init_baudrate (void)
132 {
133         char tmp[64];   /* long enough for environment variables */
134         int i = getenv_r ("baudrate", tmp, sizeof (tmp));
135         gd->bd->bi_baudrate = gd->baudrate = (i > 0)
136                         ? (int) simple_strtoul (tmp, NULL, 10)
137                         : CONFIG_BAUDRATE;
138
139         return (0);
140 }
141
142 static int display_banner (void)
143 {
144         printf ("\n\n%s\n\n", version_string);
145         debug ("U-Boot code: %08lX -> %08lX  BSS: -> %08lX\n",
146                _armboot_start, _bss_start, _bss_end);
147 #ifdef CONFIG_MODEM_SUPPORT
148         debug ("Modem Support enabled\n");
149 #endif
150 #ifdef CONFIG_USE_IRQ
151         debug ("IRQ Stack: %08lx\n", IRQ_STACK_START);
152         debug ("FIQ Stack: %08lx\n", FIQ_STACK_START);
153 #endif
154
155         return (0);
156 }
157
158 /*
159  * WARNING: this code looks "cleaner" than the PowerPC version, but
160  * has the disadvantage that you either get nothing, or everything.
161  * On PowerPC, you might see "DRAM: " before the system hangs - which
162  * gives a simple yet clear indication which part of the
163  * initialization if failing.
164  */
165 static int display_dram_config (void)
166 {
167         int i;
168
169 #ifdef DEBUG
170         puts ("RAM Configuration:\n");
171
172         for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
173                 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
174                 print_size (gd->bd->bi_dram[i].size, "\n");
175         }
176 #else
177         ulong size = 0;
178
179         for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
180                 size += gd->bd->bi_dram[i].size;
181         }
182         puts("DRAM:  ");
183         print_size(size, "\n");
184 #endif
185
186         return (0);
187 }
188
189 #ifndef CONFIG_SYS_NO_FLASH
190 static void display_flash_config (ulong size)
191 {
192         puts ("Flash: ");
193         print_size (size, "\n");
194 }
195 #endif /* CONFIG_SYS_NO_FLASH */
196
197 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
198 static int init_func_i2c (void)
199 {
200         puts ("I2C:   ");
201         i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
202         puts ("ready\n");
203         return (0);
204 }
205 #endif
206
207 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
208 #include <pci.h>
209 static int arm_pci_init(void)
210 {
211         pci_init();
212         return 0;
213 }
214 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
215
216 /*
217  * Breathe some life into the board...
218  *
219  * Initialize a serial port as console, and carry out some hardware
220  * tests.
221  *
222  * The first part of initialization is running from Flash memory;
223  * its main purpose is to initialize the RAM so that we
224  * can relocate the monitor code to RAM.
225  */
226
227 /*
228  * All attempts to come up with a "common" initialization sequence
229  * that works for all boards and architectures failed: some of the
230  * requirements are just _too_ different. To get rid of the resulting
231  * mess of board dependent #ifdef'ed code we now make the whole
232  * initialization sequence configurable to the user.
233  *
234  * The requirements for any new initalization function is simple: it
235  * receives a pointer to the "global data" structure as it's only
236  * argument, and returns an integer return code, where 0 means
237  * "continue" and != 0 means "fatal error, hang the system".
238  */
239 typedef int (init_fnc_t) (void);
240
241 int print_cpuinfo (void);
242
243 init_fnc_t *init_sequence[] = {
244 #if defined(CONFIG_ARCH_CPU_INIT)
245         arch_cpu_init,          /* basic arch cpu dependent setup */
246 #endif
247         board_init,             /* basic board dependent setup */
248 #if defined(CONFIG_USE_IRQ)
249         interrupt_init,         /* set up exceptions */
250 #endif
251         timer_init,             /* initialize timer */
252         env_init,               /* initialize environment */
253         init_baudrate,          /* initialze baudrate settings */
254         serial_init,            /* serial communications setup */
255         console_init_f,         /* stage 1 init of console */
256         display_banner,         /* say that we are here */
257 #if defined(CONFIG_DISPLAY_CPUINFO)
258         print_cpuinfo,          /* display cpu info (and speed) */
259 #endif
260 #if defined(CONFIG_DISPLAY_BOARDINFO)
261         checkboard,             /* display board info */
262 #endif
263 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
264         init_func_i2c,
265 #endif
266         dram_init,              /* configure available RAM banks */
267 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
268         arm_pci_init,
269 #endif
270         display_dram_config,
271         NULL,
272 };
273
274 void start_armboot (void)
275 {
276         init_fnc_t **init_fnc_ptr;
277         char *s;
278 #if defined(CONFIG_VFD) || defined(CONFIG_LCD)
279         unsigned long addr;
280 #endif
281
282         /* Pointer is writable since we allocated a register for it */
283         gd = (gd_t*)(_armboot_start - CONFIG_SYS_MALLOC_LEN - sizeof(gd_t));
284         /* compiler optimization barrier needed for GCC >= 3.4 */
285         __asm__ __volatile__("": : :"memory");
286
287         memset ((void*)gd, 0, sizeof (gd_t));
288         gd->bd = (bd_t*)((char*)gd - sizeof(bd_t));
289         memset (gd->bd, 0, sizeof (bd_t));
290
291         gd->flags |= GD_FLG_RELOC;
292
293         monitor_flash_len = _bss_start - _armboot_start;
294
295         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
296                 if ((*init_fnc_ptr)() != 0) {
297                         hang ();
298                 }
299         }
300
301         /* armboot_start is defined in the board-specific linker script */
302         mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN,
303                         CONFIG_SYS_MALLOC_LEN);
304
305 #ifndef CONFIG_SYS_NO_FLASH
306         /* configure available FLASH banks */
307         display_flash_config (flash_init ());
308 #endif /* CONFIG_SYS_NO_FLASH */
309
310 #ifdef CONFIG_VFD
311 #       ifndef PAGE_SIZE
312 #         define PAGE_SIZE 4096
313 #       endif
314         /*
315          * reserve memory for VFD display (always full pages)
316          */
317         /* bss_end is defined in the board-specific linker script */
318         addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
319         vfd_setmem (addr);
320         gd->fb_base = addr;
321 #endif /* CONFIG_VFD */
322
323 #ifdef CONFIG_LCD
324         /* board init may have inited fb_base */
325         if (!gd->fb_base) {
326 #               ifndef PAGE_SIZE
327 #                 define PAGE_SIZE 4096
328 #               endif
329                 /*
330                  * reserve memory for LCD display (always full pages)
331                  */
332                 /* bss_end is defined in the board-specific linker script */
333                 addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
334                 lcd_setmem (addr);
335                 gd->fb_base = addr;
336         }
337 #endif /* CONFIG_LCD */
338
339 #if defined(CONFIG_CMD_NAND)
340         puts ("NAND:  ");
341         nand_init();            /* go init the NAND */
342 #endif
343
344 #if defined(CONFIG_CMD_ONENAND)
345         onenand_init();
346 #endif
347
348 #ifdef CONFIG_HAS_DATAFLASH
349         AT91F_DataflashInit();
350         dataflash_print_info();
351 #endif
352
353         /* initialize environment */
354         env_relocate ();
355
356 #ifdef CONFIG_VFD
357         /* must do this after the framebuffer is allocated */
358         drv_vfd_init();
359 #endif /* CONFIG_VFD */
360
361 #ifdef CONFIG_SERIAL_MULTI
362         serial_initialize();
363 #endif
364
365         /* IP Address */
366         gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
367
368         stdio_init ();  /* get the devices list going. */
369
370         jumptable_init ();
371
372 #if defined(CONFIG_API)
373         /* Initialize API */
374         api_init ();
375 #endif
376
377         console_init_r ();      /* fully init console as a device */
378
379 #if defined(CONFIG_ARCH_MISC_INIT)
380         /* miscellaneous arch dependent initialisations */
381         arch_misc_init ();
382 #endif
383 #if defined(CONFIG_MISC_INIT_R)
384         /* miscellaneous platform dependent initialisations */
385         misc_init_r ();
386 #endif
387
388         /* enable exceptions */
389         enable_interrupts ();
390
391         /* Perform network card initialisation if necessary */
392 #ifdef CONFIG_DRIVER_TI_EMAC
393         /* XXX: this needs to be moved to board init */
394 extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
395         if (getenv ("ethaddr")) {
396                 uchar enetaddr[6];
397                 eth_getenv_enetaddr("ethaddr", enetaddr);
398                 davinci_eth_set_mac_addr(enetaddr);
399         }
400 #endif
401
402 #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
403         /* XXX: this needs to be moved to board init */
404         if (getenv ("ethaddr")) {
405                 uchar enetaddr[6];
406                 eth_getenv_enetaddr("ethaddr", enetaddr);
407                 smc_set_mac_addr(enetaddr);
408         }
409 #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
410
411         /* Initialize from environment */
412         if ((s = getenv ("loadaddr")) != NULL) {
413                 load_addr = simple_strtoul (s, NULL, 16);
414         }
415 #if defined(CONFIG_CMD_NET)
416         if ((s = getenv ("bootfile")) != NULL) {
417                 copy_filename (BootFile, s, sizeof (BootFile));
418         }
419 #endif
420
421 #ifdef BOARD_LATE_INIT
422         board_late_init ();
423 #endif
424
425 #ifdef CONFIG_GENERIC_MMC
426         puts ("MMC:   ");
427         mmc_initialize (gd->bd);
428 #endif
429
430 #if defined(CONFIG_CMD_NET)
431 #if defined(CONFIG_NET_MULTI)
432         puts ("Net:   ");
433 #endif
434         eth_initialize(gd->bd);
435 #if defined(CONFIG_RESET_PHY_R)
436         debug ("Reset Ethernet PHY\n");
437         reset_phy();
438 #endif
439 #endif
440         /* main_loop() can return to retry autoboot, if so just run it again. */
441         for (;;) {
442                 main_loop ();
443         }
444
445         /* NOTREACHED - no way out of command loop except booting */
446 }
447
448 void hang (void)
449 {
450         puts ("### ERROR ### Please RESET the board ###\n");
451         for (;;);
452 }