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>
17 #include <environment.h>
21 #if defined(CONFIG_CMD_IDE)
30 /* TODO: Can we move these into arch/ headers? */
40 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
47 #include <status_led.h>
52 #include <asm/errno.h>
54 #include <asm/sections.h>
55 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
56 #include <asm/init_helpers.h>
57 #include <asm/relocate.h>
60 #include <asm/state.h>
63 #include <linux/compiler.h>
66 * Pointer to initial global data area
68 * Here we initialize it if needed.
70 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
71 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
72 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
73 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
75 DECLARE_GLOBAL_DATA_PTR;
80 * refactored to a single function, something like:
82 * void led_set_state(enum led_colour_t colour, int on);
84 /************************************************************************
85 * Coloured LED functionality
86 ************************************************************************
87 * May be supplied by boards if desired
89 __weak void coloured_LED_init(void) {}
90 __weak void red_led_on(void) {}
91 __weak void red_led_off(void) {}
92 __weak void green_led_on(void) {}
93 __weak void green_led_off(void) {}
94 __weak void yellow_led_on(void) {}
95 __weak void yellow_led_off(void) {}
96 __weak void blue_led_on(void) {}
97 __weak void blue_led_off(void) {}
100 * Why is gd allocated a register? Prior to reloc it might be better to
101 * just pass it around to each function in this file?
103 * After reloc one could argue that it is hardly used and doesn't need
104 * to be in a register. Or if it is it should perhaps hold pointers to all
105 * global data for all modules, so that post-reloc we can avoid the massive
106 * literal pool we get on ARM. Or perhaps just encourage each module to use
111 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
114 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
115 static int init_func_watchdog_init(void)
117 # if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
118 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
119 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
120 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
121 defined(CONFIG_IMX_WATCHDOG))
124 puts(" Watchdog enabled\n");
130 int init_func_watchdog_reset(void)
136 #endif /* CONFIG_WATCHDOG */
138 __weak void board_add_ram_info(int use_default)
140 /* please define platform specific board_add_ram_info() */
143 static int init_baud_rate(void)
145 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
149 static int display_text_info(void)
151 #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
152 ulong bss_start, bss_end, text_base;
154 bss_start = (ulong)&__bss_start;
155 bss_end = (ulong)&__bss_end;
157 #ifdef CONFIG_SYS_TEXT_BASE
158 text_base = CONFIG_SYS_TEXT_BASE;
160 text_base = CONFIG_SYS_MONITOR_BASE;
163 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
164 text_base, bss_start, bss_end);
167 #ifdef CONFIG_USE_IRQ
168 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
169 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
175 static int announce_dram_init(void)
181 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
182 static int init_func_ram(void)
184 #ifdef CONFIG_BOARD_TYPES
185 int board_type = gd->board_type;
187 int board_type = 0; /* use dummy arg */
190 gd->ram_size = initdram(board_type);
192 if (gd->ram_size > 0)
195 puts("*** failed ***\n");
200 static int show_dram_config(void)
202 unsigned long long size;
204 #ifdef CONFIG_NR_DRAM_BANKS
207 debug("\nRAM Configuration:\n");
208 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
209 size += gd->bd->bi_dram[i].size;
210 debug("Bank #%d: %llx ", i,
211 (unsigned long long)(gd->bd->bi_dram[i].start));
213 print_size(gd->bd->bi_dram[i].size, "\n");
221 print_size(size, "");
222 board_add_ram_info(0);
228 __weak void dram_init_banksize(void)
230 #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
231 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
232 gd->bd->bi_dram[0].size = get_effective_memsize();
236 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
237 static int init_func_i2c(void)
240 #ifdef CONFIG_SYS_I2C
243 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
250 #if defined(CONFIG_HARD_SPI)
251 static int init_func_spi(void)
261 static int zero_global_data(void)
263 memset((void *)gd, '\0', sizeof(gd_t));
268 static int setup_mon_len(void)
270 #if defined(__ARM__) || defined(__MICROBLAZE__)
271 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
272 #elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
273 gd->mon_len = (ulong)&_end - (ulong)_init;
274 #elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
275 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
276 #elif defined(CONFIG_NDS32)
277 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
278 #elif defined(CONFIG_SYS_MONITOR_BASE)
279 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
280 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
285 __weak int arch_cpu_init(void)
290 #ifdef CONFIG_SANDBOX
291 static int setup_ram_buf(void)
293 struct sandbox_state *state = state_get_current();
295 gd->arch.ram_buf = state->ram_buf;
296 gd->ram_size = state->ram_size;
302 /* Get the top of usable RAM */
303 __weak ulong board_get_usable_ram_top(ulong total_size)
305 #ifdef CONFIG_SYS_SDRAM_BASE
307 * Detect whether we have so much RAM that it goes past the end of our
308 * 32-bit address space. If so, clip the usable RAM so it doesn't.
310 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
312 * Will wrap back to top of 32-bit space when reservations
320 __weak phys_size_t board_reserve_ram_top(phys_size_t ram_size)
322 #ifdef CONFIG_SYS_MEM_TOP_HIDE
323 return ram_size - CONFIG_SYS_MEM_TOP_HIDE;
329 static int setup_dest_addr(void)
331 debug("Monitor len: %08lX\n", gd->mon_len);
333 * Ram is setup, size stored in gd !!
335 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
336 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
337 /* Reserve memory for secure MMU tables, and/or security monitor */
338 gd->ram_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
340 * Record secure memory location. Need recalcuate if memory splits
341 * into banks, or the ram base is not zero.
343 gd->secure_ram = gd->ram_size;
346 * Subtract specified amount of memory to hide so that it won't
347 * get "touched" at all by U-Boot. By fixing up gd->ram_size
348 * the Linux kernel should now get passed the now "corrected"
349 * memory size and won't touch it either. This has been used
350 * by arch/powerpc exclusively. Now ARMv8 takes advantage of
351 * thie mechanism. If memory is split into banks, addresses
352 * need to be calculated.
354 gd->ram_size = board_reserve_ram_top(gd->ram_size);
356 #ifdef CONFIG_SYS_SDRAM_BASE
357 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
359 gd->ram_top += get_effective_memsize();
360 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
361 gd->relocaddr = gd->ram_top;
362 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
363 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
365 * We need to make sure the location we intend to put secondary core
366 * boot code is reserved and not used by any part of u-boot
368 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
369 gd->relocaddr = determine_mp_bootpg(NULL);
370 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
376 #if defined(CONFIG_SPARC)
377 static int reserve_prom(void)
379 /* defined in arch/sparc/cpu/leon?/prom.c */
380 extern void *__prom_start_reloc;
381 int size = 8192; /* page table = 2k, prom = 6k */
382 gd->relocaddr -= size;
383 __prom_start_reloc = map_sysmem(gd->relocaddr + 2048, size - 2048);
384 debug("Reserving %dk for PROM and page table at %08lx\n", size,
390 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
391 static int reserve_logbuffer(void)
393 /* reserve kernel log buffer */
394 gd->relocaddr -= LOGBUFF_RESERVE;
395 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
402 /* reserve protected RAM */
403 static int reserve_pram(void)
407 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
408 gd->relocaddr -= (reg << 10); /* size is in kB */
409 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
413 #endif /* CONFIG_PRAM */
415 /* Round memory pointer down to next 4 kB limit */
416 static int reserve_round_4k(void)
418 gd->relocaddr &= ~(4096 - 1);
422 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
424 static int reserve_mmu(void)
426 /* reserve TLB table */
427 gd->arch.tlb_size = PGTABLE_SIZE;
428 gd->relocaddr -= gd->arch.tlb_size;
430 /* round down to next 64 kB limit */
431 gd->relocaddr &= ~(0x10000 - 1);
433 gd->arch.tlb_addr = gd->relocaddr;
434 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
435 gd->arch.tlb_addr + gd->arch.tlb_size);
440 #ifdef CONFIG_DM_VIDEO
441 static int reserve_video(void)
446 addr = gd->relocaddr;
447 ret = video_reserve(&addr);
450 gd->relocaddr = addr;
457 static int reserve_lcd(void)
459 # ifdef CONFIG_FB_ADDR
460 gd->fb_base = CONFIG_FB_ADDR;
462 /* reserve memory for LCD display (always full pages) */
463 gd->relocaddr = lcd_setmem(gd->relocaddr);
464 gd->fb_base = gd->relocaddr;
465 # endif /* CONFIG_FB_ADDR */
469 # endif /* CONFIG_LCD */
471 # if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
472 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
473 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
474 static int reserve_legacy_video(void)
476 /* reserve memory for video display (always full pages) */
477 gd->relocaddr = video_setmem(gd->relocaddr);
478 gd->fb_base = gd->relocaddr;
483 #endif /* !CONFIG_DM_VIDEO */
485 static int reserve_trace(void)
488 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
489 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
490 debug("Reserving %dk for trace data at: %08lx\n",
491 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
497 static int reserve_uboot(void)
500 * reserve memory for U-Boot code, data & bss
501 * round down to next 4 kB limit
503 gd->relocaddr -= gd->mon_len;
504 gd->relocaddr &= ~(4096 - 1);
506 /* round down to next 64 kB limit so that IVPR stays aligned */
507 gd->relocaddr &= ~(65536 - 1);
510 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
513 gd->start_addr_sp = gd->relocaddr;
518 #ifndef CONFIG_SPL_BUILD
519 /* reserve memory for malloc() area */
520 static int reserve_malloc(void)
522 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
523 debug("Reserving %dk for malloc() at: %08lx\n",
524 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
528 /* (permanently) allocate a Board Info struct */
529 static int reserve_board(void)
532 gd->start_addr_sp -= sizeof(bd_t);
533 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
534 memset(gd->bd, '\0', sizeof(bd_t));
535 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
536 sizeof(bd_t), gd->start_addr_sp);
542 static int setup_machine(void)
544 #ifdef CONFIG_MACH_TYPE
545 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
550 static int reserve_global_data(void)
552 gd->start_addr_sp -= sizeof(gd_t);
553 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
554 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
555 sizeof(gd_t), gd->start_addr_sp);
559 static int reserve_fdt(void)
561 #ifndef CONFIG_OF_EMBED
563 * If the device tree is sitting immediately above our image then we
564 * must relocate it. If it is embedded in the data section, then it
565 * will be relocated with other data.
568 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
570 gd->start_addr_sp -= gd->fdt_size;
571 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
572 debug("Reserving %lu Bytes for FDT at: %08lx\n",
573 gd->fdt_size, gd->start_addr_sp);
580 int arch_reserve_stacks(void)
585 static int reserve_stacks(void)
587 /* make stack pointer 16-byte aligned */
588 gd->start_addr_sp -= 16;
589 gd->start_addr_sp &= ~0xf;
592 * let the architecture-specific code tailor gd->start_addr_sp and
595 return arch_reserve_stacks();
598 static int display_new_sp(void)
600 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
605 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
606 static int setup_board_part1(void)
611 * Save local variables to board info struct
613 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
614 bd->bi_memsize = gd->ram_size; /* size in bytes */
616 #ifdef CONFIG_SYS_SRAM_BASE
617 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
618 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
621 #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
622 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
623 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
625 #if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
626 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
628 #if defined(CONFIG_MPC83xx)
629 bd->bi_immrbar = CONFIG_SYS_IMMR;
636 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
637 static int setup_board_part2(void)
641 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
642 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
643 #if defined(CONFIG_CPM2)
644 bd->bi_cpmfreq = gd->arch.cpm_clk;
645 bd->bi_brgfreq = gd->arch.brg_clk;
646 bd->bi_sccfreq = gd->arch.scc_clk;
647 bd->bi_vco = gd->arch.vco_out;
648 #endif /* CONFIG_CPM2 */
649 #if defined(CONFIG_MPC512X)
650 bd->bi_ipsfreq = gd->arch.ips_clk;
651 #endif /* CONFIG_MPC512X */
652 #if defined(CONFIG_MPC5xxx)
653 bd->bi_ipbfreq = gd->arch.ipb_clk;
654 bd->bi_pcifreq = gd->pci_clk;
655 #endif /* CONFIG_MPC5xxx */
656 #if defined(CONFIG_M68K) && defined(CONFIG_PCI)
657 bd->bi_pcifreq = gd->pci_clk;
659 #if defined(CONFIG_EXTRA_CLOCK)
660 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
661 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
662 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
669 #ifdef CONFIG_SYS_EXTBDINFO
670 static int setup_board_extra(void)
674 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
675 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
676 sizeof(bd->bi_r_version));
678 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
679 bd->bi_plb_busfreq = gd->bus_clk;
680 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
681 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
682 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
683 bd->bi_pci_busfreq = get_PCI_freq();
684 bd->bi_opbfreq = get_OPB_freq();
685 #elif defined(CONFIG_XILINX_405)
686 bd->bi_pci_busfreq = get_PCI_freq();
694 static int init_post(void)
696 post_bootmode_init();
697 post_run(NULL, POST_ROM | post_bootmode_get(0));
703 static int setup_dram_config(void)
705 /* Ram is board specific, so move it to board code ... */
706 dram_init_banksize();
711 static int reloc_fdt(void)
713 #ifndef CONFIG_OF_EMBED
714 if (gd->flags & GD_FLG_SKIP_RELOC)
717 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
718 gd->fdt_blob = gd->new_fdt;
725 static int setup_reloc(void)
727 if (gd->flags & GD_FLG_SKIP_RELOC) {
728 debug("Skipping relocation due to flag\n");
732 #ifdef CONFIG_SYS_TEXT_BASE
733 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
736 * On all ColdFire arch cpu, monitor code starts always
737 * just after the default vector table location, so at 0x400
739 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
742 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
744 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
745 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
746 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
752 /* ARM calls relocate_code from its crt0.S */
753 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
755 static int jump_to_copy(void)
757 if (gd->flags & GD_FLG_SKIP_RELOC)
760 * x86 is special, but in a nice way. It uses a trampoline which
761 * enables the dcache if possible.
763 * For now, other archs use relocate_code(), which is implemented
764 * similarly for all archs. When we do generic relocation, hopefully
765 * we can make all archs enable the dcache prior to relocation.
767 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
769 * SDRAM and console are now initialised. The final stack can now
770 * be setup in SDRAM. Code execution will continue in Flash, but
771 * with the stack in SDRAM and Global Data in temporary memory
774 arch_setup_gd(gd->new_gd);
775 board_init_f_r_trampoline(gd->start_addr_sp);
777 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
784 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
785 static int mark_bootstage(void)
787 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
792 static int initf_console_record(void)
794 #if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
795 return console_record_init();
801 static int initf_dm(void)
803 #if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
806 ret = dm_init_and_scan(true);
810 #ifdef CONFIG_TIMER_EARLY
811 ret = dm_timer_init();
819 /* Architecture-specific memory reservation */
820 __weak int reserve_arch(void)
825 __weak int arch_cpu_init_dm(void)
830 static init_fnc_t init_sequence_f[] = {
831 #ifdef CONFIG_SANDBOX
835 #ifdef CONFIG_OF_CONTROL
842 initf_console_record,
843 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
844 /* TODO: can this go into arch_cpu_init()? */
847 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
850 arch_cpu_init, /* basic arch cpu dependent setup */
853 mark_bootstage, /* need timer, go after init dm */
854 #if defined(CONFIG_BOARD_EARLY_INIT_F)
857 /* TODO: can any of this go into arch_cpu_init()? */
858 #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
859 get_clocks, /* get CPU and bus clocks (etc.) */
860 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
861 && !defined(CONFIG_TQM885D)
862 adjust_sdram_tbs_8xx,
864 /* TODO: can we rename this to timer_init()? */
867 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
868 defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \
869 defined(CONFIG_SPARC)
870 timer_init, /* initialize timer */
872 #ifdef CONFIG_SYS_ALLOC_DPRAM
873 #if !defined(CONFIG_CPM2)
877 #if defined(CONFIG_BOARD_POSTCLK_INIT)
880 #if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
883 env_init, /* initialize environment */
884 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
885 /* get CPU and bus clocks according to the environment variable */
887 /* adjust sdram refresh rate according to the new clock */
891 init_baud_rate, /* initialze baudrate settings */
892 serial_init, /* serial communications setup */
893 console_init_f, /* stage 1 init of console */
894 #ifdef CONFIG_SANDBOX
895 sandbox_early_getopt_check,
897 #ifdef CONFIG_OF_CONTROL
900 display_options, /* say that we are here */
901 display_text_info, /* show debugging info if required */
902 #if defined(CONFIG_MPC8260)
905 #endif /* CONFIG_MPC8260 */
906 #if defined(CONFIG_MPC83xx)
909 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
912 print_cpuinfo, /* display cpu info (and speed) */
913 #if defined(CONFIG_MPC5xxx)
915 #endif /* CONFIG_MPC5xxx */
916 #if defined(CONFIG_DISPLAY_BOARDINFO)
919 INIT_FUNC_WATCHDOG_INIT
920 #if defined(CONFIG_MISC_INIT_F)
923 INIT_FUNC_WATCHDOG_RESET
924 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
927 #if defined(CONFIG_HARD_SPI)
931 /* TODO: unify all these dram functions? */
932 #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
933 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
934 dram_init, /* configure available RAM banks */
936 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
942 INIT_FUNC_WATCHDOG_RESET
943 #if defined(CONFIG_SYS_DRAM_TEST)
945 #endif /* CONFIG_SYS_DRAM_TEST */
946 INIT_FUNC_WATCHDOG_RESET
951 INIT_FUNC_WATCHDOG_RESET
953 * Now that we have DRAM mapped and working, we can
954 * relocate the code and continue running from DRAM.
956 * Reserve memory at end of RAM for (top down in that order):
957 * - area that won't get touched by U-Boot and Linux (optional)
958 * - kernel log buffer
962 * - board info struct
965 #if defined(CONFIG_BLACKFIN)
966 /* Blackfin u-boot monitor should be on top of the ram */
969 #if defined(CONFIG_SPARC)
972 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
979 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
983 #ifdef CONFIG_DM_VIDEO
989 /* TODO: Why the dependency on CONFIG_8xx? */
990 # if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
991 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
992 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
993 reserve_legacy_video,
995 #endif /* CONFIG_DM_VIDEO */
997 #if !defined(CONFIG_BLACKFIN)
1000 #ifndef CONFIG_SPL_BUILD
1005 reserve_global_data,
1011 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
1014 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
1015 INIT_FUNC_WATCHDOG_RESET
1019 #ifdef CONFIG_SYS_EXTBDINFO
1022 INIT_FUNC_WATCHDOG_RESET
1025 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1028 do_elf_reloc_fixups,
1030 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1036 void board_init_f(ulong boot_flags)
1038 #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1040 * For some archtectures, global data is initialized and used before
1041 * calling this function. The data should be preserved. For others,
1042 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1043 * here to host global data until relocation.
1050 * Clear global data before it is accessed at debug print
1051 * in initcall_run_list. Otherwise the debug print probably
1052 * get the wrong vaule of gd->have_console.
1057 gd->flags = boot_flags;
1058 gd->have_console = 0;
1060 if (initcall_run_list(init_sequence_f))
1063 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1064 !defined(CONFIG_EFI_APP)
1065 /* NOTREACHED - jump_to_copy() does not return */
1070 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1072 * For now this code is only used on x86.
1074 * init_sequence_f_r is the list of init functions which are run when
1075 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1076 * The following limitations must be considered when implementing an
1078 * - 'static' variables are read-only
1079 * - Global Data (gd->xxx) is read/write
1081 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1082 * supported). It _should_, if possible, copy global data to RAM and
1083 * initialise the CPU caches (to speed up the relocation process)
1085 * NOTE: At present only x86 uses this route, but it is intended that
1086 * all archs will move to this when generic relocation is implemented.
1088 static init_fnc_t init_sequence_f_r[] = {
1094 void board_init_f_r(void)
1096 if (initcall_run_list(init_sequence_f_r))
1100 * The pre-relocation drivers may be using memory that has now gone
1101 * away. Mark serial as unavailable - this will fall back to the debug
1102 * UART if available.
1104 gd->flags &= ~GD_FLG_SERIAL_READY;
1107 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1108 * Transfer execution from Flash to RAM by calculating the address
1109 * of the in-RAM copy of board_init_r() and calling it
1111 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1113 /* NOTREACHED - board_init_r() does not return */
1116 #endif /* CONFIG_X86 */