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>
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 <linux/errno.h>
54 #include <asm/sections.h>
55 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
56 #include <asm/init_helpers.h>
58 #if defined(CONFIG_X86) || defined(CONFIG_ARC) || defined(CONFIG_XTENSA)
59 #include <asm/relocate.h>
62 #include <asm/state.h>
65 #include <linux/compiler.h>
68 * Pointer to initial global data area
70 * Here we initialize it if needed.
72 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
73 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
74 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
75 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
77 DECLARE_GLOBAL_DATA_PTR;
81 * TODO(sjg@chromium.org): IMO this code should be
82 * refactored to a single function, something like:
84 * void led_set_state(enum led_colour_t colour, int on);
86 /************************************************************************
87 * Coloured LED functionality
88 ************************************************************************
89 * May be supplied by boards if desired
91 __weak void coloured_LED_init(void) {}
92 __weak void red_led_on(void) {}
93 __weak void red_led_off(void) {}
94 __weak void green_led_on(void) {}
95 __weak void green_led_off(void) {}
96 __weak void yellow_led_on(void) {}
97 __weak void yellow_led_off(void) {}
98 __weak void blue_led_on(void) {}
99 __weak void blue_led_off(void) {}
102 * Why is gd allocated a register? Prior to reloc it might be better to
103 * just pass it around to each function in this file?
105 * After reloc one could argue that it is hardly used and doesn't need
106 * to be in a register. Or if it is it should perhaps hold pointers to all
107 * global data for all modules, so that post-reloc we can avoid the massive
108 * literal pool we get on ARM. Or perhaps just encourage each module to use
113 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
116 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
117 static int init_func_watchdog_init(void)
119 # if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
120 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
121 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
122 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
123 defined(CONFIG_IMX_WATCHDOG))
125 puts(" Watchdog enabled\n");
132 int init_func_watchdog_reset(void)
138 #endif /* CONFIG_WATCHDOG */
140 __weak void board_add_ram_info(int use_default)
142 /* please define platform specific board_add_ram_info() */
145 static int init_baud_rate(void)
147 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
151 static int display_text_info(void)
153 #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
154 ulong bss_start, bss_end, text_base;
156 bss_start = (ulong)&__bss_start;
157 bss_end = (ulong)&__bss_end;
159 #ifdef CONFIG_SYS_TEXT_BASE
160 text_base = CONFIG_SYS_TEXT_BASE;
162 text_base = CONFIG_SYS_MONITOR_BASE;
165 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
166 text_base, bss_start, bss_end);
169 #ifdef CONFIG_USE_IRQ
170 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
171 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
177 static int announce_dram_init(void)
183 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
184 static int init_func_ram(void)
186 #ifdef CONFIG_BOARD_TYPES
187 int board_type = gd->board_type;
189 int board_type = 0; /* use dummy arg */
192 gd->ram_size = initdram(board_type);
194 if (gd->ram_size > 0)
197 puts("*** failed ***\n");
202 static int show_dram_config(void)
204 unsigned long long size;
206 #ifdef CONFIG_NR_DRAM_BANKS
209 debug("\nRAM Configuration:\n");
210 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
211 size += gd->bd->bi_dram[i].size;
212 debug("Bank #%d: %llx ", i,
213 (unsigned long long)(gd->bd->bi_dram[i].start));
215 print_size(gd->bd->bi_dram[i].size, "\n");
223 print_size(size, "");
224 board_add_ram_info(0);
230 __weak void dram_init_banksize(void)
232 #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
233 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
234 gd->bd->bi_dram[0].size = get_effective_memsize();
238 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
239 static int init_func_i2c(void)
242 #ifdef CONFIG_SYS_I2C
245 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
252 #if defined(CONFIG_HARD_SPI)
253 static int init_func_spi(void)
263 static int zero_global_data(void)
265 memset((void *)gd, '\0', sizeof(gd_t));
270 static int setup_mon_len(void)
272 #if defined(__ARM__) || defined(__MICROBLAZE__)
273 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
274 #elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
275 gd->mon_len = (ulong)&_end - (ulong)_init;
276 #elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2) || \
277 defined(CONFIG_XTENSA)
278 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
279 #elif defined(CONFIG_NDS32)
280 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
281 #elif defined(CONFIG_SYS_MONITOR_BASE)
282 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
283 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
288 __weak int arch_cpu_init(void)
293 __weak int mach_cpu_init(void)
298 #ifdef CONFIG_SANDBOX
299 static int setup_ram_buf(void)
301 struct sandbox_state *state = state_get_current();
303 gd->arch.ram_buf = state->ram_buf;
304 gd->ram_size = state->ram_size;
310 /* Get the top of usable RAM */
311 __weak ulong board_get_usable_ram_top(ulong total_size)
313 #ifdef CONFIG_SYS_SDRAM_BASE
315 * Detect whether we have so much RAM that it goes past the end of our
316 * 32-bit address space. If so, clip the usable RAM so it doesn't.
318 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
320 * Will wrap back to top of 32-bit space when reservations
328 __weak phys_size_t board_reserve_ram_top(phys_size_t ram_size)
330 #ifdef CONFIG_SYS_MEM_TOP_HIDE
331 return ram_size - CONFIG_SYS_MEM_TOP_HIDE;
337 static int setup_dest_addr(void)
339 debug("Monitor len: %08lX\n", gd->mon_len);
341 * Ram is setup, size stored in gd !!
343 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
344 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
345 /* Reserve memory for secure MMU tables, and/or security monitor */
346 gd->ram_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
348 * Record secure memory location. Need recalcuate if memory splits
349 * into banks, or the ram base is not zero.
351 gd->arch.secure_ram = gd->ram_size;
354 * Subtract specified amount of memory to hide so that it won't
355 * get "touched" at all by U-Boot. By fixing up gd->ram_size
356 * the Linux kernel should now get passed the now "corrected"
357 * memory size and won't touch it either. This has been used
358 * by arch/powerpc exclusively. Now ARMv8 takes advantage of
359 * thie mechanism. If memory is split into banks, addresses
360 * need to be calculated.
362 gd->ram_size = board_reserve_ram_top(gd->ram_size);
364 #ifdef CONFIG_SYS_SDRAM_BASE
365 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
367 gd->ram_top += get_effective_memsize();
368 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
369 gd->relocaddr = gd->ram_top;
370 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
371 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
373 * We need to make sure the location we intend to put secondary core
374 * boot code is reserved and not used by any part of u-boot
376 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
377 gd->relocaddr = determine_mp_bootpg(NULL);
378 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
384 #if defined(CONFIG_SPARC)
385 static int reserve_prom(void)
387 /* defined in arch/sparc/cpu/leon?/prom.c */
388 extern void *__prom_start_reloc;
389 int size = 8192; /* page table = 2k, prom = 6k */
390 gd->relocaddr -= size;
391 __prom_start_reloc = map_sysmem(gd->relocaddr + 2048, size - 2048);
392 debug("Reserving %dk for PROM and page table at %08lx\n", size,
398 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
399 static int reserve_logbuffer(void)
401 /* reserve kernel log buffer */
402 gd->relocaddr -= LOGBUFF_RESERVE;
403 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
410 /* reserve protected RAM */
411 static int reserve_pram(void)
415 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
416 gd->relocaddr -= (reg << 10); /* size is in kB */
417 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
421 #endif /* CONFIG_PRAM */
423 /* Round memory pointer down to next 4 kB limit */
424 static int reserve_round_4k(void)
426 gd->relocaddr &= ~(4096 - 1);
430 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
432 static int reserve_mmu(void)
434 /* reserve TLB table */
435 gd->arch.tlb_size = PGTABLE_SIZE;
436 gd->relocaddr -= gd->arch.tlb_size;
438 /* round down to next 64 kB limit */
439 gd->relocaddr &= ~(0x10000 - 1);
441 gd->arch.tlb_addr = gd->relocaddr;
442 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
443 gd->arch.tlb_addr + gd->arch.tlb_size);
445 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
447 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
448 * with location within secure ram.
450 gd->arch.tlb_allocated = gd->arch.tlb_addr;
457 #ifdef CONFIG_DM_VIDEO
458 static int reserve_video(void)
463 addr = gd->relocaddr;
464 ret = video_reserve(&addr);
467 gd->relocaddr = addr;
474 static int reserve_lcd(void)
476 # ifdef CONFIG_FB_ADDR
477 gd->fb_base = CONFIG_FB_ADDR;
479 /* reserve memory for LCD display (always full pages) */
480 gd->relocaddr = lcd_setmem(gd->relocaddr);
481 gd->fb_base = gd->relocaddr;
482 # endif /* CONFIG_FB_ADDR */
486 # endif /* CONFIG_LCD */
488 # if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
489 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
490 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
491 static int reserve_legacy_video(void)
493 /* reserve memory for video display (always full pages) */
494 gd->relocaddr = video_setmem(gd->relocaddr);
495 gd->fb_base = gd->relocaddr;
500 #endif /* !CONFIG_DM_VIDEO */
502 static int reserve_trace(void)
505 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
506 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
507 debug("Reserving %dk for trace data at: %08lx\n",
508 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
514 static int reserve_uboot(void)
517 * reserve memory for U-Boot code, data & bss
518 * round down to next 4 kB limit
520 gd->relocaddr -= gd->mon_len;
521 gd->relocaddr &= ~(4096 - 1);
523 /* round down to next 64 kB limit so that IVPR stays aligned */
524 gd->relocaddr &= ~(65536 - 1);
527 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
530 gd->start_addr_sp = gd->relocaddr;
535 #ifndef CONFIG_SPL_BUILD
536 /* reserve memory for malloc() area */
537 static int reserve_malloc(void)
539 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
540 debug("Reserving %dk for malloc() at: %08lx\n",
541 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
545 /* (permanently) allocate a Board Info struct */
546 static int reserve_board(void)
549 gd->start_addr_sp -= sizeof(bd_t);
550 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
551 memset(gd->bd, '\0', sizeof(bd_t));
552 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
553 sizeof(bd_t), gd->start_addr_sp);
559 static int setup_machine(void)
561 #ifdef CONFIG_MACH_TYPE
562 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
567 static int reserve_global_data(void)
569 gd->start_addr_sp -= sizeof(gd_t);
570 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
571 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
572 sizeof(gd_t), gd->start_addr_sp);
576 static int reserve_fdt(void)
578 #ifndef CONFIG_OF_EMBED
580 * If the device tree is sitting immediately above our image then we
581 * must relocate it. If it is embedded in the data section, then it
582 * will be relocated with other data.
585 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
587 gd->start_addr_sp -= gd->fdt_size;
588 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
589 debug("Reserving %lu Bytes for FDT at: %08lx\n",
590 gd->fdt_size, gd->start_addr_sp);
597 int arch_reserve_stacks(void)
602 static int reserve_stacks(void)
604 /* make stack pointer 16-byte aligned */
605 gd->start_addr_sp -= 16;
606 gd->start_addr_sp &= ~0xf;
609 * let the architecture-specific code tailor gd->start_addr_sp and
612 return arch_reserve_stacks();
615 static int display_new_sp(void)
617 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
622 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
623 static int setup_board_part1(void)
628 * Save local variables to board info struct
630 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
631 bd->bi_memsize = gd->ram_size; /* size in bytes */
633 #ifdef CONFIG_SYS_SRAM_BASE
634 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
635 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
638 #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
639 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
640 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
642 #if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
643 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
645 #if defined(CONFIG_MPC83xx)
646 bd->bi_immrbar = CONFIG_SYS_IMMR;
653 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
654 static int setup_board_part2(void)
658 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
659 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
660 #if defined(CONFIG_CPM2)
661 bd->bi_cpmfreq = gd->arch.cpm_clk;
662 bd->bi_brgfreq = gd->arch.brg_clk;
663 bd->bi_sccfreq = gd->arch.scc_clk;
664 bd->bi_vco = gd->arch.vco_out;
665 #endif /* CONFIG_CPM2 */
666 #if defined(CONFIG_MPC512X)
667 bd->bi_ipsfreq = gd->arch.ips_clk;
668 #endif /* CONFIG_MPC512X */
669 #if defined(CONFIG_MPC5xxx)
670 bd->bi_ipbfreq = gd->arch.ipb_clk;
671 bd->bi_pcifreq = gd->pci_clk;
672 #endif /* CONFIG_MPC5xxx */
673 #if defined(CONFIG_M68K) && defined(CONFIG_PCI)
674 bd->bi_pcifreq = gd->pci_clk;
676 #if defined(CONFIG_EXTRA_CLOCK)
677 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
678 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
679 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
686 #ifdef CONFIG_SYS_EXTBDINFO
687 static int setup_board_extra(void)
691 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
692 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
693 sizeof(bd->bi_r_version));
695 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
696 bd->bi_plb_busfreq = gd->bus_clk;
697 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
698 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
699 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
700 bd->bi_pci_busfreq = get_PCI_freq();
701 bd->bi_opbfreq = get_OPB_freq();
702 #elif defined(CONFIG_XILINX_405)
703 bd->bi_pci_busfreq = get_PCI_freq();
711 static int init_post(void)
713 post_bootmode_init();
714 post_run(NULL, POST_ROM | post_bootmode_get(0));
720 static int setup_dram_config(void)
722 /* Ram is board specific, so move it to board code ... */
723 dram_init_banksize();
728 static int reloc_fdt(void)
730 #ifndef CONFIG_OF_EMBED
731 if (gd->flags & GD_FLG_SKIP_RELOC)
734 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
735 gd->fdt_blob = gd->new_fdt;
742 static int setup_reloc(void)
744 if (gd->flags & GD_FLG_SKIP_RELOC) {
745 debug("Skipping relocation due to flag\n");
749 #ifdef CONFIG_SYS_TEXT_BASE
750 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
753 * On all ColdFire arch cpu, monitor code starts always
754 * just after the default vector table location, so at 0x400
756 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
759 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
761 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
762 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
763 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
769 /* ARM calls relocate_code from its crt0.S */
770 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
772 static int jump_to_copy(void)
774 if (gd->flags & GD_FLG_SKIP_RELOC)
777 * x86 is special, but in a nice way. It uses a trampoline which
778 * enables the dcache if possible.
780 * For now, other archs use relocate_code(), which is implemented
781 * similarly for all archs. When we do generic relocation, hopefully
782 * we can make all archs enable the dcache prior to relocation.
784 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
786 * SDRAM and console are now initialised. The final stack can now
787 * be setup in SDRAM. Code execution will continue in Flash, but
788 * with the stack in SDRAM and Global Data in temporary memory
791 arch_setup_gd(gd->new_gd);
792 board_init_f_r_trampoline(gd->start_addr_sp);
794 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
801 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
802 static int mark_bootstage(void)
804 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
809 static int initf_console_record(void)
811 #if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
812 return console_record_init();
818 static int initf_dm(void)
820 #if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
823 ret = dm_init_and_scan(true);
827 #ifdef CONFIG_TIMER_EARLY
828 ret = dm_timer_init();
836 /* Architecture-specific memory reservation */
837 __weak int reserve_arch(void)
842 __weak int arch_cpu_init_dm(void)
847 static init_fnc_t init_sequence_f[] = {
848 #ifdef CONFIG_SANDBOX
852 #ifdef CONFIG_OF_CONTROL
859 initf_console_record,
860 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
861 /* TODO: can this go into arch_cpu_init()? */
864 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
867 arch_cpu_init, /* basic arch cpu dependent setup */
868 mach_cpu_init, /* SoC/machine dependent CPU setup */
871 mark_bootstage, /* need timer, go after init dm */
872 #if defined(CONFIG_BOARD_EARLY_INIT_F)
875 /* TODO: can any of this go into arch_cpu_init()? */
876 #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
877 get_clocks, /* get CPU and bus clocks (etc.) */
878 #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
879 && !defined(CONFIG_TQM885D)
880 adjust_sdram_tbs_8xx,
882 /* TODO: can we rename this to timer_init()? */
885 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
886 defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \
887 defined(CONFIG_SPARC)
888 timer_init, /* initialize timer */
890 #ifdef CONFIG_SYS_ALLOC_DPRAM
891 #if !defined(CONFIG_CPM2)
895 #if defined(CONFIG_BOARD_POSTCLK_INIT)
898 #if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
901 env_init, /* initialize environment */
902 #if defined(CONFIG_8xx_CPUCLK_DEFAULT)
903 /* get CPU and bus clocks according to the environment variable */
905 /* adjust sdram refresh rate according to the new clock */
909 init_baud_rate, /* initialze baudrate settings */
910 serial_init, /* serial communications setup */
911 console_init_f, /* stage 1 init of console */
912 #ifdef CONFIG_SANDBOX
913 sandbox_early_getopt_check,
915 display_options, /* say that we are here */
916 display_text_info, /* show debugging info if required */
917 #if defined(CONFIG_MPC8260)
920 #endif /* CONFIG_MPC8260 */
921 #if defined(CONFIG_MPC83xx)
924 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
927 print_cpuinfo, /* display cpu info (and speed) */
928 #if defined(CONFIG_MPC5xxx)
930 #endif /* CONFIG_MPC5xxx */
931 #if defined(CONFIG_DISPLAY_BOARDINFO)
934 INIT_FUNC_WATCHDOG_INIT
935 #if defined(CONFIG_MISC_INIT_F)
938 INIT_FUNC_WATCHDOG_RESET
939 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
942 #if defined(CONFIG_HARD_SPI)
946 /* TODO: unify all these dram functions? */
947 #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
948 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
949 dram_init, /* configure available RAM banks */
951 #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
957 INIT_FUNC_WATCHDOG_RESET
958 #if defined(CONFIG_SYS_DRAM_TEST)
960 #endif /* CONFIG_SYS_DRAM_TEST */
961 INIT_FUNC_WATCHDOG_RESET
966 INIT_FUNC_WATCHDOG_RESET
968 * Now that we have DRAM mapped and working, we can
969 * relocate the code and continue running from DRAM.
971 * Reserve memory at end of RAM for (top down in that order):
972 * - area that won't get touched by U-Boot and Linux (optional)
973 * - kernel log buffer
977 * - board info struct
980 #if defined(CONFIG_BLACKFIN) || defined(CONFIG_XTENSA)
981 /* Blackfin u-boot monitor should be on top of the ram */
984 #if defined(CONFIG_SPARC)
987 #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
994 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
998 #ifdef CONFIG_DM_VIDEO
1004 /* TODO: Why the dependency on CONFIG_8xx? */
1005 # if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
1006 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
1007 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
1008 reserve_legacy_video,
1010 #endif /* CONFIG_DM_VIDEO */
1012 #if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_XTENSA)
1015 #ifndef CONFIG_SPL_BUILD
1020 reserve_global_data,
1026 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
1029 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
1030 INIT_FUNC_WATCHDOG_RESET
1034 #ifdef CONFIG_SYS_EXTBDINFO
1037 INIT_FUNC_WATCHDOG_RESET
1040 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1043 do_elf_reloc_fixups,
1045 #if defined(CONFIG_XTENSA)
1048 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1054 void board_init_f(ulong boot_flags)
1056 #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1058 * For some architectures, global data is initialized and used before
1059 * calling this function. The data should be preserved. For others,
1060 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1061 * here to host global data until relocation.
1068 * Clear global data before it is accessed at debug print
1069 * in initcall_run_list. Otherwise the debug print probably
1070 * get the wrong value of gd->have_console.
1075 gd->flags = boot_flags;
1076 gd->have_console = 0;
1078 if (initcall_run_list(init_sequence_f))
1081 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1082 !defined(CONFIG_EFI_APP)
1083 /* NOTREACHED - jump_to_copy() does not return */
1088 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
1090 * For now this code is only used on x86.
1092 * init_sequence_f_r is the list of init functions which are run when
1093 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1094 * The following limitations must be considered when implementing an
1096 * - 'static' variables are read-only
1097 * - Global Data (gd->xxx) is read/write
1099 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1100 * supported). It _should_, if possible, copy global data to RAM and
1101 * initialise the CPU caches (to speed up the relocation process)
1103 * NOTE: At present only x86 uses this route, but it is intended that
1104 * all archs will move to this when generic relocation is implemented.
1106 static init_fnc_t init_sequence_f_r[] = {
1112 void board_init_f_r(void)
1114 if (initcall_run_list(init_sequence_f_r))
1118 * The pre-relocation drivers may be using memory that has now gone
1119 * away. Mark serial as unavailable - this will fall back to the debug
1120 * UART if available.
1122 gd->flags &= ~GD_FLG_SERIAL_READY;
1125 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1126 * Transfer execution from Flash to RAM by calculating the address
1127 * of the in-RAM copy of board_init_r() and calling it
1129 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1131 /* NOTREACHED - board_init_r() does not return */
1134 #endif /* CONFIG_X86 */