blob: 760c2d05ed00b75956999790d6e199f294459ebf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6f6430d2013-03-11 14:30:37 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
Simon Glass6f6430d2013-03-11 14:30:37 +000010 */
11
12#include <common.h>
Simon Glass12d738a2017-05-17 08:22:40 -060013#include <api.h>
Simon Glass52f24232020-05-10 11:40:00 -060014#include <bootstage.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070015#include <cpu_func.h>
Simon Glassa6f2aaf2019-12-28 10:44:46 -070016#include <exports.h>
Simon Glassb79fdc72020-05-10 11:39:54 -060017#include <flash.h>
Simon Glassdb41d652019-12-28 10:45:07 -070018#include <hang.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070019#include <image.h>
Simon Glass36bf4462019-11-14 12:57:42 -070020#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060021#include <log.h>
Simon Glass5e6267a2019-12-28 10:44:48 -070022#include <net.h>
Simon Glass90526e92020-05-10 11:39:56 -060023#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Simon Glass3db71102019-11-14 12:57:16 -070025#include <u-boot/crc.h>
Simon Glassc2240d42013-03-14 07:20:12 +000026/* TODO: can we just include all these headers whether needed or not? */
27#if defined(CONFIG_CMD_BEDBUG)
28#include <bedbug/type.h>
29#endif
Simon Glass3c10dc92019-12-06 21:41:34 -070030#include <binman.h>
Tom Rinicbb2df22015-12-07 08:23:29 -050031#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070032#include <console.h>
Simon Glass1ce60172014-02-26 15:59:20 -070033#include <dm.h>
Simon Glass3f989e7b2019-08-01 09:46:44 -060034#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060035#include <env_internal.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000036#include <fdtdec.h>
Simon Glassc2240d42013-03-14 07:20:12 +000037#include <ide.h>
Simon Glass6b8d3ce2019-12-28 10:44:39 -070038#include <init.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000039#include <initcall.h>
Simon Glassc2240d42013-03-14 07:20:12 +000040#if defined(CONFIG_CMD_KGDB)
41#include <kgdb.h>
42#endif
Simon Glassc30b7ad2019-11-14 12:57:41 -070043#include <irq_func.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000044#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050045#include <mapmem.h>
Simon Glassc2240d42013-03-14 07:20:12 +000046#ifdef CONFIG_BITBANGMII
47#include <miiphy.h>
48#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000049#include <mmc.h>
Jean-Jacques Hiblot90a979d2020-10-16 16:16:31 +053050#include <mux.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000051#include <nand.h>
Simon Glass3af86a42017-05-18 20:08:56 -060052#include <of_live.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000053#include <onenand_uboot.h>
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +030054#include <pvblock.h>
Simon Glassc2240d42013-03-14 07:20:12 +000055#include <scsi.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000056#include <serial.h>
Simon Glassc3e44302019-11-14 12:57:11 -070057#include <status_led.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000058#include <stdio_dev.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070059#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070060#include <trace.h>
Simon Glassc2240d42013-03-14 07:20:12 +000061#include <watchdog.h>
Oleksandr Andrushchenko48654412020-08-06 12:42:48 +030062#ifdef CONFIG_XEN
63#include <xen.h>
64#endif
Simon Glassc2240d42013-03-14 07:20:12 +000065#ifdef CONFIG_ADDR_MAP
66#include <asm/mmu.h>
67#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000068#include <asm/sections.h>
Simon Glass1ce60172014-02-26 15:59:20 -070069#include <dm/root.h>
Simon Glass7de8bd02021-08-07 07:24:01 -060070#include <dm/ofnode.h>
Simon Glassc2240d42013-03-14 07:20:12 +000071#include <linux/compiler.h>
Simon Glass1ce60172014-02-26 15:59:20 -070072#include <linux/err.h>
Alexander Graf50149ea2016-03-04 01:10:01 +010073#include <efi_loader.h>
Stefan Roese06985282019-04-11 15:58:44 +020074#include <wdt.h>
Heiko Schocher49b10cb2019-07-17 06:59:51 +020075#if defined(CONFIG_GPIO_HOG)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +020076#include <asm/gpio.h>
77#endif
AKASHI Takahiroc57c9432020-10-29 13:47:45 +090078#ifdef CONFIG_EFI_SETUP_EARLY
79#include <efi_loader.h>
80#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000081
82DECLARE_GLOBAL_DATA_PTR;
83
84ulong monitor_flash_len;
85
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +020086__weak int board_flash_wp_on(void)
Simon Glassc2240d42013-03-14 07:20:12 +000087{
88 /*
89 * Most flashes can't be detected when write protection is enabled,
90 * so provide a way to let U-Boot gracefully ignore write protected
91 * devices.
92 */
93 return 0;
94}
95
Ovidiu Panaitfb504b22020-11-28 10:43:09 +020096__weak int cpu_secondary_init_r(void)
Simon Glassc2240d42013-03-14 07:20:12 +000097{
Simon Glassc2240d42013-03-14 07:20:12 +000098 return 0;
99}
Simon Glass6f6430d2013-03-11 14:30:37 +0000100
Simon Glass71c52db2013-06-11 11:14:42 -0700101static int initr_trace(void)
102{
103#ifdef CONFIG_TRACE
104 trace_init(gd->trace_buff, CONFIG_TRACE_BUFFER_SIZE);
105#endif
106
107 return 0;
108}
109
Simon Glass6f6430d2013-03-11 14:30:37 +0000110static int initr_reloc(void)
111{
Simon Glassc9356be2014-11-10 17:16:43 -0700112 /* tell others: relocation done */
113 gd->flags |= GD_FLG_RELOC | GD_FLG_FULL_MALLOC_INIT;
Simon Glass6f6430d2013-03-11 14:30:37 +0000114
115 return 0;
116}
117
Zong Li4d4222d2021-09-01 15:01:40 +0800118#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Simon Glass6f6430d2013-03-11 14:30:37 +0000119/*
120 * Some of these functions are needed purely because the functions they
121 * call return void. If we change them to return 0, these stubs can go away.
122 */
123static int initr_caches(void)
124{
125 /* Enable caches */
126 enable_caches();
127 return 0;
128}
129#endif
130
Simon Glassc2240d42013-03-14 07:20:12 +0000131__weak int fixup_cpu(void)
132{
133 return 0;
134}
135
Simon Glass6f6430d2013-03-11 14:30:37 +0000136static int initr_reloc_global_data(void)
137{
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100138#ifdef __ARM__
139 monitor_flash_len = _end - __image_copy_start;
Rick Chen068feb92017-12-26 13:55:58 +0800140#elif defined(CONFIG_NDS32) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800141 monitor_flash_len = (ulong)&_end - (ulong)&_start;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800142#elif !defined(CONFIG_SANDBOX) && !defined(CONFIG_NIOS2)
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000143 monitor_flash_len = (ulong)&__init_end - gd->relocaddr;
Simon Glass6f6430d2013-03-11 14:30:37 +0000144#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000145#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
146 /*
147 * The gd->cpu pointer is set to an address in flash before relocation.
148 * We need to update it to point to the same CPU entry in RAM.
149 * TODO: why not just add gd->reloc_ofs?
150 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000151 gd->arch.cpu += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
Simon Glassc2240d42013-03-14 07:20:12 +0000152
153 /*
154 * If we didn't know the cpu mask & # cores, we can save them of
155 * now rather than 'computing' them constantly
156 */
157 fixup_cpu();
158#endif
Tom Rini8d8ee472019-11-12 22:46:36 -0500159#ifdef CONFIG_SYS_RELOC_GD_ENV_ADDR
Simon Glassc2240d42013-03-14 07:20:12 +0000160 /*
Simon Goldschmidt6c6add62018-09-27 12:38:34 +0200161 * Relocate the early env_addr pointer unless we know it is not inside
162 * the binary. Some systems need this and for the rest, it doesn't hurt.
Simon Glassc2240d42013-03-14 07:20:12 +0000163 */
Simon Goldschmidt6c6add62018-09-27 12:38:34 +0200164 gd->env_addr += gd->reloc_off;
Simon Glassc2240d42013-03-14 07:20:12 +0000165#endif
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100166#ifdef CONFIG_OF_EMBED
167 /*
Mario Six92f84b62018-01-15 11:10:30 +0100168 * The fdt_blob needs to be moved to new relocation address
169 * incase of FDT blob is embedded with in image
170 */
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100171 gd->fdt_blob += gd->reloc_off;
172#endif
Alexander Graf50149ea2016-03-04 01:10:01 +0100173#ifdef CONFIG_EFI_LOADER
Heinrich Schuchardte7ac0092019-04-10 00:32:07 +0200174 /*
175 * On the ARM architecture gd is mapped to a fixed register (r9 or x18).
176 * As this register may be overwritten by an EFI payload we save it here
177 * and restore it on every callback entered.
178 */
179 efi_save_gd();
180
Alexander Graf50149ea2016-03-04 01:10:01 +0100181 efi_runtime_relocate(gd->relocaddr, NULL);
182#endif
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100183
Simon Glassc2240d42013-03-14 07:20:12 +0000184 return 0;
Simon Glass6f6430d2013-03-11 14:30:37 +0000185}
186
Ovidiu Panait130845b2020-11-28 10:43:18 +0200187__weak int arch_initr_trap(void)
Simon Glassc2240d42013-03-14 07:20:12 +0000188{
Simon Glassc2240d42013-03-14 07:20:12 +0000189 return 0;
190}
Simon Glassc2240d42013-03-14 07:20:12 +0000191
192#ifdef CONFIG_ADDR_MAP
193static int initr_addr_map(void)
194{
195 init_addr_map();
196
197 return 0;
198}
199#endif
200
Simon Glassc2240d42013-03-14 07:20:12 +0000201#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
202static int initr_unlock_ram_in_cache(void)
203{
204 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
205 return 0;
206}
207#endif
208
Simon Glassc2240d42013-03-14 07:20:12 +0000209static int initr_barrier(void)
210{
211#ifdef CONFIG_PPC
212 /* TODO: Can we not use dmb() macros for this? */
213 asm("sync ; isync");
214#endif
215 return 0;
216}
217
Simon Glass6f6430d2013-03-11 14:30:37 +0000218static int initr_malloc(void)
219{
220 ulong malloc_start;
221
Andy Yanf1896c42017-07-24 17:43:34 +0800222#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassd59476b2014-07-10 22:23:28 -0600223 debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
224 gd->malloc_ptr / 1024);
225#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000226 /* The malloc area is immediately below the monitor copy in DRAM */
Stephen Warren5e0404f2019-08-27 11:54:31 -0600227 /*
228 * This value MUST match the value of gd->start_addr_sp in board_f.c:
229 * reserve_noncached().
230 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000231 malloc_start = gd->relocaddr - TOTAL_MALLOC_LEN;
Simon Glassa733b062013-04-26 02:53:43 +0000232 mem_malloc_init((ulong)map_sysmem(malloc_start, TOTAL_MALLOC_LEN),
233 TOTAL_MALLOC_LEN);
Simon Glass6f6430d2013-03-11 14:30:37 +0000234 return 0;
235}
236
Simon Glass3af86a42017-05-18 20:08:56 -0600237static int initr_of_live(void)
238{
Simon Glassa652d9c2020-10-03 09:25:22 -0600239 if (CONFIG_IS_ENABLED(OF_LIVE)) {
240 int ret;
Simon Glassa132f772017-05-22 05:05:36 -0600241
Simon Glassa652d9c2020-10-03 09:25:22 -0600242 bootstage_start(BOOTSTAGE_ID_ACCUM_OF_LIVE, "of_live");
243 ret = of_live_build(gd->fdt_blob,
244 (struct device_node **)gd_of_root_ptr());
245 bootstage_accum(BOOTSTAGE_ID_ACCUM_OF_LIVE);
246 if (ret)
247 return ret;
248 }
Simon Glassa132f772017-05-22 05:05:36 -0600249
250 return 0;
Simon Glass3af86a42017-05-18 20:08:56 -0600251}
Simon Glass3af86a42017-05-18 20:08:56 -0600252
Simon Glass1ce60172014-02-26 15:59:20 -0700253#ifdef CONFIG_DM
254static int initr_dm(void)
255{
Simon Glass1057e6c2016-02-24 09:14:50 -0700256 int ret;
257
Simon Glassab7cd622014-07-23 06:55:04 -0600258 /* Save the pre-reloc driver model and start a new one */
259 gd->dm_root_f = gd->dm_root;
260 gd->dm_root = NULL;
Simon Glassd74d6b42016-03-11 22:06:46 -0700261#ifdef CONFIG_TIMER
262 gd->timer = NULL;
263#endif
Simon Glassb67eefd2020-05-10 11:39:59 -0600264 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_R, "dm_r");
Simon Glass1057e6c2016-02-24 09:14:50 -0700265 ret = dm_init_and_scan(false);
Simon Glassb67eefd2020-05-10 11:39:59 -0600266 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_R);
Simon Glass1057e6c2016-02-24 09:14:50 -0700267 if (ret)
268 return ret;
Simon Glass1057e6c2016-02-24 09:14:50 -0700269
270 return 0;
Simon Glass1ce60172014-02-26 15:59:20 -0700271}
272#endif
273
Simon Glassdd0edcb2019-12-06 21:41:46 -0700274static int initr_dm_devices(void)
275{
276 int ret;
277
278 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
279 ret = dm_timer_init();
280 if (ret)
281 return ret;
282 }
283
Jean-Jacques Hiblot90a979d2020-10-16 16:16:31 +0530284 if (IS_ENABLED(CONFIG_MULTIPLEXER)) {
285 /*
286 * Initialize the multiplexer controls to their default state.
287 * This must be done early as other drivers may unknowingly
288 * rely on it.
289 */
290 ret = dm_mux_init();
291 if (ret)
292 return ret;
293 }
294
Simon Glassdd0edcb2019-12-06 21:41:46 -0700295 return 0;
296}
297
Simon Glass881c1242015-11-28 22:16:35 -0700298static int initr_bootstage(void)
299{
Simon Glass881c1242015-11-28 22:16:35 -0700300 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
301
302 return 0;
303}
304
Simon Glass6f6430d2013-03-11 14:30:37 +0000305__weak int power_init_board(void)
306{
307 return 0;
308}
309
310static int initr_announce(void)
311{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000312 debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
Simon Glass6f6430d2013-03-11 14:30:37 +0000313 return 0;
314}
315
Andreas Bießmann61d7b1b2015-01-20 00:29:05 +0100316#ifdef CONFIG_NEEDS_MANUAL_RELOC
317static int initr_manual_reloc_cmdtable(void)
318{
Simon Glass09140112020-05-10 11:40:03 -0600319 fixup_cmdtable(ll_entry_start(struct cmd_tbl, cmd),
320 ll_entry_count(struct cmd_tbl, cmd));
Andreas Bießmann61d7b1b2015-01-20 00:29:05 +0100321 return 0;
322}
323#endif
324
Simon Glass3c10dc92019-12-06 21:41:34 -0700325static int initr_binman(void)
326{
Tim Harveyc03cb022021-07-16 15:44:12 -0700327 int ret;
328
Simon Glass3c10dc92019-12-06 21:41:34 -0700329 if (!CONFIG_IS_ENABLED(BINMAN_FDT))
330 return 0;
331
Tim Harveyc03cb022021-07-16 15:44:12 -0700332 ret = binman_init();
333 if (ret)
334 printf("binman_init failed:%d\n", ret);
335
336 return ret;
Simon Glass3c10dc92019-12-06 21:41:34 -0700337}
338
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900339#if defined(CONFIG_MTD_NOR_FLASH)
Pankit Garg62d3a582020-04-30 15:54:05 +0530340__weak int is_flash_available(void)
341{
342 return 1;
343}
344
Simon Glass6f6430d2013-03-11 14:30:37 +0000345static int initr_flash(void)
346{
Simon Glassc2240d42013-03-14 07:20:12 +0000347 ulong flash_size = 0;
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900348 struct bd_info *bd = gd->bd;
Simon Glass6f6430d2013-03-11 14:30:37 +0000349
Pankit Garg62d3a582020-04-30 15:54:05 +0530350 if (!is_flash_available())
351 return 0;
352
Simon Glass6f6430d2013-03-11 14:30:37 +0000353 puts("Flash: ");
354
Masahiro Yamada70879a92014-12-05 12:20:58 +0900355 if (board_flash_wp_on())
Simon Glassc2240d42013-03-14 07:20:12 +0000356 printf("Uninitialized - Write Protect On\n");
Masahiro Yamada70879a92014-12-05 12:20:58 +0900357 else
Simon Glassc2240d42013-03-14 07:20:12 +0000358 flash_size = flash_init();
Masahiro Yamada70879a92014-12-05 12:20:58 +0900359
Simon Glass6f6430d2013-03-11 14:30:37 +0000360 print_size(flash_size, "");
361#ifdef CONFIG_SYS_FLASH_CHECKSUM
362 /*
Mario Six92f84b62018-01-15 11:10:30 +0100363 * Compute and print flash CRC if flashchecksum is set to 'y'
364 *
365 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
366 */
Simon Glassbfebc8c2017-08-03 12:22:13 -0600367 if (env_get_yesno("flashchecksum") == 1) {
Mario Six92f84b62018-01-15 11:10:30 +0100368 const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE;
369
Simon Glass6f6430d2013-03-11 14:30:37 +0000370 printf(" CRC: %08X", crc32(0,
Mario Six92f84b62018-01-15 11:10:30 +0100371 flash_base,
372 flash_size));
Simon Glass6f6430d2013-03-11 14:30:37 +0000373 }
374#endif /* CONFIG_SYS_FLASH_CHECKSUM */
375 putc('\n');
376
Simon Glassc2240d42013-03-14 07:20:12 +0000377 /* update start of FLASH memory */
378#ifdef CONFIG_SYS_FLASH_BASE
379 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
380#endif
381 /* size of FLASH memory (final value) */
382 bd->bi_flashsize = flash_size;
383
384#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
385 /* Make a update of the Memctrl. */
386 update_flash_size(flash_size);
387#endif
388
Simon Glassc2240d42013-03-14 07:20:12 +0000389#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
390 /* flash mapped at end of memory map */
391 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
392#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
393 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
394#endif
395 return 0;
396}
397#endif
398
Simon Glass6f6430d2013-03-11 14:30:37 +0000399#ifdef CONFIG_CMD_NAND
400/* go init the NAND */
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200401static int initr_nand(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000402{
403 puts("NAND: ");
404 nand_init();
Hou Zhiqiang203db382017-03-17 16:12:31 +0800405 printf("%lu MiB\n", nand_size() / 1024);
Simon Glass6f6430d2013-03-11 14:30:37 +0000406 return 0;
407}
408#endif
409
410#if defined(CONFIG_CMD_ONENAND)
411/* go init the NAND */
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200412static int initr_onenand(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000413{
414 puts("NAND: ");
415 onenand_init();
416 return 0;
417}
418#endif
419
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900420#ifdef CONFIG_MMC
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200421static int initr_mmc(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000422{
423 puts("MMC: ");
424 mmc_initialize(gd->bd);
425 return 0;
426}
427#endif
428
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300429#ifdef CONFIG_PVBLOCK
430static int initr_pvblock(void)
431{
432 puts("PVBLOCK: ");
433 pvblock_init();
434 return 0;
435}
436#endif
437
Simon Glass6f6430d2013-03-11 14:30:37 +0000438/*
439 * Tell if it's OK to load the environment early in boot.
440 *
Masahiro Yamada776babd2016-02-05 20:49:39 +0900441 * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
Simon Glass6f6430d2013-03-11 14:30:37 +0000442 * if this is OK (defaulting to saying it's OK).
443 *
444 * NOTE: Loading the environment early can be a bad idea if security is
445 * important, since no verification is done on the environment.
446 *
447 * @return 0 if environment should not be loaded, !=0 if it is ok to load
448 */
449static int should_load_env(void)
450{
Ovidiu Panait9441f8c2020-05-06 20:38:43 +0300451 if (IS_ENABLED(CONFIG_OF_CONTROL))
Simon Glass7de8bd02021-08-07 07:24:01 -0600452 return ofnode_conf_read_int("load-environment", 1);
Ovidiu Panait9441f8c2020-05-06 20:38:43 +0300453
454 if (IS_ENABLED(CONFIG_DELAY_ENVIRONMENT))
455 return 0;
456
Simon Glass6f6430d2013-03-11 14:30:37 +0000457 return 1;
Simon Glass6f6430d2013-03-11 14:30:37 +0000458}
459
460static int initr_env(void)
461{
462 /* initialize environment */
463 if (should_load_env())
464 env_relocate();
465 else
Simon Glass0ac7d722019-08-01 09:47:00 -0600466 env_set_default(NULL, 0);
Ovidiu Panait9441f8c2020-05-06 20:38:43 +0300467
Rasmus Villemoes95fd9772021-04-21 11:06:54 +0200468 env_import_fdt();
469
Ovidiu Panait9441f8c2020-05-06 20:38:43 +0300470 if (IS_ENABLED(CONFIG_OF_CONTROL))
471 env_set_hex("fdtcontroladdr",
472 (unsigned long)map_to_sysmem(gd->fdt_blob));
Simon Glass6f6430d2013-03-11 14:30:37 +0000473
474 /* Initialize from environment */
Simon Glassbb872dd2019-12-28 10:45:02 -0700475 image_load_addr = env_get_ulong("loadaddr", 16, image_load_addr);
Simon Glassc2240d42013-03-14 07:20:12 +0000476
Simon Glass6f6430d2013-03-11 14:30:37 +0000477 return 0;
478}
479
Andreas Bießmannc722f0b2015-02-06 23:06:47 +0100480#ifdef CONFIG_SYS_BOOTPARAMS_LEN
481static int initr_malloc_bootparams(void)
482{
483 gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
484 if (!gd->bd->bi_boot_params) {
485 puts("WARNING: Cannot allocate space for boot parameters\n");
486 return -ENOMEM;
487 }
488 return 0;
489}
490#endif
491
Simon Glass6f6430d2013-03-11 14:30:37 +0000492#ifdef CONFIG_CMD_NET
493static int initr_ethaddr(void)
494{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900495 struct bd_info *bd = gd->bd;
Simon Glassc2240d42013-03-14 07:20:12 +0000496
497 /* kept around for legacy kernels only ... ignore the next section */
Simon Glass35affd72017-08-03 12:22:14 -0600498 eth_env_get_enetaddr("ethaddr", bd->bi_enetaddr);
Simon Glass32d0b2d2020-05-10 14:16:51 -0600499
Simon Glassc2240d42013-03-14 07:20:12 +0000500 return 0;
501}
502#endif /* CONFIG_CMD_NET */
503
504#ifdef CONFIG_CMD_KGDB
505static int initr_kgdb(void)
506{
507 puts("KGDB: ");
508 kgdb_init();
509 return 0;
510}
511#endif
512
Uri Mashiach2d8d1902017-01-19 10:51:45 +0200513#if defined(CONFIG_LED_STATUS)
Simon Glassc2240d42013-03-14 07:20:12 +0000514static int initr_status_led(void)
515{
Uri Mashiach2d8d1902017-01-19 10:51:45 +0200516#if defined(CONFIG_LED_STATUS_BOOT)
517 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +0200518#else
519 status_led_init();
520#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000521 return 0;
522}
523#endif
524
Michal Simeke8a016b2016-09-08 15:06:45 +0200525#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
Simon Glassc2240d42013-03-14 07:20:12 +0000526static int initr_scsi(void)
527{
Simon Glassc2240d42013-03-14 07:20:12 +0000528 puts("SCSI: ");
529 scsi_init();
Heinrich Schuchardt3804f5b2018-06-15 07:01:26 +0200530 puts("\n");
Simon Glass6f6430d2013-03-11 14:30:37 +0000531
532 return 0;
533}
Ian Campbell2c997e72014-07-21 19:23:18 +0100534#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000535
Simon Glass6f6430d2013-03-11 14:30:37 +0000536#ifdef CONFIG_CMD_NET
537static int initr_net(void)
538{
539 puts("Net: ");
Joe Hershbergerd2eaec62015-03-22 17:09:06 -0500540 eth_initialize();
Simon Glass6f6430d2013-03-11 14:30:37 +0000541#if defined(CONFIG_RESET_PHY_R)
542 debug("Reset Ethernet PHY\n");
543 reset_phy();
544#endif
545 return 0;
546}
547#endif
548
549#ifdef CONFIG_POST
550static int initr_post(void)
551{
552 post_run(NULL, POST_RAM | post_bootmode_get(0));
553 return 0;
554}
555#endif
556
Bin Mengec15d5f2018-06-17 05:57:50 -0700557#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
Simon Glassc2240d42013-03-14 07:20:12 +0000558static int initr_ide(void)
559{
Simon Glassc2240d42013-03-14 07:20:12 +0000560 puts("IDE: ");
Simon Glassc2240d42013-03-14 07:20:12 +0000561#if defined(CONFIG_START_IDE)
562 if (board_start_ide())
563 ide_init();
564#else
565 ide_init();
566#endif
567 return 0;
568}
569#endif
570
Simon Glassc5404b62017-12-04 13:48:23 -0700571#if defined(CONFIG_PRAM)
Simon Glass6f6430d2013-03-11 14:30:37 +0000572/*
573 * Export available size of memory for Linux, taking into account the
574 * protected RAM at top of memory
575 */
576int initr_mem(void)
577{
578 ulong pram = 0;
579 char memsz[32];
580
Simon Glassbfebc8c2017-08-03 12:22:13 -0600581 pram = env_get_ulong("pram", 10, CONFIG_PRAM);
Mario Six92f84b62018-01-15 11:10:30 +0100582 sprintf(memsz, "%ldk", (long int)((gd->ram_size / 1024) - pram));
Simon Glass382bee52017-08-03 12:22:09 -0600583 env_set("mem", memsz);
Simon Glassc2240d42013-03-14 07:20:12 +0000584
585 return 0;
586}
587#endif
588
Simon Glassff66e7b2021-12-16 20:59:34 -0700589static int dm_announce(void)
590{
591 int device_count;
592 int uclass_count;
593
594 if (IS_ENABLED(CONFIG_DM)) {
595 dm_get_stats(&device_count, &uclass_count);
596 printf("Core: %d devices, %d uclasses", device_count,
597 uclass_count);
598 if (CONFIG_IS_ENABLED(OF_REAL))
599 printf(", devicetree: %s", fdtdec_get_srcname());
600 printf("\n");
Simon Glass93233b02021-12-16 20:59:39 -0700601 if (IS_ENABLED(CONFIG_OF_HAS_PRIOR_STAGE) &&
602 (gd->fdt_src == FDTSRC_SEPARATE ||
603 gd->fdt_src == FDTSRC_EMBED)) {
604 printf("Warning: Unexpected devicetree source (not from a prior stage)");
605 printf("Warning: U-Boot may not function properly\n");
606 }
Simon Glassff66e7b2021-12-16 20:59:34 -0700607 }
608
609 return 0;
610}
611
Simon Glass6f6430d2013-03-11 14:30:37 +0000612static int run_main_loop(void)
613{
Simon Glassa733b062013-04-26 02:53:43 +0000614#ifdef CONFIG_SANDBOX
615 sandbox_main_loop_init();
616#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000617 /* main_loop() can return to retry autoboot, if so just run it again */
618 for (;;)
619 main_loop();
620 return 0;
621}
622
623/*
Alexander Graf47870af2019-01-31 16:06:23 +0100624 * We hope to remove most of the driver-related init and do it if/when
Simon Glass6f6430d2013-03-11 14:30:37 +0000625 * the driver is later used.
Simon Glassc2240d42013-03-14 07:20:12 +0000626 *
627 * TODO: perhaps reset the watchdog in the initcall function after each call?
Simon Glass6f6430d2013-03-11 14:30:37 +0000628 */
Simon Glass4acff452017-01-16 07:03:50 -0700629static init_fnc_t init_sequence_r[] = {
Simon Glass71c52db2013-06-11 11:14:42 -0700630 initr_trace,
Simon Glass6f6430d2013-03-11 14:30:37 +0000631 initr_reloc,
Simon Glassc2240d42013-03-14 07:20:12 +0000632 /* TODO: could x86/PPC have this also perhaps? */
Zong Li4d4222d2021-09-01 15:01:40 +0800633#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Simon Glass6f6430d2013-03-11 14:30:37 +0000634 initr_caches,
York Sun12eaf312015-03-20 19:28:11 -0700635 /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
636 * A temporary mapping of IFC high region is since removed,
Mario Six92f84b62018-01-15 11:10:30 +0100637 * so environmental variables in NOR flash is not available
York Sun12eaf312015-03-20 19:28:11 -0700638 * until board_init() is called below to remap IFC to high
639 * region.
640 */
Simon Glass9fb02492014-09-03 17:37:01 -0600641#endif
642 initr_reloc_global_data,
York Sunfef3e252014-10-02 15:20:10 -0700643#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
644 initr_unlock_ram_in_cache,
645#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600646 initr_barrier,
647 initr_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700648 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600649 initr_bootstage, /* Needs malloc() but has its own timer */
Ovidiu Panait51c5a2c2020-11-28 10:43:08 +0200650#if defined(CONFIG_CONSOLE_RECORD)
651 console_record_init,
652#endif
Jan Kiszka671fa632015-03-09 07:47:18 +0100653#ifdef CONFIG_SYS_NONCACHED_MEMORY
Ovidiu Panait42d0d422020-11-28 10:43:13 +0200654 noncached_init,
Jan Kiszka671fa632015-03-09 07:47:18 +0100655#endif
Simon Glass3af86a42017-05-18 20:08:56 -0600656 initr_of_live,
Simon Glass9fb02492014-09-03 17:37:01 -0600657#ifdef CONFIG_DM
658 initr_dm,
659#endif
Bin Menga43b5982021-02-25 17:22:38 +0800660#ifdef CONFIG_ADDR_MAP
661 initr_addr_map,
662#endif
Patrick Delaunay17585e22018-07-27 16:37:09 +0200663#if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || defined(CONFIG_RISCV) || \
664 defined(CONFIG_SANDBOX)
Simon Glass6f6430d2013-03-11 14:30:37 +0000665 board_init, /* Setup chipselects */
666#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000667 /*
668 * TODO: printing of the clock inforamtion of the board is now
669 * implemented as part of bdinfo command. Currently only support for
670 * davinci SOC's is added. Remove this check once all the board
671 * implement this.
672 */
673#ifdef CONFIG_CLOCKS
674 set_cpu_clk_info, /* Setup clock information */
675#endif
Alexander Graf5d009952016-03-04 01:10:04 +0100676#ifdef CONFIG_EFI_LOADER
677 efi_memory_init,
678#endif
Simon Glass3c10dc92019-12-06 21:41:34 -0700679 initr_binman,
Simon Glassfe08d392019-12-06 21:42:20 -0700680#ifdef CONFIG_FSP_VERSION2
681 arch_fsp_init_r,
682#endif
Simon Glassdd0edcb2019-12-06 21:41:46 -0700683 initr_dm_devices,
Simon Glass9fb02492014-09-03 17:37:01 -0600684 stdio_init_tables,
Ovidiu Panaitbf2fb812020-07-24 14:12:23 +0300685 serial_initialize,
Simon Glass6f6430d2013-03-11 14:30:37 +0000686 initr_announce,
Simon Glassff66e7b2021-12-16 20:59:34 -0700687 dm_announce,
Marek Vasut6874cb72019-06-09 03:46:21 +0200688#if CONFIG_IS_ENABLED(WDT)
Weijie Gao84b24162019-05-16 17:19:13 +0800689 initr_watchdog,
690#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000691 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait276b6c92020-07-24 14:12:25 +0300692#if defined(CONFIG_NEEDS_MANUAL_RELOC) && defined(CONFIG_BLOCK_CACHE)
693 blkcache_init,
694#endif
Andreas Bießmann61d7b1b2015-01-20 00:29:05 +0100695#ifdef CONFIG_NEEDS_MANUAL_RELOC
696 initr_manual_reloc_cmdtable,
697#endif
Ovidiu Panait130845b2020-11-28 10:43:18 +0200698 arch_initr_trap,
Simon Glassc2240d42013-03-14 07:20:12 +0000699#if defined(CONFIG_BOARD_EARLY_INIT_R)
700 board_early_init_r,
701#endif
702 INIT_FUNC_WATCHDOG_RESET
Simon Glass6f6430d2013-03-11 14:30:37 +0000703#ifdef CONFIG_POST
Ovidiu Panait7addd3c2020-11-28 10:43:10 +0200704 post_output_backlog,
Simon Glass6f6430d2013-03-11 14:30:37 +0000705#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000706 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panaitb9f6d0f2020-11-28 10:43:12 +0200707#if defined(CONFIG_PCI_INIT_R) && defined(CONFIG_SYS_EARLY_PCI_INIT)
Simon Glassc2240d42013-03-14 07:20:12 +0000708 /*
709 * Do early PCI configuration _before_ the flash gets initialised,
Mario Six92f84b62018-01-15 11:10:30 +0100710 * because PCU resources are crucial for flash access on some boards.
Simon Glassc2240d42013-03-14 07:20:12 +0000711 */
Ovidiu Panaitb9f6d0f2020-11-28 10:43:12 +0200712 pci_init,
Simon Glassc2240d42013-03-14 07:20:12 +0000713#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000714#ifdef CONFIG_ARCH_EARLY_INIT_R
715 arch_early_init_r,
716#endif
717 power_init_board,
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900718#ifdef CONFIG_MTD_NOR_FLASH
Simon Glass6f6430d2013-03-11 14:30:37 +0000719 initr_flash,
720#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000721 INIT_FUNC_WATCHDOG_RESET
Tom Rini936478e2017-03-14 11:08:11 -0400722#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86)
Simon Glassc2240d42013-03-14 07:20:12 +0000723 /* initialize higher level parts of CPU like time base and timers */
724 cpu_init_r,
Simon Glassbe274b92013-03-05 14:39:53 +0000725#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000726#ifdef CONFIG_CMD_NAND
727 initr_nand,
728#endif
729#ifdef CONFIG_CMD_ONENAND
730 initr_onenand,
731#endif
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900732#ifdef CONFIG_MMC
Simon Glass6f6430d2013-03-11 14:30:37 +0000733 initr_mmc,
734#endif
Oleksandr Andrushchenko48654412020-08-06 12:42:48 +0300735#ifdef CONFIG_XEN
Ovidiu Panaiteb2825b2020-11-28 10:43:14 +0200736 xen_init,
Oleksandr Andrushchenko48654412020-08-06 12:42:48 +0300737#endif
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300738#ifdef CONFIG_PVBLOCK
739 initr_pvblock,
740#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000741 initr_env,
Andreas Bießmannc722f0b2015-02-06 23:06:47 +0100742#ifdef CONFIG_SYS_BOOTPARAMS_LEN
743 initr_malloc_bootparams,
744#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000745 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panaitfb504b22020-11-28 10:43:09 +0200746 cpu_secondary_init_r,
Tom Rinid7d40f62021-08-17 17:59:41 -0400747#if defined(CONFIG_ID_EEPROM)
Simon Glassc2240d42013-03-14 07:20:12 +0000748 mac_read_from_eeprom,
749#endif
750 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panaitb9f6d0f2020-11-28 10:43:12 +0200751#if defined(CONFIG_PCI_INIT_R) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
Simon Glassc2240d42013-03-14 07:20:12 +0000752 /*
753 * Do pci configuration
754 */
Ovidiu Panaitb9f6d0f2020-11-28 10:43:12 +0200755 pci_init,
Simon Glassc2240d42013-03-14 07:20:12 +0000756#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600757 stdio_add_devices,
Ovidiu Panait01548582020-11-28 10:43:15 +0200758 jumptable_init,
Simon Glass6f6430d2013-03-11 14:30:37 +0000759#ifdef CONFIG_API
Ovidiu Panaitce41e732020-11-28 10:43:16 +0200760 api_init,
Simon Glass6f6430d2013-03-11 14:30:37 +0000761#endif
762 console_init_r, /* fully init console as a device */
763#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
Simon Glassb0895382017-06-15 21:37:50 -0600764 console_announce_r,
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900765 show_board_info,
Simon Glass6f6430d2013-03-11 14:30:37 +0000766#endif
767#ifdef CONFIG_ARCH_MISC_INIT
768 arch_misc_init, /* miscellaneous arch-dependent init */
769#endif
770#ifdef CONFIG_MISC_INIT_R
771 misc_init_r, /* miscellaneous platform-dependent init */
772#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000773 INIT_FUNC_WATCHDOG_RESET
774#ifdef CONFIG_CMD_KGDB
775 initr_kgdb,
776#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000777 interrupt_init,
Andy Shevchenkodaab59a2017-07-05 16:25:22 +0300778#if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
Simon Glassbe274b92013-03-05 14:39:53 +0000779 timer_init, /* initialize timer */
780#endif
Uri Mashiach2d8d1902017-01-19 10:51:45 +0200781#if defined(CONFIG_LED_STATUS)
Simon Glassc2240d42013-03-14 07:20:12 +0000782 initr_status_led,
783#endif
784 /* PPC has a udelay(20) here dating from 2002. Why? */
Simon Glass6f6430d2013-03-11 14:30:37 +0000785#ifdef CONFIG_CMD_NET
786 initr_ethaddr,
787#endif
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200788#if defined(CONFIG_GPIO_HOG)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200789 gpio_hog_probe_all,
790#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000791#ifdef CONFIG_BOARD_LATE_INIT
792 board_late_init,
793#endif
Michal Simeke8a016b2016-09-08 15:06:45 +0200794#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
Simon Glassc2240d42013-03-14 07:20:12 +0000795 INIT_FUNC_WATCHDOG_RESET
796 initr_scsi,
797#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000798#ifdef CONFIG_BITBANGMII
Ovidiu Panaitc65abc72020-11-28 10:43:17 +0200799 bb_miiphy_init,
Simon Glass6f6430d2013-03-11 14:30:37 +0000800#endif
Xiaowei Baofd00c532020-07-09 23:31:34 +0800801#ifdef CONFIG_PCI_ENDPOINT
Ovidiu Panaitc343e8c2020-11-28 10:43:11 +0200802 pci_ep_init,
Xiaowei Baofd00c532020-07-09 23:31:34 +0800803#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000804#ifdef CONFIG_CMD_NET
Simon Glassc2240d42013-03-14 07:20:12 +0000805 INIT_FUNC_WATCHDOG_RESET
Simon Glass6f6430d2013-03-11 14:30:37 +0000806 initr_net,
807#endif
808#ifdef CONFIG_POST
809 initr_post,
810#endif
Bin Mengec15d5f2018-06-17 05:57:50 -0700811#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
Simon Glassc2240d42013-03-14 07:20:12 +0000812 initr_ide,
813#endif
814#ifdef CONFIG_LAST_STAGE_INIT
815 INIT_FUNC_WATCHDOG_RESET
816 /*
817 * Some parts can be only initialized if all others (like
818 * Interrupts) are up and running (i.e. the PC-style ISA
819 * keyboard).
820 */
821 last_stage_init,
822#endif
823#ifdef CONFIG_CMD_BEDBUG
824 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait1a4c0772020-04-20 10:31:46 +0300825 bedbug_init,
Simon Glassc2240d42013-03-14 07:20:12 +0000826#endif
Simon Glassc5404b62017-12-04 13:48:23 -0700827#if defined(CONFIG_PRAM)
Simon Glassc2240d42013-03-14 07:20:12 +0000828 initr_mem,
829#endif
AKASHI Takahiroc57c9432020-10-29 13:47:45 +0900830#ifdef CONFIG_EFI_SETUP_EARLY
831 (init_fnc_t)efi_init_obj_list,
832#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000833 run_main_loop,
834};
835
836void board_init_r(gd_t *new_gd, ulong dest_addr)
837{
Simon Glassfb923082017-01-16 07:03:51 -0700838 /*
839 * Set up the new global data pointer. So far only x86 does this
840 * here.
841 * TODO(sjg@chromium.org): Consider doing this for all archs, or
842 * dropping the new_gd parameter.
843 */
Simon Glass86bb4882021-12-29 11:57:54 -0700844 if (CONFIG_IS_ENABLED(X86_64) && !IS_ENABLED(CONFIG_EFI_APP))
845 arch_setup_gd(new_gd);
Simon Glassfb923082017-01-16 07:03:51 -0700846
Alexey Brodkin73953982014-01-20 14:30:39 +0400847#ifdef CONFIG_NEEDS_MANUAL_RELOC
848 int i;
849#endif
850
Jeroen Hofstee47a602e2014-07-30 21:54:49 +0200851#if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
Simon Glass6f6430d2013-03-11 14:30:37 +0000852 gd = new_gd;
Simon Glassbe274b92013-03-05 14:39:53 +0000853#endif
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700854 gd->flags &= ~GD_FLG_LOG_READY;
Alexey Brodkin73953982014-01-20 14:30:39 +0400855
856#ifdef CONFIG_NEEDS_MANUAL_RELOC
857 for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
858 init_sequence_r[i] += gd->reloc_off;
859#endif
860
Simon Glass6f6430d2013-03-11 14:30:37 +0000861 if (initcall_run_list(init_sequence_r))
862 hang();
863
864 /* NOTREACHED - run_main_loop() does not return */
865 hang();
866}