1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
14 #include <bootstage.h>
15 #include <clock_legacy.h>
21 #include <env_internal.h>
40 #include <status_led.h>
46 #include <asm/cache.h>
47 #ifdef CONFIG_MACH_TYPE
48 #include <asm/mach-types.h>
50 #if defined(CONFIG_MP) && defined(CONFIG_PPC)
53 #include <asm/global_data.h>
55 #include <asm/sections.h>
57 #include <linux/errno.h>
60 * Pointer to initial global data area
62 * Here we initialize it if needed.
64 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
65 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
66 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
67 DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
69 DECLARE_GLOBAL_DATA_PTR;
73 * TODO(sjg@chromium.org): IMO this code should be
74 * refactored to a single function, something like:
76 * void led_set_state(enum led_colour_t colour, int on);
78 /************************************************************************
79 * Coloured LED functionality
80 ************************************************************************
81 * May be supplied by boards if desired
83 __weak void coloured_LED_init(void) {}
84 __weak void red_led_on(void) {}
85 __weak void red_led_off(void) {}
86 __weak void green_led_on(void) {}
87 __weak void green_led_off(void) {}
88 __weak void yellow_led_on(void) {}
89 __weak void yellow_led_off(void) {}
90 __weak void blue_led_on(void) {}
91 __weak void blue_led_off(void) {}
94 * Why is gd allocated a register? Prior to reloc it might be better to
95 * just pass it around to each function in this file?
97 * After reloc one could argue that it is hardly used and doesn't need
98 * to be in a register. Or if it is it should perhaps hold pointers to all
99 * global data for all modules, so that post-reloc we can avoid the massive
100 * literal pool we get on ARM. Or perhaps just encourage each module to use
104 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
105 static int init_func_watchdog_init(void)
107 # if defined(CONFIG_HW_WATCHDOG) && \
108 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
109 defined(CONFIG_SH) || \
110 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
111 defined(CONFIG_IMX_WATCHDOG))
113 puts(" Watchdog enabled\n");
120 int init_func_watchdog_reset(void)
126 #endif /* CONFIG_WATCHDOG */
128 __weak void board_add_ram_info(int use_default)
130 /* please define platform specific board_add_ram_info() */
133 static int init_baud_rate(void)
135 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
139 static int display_text_info(void)
141 #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
142 ulong bss_start, bss_end, text_base;
144 bss_start = (ulong)&__bss_start;
145 bss_end = (ulong)&__bss_end;
147 #ifdef CONFIG_SYS_TEXT_BASE
148 text_base = CONFIG_SYS_TEXT_BASE;
150 text_base = CONFIG_SYS_MONITOR_BASE;
153 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
154 text_base, bss_start, bss_end);
160 #ifdef CONFIG_SYSRESET
161 static int print_resetinfo(void)
167 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
169 debug("%s: No sysreset device found (error: %d)\n",
171 /* Not all boards have sysreset drivers available during early
172 * boot, so don't fail if one can't be found.
177 if (!sysreset_get_status(dev, status, sizeof(status)))
178 printf("%s", status);
184 #if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
185 static int print_cpuinfo(void)
191 dev = cpu_get_current_dev();
193 debug("%s: Could not get CPU device\n",
198 ret = cpu_get_desc(dev, desc, sizeof(desc));
200 debug("%s: Could not get CPU description (err = %d)\n",
205 printf("CPU: %s\n", desc);
211 static int announce_dram_init(void)
217 static int show_dram_config(void)
219 unsigned long long size;
222 debug("\nRAM Configuration:\n");
223 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
224 size += gd->bd->bi_dram[i].size;
225 debug("Bank #%d: %llx ", i,
226 (unsigned long long)(gd->bd->bi_dram[i].start));
228 print_size(gd->bd->bi_dram[i].size, "\n");
233 print_size(size, "");
234 board_add_ram_info(0);
240 __weak int dram_init_banksize(void)
242 gd->bd->bi_dram[0].start = gd->ram_base;
243 gd->bd->bi_dram[0].size = get_effective_memsize();
248 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
249 static int init_func_i2c(void)
258 #if defined(CONFIG_VID)
259 __weak int init_func_vid(void)
265 static int setup_mon_len(void)
267 #if defined(__ARM__) || defined(__MICROBLAZE__)
268 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
269 #elif defined(CONFIG_SANDBOX)
271 #elif defined(CONFIG_EFI_APP)
272 gd->mon_len = (ulong)&_end - (ulong)_init;
273 #elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
274 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
275 #elif defined(CONFIG_SH) || defined(CONFIG_RISCV)
276 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
277 #elif defined(CONFIG_SYS_MONITOR_BASE)
278 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
279 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
284 static int setup_spl_handoff(void)
286 #if CONFIG_IS_ENABLED(HANDOFF)
287 gd->spl_handoff = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF,
288 sizeof(struct spl_handoff));
289 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
295 __weak int arch_cpu_init(void)
300 __weak int mach_cpu_init(void)
305 /* Get the top of usable RAM */
306 __weak ulong board_get_usable_ram_top(ulong total_size)
308 #if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
310 * Detect whether we have so much RAM that it goes past the end of our
311 * 32-bit address space. If so, clip the usable RAM so it doesn't.
313 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
315 * Will wrap back to top of 32-bit space when reservations
323 static int setup_dest_addr(void)
325 debug("Monitor len: %08lX\n", gd->mon_len);
327 * Ram is setup, size stored in gd !!
329 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
330 #if CONFIG_VAL(SYS_MEM_TOP_HIDE)
332 * Subtract specified amount of memory to hide so that it won't
333 * get "touched" at all by U-Boot. By fixing up gd->ram_size
334 * the Linux kernel should now get passed the now "corrected"
335 * memory size and won't touch it either. This should work
336 * for arch/ppc and arch/powerpc. Only Linux board ports in
337 * arch/powerpc with bootwrapper support, that recalculate the
338 * memory size from the SDRAM controller setup will have to
341 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
343 #ifdef CONFIG_SYS_SDRAM_BASE
344 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
346 gd->ram_top = gd->ram_base + get_effective_memsize();
347 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
348 gd->relocaddr = gd->ram_top;
349 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
350 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
352 * We need to make sure the location we intend to put secondary core
353 * boot code is reserved and not used by any part of u-boot
355 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
356 gd->relocaddr = determine_mp_bootpg(NULL);
357 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
364 /* reserve protected RAM */
365 static int reserve_pram(void)
369 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
370 gd->relocaddr -= (reg << 10); /* size is in kB */
371 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
375 #endif /* CONFIG_PRAM */
377 /* Round memory pointer down to next 4 kB limit */
378 static int reserve_round_4k(void)
380 gd->relocaddr &= ~(4096 - 1);
384 __weak int arch_reserve_mmu(void)
389 static int reserve_video(void)
391 #ifdef CONFIG_DM_VIDEO
395 addr = gd->relocaddr;
396 ret = video_reserve(&addr);
399 debug("Reserving %luk for video at: %08lx\n",
400 ((unsigned long)gd->relocaddr - addr) >> 10, addr);
401 gd->relocaddr = addr;
402 #elif defined(CONFIG_LCD)
403 # ifdef CONFIG_FB_ADDR
404 gd->fb_base = CONFIG_FB_ADDR;
406 /* reserve memory for LCD display (always full pages) */
407 gd->relocaddr = lcd_setmem(gd->relocaddr);
408 gd->fb_base = gd->relocaddr;
409 # endif /* CONFIG_FB_ADDR */
415 static int reserve_trace(void)
418 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
419 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
420 debug("Reserving %luk for trace data at: %08lx\n",
421 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
427 static int reserve_uboot(void)
429 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
431 * reserve memory for U-Boot code, data & bss
432 * round down to next 4 kB limit
434 gd->relocaddr -= gd->mon_len;
435 gd->relocaddr &= ~(4096 - 1);
436 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
437 /* round down to next 64 kB limit so that IVPR stays aligned */
438 gd->relocaddr &= ~(65536 - 1);
441 debug("Reserving %ldk for U-Boot at: %08lx\n",
442 gd->mon_len >> 10, gd->relocaddr);
445 gd->start_addr_sp = gd->relocaddr;
451 * reserve after start_addr_sp the requested size and make the stack pointer
452 * 16-byte aligned, this alignment is needed for cast on the reserved memory
453 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
454 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
456 static unsigned long reserve_stack_aligned(size_t size)
458 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
461 #ifdef CONFIG_SYS_NONCACHED_MEMORY
462 static int reserve_noncached(void)
465 * The value of gd->start_addr_sp must match the value of malloc_start
466 * calculated in boatrd_f.c:initr_malloc(), which is passed to
467 * board_r.c:mem_malloc_init() and then used by
468 * cache.c:noncached_init()
470 * These calculations must match the code in cache.c:noncached_init()
472 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
474 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
476 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
477 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
483 /* reserve memory for malloc() area */
484 static int reserve_malloc(void)
486 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
487 debug("Reserving %dk for malloc() at: %08lx\n",
488 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
489 #ifdef CONFIG_SYS_NONCACHED_MEMORY
496 /* (permanently) allocate a Board Info struct */
497 static int reserve_board(void)
500 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
501 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
502 sizeof(struct bd_info));
503 memset(gd->bd, '\0', sizeof(struct bd_info));
504 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
505 sizeof(struct bd_info), gd->start_addr_sp);
510 static int reserve_global_data(void)
512 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
513 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
514 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
515 sizeof(gd_t), gd->start_addr_sp);
519 static int reserve_fdt(void)
521 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
523 * If the device tree is sitting immediately above our image
524 * then we must relocate it. If it is embedded in the data
525 * section, then it will be relocated with other data.
528 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
530 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
531 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
532 debug("Reserving %lu Bytes for FDT at: %08lx\n",
533 gd->fdt_size, gd->start_addr_sp);
540 static int reserve_bootstage(void)
542 #ifdef CONFIG_BOOTSTAGE
543 int size = bootstage_get_size();
545 gd->start_addr_sp = reserve_stack_aligned(size);
546 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
547 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
554 __weak int arch_reserve_stacks(void)
559 static int reserve_stacks(void)
561 /* make stack pointer 16-byte aligned */
562 gd->start_addr_sp = reserve_stack_aligned(16);
565 * let the architecture-specific code tailor gd->start_addr_sp and
568 return arch_reserve_stacks();
571 static int reserve_bloblist(void)
573 #ifdef CONFIG_BLOBLIST
574 /* Align to a 4KB boundary for easier reading of addresses */
575 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
576 CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
577 gd->new_bloblist = map_sysmem(gd->start_addr_sp,
578 CONFIG_BLOBLIST_SIZE_RELOC);
584 static int display_new_sp(void)
586 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
591 __weak int arch_setup_bdinfo(void)
596 int setup_bdinfo(void)
598 struct bd_info *bd = gd->bd;
600 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
601 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
602 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
605 #ifdef CONFIG_MACH_TYPE
606 bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
609 return arch_setup_bdinfo();
613 static int init_post(void)
615 post_bootmode_init();
616 post_run(NULL, POST_ROM | post_bootmode_get(0));
622 static int reloc_fdt(void)
624 if (!IS_ENABLED(CONFIG_OF_EMBED)) {
625 if (gd->flags & GD_FLG_SKIP_RELOC)
628 memcpy(gd->new_fdt, gd->fdt_blob,
629 fdt_totalsize(gd->fdt_blob));
630 gd->fdt_blob = gd->new_fdt;
637 static int reloc_bootstage(void)
639 #ifdef CONFIG_BOOTSTAGE
640 if (gd->flags & GD_FLG_SKIP_RELOC)
642 if (gd->new_bootstage) {
643 int size = bootstage_get_size();
645 debug("Copying bootstage from %p to %p, size %x\n",
646 gd->bootstage, gd->new_bootstage, size);
647 memcpy(gd->new_bootstage, gd->bootstage, size);
648 gd->bootstage = gd->new_bootstage;
649 bootstage_relocate();
656 static int reloc_bloblist(void)
658 #ifdef CONFIG_BLOBLIST
660 * Relocate only if we are supposed to send it
662 if ((gd->flags & GD_FLG_SKIP_RELOC) &&
663 CONFIG_BLOBLIST_SIZE == CONFIG_BLOBLIST_SIZE_RELOC) {
664 debug("Not relocating bloblist\n");
667 if (gd->new_bloblist) {
668 int size = CONFIG_BLOBLIST_SIZE;
670 debug("Copying bloblist from %p to %p, size %x\n",
671 gd->bloblist, gd->new_bloblist, size);
672 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
674 gd->bloblist = gd->new_bloblist;
681 static int setup_reloc(void)
683 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
684 #ifdef CONFIG_SYS_TEXT_BASE
686 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
687 #elif defined(CONFIG_M68K)
689 * On all ColdFire arch cpu, monitor code starts always
690 * just after the default vector table location, so at 0x400
692 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
693 #elif !defined(CONFIG_SANDBOX)
694 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
699 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
701 if (gd->flags & GD_FLG_SKIP_RELOC) {
702 debug("Skipping relocation due to flag\n");
704 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
705 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
706 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
713 #ifdef CONFIG_OF_BOARD_FIXUP
714 static int fix_fdt(void)
716 return board_fix_fdt((void *)gd->fdt_blob);
720 /* ARM calls relocate_code from its crt0.S */
721 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
722 !CONFIG_IS_ENABLED(X86_64)
724 static int jump_to_copy(void)
726 if (gd->flags & GD_FLG_SKIP_RELOC)
729 * x86 is special, but in a nice way. It uses a trampoline which
730 * enables the dcache if possible.
732 * For now, other archs use relocate_code(), which is implemented
733 * similarly for all archs. When we do generic relocation, hopefully
734 * we can make all archs enable the dcache prior to relocation.
736 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
738 * SDRAM and console are now initialised. The final stack can now
739 * be setup in SDRAM. Code execution will continue in Flash, but
740 * with the stack in SDRAM and Global Data in temporary memory
743 arch_setup_gd(gd->new_gd);
744 board_init_f_r_trampoline(gd->start_addr_sp);
746 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
753 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
754 static int initf_bootstage(void)
756 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
757 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
760 ret = bootstage_init(!from_spl);
764 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
765 CONFIG_BOOTSTAGE_STASH_SIZE);
767 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
768 if (ret && ret != -ENOENT) {
769 debug("Failed to unstash bootstage: err=%d\n", ret);
774 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
779 static int initf_dm(void)
781 #if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
784 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
785 ret = dm_init_and_scan(true);
786 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
790 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
791 ret = dm_timer_init();
800 /* Architecture-specific memory reservation */
801 __weak int reserve_arch(void)
806 __weak int checkcpu(void)
811 __weak int clear_bss(void)
816 static int misc_init_f(void)
818 return event_notify_null(EVT_MISC_INIT_F);
821 static const init_fnc_t init_sequence_f[] = {
823 #ifdef CONFIG_OF_CONTROL
826 #ifdef CONFIG_TRACE_EARLY
831 initf_bootstage, /* uses its own timer, so does not need DM */
833 #ifdef CONFIG_BLOBLIST
837 #if defined(CONFIG_CONSOLE_RECORD_INIT_F)
840 #if defined(CONFIG_HAVE_FSP)
843 arch_cpu_init, /* basic arch cpu dependent setup */
844 mach_cpu_init, /* SoC/machine dependent CPU setup */
846 #if defined(CONFIG_BOARD_EARLY_INIT_F)
849 #if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
850 /* get CPU and bus clocks according to the environment variable */
851 get_clocks, /* get CPU and bus clocks (etc.) */
853 #if !defined(CONFIG_M68K)
854 timer_init, /* initialize timer */
856 #if defined(CONFIG_BOARD_POSTCLK_INIT)
859 env_init, /* initialize environment */
860 init_baud_rate, /* initialze baudrate settings */
861 serial_init, /* serial communications setup */
862 console_init_f, /* stage 1 init of console */
863 display_options, /* say that we are here */
864 display_text_info, /* show debugging info if required */
866 #if defined(CONFIG_SYSRESET)
869 #if defined(CONFIG_DISPLAY_CPUINFO)
870 print_cpuinfo, /* display cpu info (and speed) */
872 #if defined(CONFIG_DTB_RESELECT)
875 #if defined(CONFIG_DISPLAY_BOARDINFO)
878 INIT_FUNC_WATCHDOG_INIT
880 INIT_FUNC_WATCHDOG_RESET
881 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
884 #if defined(CONFIG_VID) && !defined(CONFIG_SPL)
888 dram_init, /* configure available RAM banks */
892 INIT_FUNC_WATCHDOG_RESET
893 #if defined(CONFIG_SYS_DRAM_TEST)
895 #endif /* CONFIG_SYS_DRAM_TEST */
896 INIT_FUNC_WATCHDOG_RESET
901 INIT_FUNC_WATCHDOG_RESET
903 * Now that we have DRAM mapped and working, we can
904 * relocate the code and continue running from DRAM.
906 * Reserve memory at end of RAM for (top down in that order):
907 * - area that won't get touched by U-Boot and Linux (optional)
908 * - kernel log buffer
912 * - board info struct
915 #ifdef CONFIG_OF_BOARD_FIXUP
936 INIT_FUNC_WATCHDOG_RESET
939 INIT_FUNC_WATCHDOG_RESET
944 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
949 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
950 !CONFIG_IS_ENABLED(X86_64)
956 void board_init_f(ulong boot_flags)
958 gd->flags = boot_flags;
959 gd->have_console = 0;
961 if (initcall_run_list(init_sequence_f))
964 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
965 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
967 /* NOTREACHED - jump_to_copy() does not return */
972 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
974 * For now this code is only used on x86.
976 * init_sequence_f_r is the list of init functions which are run when
977 * U-Boot is executing from Flash with a semi-limited 'C' environment.
978 * The following limitations must be considered when implementing an
980 * - 'static' variables are read-only
981 * - Global Data (gd->xxx) is read/write
983 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
984 * supported). It _should_, if possible, copy global data to RAM and
985 * initialise the CPU caches (to speed up the relocation process)
987 * NOTE: At present only x86 uses this route, but it is intended that
988 * all archs will move to this when generic relocation is implemented.
990 static const init_fnc_t init_sequence_f_r[] = {
991 #if !CONFIG_IS_ENABLED(X86_64)
998 void board_init_f_r(void)
1000 if (initcall_run_list(init_sequence_f_r))
1004 * The pre-relocation drivers may be using memory that has now gone
1005 * away. Mark serial as unavailable - this will fall back to the debug
1006 * UART if available.
1008 * Do the same with log drivers since the memory may not be available.
1010 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
1016 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1017 * Transfer execution from Flash to RAM by calculating the address
1018 * of the in-RAM copy of board_init_r() and calling it
1020 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1022 /* NOTREACHED - board_init_r() does not return */
1025 #endif /* CONFIG_X86 */