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