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