2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
10 * SPDX-License-Identifier: GPL-2.0+
14 #include <linux/compiler.h>
16 #include <environment.h>
20 #if defined(CONFIG_CMD_IDE)
27 /* TODO: Can we move these into arch/ headers? */
37 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
44 #include <status_led.h>
47 #include <asm/errno.h>
49 #include <asm/sections.h>
50 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
51 #include <asm/init_helpers.h>
52 #include <asm/relocate.h>
55 #include <asm/state.h>
58 #include <linux/compiler.h>
61 * Pointer to initial global data area
63 * Here we initialize it if needed.
65 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
66 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
67 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
68 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
70 DECLARE_GLOBAL_DATA_PTR;
74 * sjg: IMO this code should be
75 * refactored to a single function, something like:
77 * void led_set_state(enum led_colour_t colour, int on);
79 /************************************************************************
80 * Coloured LED functionality
81 ************************************************************************
82 * May be supplied by boards if desired
84 __weak void coloured_LED_init(void) {}
85 __weak void red_led_on(void) {}
86 __weak void red_led_off(void) {}
87 __weak void green_led_on(void) {}
88 __weak void green_led_off(void) {}
89 __weak void yellow_led_on(void) {}
90 __weak void yellow_led_off(void) {}
91 __weak void blue_led_on(void) {}
92 __weak void blue_led_off(void) {}
95 * Why is gd allocated a register? Prior to reloc it might be better to
96 * just pass it around to each function in this file?
98 * After reloc one could argue that it is hardly used and doesn't need
99 * to be in a register. Or if it is it should perhaps hold pointers to all
100 * global data for all modules, so that post-reloc we can avoid the massive
101 * literal pool we get on ARM. Or perhaps just encourage each module to use
106 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
109 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
110 static int init_func_watchdog_init(void)
112 # if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
113 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
114 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
115 defined(CONFIG_IMX_WATCHDOG))
118 puts(" Watchdog enabled\n");
124 int init_func_watchdog_reset(void)
130 #endif /* CONFIG_WATCHDOG */
132 __weak void board_add_ram_info(int use_default)
134 /* please define platform specific board_add_ram_info() */
137 static int init_baud_rate(void)
139 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
143 static int display_text_info(void)
145 #ifndef CONFIG_SANDBOX
146 ulong bss_start, bss_end, text_base;
148 bss_start = (ulong)&__bss_start;
149 bss_end = (ulong)&__bss_end;
151 #ifdef CONFIG_SYS_TEXT_BASE
152 text_base = CONFIG_SYS_TEXT_BASE;
154 text_base = CONFIG_SYS_MONITOR_BASE;
157 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
158 text_base, bss_start, bss_end);
161 #ifdef CONFIG_MODEM_SUPPORT
162 debug("Modem Support enabled\n");
164 #ifdef CONFIG_USE_IRQ
165 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
166 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
172 static int announce_dram_init(void)
178 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
179 static int init_func_ram(void)
181 #ifdef CONFIG_BOARD_TYPES
182 int board_type = gd->board_type;
184 int board_type = 0; /* use dummy arg */
187 gd->ram_size = initdram(board_type);
189 if (gd->ram_size > 0)
192 puts("*** failed ***\n");
197 static int show_dram_config(void)
199 unsigned long long size;
201 #ifdef CONFIG_NR_DRAM_BANKS
204 debug("\nRAM Configuration:\n");
205 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
206 size += gd->bd->bi_dram[i].size;
207 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
209 print_size(gd->bd->bi_dram[i].size, "\n");
217 print_size(size, "");
218 board_add_ram_info(0);
224 __weak void dram_init_banksize(void)
226 #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
227 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
228 gd->bd->bi_dram[0].size = get_effective_memsize();
232 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
233 static int init_func_i2c(void)
236 #ifdef CONFIG_SYS_I2C
239 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
246 #if defined(CONFIG_HARD_SPI)
247 static int init_func_spi(void)
257 static int zero_global_data(void)
259 memset((void *)gd, '\0', sizeof(gd_t));
264 static int setup_mon_len(void)
266 #if defined(__ARM__) || defined(__MICROBLAZE__)
267 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
268 #elif defined(CONFIG_SANDBOX)
269 gd->mon_len = (ulong)&_end - (ulong)_init;
270 #elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
271 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
273 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
274 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
279 __weak int arch_cpu_init(void)
284 #ifdef CONFIG_OF_HOSTFILE
286 static int read_fdt_from_file(void)
288 struct sandbox_state *state = state_get_current();
289 const char *fname = state->fdt_fname;
295 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
296 if (!state->fdt_fname) {
297 err = fdt_create_empty_tree(blob, 256);
300 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
304 err = os_get_filesize(fname, &size);
306 printf("Failed to file FDT file '%s'\n", fname);
309 fd = os_open(fname, OS_O_RDONLY);
311 printf("Failed to open FDT file '%s'\n", fname);
314 if (os_read(fd, blob, size) != size) {
327 #ifdef CONFIG_SANDBOX
328 static int setup_ram_buf(void)
330 struct sandbox_state *state = state_get_current();
332 gd->arch.ram_buf = state->ram_buf;
333 gd->ram_size = state->ram_size;
339 static int setup_fdt(void)
341 #ifdef CONFIG_OF_CONTROL
342 # ifdef CONFIG_OF_EMBED
343 /* Get a pointer to the FDT */
344 gd->fdt_blob = __dtb_dt_begin;
345 # elif defined CONFIG_OF_SEPARATE
346 /* FDT is at end of image */
347 gd->fdt_blob = (ulong *)&_end;
348 # elif defined(CONFIG_OF_HOSTFILE)
349 if (read_fdt_from_file()) {
350 puts("Failed to read control FDT\n");
354 /* Allow the early environment to override the fdt address */
355 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
356 (uintptr_t)gd->fdt_blob);
361 /* Get the top of usable RAM */
362 __weak ulong board_get_usable_ram_top(ulong total_size)
364 #ifdef CONFIG_SYS_SDRAM_BASE
366 * Detect whether we have so much RAM it goes past the end of our
367 * 32-bit address space. If so, clip the usable RAM so it doesn't.
369 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
371 * Will wrap back to top of 32-bit space when reservations
379 static int setup_dest_addr(void)
381 debug("Monitor len: %08lX\n", gd->mon_len);
383 * Ram is setup, size stored in gd !!
385 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
386 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
388 * Subtract specified amount of memory to hide so that it won't
389 * get "touched" at all by U-Boot. By fixing up gd->ram_size
390 * the Linux kernel should now get passed the now "corrected"
391 * memory size and won't touch it either. This should work
392 * for arch/ppc and arch/powerpc. Only Linux board ports in
393 * arch/powerpc with bootwrapper support, that recalculate the
394 * memory size from the SDRAM controller setup will have to
397 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
399 #ifdef CONFIG_SYS_SDRAM_BASE
400 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
402 gd->ram_top += get_effective_memsize();
403 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
404 gd->relocaddr = gd->ram_top;
405 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
406 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
408 * We need to make sure the location we intend to put secondary core
409 * boot code is reserved and not used by any part of u-boot
411 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
412 gd->relocaddr = determine_mp_bootpg(NULL);
413 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
419 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
420 static int reserve_logbuffer(void)
422 /* reserve kernel log buffer */
423 gd->relocaddr -= LOGBUFF_RESERVE;
424 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
431 /* reserve protected RAM */
432 static int reserve_pram(void)
436 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
437 gd->relocaddr -= (reg << 10); /* size is in kB */
438 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
442 #endif /* CONFIG_PRAM */
444 /* Round memory pointer down to next 4 kB limit */
445 static int reserve_round_4k(void)
447 gd->relocaddr &= ~(4096 - 1);
451 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
453 static int reserve_mmu(void)
455 /* reserve TLB table */
456 gd->arch.tlb_size = PGTABLE_SIZE;
457 gd->relocaddr -= gd->arch.tlb_size;
459 /* round down to next 64 kB limit */
460 gd->relocaddr &= ~(0x10000 - 1);
462 gd->arch.tlb_addr = gd->relocaddr;
463 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
464 gd->arch.tlb_addr + gd->arch.tlb_size);
470 static int reserve_lcd(void)
472 #ifdef CONFIG_FB_ADDR
473 gd->fb_base = CONFIG_FB_ADDR;
475 /* reserve memory for LCD display (always full pages) */
476 gd->relocaddr = lcd_setmem(gd->relocaddr);
477 gd->fb_base = gd->relocaddr;
478 #endif /* CONFIG_FB_ADDR */
481 #endif /* CONFIG_LCD */
483 static int reserve_trace(void)
486 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
487 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
488 debug("Reserving %dk for trace data at: %08lx\n",
489 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
495 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
496 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
497 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
498 static int reserve_video(void)
500 /* reserve memory for video display (always full pages) */
501 gd->relocaddr = video_setmem(gd->relocaddr);
502 gd->fb_base = gd->relocaddr;
508 static int reserve_uboot(void)
511 * reserve memory for U-Boot code, data & bss
512 * round down to next 4 kB limit
514 gd->relocaddr -= gd->mon_len;
515 gd->relocaddr &= ~(4096 - 1);
517 /* round down to next 64 kB limit so that IVPR stays aligned */
518 gd->relocaddr &= ~(65536 - 1);
521 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
524 gd->start_addr_sp = gd->relocaddr;
529 #ifndef CONFIG_SPL_BUILD
530 /* reserve memory for malloc() area */
531 static int reserve_malloc(void)
533 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
534 debug("Reserving %dk for malloc() at: %08lx\n",
535 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
539 /* (permanently) allocate a Board Info struct */
540 static int reserve_board(void)
543 gd->start_addr_sp -= sizeof(bd_t);
544 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
545 memset(gd->bd, '\0', sizeof(bd_t));
546 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
547 sizeof(bd_t), gd->start_addr_sp);
553 static int setup_machine(void)
555 #ifdef CONFIG_MACH_TYPE
556 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
561 static int reserve_global_data(void)
563 gd->start_addr_sp -= sizeof(gd_t);
564 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
565 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
566 sizeof(gd_t), gd->start_addr_sp);
570 static int reserve_fdt(void)
573 * If the device tree is sitting immediate above our image then we
574 * must relocate it. If it is embedded in the data section, then it
575 * will be relocated with other data.
578 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
580 gd->start_addr_sp -= gd->fdt_size;
581 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
582 debug("Reserving %lu Bytes for FDT at: %08lx\n",
583 gd->fdt_size, gd->start_addr_sp);
589 int arch_reserve_stacks(void)
594 static int reserve_stacks(void)
596 /* make stack pointer 16-byte aligned */
597 gd->start_addr_sp -= 16;
598 gd->start_addr_sp &= ~0xf;
601 * let the architecture specific code tailor gd->start_addr_sp and
604 return arch_reserve_stacks();
607 static int display_new_sp(void)
609 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
614 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
615 static int setup_board_part1(void)
620 * Save local variables to board info struct
623 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
624 bd->bi_memsize = gd->ram_size; /* size in bytes */
626 #ifdef CONFIG_SYS_SRAM_BASE
627 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
628 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
631 #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
632 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
633 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
635 #if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
636 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
638 #if defined(CONFIG_MPC83xx)
639 bd->bi_immrbar = CONFIG_SYS_IMMR;
645 static int setup_board_part2(void)
649 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
650 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
651 #if defined(CONFIG_CPM2)
652 bd->bi_cpmfreq = gd->arch.cpm_clk;
653 bd->bi_brgfreq = gd->arch.brg_clk;
654 bd->bi_sccfreq = gd->arch.scc_clk;
655 bd->bi_vco = gd->arch.vco_out;
656 #endif /* CONFIG_CPM2 */
657 #if defined(CONFIG_MPC512X)
658 bd->bi_ipsfreq = gd->arch.ips_clk;
659 #endif /* CONFIG_MPC512X */
660 #if defined(CONFIG_MPC5xxx)
661 bd->bi_ipbfreq = gd->arch.ipb_clk;
662 bd->bi_pcifreq = gd->pci_clk;
663 #endif /* CONFIG_MPC5xxx */
664 #if defined(CONFIG_M68K) && defined(CONFIG_PCI)
665 bd->bi_pcifreq = gd->pci_clk;
667 #if defined(CONFIG_EXTRA_CLOCK)
668 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
669 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
670 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
677 #ifdef CONFIG_SYS_EXTBDINFO
678 static int setup_board_extra(void)
682 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
683 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
684 sizeof(bd->bi_r_version));
686 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
687 bd->bi_plb_busfreq = gd->bus_clk;
688 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
689 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
690 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
691 bd->bi_pci_busfreq = get_PCI_freq();
692 bd->bi_opbfreq = get_OPB_freq();
693 #elif defined(CONFIG_XILINX_405)
694 bd->bi_pci_busfreq = get_PCI_freq();
702 static int init_post(void)
704 post_bootmode_init();
705 post_run(NULL, POST_ROM | post_bootmode_get(0));
711 static int setup_dram_config(void)
713 /* Ram is board specific, so move it to board code ... */
714 dram_init_banksize();
719 static int reloc_fdt(void)
722 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
723 gd->fdt_blob = gd->new_fdt;
729 static int setup_reloc(void)
731 #ifdef CONFIG_SYS_TEXT_BASE
732 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
735 * On all ColdFire arch cpu, monitor code starts always
736 * just after the default vector table location, so at 0x400
738 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
741 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
743 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
744 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
745 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
751 /* ARM calls relocate_code from its crt0.S */
752 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
754 static int jump_to_copy(void)
757 * x86 is special, but in a nice way. It uses a trampoline which
758 * enables the dcache if possible.
760 * For now, other archs use relocate_code(), which is implemented
761 * similarly for all archs. When we do generic relocation, hopefully
762 * we can make all archs enable the dcache prior to relocation.
764 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
766 * SDRAM and console are now initialised. The final stack can now
767 * be setup in SDRAM. Code execution will continue in Flash, but
768 * with the stack in SDRAM and Global Data in temporary memory
771 board_init_f_r_trampoline(gd->start_addr_sp);
773 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
780 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
781 static int mark_bootstage(void)
783 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
788 static int initf_malloc(void)
790 #ifdef CONFIG_SYS_MALLOC_F_LEN
791 assert(gd->malloc_base); /* Set up by crt0.S */
792 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
799 static int initf_dm(void)
801 #if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
804 ret = dm_init_and_scan(true);
812 /* Architecture-specific memory reservation */
813 __weak int reserve_arch(void)
818 static init_fnc_t init_sequence_f[] = {
819 #ifdef CONFIG_SANDBOX
828 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
829 /* TODO: can this go into arch_cpu_init()? */
832 arch_cpu_init, /* basic arch cpu dependent setup */
834 #ifdef CONFIG_OF_CONTROL
838 #if defined(CONFIG_BOARD_EARLY_INIT_F)
841 /* TODO: can any of this go into arch_cpu_init()? */
842 #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
843 get_clocks, /* get CPU and bus clocks (etc.) */
844 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
845 && !defined(CONFIG_TQM885D)
846 adjust_sdram_tbs_8xx,
848 /* TODO: can we rename this to timer_init()? */
851 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
852 timer_init, /* initialize timer */
854 #ifdef CONFIG_SYS_ALLOC_DPRAM
855 #if !defined(CONFIG_CPM2)
859 #if defined(CONFIG_BOARD_POSTCLK_INIT)
862 #ifdef CONFIG_FSL_ESDHC
868 env_init, /* initialize environment */
869 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
870 /* get CPU and bus clocks according to the environment variable */
872 /* adjust sdram refresh rate according to the new clock */
876 init_baud_rate, /* initialze baudrate settings */
877 serial_init, /* serial communications setup */
878 console_init_f, /* stage 1 init of console */
879 #ifdef CONFIG_SANDBOX
880 sandbox_early_getopt_check,
882 #ifdef CONFIG_OF_CONTROL
885 display_options, /* say that we are here */
886 display_text_info, /* show debugging info if required */
887 #if defined(CONFIG_MPC8260)
890 #endif /* CONFIG_MPC8260 */
891 #if defined(CONFIG_MPC83xx)
894 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
897 print_cpuinfo, /* display cpu info (and speed) */
898 #if defined(CONFIG_MPC5xxx)
900 #endif /* CONFIG_MPC5xxx */
901 #if defined(CONFIG_DISPLAY_BOARDINFO)
904 INIT_FUNC_WATCHDOG_INIT
905 #if defined(CONFIG_MISC_INIT_F)
908 INIT_FUNC_WATCHDOG_RESET
909 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
912 #if defined(CONFIG_HARD_SPI)
916 /* TODO: unify all these dram functions? */
917 #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
918 dram_init, /* configure available RAM banks */
920 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
926 INIT_FUNC_WATCHDOG_RESET
927 #if defined(CONFIG_SYS_DRAM_TEST)
929 #endif /* CONFIG_SYS_DRAM_TEST */
930 INIT_FUNC_WATCHDOG_RESET
935 INIT_FUNC_WATCHDOG_RESET
937 * Now that we have DRAM mapped and working, we can
938 * relocate the code and continue running from DRAM.
940 * Reserve memory at end of RAM for (top down in that order):
941 * - area that won't get touched by U-Boot and Linux (optional)
942 * - kernel log buffer
946 * - board info struct
949 #if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
950 /* Blackfin u-boot monitor should be on top of the ram */
953 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
960 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
968 /* TODO: Why the dependency on CONFIG_8xx? */
969 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
970 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
971 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
974 #if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
977 #ifndef CONFIG_SPL_BUILD
988 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
990 INIT_FUNC_WATCHDOG_RESET
994 #ifdef CONFIG_SYS_EXTBDINFO
997 INIT_FUNC_WATCHDOG_RESET
1000 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1003 do_elf_reloc_fixups,
1005 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1011 void board_init_f(ulong boot_flags)
1013 #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1015 * For some archtectures, global data is initialized and used before
1016 * calling this function. The data should be preserved. For others,
1017 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1018 * here to host global data until relocation.
1025 * Clear global data before it is accessed at debug print
1026 * in initcall_run_list. Otherwise the debug print probably
1027 * get the wrong vaule of gd->have_console.
1032 gd->flags = boot_flags;
1033 gd->have_console = 0;
1035 if (initcall_run_list(init_sequence_f))
1038 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1039 /* NOTREACHED - jump_to_copy() does not return */
1044 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1046 * For now this code is only used on x86.
1048 * init_sequence_f_r is the list of init functions which are run when
1049 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1050 * The following limitations must be considered when implementing an
1052 * - 'static' variables are read-only
1053 * - Global Data (gd->xxx) is read/write
1055 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1056 * supported). It _should_, if possible, copy global data to RAM and
1057 * initialise the CPU caches (to speed up the relocation process)
1059 * NOTE: At present only x86 uses this route, but it is intended that
1060 * all archs will move to this when generic relocation is implemented.
1062 static init_fnc_t init_sequence_f_r[] = {
1068 void board_init_f_r(void)
1070 if (initcall_run_list(init_sequence_f_r))
1074 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1075 * Transfer execution from Flash to RAM by calculating the address
1076 * of the in-RAM copy of board_init_r() and calling it
1078 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1080 /* NOTREACHED - board_init_r() does not return */
1083 #endif /* CONFIG_X86 */
1086 ulong board_init_f_mem(ulong top)
1088 /* Leave space for the stack we are running with now */
1091 top -= sizeof(struct global_data);
1092 top = ALIGN(top, 16);
1093 gd = (struct global_data *)top;
1094 memset((void *)gd, '\0', sizeof(*gd));
1096 #ifdef CONFIG_SYS_MALLOC_F_LEN
1097 top -= CONFIG_SYS_MALLOC_F_LEN;
1098 gd->malloc_base = top;
1103 #endif /* !CONFIG_X86 */