common: board_r: drop initr_kgdb wrapper
[platform/kernel/u-boot.git] / common / board_r.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
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>
10  */
11
12 #include <common.h>
13 #include <api.h>
14 #include <bootstage.h>
15 #include <cpu_func.h>
16 #include <exports.h>
17 #include <flash.h>
18 #include <hang.h>
19 #include <image.h>
20 #include <irq_func.h>
21 #include <log.h>
22 #include <net.h>
23 #include <asm/cache.h>
24 #include <asm/global_data.h>
25 #include <u-boot/crc.h>
26 #include <binman.h>
27 #include <command.h>
28 #include <console.h>
29 #include <dm.h>
30 #include <env.h>
31 #include <env_internal.h>
32 #include <fdtdec.h>
33 #include <ide.h>
34 #include <init.h>
35 #include <initcall.h>
36 /* TODO: can we just include all these headers whether needed or not? */
37 #if defined(CONFIG_CMD_KGDB)
38 #include <kgdb.h>
39 #endif
40 #include <irq_func.h>
41 #include <malloc.h>
42 #include <mapmem.h>
43 #ifdef CONFIG_BITBANGMII
44 #include <miiphy.h>
45 #endif
46 #include <mmc.h>
47 #include <mux.h>
48 #include <nand.h>
49 #include <of_live.h>
50 #include <onenand_uboot.h>
51 #include <pvblock.h>
52 #include <scsi.h>
53 #include <serial.h>
54 #include <status_led.h>
55 #include <stdio_dev.h>
56 #include <timer.h>
57 #include <trace.h>
58 #include <watchdog.h>
59 #ifdef CONFIG_XEN
60 #include <xen.h>
61 #endif
62 #ifdef CONFIG_ADDR_MAP
63 #include <asm/mmu.h>
64 #endif
65 #include <asm/sections.h>
66 #include <dm/root.h>
67 #include <dm/ofnode.h>
68 #include <linux/compiler.h>
69 #include <linux/err.h>
70 #include <efi_loader.h>
71 #include <wdt.h>
72 #if defined(CONFIG_GPIO_HOG)
73 #include <asm/gpio.h>
74 #endif
75 #ifdef CONFIG_EFI_SETUP_EARLY
76 #include <efi_loader.h>
77 #endif
78
79 DECLARE_GLOBAL_DATA_PTR;
80
81 ulong monitor_flash_len;
82
83 __weak int board_flash_wp_on(void)
84 {
85         /*
86          * Most flashes can't be detected when write protection is enabled,
87          * so provide a way to let U-Boot gracefully ignore write protected
88          * devices.
89          */
90         return 0;
91 }
92
93 __weak int cpu_secondary_init_r(void)
94 {
95         return 0;
96 }
97
98 static int initr_trace(void)
99 {
100 #ifdef CONFIG_TRACE
101         trace_init(gd->trace_buff, CONFIG_TRACE_BUFFER_SIZE);
102 #endif
103
104         return 0;
105 }
106
107 static int initr_reloc(void)
108 {
109         /* tell others: relocation done */
110         gd->flags |= GD_FLG_RELOC | GD_FLG_FULL_MALLOC_INIT;
111
112         return 0;
113 }
114
115 #if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
116 /*
117  * Some of these functions are needed purely because the functions they
118  * call return void. If we change them to return 0, these stubs can go away.
119  */
120 static int initr_caches(void)
121 {
122         /* Enable caches */
123         enable_caches();
124         return 0;
125 }
126 #endif
127
128 __weak int fixup_cpu(void)
129 {
130         return 0;
131 }
132
133 static int initr_reloc_global_data(void)
134 {
135 #ifdef __ARM__
136         monitor_flash_len = _end - __image_copy_start;
137 #elif defined(CONFIG_NDS32) || defined(CONFIG_RISCV)
138         monitor_flash_len = (ulong)&_end - (ulong)&_start;
139 #elif !defined(CONFIG_SANDBOX) && !defined(CONFIG_NIOS2)
140         monitor_flash_len = (ulong)&__init_end - gd->relocaddr;
141 #endif
142 #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
143         /*
144          * The gd->cpu pointer is set to an address in flash before relocation.
145          * We need to update it to point to the same CPU entry in RAM.
146          * TODO: why not just add gd->reloc_ofs?
147          */
148         gd->arch.cpu += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
149
150         /*
151          * If we didn't know the cpu mask & # cores, we can save them of
152          * now rather than 'computing' them constantly
153          */
154         fixup_cpu();
155 #endif
156 #ifdef CONFIG_SYS_RELOC_GD_ENV_ADDR
157         /*
158          * Relocate the early env_addr pointer unless we know it is not inside
159          * the binary. Some systems need this and for the rest, it doesn't hurt.
160          */
161         gd->env_addr += gd->reloc_off;
162 #endif
163 #ifdef CONFIG_OF_EMBED
164         /*
165          * The fdt_blob needs to be moved to new relocation address
166          * incase of FDT blob is embedded with in image
167          */
168         gd->fdt_blob += gd->reloc_off;
169 #endif
170 #ifdef CONFIG_EFI_LOADER
171         /*
172          * On the ARM architecture gd is mapped to a fixed register (r9 or x18).
173          * As this register may be overwritten by an EFI payload we save it here
174          * and restore it on every callback entered.
175          */
176         efi_save_gd();
177
178         efi_runtime_relocate(gd->relocaddr, NULL);
179 #endif
180
181         return 0;
182 }
183
184 __weak int arch_initr_trap(void)
185 {
186         return 0;
187 }
188
189 #ifdef CONFIG_ADDR_MAP
190 static int initr_addr_map(void)
191 {
192         init_addr_map();
193
194         return 0;
195 }
196 #endif
197
198 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
199 static int initr_unlock_ram_in_cache(void)
200 {
201         unlock_ram_in_cache();  /* it's time to unlock D-cache in e500 */
202         return 0;
203 }
204 #endif
205
206 static int initr_barrier(void)
207 {
208 #ifdef CONFIG_PPC
209         /* TODO: Can we not use dmb() macros for this? */
210         asm("sync ; isync");
211 #endif
212         return 0;
213 }
214
215 static int initr_malloc(void)
216 {
217         ulong malloc_start;
218
219 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
220         debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
221               gd->malloc_ptr / 1024);
222 #endif
223         /* The malloc area is immediately below the monitor copy in DRAM */
224         /*
225          * This value MUST match the value of gd->start_addr_sp in board_f.c:
226          * reserve_noncached().
227          */
228         malloc_start = gd->relocaddr - TOTAL_MALLOC_LEN;
229         mem_malloc_init((ulong)map_sysmem(malloc_start, TOTAL_MALLOC_LEN),
230                         TOTAL_MALLOC_LEN);
231         return 0;
232 }
233
234 static int initr_of_live(void)
235 {
236         if (CONFIG_IS_ENABLED(OF_LIVE)) {
237                 int ret;
238
239                 bootstage_start(BOOTSTAGE_ID_ACCUM_OF_LIVE, "of_live");
240                 ret = of_live_build(gd->fdt_blob,
241                                     (struct device_node **)gd_of_root_ptr());
242                 bootstage_accum(BOOTSTAGE_ID_ACCUM_OF_LIVE);
243                 if (ret)
244                         return ret;
245         }
246
247         return 0;
248 }
249
250 #ifdef CONFIG_DM
251 static int initr_dm(void)
252 {
253         int ret;
254
255         /* Save the pre-reloc driver model and start a new one */
256         gd->dm_root_f = gd->dm_root;
257         gd->dm_root = NULL;
258 #ifdef CONFIG_TIMER
259         gd->timer = NULL;
260 #endif
261         bootstage_start(BOOTSTAGE_ID_ACCUM_DM_R, "dm_r");
262         ret = dm_init_and_scan(false);
263         bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_R);
264         if (ret)
265                 return ret;
266
267         return 0;
268 }
269 #endif
270
271 static int initr_dm_devices(void)
272 {
273         int ret;
274
275         if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
276                 ret = dm_timer_init();
277                 if (ret)
278                         return ret;
279         }
280
281         if (IS_ENABLED(CONFIG_MULTIPLEXER)) {
282                 /*
283                  * Initialize the multiplexer controls to their default state.
284                  * This must be done early as other drivers may unknowingly
285                  * rely on it.
286                  */
287                 ret = dm_mux_init();
288                 if (ret)
289                         return ret;
290         }
291
292         return 0;
293 }
294
295 static int initr_bootstage(void)
296 {
297         bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
298
299         return 0;
300 }
301
302 __weak int power_init_board(void)
303 {
304         return 0;
305 }
306
307 static int initr_announce(void)
308 {
309         debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
310         return 0;
311 }
312
313 #ifdef CONFIG_NEEDS_MANUAL_RELOC
314 static int initr_manual_reloc_cmdtable(void)
315 {
316         fixup_cmdtable(ll_entry_start(struct cmd_tbl, cmd),
317                        ll_entry_count(struct cmd_tbl, cmd));
318         return 0;
319 }
320 #endif
321
322 static int initr_binman(void)
323 {
324         int ret;
325
326         if (!CONFIG_IS_ENABLED(BINMAN_FDT))
327                 return 0;
328
329         ret = binman_init();
330         if (ret)
331                 printf("binman_init failed:%d\n", ret);
332
333         return ret;
334 }
335
336 #if defined(CONFIG_MTD_NOR_FLASH)
337 __weak int is_flash_available(void)
338 {
339         return 1;
340 }
341
342 static int initr_flash(void)
343 {
344         ulong flash_size = 0;
345         struct bd_info *bd = gd->bd;
346
347         if (!is_flash_available())
348                 return 0;
349
350         puts("Flash: ");
351
352         if (board_flash_wp_on())
353                 printf("Uninitialized - Write Protect On\n");
354         else
355                 flash_size = flash_init();
356
357         print_size(flash_size, "");
358 #ifdef CONFIG_SYS_FLASH_CHECKSUM
359         /*
360          * Compute and print flash CRC if flashchecksum is set to 'y'
361          *
362          * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
363          */
364         if (env_get_yesno("flashchecksum") == 1) {
365                 const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE;
366
367                 printf("  CRC: %08X", crc32(0,
368                                             flash_base,
369                                             flash_size));
370         }
371 #endif /* CONFIG_SYS_FLASH_CHECKSUM */
372         putc('\n');
373
374         /* update start of FLASH memory    */
375 #ifdef CONFIG_SYS_FLASH_BASE
376         bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
377 #endif
378         /* size of FLASH memory (final value) */
379         bd->bi_flashsize = flash_size;
380
381 #if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
382         /* Make a update of the Memctrl. */
383         update_flash_size(flash_size);
384 #endif
385
386 #if defined(CONFIG_OXC) || defined(CONFIG_RMU)
387         /* flash mapped at end of memory map */
388         bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
389 #elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
390         bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
391 #endif
392         return 0;
393 }
394 #endif
395
396 #ifdef CONFIG_CMD_NAND
397 /* go init the NAND */
398 static int initr_nand(void)
399 {
400         puts("NAND:  ");
401         nand_init();
402         printf("%lu MiB\n", nand_size() / 1024);
403         return 0;
404 }
405 #endif
406
407 #if defined(CONFIG_CMD_ONENAND)
408 /* go init the NAND */
409 static int initr_onenand(void)
410 {
411         puts("NAND:  ");
412         onenand_init();
413         return 0;
414 }
415 #endif
416
417 #ifdef CONFIG_MMC
418 static int initr_mmc(void)
419 {
420         puts("MMC:   ");
421         mmc_initialize(gd->bd);
422         return 0;
423 }
424 #endif
425
426 #ifdef CONFIG_PVBLOCK
427 static int initr_pvblock(void)
428 {
429         puts("PVBLOCK: ");
430         pvblock_init();
431         return 0;
432 }
433 #endif
434
435 /*
436  * Tell if it's OK to load the environment early in boot.
437  *
438  * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
439  * if this is OK (defaulting to saying it's OK).
440  *
441  * NOTE: Loading the environment early can be a bad idea if security is
442  *       important, since no verification is done on the environment.
443  *
444  * @return 0 if environment should not be loaded, !=0 if it is ok to load
445  */
446 static int should_load_env(void)
447 {
448         if (IS_ENABLED(CONFIG_OF_CONTROL))
449                 return ofnode_conf_read_int("load-environment", 1);
450
451         if (IS_ENABLED(CONFIG_DELAY_ENVIRONMENT))
452                 return 0;
453
454         return 1;
455 }
456
457 static int initr_env(void)
458 {
459         /* initialize environment */
460         if (should_load_env())
461                 env_relocate();
462         else
463                 env_set_default(NULL, 0);
464
465         env_import_fdt();
466
467         if (IS_ENABLED(CONFIG_OF_CONTROL))
468                 env_set_hex("fdtcontroladdr",
469                             (unsigned long)map_to_sysmem(gd->fdt_blob));
470
471         /* Initialize from environment */
472         image_load_addr = env_get_ulong("loadaddr", 16, image_load_addr);
473
474         return 0;
475 }
476
477 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
478 static int initr_malloc_bootparams(void)
479 {
480         gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
481         if (!gd->bd->bi_boot_params) {
482                 puts("WARNING: Cannot allocate space for boot parameters\n");
483                 return -ENOMEM;
484         }
485         return 0;
486 }
487 #endif
488
489 #ifdef CONFIG_CMD_NET
490 static int initr_ethaddr(void)
491 {
492         struct bd_info *bd = gd->bd;
493
494         /* kept around for legacy kernels only ... ignore the next section */
495         eth_env_get_enetaddr("ethaddr", bd->bi_enetaddr);
496
497         return 0;
498 }
499 #endif /* CONFIG_CMD_NET */
500
501 #if defined(CONFIG_LED_STATUS)
502 static int initr_status_led(void)
503 {
504 #if defined(CONFIG_LED_STATUS_BOOT)
505         status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
506 #else
507         status_led_init();
508 #endif
509         return 0;
510 }
511 #endif
512
513 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
514 static int initr_scsi(void)
515 {
516         puts("SCSI:  ");
517         scsi_init();
518         puts("\n");
519
520         return 0;
521 }
522 #endif
523
524 #ifdef CONFIG_CMD_NET
525 static int initr_net(void)
526 {
527         puts("Net:   ");
528         eth_initialize();
529 #if defined(CONFIG_RESET_PHY_R)
530         debug("Reset Ethernet PHY\n");
531         reset_phy();
532 #endif
533         return 0;
534 }
535 #endif
536
537 #ifdef CONFIG_POST
538 static int initr_post(void)
539 {
540         post_run(NULL, POST_RAM | post_bootmode_get(0));
541         return 0;
542 }
543 #endif
544
545 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
546 static int initr_ide(void)
547 {
548         puts("IDE:   ");
549 #if defined(CONFIG_START_IDE)
550         if (board_start_ide())
551                 ide_init();
552 #else
553         ide_init();
554 #endif
555         return 0;
556 }
557 #endif
558
559 #if defined(CONFIG_PRAM)
560 /*
561  * Export available size of memory for Linux, taking into account the
562  * protected RAM at top of memory
563  */
564 int initr_mem(void)
565 {
566         ulong pram = 0;
567         char memsz[32];
568
569         pram = env_get_ulong("pram", 10, CONFIG_PRAM);
570         sprintf(memsz, "%ldk", (long int)((gd->ram_size / 1024) - pram));
571         env_set("mem", memsz);
572
573         return 0;
574 }
575 #endif
576
577 static int dm_announce(void)
578 {
579         int device_count;
580         int uclass_count;
581
582         if (IS_ENABLED(CONFIG_DM)) {
583                 dm_get_stats(&device_count, &uclass_count);
584                 printf("Core:  %d devices, %d uclasses", device_count,
585                        uclass_count);
586                 if (CONFIG_IS_ENABLED(OF_REAL))
587                         printf(", devicetree: %s", fdtdec_get_srcname());
588                 printf("\n");
589                 if (IS_ENABLED(CONFIG_OF_HAS_PRIOR_STAGE) &&
590                     (gd->fdt_src == FDTSRC_SEPARATE ||
591                      gd->fdt_src == FDTSRC_EMBED)) {
592                         printf("Warning: Unexpected devicetree source (not from a prior stage)");
593                         printf("Warning: U-Boot may not function properly\n");
594                 }
595         }
596
597         return 0;
598 }
599
600 static int run_main_loop(void)
601 {
602 #ifdef CONFIG_SANDBOX
603         sandbox_main_loop_init();
604 #endif
605         /* main_loop() can return to retry autoboot, if so just run it again */
606         for (;;)
607                 main_loop();
608         return 0;
609 }
610
611 /*
612  * We hope to remove most of the driver-related init and do it if/when
613  * the driver is later used.
614  *
615  * TODO: perhaps reset the watchdog in the initcall function after each call?
616  */
617 static init_fnc_t init_sequence_r[] = {
618         initr_trace,
619         initr_reloc,
620         /* TODO: could x86/PPC have this also perhaps? */
621 #if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
622         initr_caches,
623         /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
624          *       A temporary mapping of IFC high region is since removed,
625          *       so environmental variables in NOR flash is not available
626          *       until board_init() is called below to remap IFC to high
627          *       region.
628          */
629 #endif
630         initr_reloc_global_data,
631 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
632         initr_unlock_ram_in_cache,
633 #endif
634         initr_barrier,
635         initr_malloc,
636         log_init,
637         initr_bootstage,        /* Needs malloc() but has its own timer */
638 #if defined(CONFIG_CONSOLE_RECORD)
639         console_record_init,
640 #endif
641 #ifdef CONFIG_SYS_NONCACHED_MEMORY
642         noncached_init,
643 #endif
644         initr_of_live,
645 #ifdef CONFIG_DM
646         initr_dm,
647 #endif
648 #ifdef CONFIG_ADDR_MAP
649         initr_addr_map,
650 #endif
651 #if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || defined(CONFIG_RISCV) || \
652         defined(CONFIG_SANDBOX)
653         board_init,     /* Setup chipselects */
654 #endif
655         /*
656          * TODO: printing of the clock inforamtion of the board is now
657          * implemented as part of bdinfo command. Currently only support for
658          * davinci SOC's is added. Remove this check once all the board
659          * implement this.
660          */
661 #ifdef CONFIG_CLOCKS
662         set_cpu_clk_info, /* Setup clock information */
663 #endif
664 #ifdef CONFIG_EFI_LOADER
665         efi_memory_init,
666 #endif
667         initr_binman,
668 #ifdef CONFIG_FSP_VERSION2
669         arch_fsp_init_r,
670 #endif
671         initr_dm_devices,
672         stdio_init_tables,
673         serial_initialize,
674         initr_announce,
675         dm_announce,
676 #if CONFIG_IS_ENABLED(WDT)
677         initr_watchdog,
678 #endif
679         INIT_FUNC_WATCHDOG_RESET
680 #if defined(CONFIG_NEEDS_MANUAL_RELOC) && defined(CONFIG_BLOCK_CACHE)
681         blkcache_init,
682 #endif
683 #ifdef CONFIG_NEEDS_MANUAL_RELOC
684         initr_manual_reloc_cmdtable,
685 #endif
686         arch_initr_trap,
687 #if defined(CONFIG_BOARD_EARLY_INIT_R)
688         board_early_init_r,
689 #endif
690         INIT_FUNC_WATCHDOG_RESET
691 #ifdef CONFIG_POST
692         post_output_backlog,
693 #endif
694         INIT_FUNC_WATCHDOG_RESET
695 #if defined(CONFIG_PCI_INIT_R) && defined(CONFIG_SYS_EARLY_PCI_INIT)
696         /*
697          * Do early PCI configuration _before_ the flash gets initialised,
698          * because PCU resources are crucial for flash access on some boards.
699          */
700         pci_init,
701 #endif
702 #ifdef CONFIG_ARCH_EARLY_INIT_R
703         arch_early_init_r,
704 #endif
705         power_init_board,
706 #ifdef CONFIG_MTD_NOR_FLASH
707         initr_flash,
708 #endif
709         INIT_FUNC_WATCHDOG_RESET
710 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86)
711         /* initialize higher level parts of CPU like time base and timers */
712         cpu_init_r,
713 #endif
714 #ifdef CONFIG_CMD_NAND
715         initr_nand,
716 #endif
717 #ifdef CONFIG_CMD_ONENAND
718         initr_onenand,
719 #endif
720 #ifdef CONFIG_MMC
721         initr_mmc,
722 #endif
723 #ifdef CONFIG_XEN
724         xen_init,
725 #endif
726 #ifdef CONFIG_PVBLOCK
727         initr_pvblock,
728 #endif
729         initr_env,
730 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
731         initr_malloc_bootparams,
732 #endif
733         INIT_FUNC_WATCHDOG_RESET
734         cpu_secondary_init_r,
735 #if defined(CONFIG_ID_EEPROM)
736         mac_read_from_eeprom,
737 #endif
738         INIT_FUNC_WATCHDOG_RESET
739 #if defined(CONFIG_PCI_INIT_R) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
740         /*
741          * Do pci configuration
742          */
743         pci_init,
744 #endif
745         stdio_add_devices,
746         jumptable_init,
747 #ifdef CONFIG_API
748         api_init,
749 #endif
750         console_init_r,         /* fully init console as a device */
751 #ifdef CONFIG_DISPLAY_BOARDINFO_LATE
752         console_announce_r,
753         show_board_info,
754 #endif
755 #ifdef CONFIG_ARCH_MISC_INIT
756         arch_misc_init,         /* miscellaneous arch-dependent init */
757 #endif
758 #ifdef CONFIG_MISC_INIT_R
759         misc_init_r,            /* miscellaneous platform-dependent init */
760 #endif
761         INIT_FUNC_WATCHDOG_RESET
762 #ifdef CONFIG_CMD_KGDB
763         kgdb_init,
764 #endif
765         interrupt_init,
766 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
767         timer_init,             /* initialize timer */
768 #endif
769 #if defined(CONFIG_LED_STATUS)
770         initr_status_led,
771 #endif
772         /* PPC has a udelay(20) here dating from 2002. Why? */
773 #ifdef CONFIG_CMD_NET
774         initr_ethaddr,
775 #endif
776 #if defined(CONFIG_GPIO_HOG)
777         gpio_hog_probe_all,
778 #endif
779 #ifdef CONFIG_BOARD_LATE_INIT
780         board_late_init,
781 #endif
782 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
783         INIT_FUNC_WATCHDOG_RESET
784         initr_scsi,
785 #endif
786 #ifdef CONFIG_BITBANGMII
787         bb_miiphy_init,
788 #endif
789 #ifdef CONFIG_PCI_ENDPOINT
790         pci_ep_init,
791 #endif
792 #ifdef CONFIG_CMD_NET
793         INIT_FUNC_WATCHDOG_RESET
794         initr_net,
795 #endif
796 #ifdef CONFIG_POST
797         initr_post,
798 #endif
799 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
800         initr_ide,
801 #endif
802 #ifdef CONFIG_LAST_STAGE_INIT
803         INIT_FUNC_WATCHDOG_RESET
804         /*
805          * Some parts can be only initialized if all others (like
806          * Interrupts) are up and running (i.e. the PC-style ISA
807          * keyboard).
808          */
809         last_stage_init,
810 #endif
811 #if defined(CONFIG_PRAM)
812         initr_mem,
813 #endif
814 #ifdef CONFIG_EFI_SETUP_EARLY
815         (init_fnc_t)efi_init_obj_list,
816 #endif
817         run_main_loop,
818 };
819
820 void board_init_r(gd_t *new_gd, ulong dest_addr)
821 {
822         /*
823          * Set up the new global data pointer. So far only x86 does this
824          * here.
825          * TODO(sjg@chromium.org): Consider doing this for all archs, or
826          * dropping the new_gd parameter.
827          */
828         if (CONFIG_IS_ENABLED(X86_64) && !IS_ENABLED(CONFIG_EFI_APP))
829                 arch_setup_gd(new_gd);
830
831 #ifdef CONFIG_NEEDS_MANUAL_RELOC
832         int i;
833 #endif
834
835 #if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
836         gd = new_gd;
837 #endif
838         gd->flags &= ~GD_FLG_LOG_READY;
839
840 #ifdef CONFIG_NEEDS_MANUAL_RELOC
841         for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
842                 init_sequence_r[i] += gd->reloc_off;
843 #endif
844
845         if (initcall_run_list(init_sequence_r))
846                 hang();
847
848         /* NOTREACHED - run_main_loop() does not return */
849         hang();
850 }