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