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