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 /* TODO: can we just include all these headers whether needed or not? */
15 #if defined(CONFIG_CMD_BEDBUG)
16 #include <bedbug/type.h>
20 #ifdef CONFIG_HAS_DATAFLASH
21 #include <dataflash.h>
24 #include <environment.h>
26 #if defined(CONFIG_CMD_IDE)
33 #if defined(CONFIG_CMD_KGDB)
39 #ifdef CONFIG_BITBANGMII
44 #include <onenand_uboot.h>
48 #include <stdio_dev.h>
52 #ifdef CONFIG_CMD_AMBAPP
55 #ifdef CONFIG_ADDR_MAP
58 #include <asm/sections.h>
60 #include <asm/init_helpers.h>
63 #include <linux/compiler.h>
64 #include <linux/err.h>
66 #include <asm/arch/mmu.h>
68 #include <efi_loader.h>
70 DECLARE_GLOBAL_DATA_PTR;
72 #if defined(CONFIG_SPARC)
73 extern int prom_init(void);
76 ulong monitor_flash_len;
78 __weak int board_flash_wp_on(void)
81 * Most flashes can't be detected when write protection is enabled,
82 * so provide a way to let U-Boot gracefully ignore write protected
88 __weak void cpu_secondary_init_r(void)
92 static int initr_secondary_cpu(void)
95 * after non-volatile devices & environment is setup and cpu code have
96 * another round to deal with any initialization that might require
97 * full access to the environment or loading of some image (firmware)
98 * from a non-volatile device
100 /* TODO: maybe define this for all archs? */
101 cpu_secondary_init_r();
106 static int initr_trace(void)
109 trace_init(gd->trace_buff, CONFIG_TRACE_BUFFER_SIZE);
115 static int initr_reloc(void)
117 /* tell others: relocation done */
118 gd->flags |= GD_FLG_RELOC | GD_FLG_FULL_MALLOC_INIT;
125 * Some of these functions are needed purely because the functions they
126 * call return void. If we change them to return 0, these stubs can go away.
128 static int initr_caches(void)
136 __weak int fixup_cpu(void)
141 static int initr_reloc_global_data(void)
144 monitor_flash_len = _end - __image_copy_start;
145 #elif defined(CONFIG_NDS32)
146 monitor_flash_len = (ulong)&_end - (ulong)&_start;
147 #elif !defined(CONFIG_SANDBOX) && !defined(CONFIG_NIOS2)
148 monitor_flash_len = (ulong)&__init_end - gd->relocaddr;
150 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
152 * The gd->cpu pointer is set to an address in flash before relocation.
153 * We need to update it to point to the same CPU entry in RAM.
154 * TODO: why not just add gd->reloc_ofs?
156 gd->arch.cpu += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
159 * If we didn't know the cpu mask & # cores, we can save them of
160 * now rather than 'computing' them constantly
164 #ifdef CONFIG_SYS_EXTRA_ENV_RELOC
166 * Some systems need to relocate the env_addr pointer early because the
167 * location it points to will get invalidated before env_relocate is
168 * called. One example is on systems that might use a L2 or L3 cache
169 * in SRAM mode and initialize that cache from SRAM mode back to being
170 * a cache in cpu_init_r.
172 gd->env_addr += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
174 #ifdef CONFIG_OF_EMBED
176 * The fdt_blob needs to be moved to new relocation address
177 * incase of FDT blob is embedded with in image
179 gd->fdt_blob += gd->reloc_off;
181 #ifdef CONFIG_EFI_LOADER
182 efi_runtime_relocate(gd->relocaddr, NULL);
188 static int initr_serial(void)
194 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
195 static int initr_trap(void)
198 * Setup trap handlers
200 #if defined(CONFIG_PPC)
201 trap_init(gd->relocaddr);
203 trap_init(CONFIG_SYS_SDRAM_BASE);
209 #ifdef CONFIG_ADDR_MAP
210 static int initr_addr_map(void)
218 #ifdef CONFIG_LOGBUFFER
219 unsigned long logbuffer_base(void)
221 return gd->ram_top - LOGBUFF_LEN;
224 static int initr_logbuffer(void)
232 static int initr_post_backlog(void)
234 post_output_backlog();
239 #ifdef CONFIG_SYS_DELAYED_ICACHE
240 static int initr_icache_enable(void)
246 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
247 static int initr_unlock_ram_in_cache(void)
249 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
255 static int initr_pci(void)
257 #ifndef CONFIG_DM_PCI
265 static int initr_barrier(void)
268 /* TODO: Can we not use dmb() macros for this? */
274 static int initr_malloc(void)
278 #ifdef CONFIG_SYS_MALLOC_F_LEN
279 debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
280 gd->malloc_ptr / 1024);
282 /* The malloc area is immediately below the monitor copy in DRAM */
283 malloc_start = gd->relocaddr - TOTAL_MALLOC_LEN;
284 mem_malloc_init((ulong)map_sysmem(malloc_start, TOTAL_MALLOC_LEN),
289 static int initr_console_record(void)
291 #if defined(CONFIG_CONSOLE_RECORD)
292 return console_record_init();
298 #ifdef CONFIG_SYS_NONCACHED_MEMORY
299 static int initr_noncached(void)
307 static int initr_dm(void)
311 /* Save the pre-reloc driver model and start a new one */
312 gd->dm_root_f = gd->dm_root;
317 ret = dm_init_and_scan(false);
320 #ifdef CONFIG_TIMER_EARLY
321 ret = dm_timer_init();
330 static int initr_bootstage(void)
332 /* We cannot do this before initr_dm() */
333 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
338 __weak int power_init_board(void)
343 static int initr_announce(void)
345 debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
349 #ifdef CONFIG_NEEDS_MANUAL_RELOC
350 static int initr_manual_reloc_cmdtable(void)
352 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
353 ll_entry_count(cmd_tbl_t, cmd));
358 #if defined(CONFIG_MTD_NOR_FLASH)
359 static int initr_flash(void)
361 ulong flash_size = 0;
366 if (board_flash_wp_on())
367 printf("Uninitialized - Write Protect On\n");
369 flash_size = flash_init();
371 print_size(flash_size, "");
372 #ifdef CONFIG_SYS_FLASH_CHECKSUM
374 * Compute and print flash CRC if flashchecksum is set to 'y'
376 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
378 if (getenv_yesno("flashchecksum") == 1) {
379 printf(" CRC: %08X", crc32(0,
380 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
383 #endif /* CONFIG_SYS_FLASH_CHECKSUM */
386 /* update start of FLASH memory */
387 #ifdef CONFIG_SYS_FLASH_BASE
388 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
390 /* size of FLASH memory (final value) */
391 bd->bi_flashsize = flash_size;
393 #if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
394 /* Make a update of the Memctrl. */
395 update_flash_size(flash_size);
399 #if defined(CONFIG_OXC) || defined(CONFIG_RMU)
400 /* flash mapped at end of memory map */
401 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
402 #elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
403 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
409 #if defined(CONFIG_PPC) && !defined(CONFIG_DM_SPI)
410 static int initr_spi(void)
412 /* PPC does this here */
414 #if !defined(CONFIG_ENV_IS_IN_EEPROM)
423 #ifdef CONFIG_CMD_NAND
424 /* go init the NAND */
425 static int initr_nand(void)
433 #if defined(CONFIG_CMD_ONENAND)
434 /* go init the NAND */
435 static int initr_onenand(void)
443 #ifdef CONFIG_GENERIC_MMC
444 static int initr_mmc(void)
447 mmc_initialize(gd->bd);
452 #ifdef CONFIG_HAS_DATAFLASH
453 static int initr_dataflash(void)
455 AT91F_DataflashInit();
456 dataflash_print_info();
462 * Tell if it's OK to load the environment early in boot.
464 * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
465 * if this is OK (defaulting to saying it's OK).
467 * NOTE: Loading the environment early can be a bad idea if security is
468 * important, since no verification is done on the environment.
470 * @return 0 if environment should not be loaded, !=0 if it is ok to load
472 static int should_load_env(void)
474 #ifdef CONFIG_OF_CONTROL
475 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
476 #elif defined CONFIG_DELAY_ENVIRONMENT
483 static int initr_env(void)
485 /* initialize environment */
486 if (should_load_env())
489 set_default_env(NULL);
490 #ifdef CONFIG_OF_CONTROL
491 setenv_addr("fdtcontroladdr", gd->fdt_blob);
494 /* Initialize from environment */
495 load_addr = getenv_ulong("loadaddr", 16, load_addr);
496 #if defined(CONFIG_SYS_EXTBDINFO)
497 #if defined(CONFIG_405GP) || defined(CONFIG_405EP)
498 #if defined(CONFIG_I2CFAST)
500 * set bi_iic_fast for linux taking environment variable
501 * "i2cfast" into account
504 char *s = getenv("i2cfast");
506 if (s && ((*s == 'y') || (*s == 'Y'))) {
507 gd->bd->bi_iic_fast[0] = 1;
508 gd->bd->bi_iic_fast[1] = 1;
511 #endif /* CONFIG_I2CFAST */
512 #endif /* CONFIG_405GP, CONFIG_405EP */
513 #endif /* CONFIG_SYS_EXTBDINFO */
517 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
518 static int initr_malloc_bootparams(void)
520 gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
521 if (!gd->bd->bi_boot_params) {
522 puts("WARNING: Cannot allocate space for boot parameters\n");
529 static int initr_jumptable(void)
535 #if defined(CONFIG_API)
536 static int initr_api(void)
544 /* enable exceptions */
545 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32)
546 static int initr_enable_interrupts(void)
553 #ifdef CONFIG_CMD_NET
554 static int initr_ethaddr(void)
558 /* kept around for legacy kernels only ... ignore the next section */
559 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
560 #ifdef CONFIG_HAS_ETH1
561 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
563 #ifdef CONFIG_HAS_ETH2
564 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
566 #ifdef CONFIG_HAS_ETH3
567 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
569 #ifdef CONFIG_HAS_ETH4
570 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
572 #ifdef CONFIG_HAS_ETH5
573 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
577 #endif /* CONFIG_CMD_NET */
579 #ifdef CONFIG_CMD_KGDB
580 static int initr_kgdb(void)
588 #if defined(CONFIG_LED_STATUS)
589 static int initr_status_led(void)
591 #if defined(CONFIG_LED_STATUS_BOOT)
592 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
600 #if defined(CONFIG_CMD_AMBAPP) && defined(CONFIG_SYS_AMBAPP_PRINT_ON_STARTUP)
601 extern int do_ambapp_print(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
603 static int initr_ambapp_print(void)
606 do_ambapp_print(NULL, 0, 0, NULL);
612 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
613 static int initr_scsi(void)
622 #ifdef CONFIG_BITBANGMII
623 static int initr_bbmii(void)
630 #ifdef CONFIG_CMD_NET
631 static int initr_net(void)
635 #if defined(CONFIG_RESET_PHY_R)
636 debug("Reset Ethernet PHY\n");
644 static int initr_post(void)
646 post_run(NULL, POST_RAM | post_bootmode_get(0));
651 #if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
652 static int initr_pcmcia(void)
660 #if defined(CONFIG_CMD_IDE)
661 static int initr_ide(void)
663 #ifdef CONFIG_IDE_8xx_PCCARD
668 #if defined(CONFIG_START_IDE)
669 if (board_start_ide())
678 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
680 * Export available size of memory for Linux, taking into account the
681 * protected RAM at top of memory
689 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
691 # if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
692 /* Also take the logbuffer into account (pram is in kB) */
693 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
695 sprintf(memsz, "%ldk", (long int) ((gd->ram_size / 1024) - pram));
696 setenv("mem", memsz);
702 #ifdef CONFIG_CMD_BEDBUG
703 static int initr_bedbug(void)
712 static int initr_kbd(void)
720 static int run_main_loop(void)
722 #ifdef CONFIG_SANDBOX
723 sandbox_main_loop_init();
725 /* main_loop() can return to retry autoboot, if so just run it again */
732 * Over time we hope to remove these functions with code fragments and
733 * stub funtcions, and instead call the relevant function directly.
735 * We also hope to remove most of the driver-related init and do it if/when
736 * the driver is later used.
738 * TODO: perhaps reset the watchdog in the initcall function after each call?
740 static init_fnc_t init_sequence_r[] = {
743 /* TODO: could x86/PPC have this also perhaps? */
746 /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
747 * A temporary mapping of IFC high region is since removed,
748 * so environmental variables in NOR flash is not availble
749 * until board_init() is called below to remap IFC to high
753 initr_reloc_global_data,
754 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
755 initr_unlock_ram_in_cache,
759 initr_console_record,
760 #ifdef CONFIG_SYS_NONCACHED_MEMORY
768 #if defined(CONFIG_ARM) || defined(CONFIG_NDS32)
769 board_init, /* Setup chipselects */
772 * TODO: printing of the clock inforamtion of the board is now
773 * implemented as part of bdinfo command. Currently only support for
774 * davinci SOC's is added. Remove this check once all the board
778 set_cpu_clk_info, /* Setup clock information */
780 #ifdef CONFIG_EFI_LOADER
786 INIT_FUNC_WATCHDOG_RESET
787 #ifdef CONFIG_NEEDS_MANUAL_RELOC
788 initr_manual_reloc_cmdtable,
790 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
793 #ifdef CONFIG_ADDR_MAP
796 #if defined(CONFIG_BOARD_EARLY_INIT_R)
799 INIT_FUNC_WATCHDOG_RESET
800 #ifdef CONFIG_LOGBUFFER
806 INIT_FUNC_WATCHDOG_RESET
807 #ifdef CONFIG_SYS_DELAYED_ICACHE
810 #if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
812 * Do early PCI configuration _before_ the flash gets initialised,
813 * because PCU ressources are crucial for flash access on some boards.
817 #ifdef CONFIG_ARCH_EARLY_INIT_R
821 #ifdef CONFIG_MTD_NOR_FLASH
824 INIT_FUNC_WATCHDOG_RESET
825 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86) || \
826 defined(CONFIG_SPARC)
827 /* initialize higher level parts of CPU like time base and timers */
833 #ifdef CONFIG_CMD_NAND
836 #ifdef CONFIG_CMD_ONENAND
839 #ifdef CONFIG_GENERIC_MMC
842 #ifdef CONFIG_HAS_DATAFLASH
846 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
847 initr_malloc_bootparams,
849 INIT_FUNC_WATCHDOG_RESET
851 #if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
852 mac_read_from_eeprom,
854 INIT_FUNC_WATCHDOG_RESET
855 #if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
857 * Do pci configuration
866 console_init_r, /* fully init console as a device */
867 #ifdef CONFIG_DISPLAY_BOARDINFO_LATE
870 #ifdef CONFIG_ARCH_MISC_INIT
871 arch_misc_init, /* miscellaneous arch-dependent init */
873 #ifdef CONFIG_MISC_INIT_R
874 misc_init_r, /* miscellaneous platform-dependent init */
876 INIT_FUNC_WATCHDOG_RESET
877 #ifdef CONFIG_CMD_KGDB
881 #if defined(CONFIG_ARM) || defined(CONFIG_AVR32)
882 initr_enable_interrupts,
884 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || defined(CONFIG_M68K)
885 timer_init, /* initialize timer */
887 #if defined(CONFIG_LED_STATUS)
890 /* PPC has a udelay(20) here dating from 2002. Why? */
891 #ifdef CONFIG_CMD_NET
894 #ifdef CONFIG_BOARD_LATE_INIT
897 #if defined(CONFIG_CMD_AMBAPP)
899 #if defined(CONFIG_SYS_AMBAPP_PRINT_ON_STARTUP)
903 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
904 INIT_FUNC_WATCHDOG_RESET
907 #ifdef CONFIG_BITBANGMII
910 #ifdef CONFIG_CMD_NET
911 INIT_FUNC_WATCHDOG_RESET
917 #if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
920 #if defined(CONFIG_CMD_IDE)
923 #ifdef CONFIG_LAST_STAGE_INIT
924 INIT_FUNC_WATCHDOG_RESET
926 * Some parts can be only initialized if all others (like
927 * Interrupts) are up and running (i.e. the PC-style ISA
932 #ifdef CONFIG_CMD_BEDBUG
933 INIT_FUNC_WATCHDOG_RESET
936 #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
942 #if defined(CONFIG_SPARC)
948 void board_init_r(gd_t *new_gd, ulong dest_addr)
951 * Set up the new global data pointer. So far only x86 does this
953 * TODO(sjg@chromium.org): Consider doing this for all archs, or
954 * dropping the new_gd parameter.
956 #if CONFIG_IS_ENABLED(X86_64)
957 arch_setup_gd(new_gd);
960 #ifdef CONFIG_NEEDS_MANUAL_RELOC
965 mmu_init_r(dest_addr);
968 #if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
972 #ifdef CONFIG_NEEDS_MANUAL_RELOC
973 for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
974 init_sequence_r[i] += gd->reloc_off;
977 if (initcall_run_list(init_sequence_r))
980 /* NOTREACHED - run_main_loop() does not return */