1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
14 #include <bootstage.h>
15 #include <clock_legacy.h>
20 #include <display_options.h>
23 #include <env_internal.h>
39 #include <status_led.h>
46 #include <asm/cache.h>
47 #include <asm/global_data.h>
49 #include <asm/sections.h>
51 #include <linux/errno.h>
52 #include <linux/log2.h>
54 DECLARE_GLOBAL_DATA_PTR;
58 * refactored to a single function, something like:
60 * void led_set_state(enum led_colour_t colour, int on);
62 /************************************************************************
63 * Coloured LED functionality
64 ************************************************************************
65 * May be supplied by boards if desired
67 __weak void coloured_LED_init(void) {}
68 __weak void red_led_on(void) {}
69 __weak void red_led_off(void) {}
70 __weak void green_led_on(void) {}
71 __weak void green_led_off(void) {}
72 __weak void yellow_led_on(void) {}
73 __weak void yellow_led_off(void) {}
74 __weak void blue_led_on(void) {}
75 __weak void blue_led_off(void) {}
78 * Why is gd allocated a register? Prior to reloc it might be better to
79 * just pass it around to each function in this file?
81 * After reloc one could argue that it is hardly used and doesn't need
82 * to be in a register. Or if it is it should perhaps hold pointers to all
83 * global data for all modules, so that post-reloc we can avoid the massive
84 * literal pool we get on ARM. Or perhaps just encourage each module to use
88 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
89 static int init_func_watchdog_init(void)
91 # if defined(CONFIG_HW_WATCHDOG) && \
92 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
93 defined(CONFIG_SH) || \
94 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
95 defined(CONFIG_IMX_WATCHDOG))
97 puts(" Watchdog enabled\n");
104 int init_func_watchdog_reset(void)
110 #endif /* CONFIG_WATCHDOG */
112 __weak void board_add_ram_info(int use_default)
114 /* please define platform specific board_add_ram_info() */
117 static int init_baud_rate(void)
119 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
123 static int display_text_info(void)
125 #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
126 ulong bss_start, bss_end, text_base;
128 bss_start = (ulong)__bss_start;
129 bss_end = (ulong)__bss_end;
131 #ifdef CONFIG_TEXT_BASE
132 text_base = CONFIG_TEXT_BASE;
134 text_base = CONFIG_SYS_MONITOR_BASE;
137 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
138 text_base, bss_start, bss_end);
144 #ifdef CONFIG_SYSRESET
145 static int print_resetinfo(void)
149 bool status_printed = false;
153 * Not all boards have sysreset drivers available during early
154 * boot, so don't fail if one can't be found.
156 for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev;
157 ret = uclass_next_device_check(&dev)) {
159 debug("%s: %s sysreset device (error: %d)\n",
160 __func__, dev->name, ret);
164 if (!sysreset_get_status(dev, status, sizeof(status))) {
165 printf("%s%s", status_printed ? " " : "", status);
166 status_printed = true;
176 #if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
177 static int print_cpuinfo(void)
183 dev = cpu_get_current_dev();
185 debug("%s: Could not get CPU device\n",
190 ret = cpu_get_desc(dev, desc, sizeof(desc));
192 debug("%s: Could not get CPU description (err = %d)\n",
197 printf("CPU: %s\n", desc);
203 static int announce_dram_init(void)
210 * From input size calculate its nearest rounded unit scale (multiply of 2^10)
211 * and value in calculated unit scale multiplied by 10 (as fractional fixed
212 * point number with one decimal digit), which is human natural format,
213 * same what uses print_size() function for displaying. Mathematically it is:
214 * round_nearest(val * 2^scale) = size * 10; where: 10 <= val < 10240.
216 * For example for size=87654321 we calculate scale=20 and val=836 which means
217 * that input has natural human format 83.6 M (mega = 2^20).
219 #define compute_size_scale_val(size, scale, val) do { \
220 scale = ilog2(size) / 10 * 10; \
221 val = (10 * size + ((1ULL << scale) >> 1)) >> scale; \
222 if (val == 10240) { val = 10; scale += 10; } \
226 * Check if the sizes in their natural units written in decimal format with
227 * one fraction number are same.
229 static int sizes_near(unsigned long long size1, unsigned long long size2)
231 unsigned int size1_scale, size1_val, size2_scale, size2_val;
233 compute_size_scale_val(size1, size1_scale, size1_val);
234 compute_size_scale_val(size2, size2_scale, size2_val);
236 return size1_scale == size2_scale && size1_val == size2_val;
239 static int show_dram_config(void)
241 unsigned long long size;
244 debug("\nRAM Configuration:\n");
245 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
246 size += gd->bd->bi_dram[i].size;
247 debug("Bank #%d: %llx ", i,
248 (unsigned long long)(gd->bd->bi_dram[i].start));
250 print_size(gd->bd->bi_dram[i].size, "\n");
255 print_size(gd->ram_size, "");
256 if (!sizes_near(gd->ram_size, size)) {
257 printf(" (effective ");
258 print_size(size, ")");
260 board_add_ram_info(0);
266 __weak int dram_init_banksize(void)
268 gd->bd->bi_dram[0].start = gd->ram_base;
269 gd->bd->bi_dram[0].size = get_effective_memsize();
274 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
275 static int init_func_i2c(void)
284 static int setup_mon_len(void)
286 #if defined(CONFIG_ARCH_NEXELL)
287 gd->mon_len = (ulong)__bss_end - (ulong)__image_copy_start;
288 #elif defined(__ARM__) || defined(__MICROBLAZE__)
289 gd->mon_len = (ulong)__bss_end - (ulong)_start;
290 #elif defined(CONFIG_SANDBOX) && !defined(__riscv)
291 gd->mon_len = (ulong)_end - (ulong)_init;
292 #elif defined(CONFIG_SANDBOX)
293 /* gcc does not provide _init in crti.o on RISC-V */
295 #elif defined(CONFIG_EFI_APP)
296 gd->mon_len = (ulong)_end - (ulong)_init;
297 #elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
298 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
299 #elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
300 gd->mon_len = (ulong)(__bss_end) - (ulong)(_start);
301 #elif defined(CONFIG_SYS_MONITOR_BASE)
302 /* TODO: use (ulong)__bss_end - (ulong)__text_start; ? */
303 gd->mon_len = (ulong)__bss_end - CONFIG_SYS_MONITOR_BASE;
308 static int setup_spl_handoff(void)
310 #if CONFIG_IS_ENABLED(HANDOFF)
311 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
312 sizeof(struct spl_handoff));
313 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
319 __weak int arch_cpu_init(void)
324 __weak int mach_cpu_init(void)
329 /* Get the top of usable RAM */
330 __weak phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
332 #if defined(CFG_SYS_SDRAM_BASE) && CFG_SYS_SDRAM_BASE > 0
334 * Detect whether we have so much RAM that it goes past the end of our
335 * 32-bit address space. If so, clip the usable RAM so it doesn't.
337 if (gd->ram_top < CFG_SYS_SDRAM_BASE)
339 * Will wrap back to top of 32-bit space when reservations
347 __weak int arch_setup_dest_addr(void)
352 static int setup_dest_addr(void)
354 debug("Monitor len: %08lX\n", gd->mon_len);
356 * Ram is setup, size stored in gd !!
358 debug("Ram size: %08llX\n", (unsigned long long)gd->ram_size);
359 #if CONFIG_VAL(SYS_MEM_TOP_HIDE)
361 * Subtract specified amount of memory to hide so that it won't
362 * get "touched" at all by U-Boot. By fixing up gd->ram_size
363 * the Linux kernel should now get passed the now "corrected"
364 * memory size and won't touch it either. This should work
365 * for arch/ppc and arch/powerpc. Only Linux board ports in
366 * arch/powerpc with bootwrapper support, that recalculate the
367 * memory size from the SDRAM controller setup will have to
370 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
372 #ifdef CFG_SYS_SDRAM_BASE
373 gd->ram_base = CFG_SYS_SDRAM_BASE;
375 gd->ram_top = gd->ram_base + get_effective_memsize();
376 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
377 gd->relocaddr = gd->ram_top;
378 debug("Ram top: %08llX\n", (unsigned long long)gd->ram_top);
380 return arch_setup_dest_addr();
384 /* reserve protected RAM */
385 static int reserve_pram(void)
389 reg = env_get_ulong("pram", 10, CFG_PRAM);
390 gd->relocaddr -= (reg << 10); /* size is in kB */
391 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
395 #endif /* CFG_PRAM */
397 /* Round memory pointer down to next 4 kB limit */
398 static int reserve_round_4k(void)
400 gd->relocaddr &= ~(4096 - 1);
404 __weak int arch_reserve_mmu(void)
409 static int reserve_video_from_videoblob(void)
411 if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && spl_phase() > PHASE_SPL) {
412 struct video_handoff *ho;
415 ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
417 return log_msg_ret("Missing video bloblist", -ENOENT);
419 ret = video_reserve_from_bloblist(ho);
421 return log_msg_ret("Invalid Video handoff info", ret);
423 /* Sanity check fb from blob is before current relocaddr */
424 if (likely(gd->relocaddr > (unsigned long)ho->fb))
425 gd->relocaddr = ho->fb;
432 * Check if any bloblist received specifying reserved areas from previous stage and adjust
433 * gd->relocaddr accordingly, so that we start reserving after pre-reserved areas
434 * from previous stage.
437 * IT is recommended that all bloblists from previous stage are reserved from ram_top
438 * as next stage will simply start reserving further regions after them.
440 static int setup_relocaddr_from_bloblist(void)
442 reserve_video_from_videoblob();
447 static int reserve_video(void)
449 if (CONFIG_IS_ENABLED(VIDEO)) {
453 addr = gd->relocaddr;
454 ret = video_reserve(&addr);
457 debug("Reserving %luk for video at: %08lx\n",
458 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
459 gd->relocaddr = addr;
465 static int reserve_trace(void)
468 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
469 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
470 debug("Reserving %luk for trace data at: %08lx\n",
471 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
477 static int reserve_uboot(void)
479 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
481 * reserve memory for U-Boot code, data & bss
482 * round down to next 4 kB limit
484 gd->relocaddr -= gd->mon_len;
485 gd->relocaddr &= ~(4096 - 1);
486 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
487 /* round down to next 64 kB limit so that IVPR stays aligned */
488 gd->relocaddr &= ~(65536 - 1);
491 debug("Reserving %ldk for U-Boot at: %08lx\n",
492 gd->mon_len >> 10, gd->relocaddr);
495 gd->start_addr_sp = gd->relocaddr;
501 * reserve after start_addr_sp the requested size and make the stack pointer
502 * 16-byte aligned, this alignment is needed for cast on the reserved memory
503 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
504 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
506 static unsigned long reserve_stack_aligned(size_t size)
508 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
511 #ifdef CONFIG_SYS_NONCACHED_MEMORY
512 static int reserve_noncached(void)
515 * The value of gd->start_addr_sp must match the value of malloc_start
516 * calculated in board_r.c:initr_malloc(), which is passed to
517 * dlmalloc.c:mem_malloc_init() and then used by
518 * cache.c:noncached_init()
520 * These calculations must match the code in cache.c:noncached_init()
522 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
524 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
526 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
527 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
533 /* reserve memory for malloc() area */
534 static int reserve_malloc(void)
536 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
537 debug("Reserving %dk for malloc() at: %08lx\n",
538 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
539 #ifdef CONFIG_SYS_NONCACHED_MEMORY
546 /* (permanently) allocate a Board Info struct */
547 static int reserve_board(void)
550 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
551 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
552 sizeof(struct bd_info));
553 memset(gd->bd, '\0', sizeof(struct bd_info));
554 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
555 sizeof(struct bd_info), gd->start_addr_sp);
560 static int reserve_global_data(void)
562 gd->start_addr_sp = reserve_stack_aligned(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)
571 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
573 * If the device tree is sitting immediately above our image
574 * then we must relocate it. If it is embedded in the data
575 * section, then it will be relocated with other data.
578 gd->boardf->fdt_size =
579 ALIGN(fdt_totalsize(gd->fdt_blob), 32);
581 gd->start_addr_sp = reserve_stack_aligned(
582 gd->boardf->fdt_size);
583 gd->boardf->new_fdt = map_sysmem(gd->start_addr_sp,
584 gd->boardf->fdt_size);
585 debug("Reserving %lu Bytes for FDT at: %08lx\n",
586 gd->boardf->fdt_size, gd->start_addr_sp);
593 static int reserve_bootstage(void)
595 #ifdef CONFIG_BOOTSTAGE
596 int size = bootstage_get_size();
598 gd->start_addr_sp = reserve_stack_aligned(size);
599 gd->boardf->new_bootstage = map_sysmem(gd->start_addr_sp, size);
600 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
607 __weak int arch_reserve_stacks(void)
612 static int reserve_stacks(void)
614 /* make stack pointer 16-byte aligned */
615 gd->start_addr_sp = reserve_stack_aligned(16);
618 * let the architecture-specific code tailor gd->start_addr_sp and
621 return arch_reserve_stacks();
624 static int reserve_bloblist(void)
626 #ifdef CONFIG_BLOBLIST
627 /* Align to a 4KB boundary for easier reading of addresses */
628 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
629 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
630 gd->boardf->new_bloblist = map_sysmem(gd->start_addr_sp,
631 CONFIG_BLOBLIST_SIZE_RELOC);
637 static int display_new_sp(void)
639 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
644 __weak int arch_setup_bdinfo(void)
649 int setup_bdinfo(void)
651 struct bd_info *bd = gd->bd;
653 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
654 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
655 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
658 return arch_setup_bdinfo();
662 static int init_post(void)
664 post_bootmode_init();
665 post_run(NULL, POST_ROM | post_bootmode_get(0));
671 static int reloc_fdt(void)
673 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
674 if (gd->boardf->new_fdt) {
675 memcpy(gd->boardf->new_fdt, gd->fdt_blob,
676 fdt_totalsize(gd->fdt_blob));
677 gd->fdt_blob = gd->boardf->new_fdt;
684 static int reloc_bootstage(void)
686 #ifdef CONFIG_BOOTSTAGE
687 if (gd->flags & GD_FLG_SKIP_RELOC)
689 if (gd->boardf->new_bootstage)
690 bootstage_relocate(gd->boardf->new_bootstage);
696 static int reloc_bloblist(void)
698 #ifdef CONFIG_BLOBLIST
700 * Relocate only if we are supposed to send it
702 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
703 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
704 debug("Not relocating bloblist\n");
707 if (gd->boardf->new_bloblist) {
708 debug("Copying bloblist from %p to %p, size %x\n",
709 gd->bloblist, gd->boardf->new_bloblist,
710 gd->bloblist->total_size);
711 return bloblist_reloc(gd->boardf->new_bloblist,
712 CONFIG_BLOBLIST_SIZE_RELOC);
719 void mcheck_on_ramrelocation(size_t offset);
720 static int setup_reloc(void)
722 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
723 #ifdef CONFIG_TEXT_BASE
725 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
726 #elif defined(CONFIG_MICROBLAZE)
727 gd->reloc_off = gd->relocaddr - (u32)_start;
728 #elif defined(CONFIG_M68K)
730 * On all ColdFire arch cpu, monitor code starts always
731 * just after the default vector table location, so at 0x400
733 gd->reloc_off = gd->relocaddr - (CONFIG_TEXT_BASE + 0x400);
734 #elif !defined(CONFIG_SANDBOX)
735 gd->reloc_off = gd->relocaddr - CONFIG_TEXT_BASE;
740 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
742 if (gd->flags & GD_FLG_SKIP_RELOC) {
743 debug("Skipping relocation due to flag\n");
745 #ifdef MCHECK_HEAP_PROTECTION
746 mcheck_on_ramrelocation(gd->reloc_off);
748 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
749 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
750 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
757 #ifdef CONFIG_OF_BOARD_FIXUP
758 static int fix_fdt(void)
760 return board_fix_fdt((void *)gd->fdt_blob);
764 /* ARM calls relocate_code from its crt0.S */
765 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
767 static int jump_to_copy(void)
769 if (gd->flags & GD_FLG_SKIP_RELOC)
772 * x86 is special, but in a nice way. It uses a trampoline which
773 * enables the dcache if possible.
775 * For now, other archs use relocate_code(), which is implemented
776 * similarly for all archs. When we do generic relocation, hopefully
777 * we can make all archs enable the dcache prior to relocation.
779 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
781 * SDRAM and console are now initialised. The final stack can now
782 * be setup in SDRAM. Code execution will continue in Flash, but
783 * with the stack in SDRAM and Global Data in temporary memory
786 arch_setup_gd(gd->new_gd);
787 # if CONFIG_IS_ENABLED(X86_64)
788 board_init_f_r_trampoline64(gd->new_gd, gd->start_addr_sp);
790 board_init_f_r_trampoline(gd->start_addr_sp);
793 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
800 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
801 static int initf_bootstage(void)
803 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
804 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
807 ret = bootstage_init(!from_spl);
811 ret = bootstage_stash_default();
812 if (ret && ret != -ENOENT) {
813 debug("Failed to unstash bootstage: err=%d\n", ret);
818 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
823 static int initf_dm(void)
825 #if defined(CONFIG_DM) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
828 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
829 ret = dm_init_and_scan(true);
830 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
834 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
835 ret = dm_timer_init();
844 /* Architecture-specific memory reservation */
845 __weak int reserve_arch(void)
850 __weak int checkcpu(void)
855 __weak int clear_bss(void)
860 static int initf_upl(void)
865 if (!IS_ENABLED(CONFIG_UPL_IN) || !(gd->flags & GD_FLG_UPL))
868 upl = malloc(sizeof(struct upl));
870 ret = upl_read_handoff(upl, oftree_default());
872 printf("UPL handoff: read failure (err=%dE)\n", ret);
880 static const init_fnc_t init_sequence_f[] = {
882 #ifdef CONFIG_OF_CONTROL
885 #ifdef CONFIG_TRACE_EARLY
891 initf_bootstage, /* uses its own timer, so does not need DM */
895 #if defined(CONFIG_CONSOLE_RECORD_INIT_F)
898 INITCALL_EVENT(EVT_FSP_INIT_F),
899 arch_cpu_init, /* basic arch cpu dependent setup */
900 mach_cpu_init, /* SoC/machine dependent CPU setup */
902 #if defined(CONFIG_BOARD_EARLY_INIT_F)
905 #if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
906 /* get CPU and bus clocks according to the environment variable */
907 get_clocks, /* get CPU and bus clocks (etc.) */
909 #if !defined(CONFIG_M68K) || (defined(CONFIG_M68K) && !defined(CONFIG_MCFTMR))
910 timer_init, /* initialize timer */
912 #if defined(CONFIG_BOARD_POSTCLK_INIT)
915 env_init, /* initialize environment */
916 init_baud_rate, /* initialze baudrate settings */
917 serial_init, /* serial communications setup */
918 console_init_f, /* stage 1 init of console */
919 display_options, /* say that we are here */
920 display_text_info, /* show debugging info if required */
922 #if defined(CONFIG_SYSRESET)
925 #if defined(CONFIG_DISPLAY_CPUINFO)
926 print_cpuinfo, /* display cpu info (and speed) */
928 #if defined(CONFIG_DTB_RESELECT)
931 #if defined(CONFIG_DISPLAY_BOARDINFO)
934 INIT_FUNC_WATCHDOG_INIT
935 INITCALL_EVENT(EVT_MISC_INIT_F),
936 INIT_FUNC_WATCHDOG_RESET
937 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
941 dram_init, /* configure available RAM banks */
945 INIT_FUNC_WATCHDOG_RESET
946 #if defined(CFG_SYS_DRAM_TEST)
948 #endif /* CFG_SYS_DRAM_TEST */
949 INIT_FUNC_WATCHDOG_RESET
954 INIT_FUNC_WATCHDOG_RESET
956 * Now that we have DRAM mapped and working, we can
957 * relocate the code and continue running from DRAM.
959 * Reserve memory at end of RAM for (top down in that order):
960 * - area that won't get touched by U-Boot and Linux (optional)
961 * - kernel log buffer
965 * - board info struct
968 #if defined(CONFIG_OF_BOARD_FIXUP) && !defined(CONFIG_OF_INITIAL_DTB_READONLY)
975 setup_relocaddr_from_bloblist,
984 #if defined(CONFIG_OF_BOARD_FIXUP) && defined(CONFIG_OF_INITIAL_DTB_READONLY)
994 INIT_FUNC_WATCHDOG_RESET
997 INIT_FUNC_WATCHDOG_RESET
998 #if !defined(CONFIG_OF_BOARD_FIXUP) || !defined(CONFIG_OF_INITIAL_DTB_READONLY)
1004 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1006 do_elf_reloc_fixups,
1010 * Deregister all cyclic functions before relocation, so that
1011 * gd->cyclic_list does not contain any references to pre-relocation
1012 * devices. Drivers will register their cyclic functions anew when the
1013 * devices are probed again.
1015 * This should happen as late as possible so that the window where a
1016 * watchdog device is not serviced is as small as possible.
1018 cyclic_unregister_all,
1019 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1025 void board_init_f(ulong boot_flags)
1027 struct board_f boardf;
1029 gd->flags = boot_flags;
1030 gd->flags &= ~GD_FLG_HAVE_CONSOLE;
1031 gd->boardf = &boardf;
1033 if (initcall_run_list(init_sequence_f))
1036 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1037 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1038 !defined(CONFIG_ARC)
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 const init_fnc_t init_sequence_f_r[] = {
1063 #if !CONFIG_IS_ENABLED(X86_64)
1070 void board_init_f_r(void)
1072 if (initcall_run_list(init_sequence_f_r))
1076 * The pre-relocation drivers may be using memory that has now gone
1077 * away. Mark serial as unavailable - this will fall back to the debug
1078 * UART if available.
1080 * Do the same with log drivers since the memory may not be available.
1082 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
1088 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1089 * Transfer execution from Flash to RAM by calculating the address
1090 * of the in-RAM copy of board_init_r() and calling it
1092 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1094 /* NOTREACHED - board_init_r() does not return */
1097 #endif /* CONFIG_X86 */