common: remove bedbug debugger support
[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 #ifdef CONFIG_CMD_KGDB
502 static int initr_kgdb(void)
503 {
504         puts("KGDB:  ");
505         kgdb_init();
506         return 0;
507 }
508 #endif
509
510 #if defined(CONFIG_LED_STATUS)
511 static int initr_status_led(void)
512 {
513 #if defined(CONFIG_LED_STATUS_BOOT)
514         status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
515 #else
516         status_led_init();
517 #endif
518         return 0;
519 }
520 #endif
521
522 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
523 static int initr_scsi(void)
524 {
525         puts("SCSI:  ");
526         scsi_init();
527         puts("\n");
528
529         return 0;
530 }
531 #endif
532
533 #ifdef CONFIG_CMD_NET
534 static int initr_net(void)
535 {
536         puts("Net:   ");
537         eth_initialize();
538 #if defined(CONFIG_RESET_PHY_R)
539         debug("Reset Ethernet PHY\n");
540         reset_phy();
541 #endif
542         return 0;
543 }
544 #endif
545
546 #ifdef CONFIG_POST
547 static int initr_post(void)
548 {
549         post_run(NULL, POST_RAM | post_bootmode_get(0));
550         return 0;
551 }
552 #endif
553
554 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
555 static int initr_ide(void)
556 {
557         puts("IDE:   ");
558 #if defined(CONFIG_START_IDE)
559         if (board_start_ide())
560                 ide_init();
561 #else
562         ide_init();
563 #endif
564         return 0;
565 }
566 #endif
567
568 #if defined(CONFIG_PRAM)
569 /*
570  * Export available size of memory for Linux, taking into account the
571  * protected RAM at top of memory
572  */
573 int initr_mem(void)
574 {
575         ulong pram = 0;
576         char memsz[32];
577
578         pram = env_get_ulong("pram", 10, CONFIG_PRAM);
579         sprintf(memsz, "%ldk", (long int)((gd->ram_size / 1024) - pram));
580         env_set("mem", memsz);
581
582         return 0;
583 }
584 #endif
585
586 static int dm_announce(void)
587 {
588         int device_count;
589         int uclass_count;
590
591         if (IS_ENABLED(CONFIG_DM)) {
592                 dm_get_stats(&device_count, &uclass_count);
593                 printf("Core:  %d devices, %d uclasses", device_count,
594                        uclass_count);
595                 if (CONFIG_IS_ENABLED(OF_REAL))
596                         printf(", devicetree: %s", fdtdec_get_srcname());
597                 printf("\n");
598                 if (IS_ENABLED(CONFIG_OF_HAS_PRIOR_STAGE) &&
599                     (gd->fdt_src == FDTSRC_SEPARATE ||
600                      gd->fdt_src == FDTSRC_EMBED)) {
601                         printf("Warning: Unexpected devicetree source (not from a prior stage)");
602                         printf("Warning: U-Boot may not function properly\n");
603                 }
604         }
605
606         return 0;
607 }
608
609 static int run_main_loop(void)
610 {
611 #ifdef CONFIG_SANDBOX
612         sandbox_main_loop_init();
613 #endif
614         /* main_loop() can return to retry autoboot, if so just run it again */
615         for (;;)
616                 main_loop();
617         return 0;
618 }
619
620 /*
621  * We hope to remove most of the driver-related init and do it if/when
622  * the driver is later used.
623  *
624  * TODO: perhaps reset the watchdog in the initcall function after each call?
625  */
626 static init_fnc_t init_sequence_r[] = {
627         initr_trace,
628         initr_reloc,
629         /* TODO: could x86/PPC have this also perhaps? */
630 #if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
631         initr_caches,
632         /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
633          *       A temporary mapping of IFC high region is since removed,
634          *       so environmental variables in NOR flash is not available
635          *       until board_init() is called below to remap IFC to high
636          *       region.
637          */
638 #endif
639         initr_reloc_global_data,
640 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
641         initr_unlock_ram_in_cache,
642 #endif
643         initr_barrier,
644         initr_malloc,
645         log_init,
646         initr_bootstage,        /* Needs malloc() but has its own timer */
647 #if defined(CONFIG_CONSOLE_RECORD)
648         console_record_init,
649 #endif
650 #ifdef CONFIG_SYS_NONCACHED_MEMORY
651         noncached_init,
652 #endif
653         initr_of_live,
654 #ifdef CONFIG_DM
655         initr_dm,
656 #endif
657 #ifdef CONFIG_ADDR_MAP
658         initr_addr_map,
659 #endif
660 #if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || defined(CONFIG_RISCV) || \
661         defined(CONFIG_SANDBOX)
662         board_init,     /* Setup chipselects */
663 #endif
664         /*
665          * TODO: printing of the clock inforamtion of the board is now
666          * implemented as part of bdinfo command. Currently only support for
667          * davinci SOC's is added. Remove this check once all the board
668          * implement this.
669          */
670 #ifdef CONFIG_CLOCKS
671         set_cpu_clk_info, /* Setup clock information */
672 #endif
673 #ifdef CONFIG_EFI_LOADER
674         efi_memory_init,
675 #endif
676         initr_binman,
677 #ifdef CONFIG_FSP_VERSION2
678         arch_fsp_init_r,
679 #endif
680         initr_dm_devices,
681         stdio_init_tables,
682         serial_initialize,
683         initr_announce,
684         dm_announce,
685 #if CONFIG_IS_ENABLED(WDT)
686         initr_watchdog,
687 #endif
688         INIT_FUNC_WATCHDOG_RESET
689 #if defined(CONFIG_NEEDS_MANUAL_RELOC) && defined(CONFIG_BLOCK_CACHE)
690         blkcache_init,
691 #endif
692 #ifdef CONFIG_NEEDS_MANUAL_RELOC
693         initr_manual_reloc_cmdtable,
694 #endif
695         arch_initr_trap,
696 #if defined(CONFIG_BOARD_EARLY_INIT_R)
697         board_early_init_r,
698 #endif
699         INIT_FUNC_WATCHDOG_RESET
700 #ifdef CONFIG_POST
701         post_output_backlog,
702 #endif
703         INIT_FUNC_WATCHDOG_RESET
704 #if defined(CONFIG_PCI_INIT_R) && defined(CONFIG_SYS_EARLY_PCI_INIT)
705         /*
706          * Do early PCI configuration _before_ the flash gets initialised,
707          * because PCU resources are crucial for flash access on some boards.
708          */
709         pci_init,
710 #endif
711 #ifdef CONFIG_ARCH_EARLY_INIT_R
712         arch_early_init_r,
713 #endif
714         power_init_board,
715 #ifdef CONFIG_MTD_NOR_FLASH
716         initr_flash,
717 #endif
718         INIT_FUNC_WATCHDOG_RESET
719 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86)
720         /* initialize higher level parts of CPU like time base and timers */
721         cpu_init_r,
722 #endif
723 #ifdef CONFIG_CMD_NAND
724         initr_nand,
725 #endif
726 #ifdef CONFIG_CMD_ONENAND
727         initr_onenand,
728 #endif
729 #ifdef CONFIG_MMC
730         initr_mmc,
731 #endif
732 #ifdef CONFIG_XEN
733         xen_init,
734 #endif
735 #ifdef CONFIG_PVBLOCK
736         initr_pvblock,
737 #endif
738         initr_env,
739 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
740         initr_malloc_bootparams,
741 #endif
742         INIT_FUNC_WATCHDOG_RESET
743         cpu_secondary_init_r,
744 #if defined(CONFIG_ID_EEPROM)
745         mac_read_from_eeprom,
746 #endif
747         INIT_FUNC_WATCHDOG_RESET
748 #if defined(CONFIG_PCI_INIT_R) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
749         /*
750          * Do pci configuration
751          */
752         pci_init,
753 #endif
754         stdio_add_devices,
755         jumptable_init,
756 #ifdef CONFIG_API
757         api_init,
758 #endif
759         console_init_r,         /* fully init console as a device */
760 #ifdef CONFIG_DISPLAY_BOARDINFO_LATE
761         console_announce_r,
762         show_board_info,
763 #endif
764 #ifdef CONFIG_ARCH_MISC_INIT
765         arch_misc_init,         /* miscellaneous arch-dependent init */
766 #endif
767 #ifdef CONFIG_MISC_INIT_R
768         misc_init_r,            /* miscellaneous platform-dependent init */
769 #endif
770         INIT_FUNC_WATCHDOG_RESET
771 #ifdef CONFIG_CMD_KGDB
772         initr_kgdb,
773 #endif
774         interrupt_init,
775 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
776         timer_init,             /* initialize timer */
777 #endif
778 #if defined(CONFIG_LED_STATUS)
779         initr_status_led,
780 #endif
781         /* PPC has a udelay(20) here dating from 2002. Why? */
782 #ifdef CONFIG_CMD_NET
783         initr_ethaddr,
784 #endif
785 #if defined(CONFIG_GPIO_HOG)
786         gpio_hog_probe_all,
787 #endif
788 #ifdef CONFIG_BOARD_LATE_INIT
789         board_late_init,
790 #endif
791 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
792         INIT_FUNC_WATCHDOG_RESET
793         initr_scsi,
794 #endif
795 #ifdef CONFIG_BITBANGMII
796         bb_miiphy_init,
797 #endif
798 #ifdef CONFIG_PCI_ENDPOINT
799         pci_ep_init,
800 #endif
801 #ifdef CONFIG_CMD_NET
802         INIT_FUNC_WATCHDOG_RESET
803         initr_net,
804 #endif
805 #ifdef CONFIG_POST
806         initr_post,
807 #endif
808 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
809         initr_ide,
810 #endif
811 #ifdef CONFIG_LAST_STAGE_INIT
812         INIT_FUNC_WATCHDOG_RESET
813         /*
814          * Some parts can be only initialized if all others (like
815          * Interrupts) are up and running (i.e. the PC-style ISA
816          * keyboard).
817          */
818         last_stage_init,
819 #endif
820 #if defined(CONFIG_PRAM)
821         initr_mem,
822 #endif
823 #ifdef CONFIG_EFI_SETUP_EARLY
824         (init_fnc_t)efi_init_obj_list,
825 #endif
826         run_main_loop,
827 };
828
829 void board_init_r(gd_t *new_gd, ulong dest_addr)
830 {
831         /*
832          * Set up the new global data pointer. So far only x86 does this
833          * here.
834          * TODO(sjg@chromium.org): Consider doing this for all archs, or
835          * dropping the new_gd parameter.
836          */
837         if (CONFIG_IS_ENABLED(X86_64) && !IS_ENABLED(CONFIG_EFI_APP))
838                 arch_setup_gd(new_gd);
839
840 #ifdef CONFIG_NEEDS_MANUAL_RELOC
841         int i;
842 #endif
843
844 #if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
845         gd = new_gd;
846 #endif
847         gd->flags &= ~GD_FLG_LOG_READY;
848
849 #ifdef CONFIG_NEEDS_MANUAL_RELOC
850         for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
851                 init_sequence_r[i] += gd->reloc_off;
852 #endif
853
854         if (initcall_run_list(init_sequence_r))
855                 hang();
856
857         /* NOTREACHED - run_main_loop() does not return */
858         hang();
859 }