]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/lib/board.c
ARM: move interrupt_init to before relocation
[karo-tx-uboot.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 <environment.h>
44 #include <malloc.h>
45 #include <stdio_dev.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 #include <libfdt.h>
53 #include <fdtdec.h>
54 #include <post.h>
55 #include <logbuff.h>
56 #include <asm/sections.h>
57
58 #ifdef CONFIG_BITBANGMII
59 #include <miiphy.h>
60 #endif
61
62 DECLARE_GLOBAL_DATA_PTR;
63
64 ulong monitor_flash_len;
65
66 #ifdef CONFIG_HAS_DATAFLASH
67 extern int  AT91F_DataflashInit(void);
68 extern void dataflash_print_info(void);
69 #endif
70
71 #if defined(CONFIG_HARD_I2C) || \
72     defined(CONFIG_SOFT_I2C)
73 #include <i2c.h>
74 #endif
75
76 /************************************************************************
77  * Coloured LED functionality
78  ************************************************************************
79  * May be supplied by boards if desired
80  */
81 inline void __coloured_LED_init(void) {}
82 void coloured_LED_init(void)
83         __attribute__((weak, alias("__coloured_LED_init")));
84 inline void __red_led_on(void) {}
85 void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
86 inline void __red_led_off(void) {}
87 void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
88 inline void __green_led_on(void) {}
89 void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
90 inline void __green_led_off(void) {}
91 void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
92 inline void __yellow_led_on(void) {}
93 void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
94 inline void __yellow_led_off(void) {}
95 void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
96 inline void __blue_led_on(void) {}
97 void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
98 inline void __blue_led_off(void) {}
99 void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
100
101 /*
102  ************************************************************************
103  * Init Utilities                                                       *
104  ************************************************************************
105  * Some of this code should be moved into the core functions,
106  * or dropped completely,
107  * but let's get it working (again) first...
108  */
109
110 #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
111 #define CONFIG_BAUDRATE 115200
112 #endif
113
114 static int init_baudrate(void)
115 {
116         gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
117         return 0;
118 }
119
120 static int display_banner(void)
121 {
122         printf("\n\n%s\n\n", version_string);
123         debug("U-Boot code: %08lX -> %08lX  BSS: -> %08lX\n",
124                _TEXT_BASE,
125                _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE);
126 #ifdef CONFIG_MODEM_SUPPORT
127         debug("Modem Support enabled\n");
128 #endif
129 #ifdef CONFIG_USE_IRQ
130         debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
131         debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
132 #endif
133
134         return (0);
135 }
136
137 /*
138  * WARNING: this code looks "cleaner" than the PowerPC version, but
139  * has the disadvantage that you either get nothing, or everything.
140  * On PowerPC, you might see "DRAM: " before the system hangs - which
141  * gives a simple yet clear indication which part of the
142  * initialization if failing.
143  */
144 static int display_dram_config(void)
145 {
146         int i;
147
148 #ifdef DEBUG
149         puts("RAM Configuration:\n");
150
151         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
152                 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
153                 print_size(gd->bd->bi_dram[i].size, "\n");
154         }
155 #else
156         ulong size = 0;
157
158         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
159                 size += gd->bd->bi_dram[i].size;
160
161         puts("DRAM:  ");
162         print_size(size, "\n");
163 #endif
164
165         return (0);
166 }
167
168 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
169 static int init_func_i2c(void)
170 {
171         puts("I2C:   ");
172         i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
173         puts("ready\n");
174         return (0);
175 }
176 #endif
177
178 #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
179 #include <pci.h>
180 static int arm_pci_init(void)
181 {
182         pci_init();
183         return 0;
184 }
185 #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
186
187 /*
188  * Breathe some life into the board...
189  *
190  * Initialize a serial port as console, and carry out some hardware
191  * tests.
192  *
193  * The first part of initialization is running from Flash memory;
194  * its main purpose is to initialize the RAM so that we
195  * can relocate the monitor code to RAM.
196  */
197
198 /*
199  * All attempts to come up with a "common" initialization sequence
200  * that works for all boards and architectures failed: some of the
201  * requirements are just _too_ different. To get rid of the resulting
202  * mess of board dependent #ifdef'ed code we now make the whole
203  * initialization sequence configurable to the user.
204  *
205  * The requirements for any new initalization function is simple: it
206  * receives a pointer to the "global data" structure as it's only
207  * argument, and returns an integer return code, where 0 means
208  * "continue" and != 0 means "fatal error, hang the system".
209  */
210 typedef int (init_fnc_t) (void);
211
212 int print_cpuinfo(void);
213
214 void __dram_init_banksize(void)
215 {
216         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
217         gd->bd->bi_dram[0].size =  gd->ram_size;
218 }
219 void dram_init_banksize(void)
220         __attribute__((weak, alias("__dram_init_banksize")));
221
222 int __arch_cpu_init(void)
223 {
224         return 0;
225 }
226 int arch_cpu_init(void)
227         __attribute__((weak, alias("__arch_cpu_init")));
228
229 int __power_init_board(void)
230 {
231         return 0;
232 }
233 int power_init_board(void)
234         __attribute__((weak, alias("__power_init_board")));
235
236         /* Record the board_init_f() bootstage (after arch_cpu_init()) */
237 static int mark_bootstage(void)
238 {
239         bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
240
241         return 0;
242 }
243
244 init_fnc_t *init_sequence[] = {
245         arch_cpu_init,          /* basic arch cpu dependent setup */
246         mark_bootstage,
247 #ifdef CONFIG_OF_CONTROL
248         fdtdec_check_fdt,
249 #endif
250 #if defined(CONFIG_BOARD_EARLY_INIT_F)
251         board_early_init_f,
252 #endif
253         timer_init,             /* initialize timer */
254 #ifdef CONFIG_BOARD_POSTCLK_INIT
255         board_postclk_init,
256 #endif
257 #ifdef CONFIG_FSL_ESDHC
258         get_clocks,
259 #endif
260         env_init,               /* initialize environment */
261         init_baudrate,          /* initialze baudrate settings */
262         serial_init,            /* serial communications setup */
263         console_init_f,         /* stage 1 init of console */
264         display_banner,         /* say that we are here */
265 #if defined(CONFIG_DISPLAY_CPUINFO)
266         print_cpuinfo,          /* display cpu info (and speed) */
267 #endif
268 #if defined(CONFIG_DISPLAY_BOARDINFO)
269         checkboard,             /* display board info */
270 #endif
271 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
272         init_func_i2c,
273 #endif
274         dram_init,              /* configure available RAM banks */
275         NULL,
276 };
277
278 void board_init_f(ulong bootflag)
279 {
280         bd_t *bd;
281         init_fnc_t **init_fnc_ptr;
282         gd_t *id;
283         ulong addr, addr_sp;
284 #ifdef CONFIG_PRAM
285         ulong reg;
286 #endif
287         void *new_fdt = NULL;
288         size_t fdt_size = 0;
289
290         memset((void *)gd, 0, sizeof(gd_t));
291
292         gd->mon_len = _bss_end_ofs;
293 #ifdef CONFIG_OF_EMBED
294         /* Get a pointer to the FDT */
295         gd->fdt_blob = _binary_dt_dtb_start;
296 #elif defined CONFIG_OF_SEPARATE
297         /* FDT is at end of image */
298         gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE);
299 #endif
300         /* Allow the early environment to override the fdt address */
301         gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
302                                                 (uintptr_t)gd->fdt_blob);
303
304         for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
305                 if ((*init_fnc_ptr)() != 0) {
306                         hang ();
307                 }
308         }
309
310 #ifdef CONFIG_OF_CONTROL
311         /* For now, put this check after the console is ready */
312         if (fdtdec_prepare_fdt()) {
313                 panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
314                         "doc/README.fdt-control");
315         }
316 #endif
317
318         debug("monitor len: %08lX\n", gd->mon_len);
319         /*
320          * Ram is setup, size stored in gd !!
321          */
322         debug("ramsize: %08lX\n", gd->ram_size);
323 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
324         /*
325          * Subtract specified amount of memory to hide so that it won't
326          * get "touched" at all by U-Boot. By fixing up gd->ram_size
327          * the Linux kernel should now get passed the now "corrected"
328          * memory size and won't touch it either. This should work
329          * for arch/ppc and arch/powerpc. Only Linux board ports in
330          * arch/powerpc with bootwrapper support, that recalculate the
331          * memory size from the SDRAM controller setup will have to
332          * get fixed.
333          */
334         gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
335 #endif
336
337         addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
338
339 #ifdef CONFIG_LOGBUFFER
340 #ifndef CONFIG_ALT_LB_ADDR
341         /* reserve kernel log buffer */
342         addr -= (LOGBUFF_RESERVE);
343         debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
344                 addr);
345 #endif
346 #endif
347
348 #ifdef CONFIG_PRAM
349         /*
350          * reserve protected RAM
351          */
352         reg = getenv_ulong("pram", 10, CONFIG_PRAM);
353         addr -= (reg << 10);            /* size is in kB */
354         debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr);
355 #endif /* CONFIG_PRAM */
356
357 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
358         /* reserve TLB table */
359         gd->arch.tlb_size = 4096 * 4;
360         addr -= gd->arch.tlb_size;
361
362         /* round down to next 64 kB limit */
363         addr &= ~(0x10000 - 1);
364
365         gd->arch.tlb_addr = addr;
366         debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size);
367 #endif
368
369         /* round down to next 4 kB limit */
370         addr &= ~(4096 - 1);
371         debug("Top of RAM usable for U-Boot at: %08lx\n", addr);
372
373 #ifdef CONFIG_LCD
374 #ifdef CONFIG_FB_ADDR
375         gd->fb_base = CONFIG_FB_ADDR;
376 #else
377         /* reserve memory for LCD display (always full pages) */
378         addr = lcd_setmem(addr);
379         gd->fb_base = addr;
380 #endif /* CONFIG_FB_ADDR */
381 #endif /* CONFIG_LCD */
382
383         /*
384          * reserve memory for U-Boot code, data & bss
385          * round down to next 4 kB limit
386          */
387         addr -= gd->mon_len;
388         addr &= ~(4096 - 1);
389
390         debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr);
391
392 #ifndef CONFIG_SPL_BUILD
393         /*
394          * reserve memory for malloc() arena
395          */
396         addr_sp = addr - TOTAL_MALLOC_LEN;
397         debug("Reserving %dk for malloc() at: %08lx\n",
398                         TOTAL_MALLOC_LEN >> 10, addr_sp);
399         /*
400          * (permanently) allocate a Board Info struct
401          * and a permanent copy of the "global" data
402          */
403         addr_sp -= sizeof (bd_t);
404         bd = (bd_t *) addr_sp;
405         gd->bd = bd;
406         debug("Reserving %zu Bytes for Board Info at: %08lx\n",
407                         sizeof (bd_t), addr_sp);
408
409 #ifdef CONFIG_MACH_TYPE
410         gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
411 #endif
412
413         addr_sp -= sizeof (gd_t);
414         id = (gd_t *) addr_sp;
415         debug("Reserving %zu Bytes for Global Data at: %08lx\n",
416                         sizeof (gd_t), addr_sp);
417
418 #if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
419         /*
420          * If the device tree is sitting immediate above our image then we
421          * must relocate it. If it is embedded in the data section, then it
422          * will be relocated with other data.
423          */
424         if (gd->fdt_blob) {
425                 fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
426
427                 addr_sp -= fdt_size;
428                 new_fdt = (void *)addr_sp;
429                 debug("Reserving %zu Bytes for FDT at: %08lx\n",
430                       fdt_size, addr_sp);
431         }
432 #endif
433
434         /* setup stackpointer for exeptions */
435         gd->irq_sp = addr_sp;
436 #ifdef CONFIG_USE_IRQ
437         addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ);
438         debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
439                 CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp);
440 #endif
441         /* leave 3 words for abort-stack    */
442         addr_sp -= 12;
443
444         /* 8-byte alignment for ABI compliance */
445         addr_sp &= ~0x07;
446 #else
447         addr_sp += 128; /* leave 32 words for abort-stack   */
448         gd->irq_sp = addr_sp;
449 #endif
450         interrupt_init();
451
452         debug("New Stack Pointer is: %08lx\n", addr_sp);
453
454 #ifdef CONFIG_POST
455         post_bootmode_init();
456         post_run(NULL, POST_ROM | post_bootmode_get(0));
457 #endif
458
459         gd->bd->bi_baudrate = gd->baudrate;
460         /* Ram ist board specific, so move it to board code ... */
461         dram_init_banksize();
462         display_dram_config();  /* and display it */
463
464         gd->relocaddr = addr;
465         gd->start_addr_sp = addr_sp;
466         gd->reloc_off = addr - _TEXT_BASE;
467         debug("relocation Offset is: %08lx\n", gd->reloc_off);
468         if (new_fdt) {
469                 memcpy(new_fdt, gd->fdt_blob, fdt_size);
470                 gd->fdt_blob = new_fdt;
471         }
472         memcpy(id, (void *)gd, sizeof(gd_t));
473 }
474
475 #if !defined(CONFIG_SYS_NO_FLASH)
476 static char *failed = "*** failed ***\n";
477 #endif
478
479 /*
480  * Tell if it's OK to load the environment early in boot.
481  *
482  * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see
483  * if this is OK (defaulting to saying it's not OK).
484  *
485  * NOTE: Loading the environment early can be a bad idea if security is
486  *       important, since no verification is done on the environment.
487  *
488  * @return 0 if environment should not be loaded, !=0 if it is ok to load
489  */
490 static int should_load_env(void)
491 {
492 #ifdef CONFIG_OF_CONTROL
493         return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
494 #elif defined CONFIG_DELAY_ENVIRONMENT
495         return 0;
496 #else
497         return 1;
498 #endif
499 }
500
501 #if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL)
502 static void display_fdt_model(const void *blob)
503 {
504         const char *model;
505
506         model = (char *)fdt_getprop(blob, 0, "model", NULL);
507         printf("Model: %s\n", model ? model : "<unknown>");
508 }
509 #endif
510
511 /************************************************************************
512  *
513  * This is the next part if the initialization sequence: we are now
514  * running from RAM and have a "normal" C environment, i. e. global
515  * data can be written, BSS has been cleared, the stack size in not
516  * that critical any more, etc.
517  *
518  ************************************************************************
519  */
520
521 void board_init_r(gd_t *id, ulong dest_addr)
522 {
523         ulong malloc_start;
524 #if !defined(CONFIG_SYS_NO_FLASH)
525         ulong flash_size;
526 #endif
527
528         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
529         bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
530
531         monitor_flash_len = _end_ofs;
532
533         /* Enable caches */
534         enable_caches();
535
536         debug("monitor flash len: %08lX\n", monitor_flash_len);
537         board_init();   /* Setup chipselects */
538         /*
539          * TODO: printing of the clock inforamtion of the board is now
540          * implemented as part of bdinfo command. Currently only support for
541          * davinci SOC's is added. Remove this check once all the board
542          * implement this.
543          */
544 #ifdef CONFIG_CLOCKS
545         set_cpu_clk_info(); /* Setup clock information */
546 #endif
547         serial_initialize();
548
549         debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr);
550
551 #ifdef CONFIG_LOGBUFFER
552         logbuff_init_ptrs();
553 #endif
554 #ifdef CONFIG_POST
555         post_output_backlog();
556 #endif
557
558         /* The Malloc area is immediately below the monitor copy in DRAM */
559         malloc_start = dest_addr - TOTAL_MALLOC_LEN;
560         mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN);
561
562 #ifdef CONFIG_ARCH_EARLY_INIT_R
563         arch_early_init_r();
564 #endif
565         power_init_board();
566
567 #if !defined(CONFIG_SYS_NO_FLASH)
568         puts("Flash: ");
569
570         flash_size = flash_init();
571         if (flash_size > 0) {
572 # ifdef CONFIG_SYS_FLASH_CHECKSUM
573                 print_size(flash_size, "");
574                 /*
575                  * Compute and print flash CRC if flashchecksum is set to 'y'
576                  *
577                  * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
578                  */
579                 if (getenv_yesno("flashchecksum") == 1) {
580                         printf("  CRC: %08X", crc32(0,
581                                 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
582                                 flash_size));
583                 }
584                 putc('\n');
585 # else  /* !CONFIG_SYS_FLASH_CHECKSUM */
586                 print_size(flash_size, "\n");
587 # endif /* CONFIG_SYS_FLASH_CHECKSUM */
588         } else {
589                 puts(failed);
590                 hang();
591         }
592 #endif
593
594 #if defined(CONFIG_CMD_NAND)
595         puts("NAND:  ");
596         nand_init();            /* go init the NAND */
597 #endif
598
599 #if defined(CONFIG_CMD_ONENAND)
600         onenand_init();
601 #endif
602
603 #ifdef CONFIG_GENERIC_MMC
604         puts("MMC:   ");
605         mmc_initialize(gd->bd);
606 #endif
607
608 #ifdef CONFIG_HAS_DATAFLASH
609         AT91F_DataflashInit();
610         dataflash_print_info();
611 #endif
612
613         /* initialize environment */
614         if (should_load_env())
615                 env_relocate();
616         else
617                 set_default_env(NULL);
618
619 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
620         arm_pci_init();
621 #endif
622
623         stdio_init();   /* get the devices list going. */
624
625         jumptable_init();
626
627 #if defined(CONFIG_API)
628         /* Initialize API */
629         api_init();
630 #endif
631
632         console_init_r();       /* fully init console as a device */
633
634 #ifdef CONFIG_DISPLAY_BOARDINFO_LATE
635 # ifdef CONFIG_OF_CONTROL
636         /* Put this here so it appears on the LCD, now it is ready */
637         display_fdt_model(gd->fdt_blob);
638 # else
639         checkboard();
640 # endif
641 #endif
642
643 #if defined(CONFIG_ARCH_MISC_INIT)
644         /* miscellaneous arch dependent initialisations */
645         arch_misc_init();
646 #endif
647 #if defined(CONFIG_MISC_INIT_R)
648         /* miscellaneous platform dependent initialisations */
649         misc_init_r();
650 #endif
651
652         /* enable exceptions */
653         enable_interrupts();
654
655         /* Initialize from environment */
656         load_addr = getenv_ulong("loadaddr", 16, load_addr);
657
658 #ifdef CONFIG_BOARD_LATE_INIT
659         board_late_init();
660 #endif
661
662 #ifdef CONFIG_BITBANGMII
663         bb_miiphy_init();
664 #endif
665 #if defined(CONFIG_CMD_NET)
666         puts("Net:   ");
667         eth_initialize(gd->bd);
668 #if defined(CONFIG_RESET_PHY_R)
669         debug("Reset Ethernet PHY\n");
670         reset_phy();
671 #endif
672 #endif
673
674 #ifdef CONFIG_POST
675         post_run(NULL, POST_RAM | post_bootmode_get(0));
676 #endif
677
678 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
679         /*
680          * Export available size of memory for Linux,
681          * taking into account the protected RAM at top of memory
682          */
683         {
684                 ulong pram = 0;
685                 uchar memsz[32];
686
687 #ifdef CONFIG_PRAM
688                 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
689 #endif
690 #ifdef CONFIG_LOGBUFFER
691 #ifndef CONFIG_ALT_LB_ADDR
692                 /* Also take the logbuffer into account (pram is in kB) */
693                 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
694 #endif
695 #endif
696                 sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram);
697                 setenv("mem", (char *)memsz);
698         }
699 #endif
700
701         /* main_loop() can return to retry autoboot, if so just run it again. */
702         for (;;) {
703                 main_loop();
704         }
705
706         /* NOTREACHED - no way out of command loop except booting */
707 }