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