2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
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>
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))
117 puts(" Watchdog enabled\n");
123 int init_func_watchdog_reset(void)
129 #endif /* CONFIG_WATCHDOG */
131 __weak void board_add_ram_info(int use_default)
133 /* please define platform specific board_add_ram_info() */
136 static int init_baud_rate(void)
138 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
142 static int display_text_info(void)
144 #ifndef CONFIG_SANDBOX
145 ulong bss_start, bss_end, text_base;
147 bss_start = (ulong)&__bss_start;
148 bss_end = (ulong)&__bss_end;
150 #ifdef CONFIG_SYS_TEXT_BASE
151 text_base = CONFIG_SYS_TEXT_BASE;
153 text_base = CONFIG_SYS_MONITOR_BASE;
156 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
157 text_base, bss_start, bss_end);
160 #ifdef CONFIG_MODEM_SUPPORT
161 debug("Modem Support enabled\n");
163 #ifdef CONFIG_USE_IRQ
164 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
165 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
171 static int announce_dram_init(void)
177 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
178 static int init_func_ram(void)
180 #ifdef CONFIG_BOARD_TYPES
181 int board_type = gd->board_type;
183 int board_type = 0; /* use dummy arg */
186 gd->ram_size = initdram(board_type);
188 if (gd->ram_size > 0)
191 puts("*** failed ***\n");
196 static int show_dram_config(void)
198 unsigned long long size;
200 #ifdef CONFIG_NR_DRAM_BANKS
203 debug("\nRAM Configuration:\n");
204 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
205 size += gd->bd->bi_dram[i].size;
206 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
208 print_size(gd->bd->bi_dram[i].size, "\n");
216 print_size(size, "");
217 board_add_ram_info(0);
223 __weak void dram_init_banksize(void)
225 #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
226 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
227 gd->bd->bi_dram[0].size = get_effective_memsize();
231 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
232 static int init_func_i2c(void)
235 #ifdef CONFIG_SYS_I2C
238 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
245 #if defined(CONFIG_HARD_SPI)
246 static int init_func_spi(void)
256 static int zero_global_data(void)
258 memset((void *)gd, '\0', sizeof(gd_t));
263 static int setup_mon_len(void)
265 #if defined(__ARM__) || defined(__MICROBLAZE__)
266 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
267 #elif defined(CONFIG_SANDBOX)
268 gd->mon_len = (ulong)&_end - (ulong)_init;
269 #elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
270 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
272 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
273 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
278 __weak int arch_cpu_init(void)
283 #ifdef CONFIG_OF_HOSTFILE
285 static int read_fdt_from_file(void)
287 struct sandbox_state *state = state_get_current();
288 const char *fname = state->fdt_fname;
294 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
295 if (!state->fdt_fname) {
296 err = fdt_create_empty_tree(blob, 256);
299 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
303 err = os_get_filesize(fname, &size);
305 printf("Failed to file FDT file '%s'\n", fname);
308 fd = os_open(fname, OS_O_RDONLY);
310 printf("Failed to open FDT file '%s'\n", fname);
313 if (os_read(fd, blob, size) != size) {
326 #ifdef CONFIG_SANDBOX
327 static int setup_ram_buf(void)
329 struct sandbox_state *state = state_get_current();
331 gd->arch.ram_buf = state->ram_buf;
332 gd->ram_size = state->ram_size;
338 static int setup_fdt(void)
340 #ifdef CONFIG_OF_CONTROL
341 # ifdef CONFIG_OF_EMBED
342 /* Get a pointer to the FDT */
343 gd->fdt_blob = __dtb_dt_begin;
344 # elif defined CONFIG_OF_SEPARATE
345 /* FDT is at end of image */
346 gd->fdt_blob = (ulong *)&_end;
347 # elif defined(CONFIG_OF_HOSTFILE)
348 if (read_fdt_from_file()) {
349 puts("Failed to read control FDT\n");
353 /* Allow the early environment to override the fdt address */
354 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
355 (uintptr_t)gd->fdt_blob);
360 /* Get the top of usable RAM */
361 __weak ulong board_get_usable_ram_top(ulong total_size)
363 #ifdef CONFIG_SYS_SDRAM_BASE
365 * Detect whether we have so much RAM it goes past the end of our
366 * 32-bit address space. If so, clip the usable RAM so it doesn't.
368 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
370 * Will wrap back to top of 32-bit space when reservations
378 static int setup_dest_addr(void)
380 debug("Monitor len: %08lX\n", gd->mon_len);
382 * Ram is setup, size stored in gd !!
384 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
385 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
387 * Subtract specified amount of memory to hide so that it won't
388 * get "touched" at all by U-Boot. By fixing up gd->ram_size
389 * the Linux kernel should now get passed the now "corrected"
390 * memory size and won't touch it either. This should work
391 * for arch/ppc and arch/powerpc. Only Linux board ports in
392 * arch/powerpc with bootwrapper support, that recalculate the
393 * memory size from the SDRAM controller setup will have to
396 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
398 #ifdef CONFIG_SYS_SDRAM_BASE
399 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
401 gd->ram_top += get_effective_memsize();
402 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
403 gd->relocaddr = gd->ram_top;
404 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
405 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
407 * We need to make sure the location we intend to put secondary core
408 * boot code is reserved and not used by any part of u-boot
410 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
411 gd->relocaddr = determine_mp_bootpg(NULL);
412 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
418 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
419 static int reserve_logbuffer(void)
421 /* reserve kernel log buffer */
422 gd->relocaddr -= LOGBUFF_RESERVE;
423 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
430 /* reserve protected RAM */
431 static int reserve_pram(void)
435 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
436 gd->relocaddr -= (reg << 10); /* size is in kB */
437 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
441 #endif /* CONFIG_PRAM */
443 /* Round memory pointer down to next 4 kB limit */
444 static int reserve_round_4k(void)
446 gd->relocaddr &= ~(4096 - 1);
450 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
452 static int reserve_mmu(void)
454 /* reserve TLB table */
455 gd->arch.tlb_size = PGTABLE_SIZE;
456 gd->relocaddr -= gd->arch.tlb_size;
458 /* round down to next 64 kB limit */
459 gd->relocaddr &= ~(0x10000 - 1);
461 gd->arch.tlb_addr = gd->relocaddr;
462 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
463 gd->arch.tlb_addr + gd->arch.tlb_size);
469 static int reserve_lcd(void)
471 #ifdef CONFIG_FB_ADDR
472 gd->fb_base = CONFIG_FB_ADDR;
474 /* reserve memory for LCD display (always full pages) */
475 gd->relocaddr = lcd_setmem(gd->relocaddr);
476 gd->fb_base = gd->relocaddr;
477 #endif /* CONFIG_FB_ADDR */
480 #endif /* CONFIG_LCD */
482 static int reserve_trace(void)
485 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
486 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
487 debug("Reserving %dk for trace data at: %08lx\n",
488 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
494 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
495 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
496 !defined(CONFIG_BLACKFIN)
497 static int reserve_video(void)
499 /* reserve memory for video display (always full pages) */
500 gd->relocaddr = video_setmem(gd->relocaddr);
501 gd->fb_base = gd->relocaddr;
507 static int reserve_uboot(void)
510 * reserve memory for U-Boot code, data & bss
511 * round down to next 4 kB limit
513 gd->relocaddr -= gd->mon_len;
514 gd->relocaddr &= ~(4096 - 1);
516 /* round down to next 64 kB limit so that IVPR stays aligned */
517 gd->relocaddr &= ~(65536 - 1);
520 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
523 gd->start_addr_sp = gd->relocaddr;
528 #ifndef CONFIG_SPL_BUILD
529 /* reserve memory for malloc() area */
530 static int reserve_malloc(void)
532 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
533 debug("Reserving %dk for malloc() at: %08lx\n",
534 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
538 /* (permanently) allocate a Board Info struct */
539 static int reserve_board(void)
542 gd->start_addr_sp -= sizeof(bd_t);
543 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
544 memset(gd->bd, '\0', sizeof(bd_t));
545 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
546 sizeof(bd_t), gd->start_addr_sp);
552 static int setup_machine(void)
554 #ifdef CONFIG_MACH_TYPE
555 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
560 static int reserve_global_data(void)
562 gd->start_addr_sp -= sizeof(gd_t);
563 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
564 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
565 sizeof(gd_t), gd->start_addr_sp);
569 static int reserve_fdt(void)
572 * If the device tree is sitting immediate above our image then we
573 * must relocate it. If it is embedded in the data section, then it
574 * will be relocated with other data.
577 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
579 gd->start_addr_sp -= gd->fdt_size;
580 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
581 debug("Reserving %lu Bytes for FDT at: %08lx\n",
582 gd->fdt_size, gd->start_addr_sp);
588 int arch_reserve_stacks(void)
593 static int reserve_stacks(void)
595 /* make stack pointer 16-byte aligned */
596 gd->start_addr_sp -= 16;
597 gd->start_addr_sp &= ~0xf;
600 * let the architecture specific code tailor gd->start_addr_sp and
603 return arch_reserve_stacks();
606 static int display_new_sp(void)
608 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
613 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
614 static int setup_board_part1(void)
619 * Save local variables to board info struct
622 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
623 bd->bi_memsize = gd->ram_size; /* size in bytes */
625 #ifdef CONFIG_SYS_SRAM_BASE
626 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
627 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
630 #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
631 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
632 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
634 #if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
635 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
637 #if defined(CONFIG_MPC83xx)
638 bd->bi_immrbar = CONFIG_SYS_IMMR;
644 static int setup_board_part2(void)
648 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
649 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
650 #if defined(CONFIG_CPM2)
651 bd->bi_cpmfreq = gd->arch.cpm_clk;
652 bd->bi_brgfreq = gd->arch.brg_clk;
653 bd->bi_sccfreq = gd->arch.scc_clk;
654 bd->bi_vco = gd->arch.vco_out;
655 #endif /* CONFIG_CPM2 */
656 #if defined(CONFIG_MPC512X)
657 bd->bi_ipsfreq = gd->arch.ips_clk;
658 #endif /* CONFIG_MPC512X */
659 #if defined(CONFIG_MPC5xxx)
660 bd->bi_ipbfreq = gd->arch.ipb_clk;
661 bd->bi_pcifreq = gd->pci_clk;
662 #endif /* CONFIG_MPC5xxx */
663 #if defined(CONFIG_M68K) && defined(CONFIG_PCI)
664 bd->bi_pcifreq = gd->pci_clk;
666 #if defined(CONFIG_EXTRA_CLOCK)
667 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
668 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
669 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
676 #ifdef CONFIG_SYS_EXTBDINFO
677 static int setup_board_extra(void)
681 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
682 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
683 sizeof(bd->bi_r_version));
685 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
686 bd->bi_plb_busfreq = gd->bus_clk;
687 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
688 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
689 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
690 bd->bi_pci_busfreq = get_PCI_freq();
691 bd->bi_opbfreq = get_OPB_freq();
692 #elif defined(CONFIG_XILINX_405)
693 bd->bi_pci_busfreq = get_PCI_freq();
701 static int init_post(void)
703 post_bootmode_init();
704 post_run(NULL, POST_ROM | post_bootmode_get(0));
710 static int setup_dram_config(void)
712 /* Ram is board specific, so move it to board code ... */
713 dram_init_banksize();
718 static int reloc_fdt(void)
721 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
722 gd->fdt_blob = gd->new_fdt;
728 static int setup_reloc(void)
730 #ifdef CONFIG_SYS_TEXT_BASE
731 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
734 * On all ColdFire arch cpu, monitor code starts always
735 * just after the default vector table location, so at 0x400
737 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
740 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
742 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
743 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
744 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
750 /* ARM calls relocate_code from its crt0.S */
751 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
753 static int jump_to_copy(void)
756 * x86 is special, but in a nice way. It uses a trampoline which
757 * enables the dcache if possible.
759 * For now, other archs use relocate_code(), which is implemented
760 * similarly for all archs. When we do generic relocation, hopefully
761 * we can make all archs enable the dcache prior to relocation.
765 * SDRAM and console are now initialised. The final stack can now
766 * be setup in SDRAM. Code execution will continue in Flash, but
767 * with the stack in SDRAM and Global Data in temporary memory
770 board_init_f_r_trampoline(gd->start_addr_sp);
772 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
779 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
780 static int mark_bootstage(void)
782 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
787 static int initf_malloc(void)
789 #ifdef CONFIG_SYS_MALLOC_F_LEN
790 assert(gd->malloc_base); /* Set up by crt0.S */
791 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
798 static int initf_dm(void)
800 #if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
803 ret = dm_init_and_scan(true);
811 /* Architecture-specific memory reservation */
812 __weak int reserve_arch(void)
817 static init_fnc_t init_sequence_f[] = {
818 #ifdef CONFIG_SANDBOX
827 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
828 /* TODO: can this go into arch_cpu_init()? */
831 arch_cpu_init, /* basic arch cpu dependent setup */
833 #ifdef CONFIG_OF_CONTROL
837 #if defined(CONFIG_BOARD_EARLY_INIT_F)
840 /* TODO: can any of this go into arch_cpu_init()? */
841 #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
842 get_clocks, /* get CPU and bus clocks (etc.) */
843 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
844 && !defined(CONFIG_TQM885D)
845 adjust_sdram_tbs_8xx,
847 /* TODO: can we rename this to timer_init()? */
850 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
851 timer_init, /* initialize timer */
853 #ifdef CONFIG_SYS_ALLOC_DPRAM
854 #if !defined(CONFIG_CPM2)
858 #if defined(CONFIG_BOARD_POSTCLK_INIT)
861 #ifdef CONFIG_FSL_ESDHC
867 env_init, /* initialize environment */
868 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
869 /* get CPU and bus clocks according to the environment variable */
871 /* adjust sdram refresh rate according to the new clock */
875 init_baud_rate, /* initialze baudrate settings */
876 serial_init, /* serial communications setup */
877 console_init_f, /* stage 1 init of console */
878 #ifdef CONFIG_SANDBOX
879 sandbox_early_getopt_check,
881 #ifdef CONFIG_OF_CONTROL
884 display_options, /* say that we are here */
885 display_text_info, /* show debugging info if required */
886 #if defined(CONFIG_MPC8260)
889 #endif /* CONFIG_MPC8260 */
890 #if defined(CONFIG_MPC83xx)
893 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
896 print_cpuinfo, /* display cpu info (and speed) */
897 #if defined(CONFIG_MPC5xxx)
899 #endif /* CONFIG_MPC5xxx */
900 #if defined(CONFIG_DISPLAY_BOARDINFO)
903 INIT_FUNC_WATCHDOG_INIT
904 #if defined(CONFIG_MISC_INIT_F)
907 INIT_FUNC_WATCHDOG_RESET
908 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
911 #if defined(CONFIG_HARD_SPI)
915 /* TODO: unify all these dram functions? */
916 #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
917 dram_init, /* configure available RAM banks */
919 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
925 INIT_FUNC_WATCHDOG_RESET
926 #if defined(CONFIG_SYS_DRAM_TEST)
928 #endif /* CONFIG_SYS_DRAM_TEST */
929 INIT_FUNC_WATCHDOG_RESET
934 INIT_FUNC_WATCHDOG_RESET
936 * Now that we have DRAM mapped and working, we can
937 * relocate the code and continue running from DRAM.
939 * Reserve memory at end of RAM for (top down in that order):
940 * - area that won't get touched by U-Boot and Linux (optional)
941 * - kernel log buffer
945 * - board info struct
948 #if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
949 /* Blackfin u-boot monitor should be on top of the ram */
952 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
959 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
967 /* TODO: Why the dependency on CONFIG_8xx? */
968 #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
969 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
970 !defined(CONFIG_BLACKFIN)
973 #if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
976 #ifndef CONFIG_SPL_BUILD
987 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
989 INIT_FUNC_WATCHDOG_RESET
993 #ifdef CONFIG_SYS_EXTBDINFO
996 INIT_FUNC_WATCHDOG_RESET
1002 do_elf_reloc_fixups,
1004 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1010 void board_init_f(ulong boot_flags)
1012 #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1014 * For some archtectures, global data is initialized and used before
1015 * calling this function. The data should be preserved. For others,
1016 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1017 * here to host global data until relocation.
1024 * Clear global data before it is accessed at debug print
1025 * in initcall_run_list. Otherwise the debug print probably
1026 * get the wrong vaule of gd->have_console.
1031 gd->flags = boot_flags;
1032 gd->have_console = 0;
1034 if (initcall_run_list(init_sequence_f))
1037 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1038 /* NOTREACHED - jump_to_copy() does not return */
1045 * For now this code is only used on x86.
1047 * init_sequence_f_r is the list of init functions which are run when
1048 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1049 * The following limitations must be considered when implementing an
1051 * - 'static' variables are read-only
1052 * - Global Data (gd->xxx) is read/write
1054 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1055 * supported). It _should_, if possible, copy global data to RAM and
1056 * initialise the CPU caches (to speed up the relocation process)
1058 * NOTE: At present only x86 uses this route, but it is intended that
1059 * all archs will move to this when generic relocation is implemented.
1061 static init_fnc_t init_sequence_f_r[] = {
1067 void board_init_f_r(void)
1069 if (initcall_run_list(init_sequence_f_r))
1073 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1074 * Transfer execution from Flash to RAM by calculating the address
1075 * of the in-RAM copy of board_init_r() and calling it
1077 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1079 /* NOTREACHED - board_init_r() does not return */
1083 ulong board_init_f_mem(ulong top)
1085 /* Leave space for the stack we are running with now */
1088 top -= sizeof(struct global_data);
1089 top = ALIGN(top, 16);
1090 gd = (struct global_data *)top;
1091 memset((void *)gd, '\0', sizeof(*gd));
1093 #ifdef CONFIG_SYS_MALLOC_F_LEN
1094 top -= CONFIG_SYS_MALLOC_F_LEN;
1095 gd->malloc_base = top;
1100 #endif /* CONFIG_X86 */