dm: Avoid using #ifdef for CONFIG_OF_LIVE
[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 static int initr_of_live(void)
300 {
301         if (CONFIG_IS_ENABLED(OF_LIVE)) {
302                 int ret;
303
304                 bootstage_start(BOOTSTAGE_ID_ACCUM_OF_LIVE, "of_live");
305                 ret = of_live_build(gd->fdt_blob,
306                                     (struct device_node **)gd_of_root_ptr());
307                 bootstage_accum(BOOTSTAGE_ID_ACCUM_OF_LIVE);
308                 if (ret)
309                         return ret;
310         }
311
312         return 0;
313 }
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         if (IS_ENABLED(CONFIG_MULTIPLEXER)) {
347                 /*
348                  * Initialize the multiplexer controls to their default state.
349                  * This must be done early as other drivers may unknowingly
350                  * rely on it.
351                  */
352                 ret = dm_mux_init();
353                 if (ret)
354                         return ret;
355         }
356
357         return 0;
358 }
359
360 static int initr_bootstage(void)
361 {
362         bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
363
364         return 0;
365 }
366
367 __weak int power_init_board(void)
368 {
369         return 0;
370 }
371
372 static int initr_announce(void)
373 {
374         debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
375         return 0;
376 }
377
378 #ifdef CONFIG_NEEDS_MANUAL_RELOC
379 static int initr_manual_reloc_cmdtable(void)
380 {
381         fixup_cmdtable(ll_entry_start(struct cmd_tbl, cmd),
382                        ll_entry_count(struct cmd_tbl, cmd));
383         return 0;
384 }
385 #endif
386
387 static int initr_binman(void)
388 {
389         if (!CONFIG_IS_ENABLED(BINMAN_FDT))
390                 return 0;
391
392         return binman_init();
393 }
394
395 #if defined(CONFIG_MTD_NOR_FLASH)
396 __weak int is_flash_available(void)
397 {
398         return 1;
399 }
400
401 static int initr_flash(void)
402 {
403         ulong flash_size = 0;
404         struct bd_info *bd = gd->bd;
405
406         if (!is_flash_available())
407                 return 0;
408
409         puts("Flash: ");
410
411         if (board_flash_wp_on())
412                 printf("Uninitialized - Write Protect On\n");
413         else
414                 flash_size = flash_init();
415
416         print_size(flash_size, "");
417 #ifdef CONFIG_SYS_FLASH_CHECKSUM
418         /*
419          * Compute and print flash CRC if flashchecksum is set to 'y'
420          *
421          * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
422          */
423         if (env_get_yesno("flashchecksum") == 1) {
424                 const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE;
425
426                 printf("  CRC: %08X", crc32(0,
427                                             flash_base,
428                                             flash_size));
429         }
430 #endif /* CONFIG_SYS_FLASH_CHECKSUM */
431         putc('\n');
432
433         /* update start of FLASH memory    */
434 #ifdef CONFIG_SYS_FLASH_BASE
435         bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
436 #endif
437         /* size of FLASH memory (final value) */
438         bd->bi_flashsize = flash_size;
439
440 #if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
441         /* Make a update of the Memctrl. */
442         update_flash_size(flash_size);
443 #endif
444
445 #if defined(CONFIG_OXC) || defined(CONFIG_RMU)
446         /* flash mapped at end of memory map */
447         bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
448 #elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
449         bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
450 #endif
451         return 0;
452 }
453 #endif
454
455 #ifdef CONFIG_CMD_NAND
456 /* go init the NAND */
457 static int initr_nand(void)
458 {
459         puts("NAND:  ");
460         nand_init();
461         printf("%lu MiB\n", nand_size() / 1024);
462         return 0;
463 }
464 #endif
465
466 #if defined(CONFIG_CMD_ONENAND)
467 /* go init the NAND */
468 static int initr_onenand(void)
469 {
470         puts("NAND:  ");
471         onenand_init();
472         return 0;
473 }
474 #endif
475
476 #ifdef CONFIG_MMC
477 static int initr_mmc(void)
478 {
479         puts("MMC:   ");
480         mmc_initialize(gd->bd);
481         return 0;
482 }
483 #endif
484
485 #ifdef CONFIG_XEN
486 static int initr_xen(void)
487 {
488         xen_init();
489         return 0;
490 }
491 #endif
492
493 #ifdef CONFIG_PVBLOCK
494 static int initr_pvblock(void)
495 {
496         puts("PVBLOCK: ");
497         pvblock_init();
498         return 0;
499 }
500 #endif
501
502 /*
503  * Tell if it's OK to load the environment early in boot.
504  *
505  * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
506  * if this is OK (defaulting to saying it's OK).
507  *
508  * NOTE: Loading the environment early can be a bad idea if security is
509  *       important, since no verification is done on the environment.
510  *
511  * @return 0 if environment should not be loaded, !=0 if it is ok to load
512  */
513 static int should_load_env(void)
514 {
515         if (IS_ENABLED(CONFIG_OF_CONTROL))
516                 return fdtdec_get_config_int(gd->fdt_blob,
517                                                 "load-environment", 1);
518
519         if (IS_ENABLED(CONFIG_DELAY_ENVIRONMENT))
520                 return 0;
521
522         return 1;
523 }
524
525 static int initr_env(void)
526 {
527         /* initialize environment */
528         if (should_load_env())
529                 env_relocate();
530         else
531                 env_set_default(NULL, 0);
532
533         if (IS_ENABLED(CONFIG_OF_CONTROL))
534                 env_set_hex("fdtcontroladdr",
535                             (unsigned long)map_to_sysmem(gd->fdt_blob));
536
537         /* Initialize from environment */
538         image_load_addr = env_get_ulong("loadaddr", 16, image_load_addr);
539
540         return 0;
541 }
542
543 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
544 static int initr_malloc_bootparams(void)
545 {
546         gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
547         if (!gd->bd->bi_boot_params) {
548                 puts("WARNING: Cannot allocate space for boot parameters\n");
549                 return -ENOMEM;
550         }
551         return 0;
552 }
553 #endif
554
555 static int initr_jumptable(void)
556 {
557         jumptable_init();
558         return 0;
559 }
560
561 #if defined(CONFIG_API)
562 static int initr_api(void)
563 {
564         /* Initialize API */
565         api_init();
566         return 0;
567 }
568 #endif
569
570 #ifdef CONFIG_CMD_NET
571 static int initr_ethaddr(void)
572 {
573         struct bd_info *bd = gd->bd;
574
575         /* kept around for legacy kernels only ... ignore the next section */
576         eth_env_get_enetaddr("ethaddr", bd->bi_enetaddr);
577
578         return 0;
579 }
580 #endif /* CONFIG_CMD_NET */
581
582 #ifdef CONFIG_CMD_KGDB
583 static int initr_kgdb(void)
584 {
585         puts("KGDB:  ");
586         kgdb_init();
587         return 0;
588 }
589 #endif
590
591 #if defined(CONFIG_LED_STATUS)
592 static int initr_status_led(void)
593 {
594 #if defined(CONFIG_LED_STATUS_BOOT)
595         status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
596 #else
597         status_led_init();
598 #endif
599         return 0;
600 }
601 #endif
602
603 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
604 static int initr_scsi(void)
605 {
606         puts("SCSI:  ");
607         scsi_init();
608         puts("\n");
609
610         return 0;
611 }
612 #endif
613
614 #ifdef CONFIG_BITBANGMII
615 static int initr_bbmii(void)
616 {
617         bb_miiphy_init();
618         return 0;
619 }
620 #endif
621
622 #ifdef CONFIG_CMD_NET
623 static int initr_net(void)
624 {
625         puts("Net:   ");
626         eth_initialize();
627 #if defined(CONFIG_RESET_PHY_R)
628         debug("Reset Ethernet PHY\n");
629         reset_phy();
630 #endif
631         return 0;
632 }
633 #endif
634
635 #ifdef CONFIG_POST
636 static int initr_post(void)
637 {
638         post_run(NULL, POST_RAM | post_bootmode_get(0));
639         return 0;
640 }
641 #endif
642
643 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
644 static int initr_ide(void)
645 {
646         puts("IDE:   ");
647 #if defined(CONFIG_START_IDE)
648         if (board_start_ide())
649                 ide_init();
650 #else
651         ide_init();
652 #endif
653         return 0;
654 }
655 #endif
656
657 #if defined(CONFIG_PRAM)
658 /*
659  * Export available size of memory for Linux, taking into account the
660  * protected RAM at top of memory
661  */
662 int initr_mem(void)
663 {
664         ulong pram = 0;
665         char memsz[32];
666
667         pram = env_get_ulong("pram", 10, CONFIG_PRAM);
668         sprintf(memsz, "%ldk", (long int)((gd->ram_size / 1024) - pram));
669         env_set("mem", memsz);
670
671         return 0;
672 }
673 #endif
674
675 static int run_main_loop(void)
676 {
677 #ifdef CONFIG_SANDBOX
678         sandbox_main_loop_init();
679 #endif
680         /* main_loop() can return to retry autoboot, if so just run it again */
681         for (;;)
682                 main_loop();
683         return 0;
684 }
685
686 /*
687  * We hope to remove most of the driver-related init and do it if/when
688  * the driver is later used.
689  *
690  * TODO: perhaps reset the watchdog in the initcall function after each call?
691  */
692 static init_fnc_t init_sequence_r[] = {
693         initr_trace,
694         initr_reloc,
695         /* TODO: could x86/PPC have this also perhaps? */
696 #ifdef CONFIG_ARM
697         initr_caches,
698         /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
699          *       A temporary mapping of IFC high region is since removed,
700          *       so environmental variables in NOR flash is not available
701          *       until board_init() is called below to remap IFC to high
702          *       region.
703          */
704 #endif
705         initr_reloc_global_data,
706 #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
707         initr_unlock_ram_in_cache,
708 #endif
709         initr_barrier,
710         initr_malloc,
711         log_init,
712         initr_bootstage,        /* Needs malloc() but has its own timer */
713         initr_console_record,
714 #ifdef CONFIG_SYS_NONCACHED_MEMORY
715         initr_noncached,
716 #endif
717         initr_of_live,
718 #ifdef CONFIG_DM
719         initr_dm,
720 #endif
721 #if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || defined(CONFIG_RISCV) || \
722         defined(CONFIG_SANDBOX)
723         board_init,     /* Setup chipselects */
724 #endif
725         /*
726          * TODO: printing of the clock inforamtion of the board is now
727          * implemented as part of bdinfo command. Currently only support for
728          * davinci SOC's is added. Remove this check once all the board
729          * implement this.
730          */
731 #ifdef CONFIG_CLOCKS
732         set_cpu_clk_info, /* Setup clock information */
733 #endif
734 #ifdef CONFIG_EFI_LOADER
735         efi_memory_init,
736 #endif
737         initr_binman,
738 #ifdef CONFIG_FSP_VERSION2
739         arch_fsp_init_r,
740 #endif
741         initr_dm_devices,
742         stdio_init_tables,
743         serial_initialize,
744         initr_announce,
745 #if CONFIG_IS_ENABLED(WDT)
746         initr_watchdog,
747 #endif
748         INIT_FUNC_WATCHDOG_RESET
749 #if defined(CONFIG_NEEDS_MANUAL_RELOC) && defined(CONFIG_BLOCK_CACHE)
750         blkcache_init,
751 #endif
752 #ifdef CONFIG_NEEDS_MANUAL_RELOC
753         initr_manual_reloc_cmdtable,
754 #endif
755 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
756         initr_trap,
757 #endif
758 #ifdef CONFIG_ADDR_MAP
759         initr_addr_map,
760 #endif
761 #if defined(CONFIG_BOARD_EARLY_INIT_R)
762         board_early_init_r,
763 #endif
764         INIT_FUNC_WATCHDOG_RESET
765 #ifdef CONFIG_POST
766         initr_post_backlog,
767 #endif
768         INIT_FUNC_WATCHDOG_RESET
769 #if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
770         /*
771          * Do early PCI configuration _before_ the flash gets initialised,
772          * because PCU resources are crucial for flash access on some boards.
773          */
774         initr_pci,
775 #endif
776 #ifdef CONFIG_ARCH_EARLY_INIT_R
777         arch_early_init_r,
778 #endif
779         power_init_board,
780 #ifdef CONFIG_MTD_NOR_FLASH
781         initr_flash,
782 #endif
783         INIT_FUNC_WATCHDOG_RESET
784 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86)
785         /* initialize higher level parts of CPU like time base and timers */
786         cpu_init_r,
787 #endif
788 #ifdef CONFIG_CMD_NAND
789         initr_nand,
790 #endif
791 #ifdef CONFIG_CMD_ONENAND
792         initr_onenand,
793 #endif
794 #ifdef CONFIG_MMC
795         initr_mmc,
796 #endif
797 #ifdef CONFIG_XEN
798         initr_xen,
799 #endif
800 #ifdef CONFIG_PVBLOCK
801         initr_pvblock,
802 #endif
803         initr_env,
804 #ifdef CONFIG_SYS_BOOTPARAMS_LEN
805         initr_malloc_bootparams,
806 #endif
807         INIT_FUNC_WATCHDOG_RESET
808         initr_secondary_cpu,
809 #if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
810         mac_read_from_eeprom,
811 #endif
812         INIT_FUNC_WATCHDOG_RESET
813 #if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
814         /*
815          * Do pci configuration
816          */
817         initr_pci,
818 #endif
819         stdio_add_devices,
820         initr_jumptable,
821 #ifdef CONFIG_API
822         initr_api,
823 #endif
824         console_init_r,         /* fully init console as a device */
825 #ifdef CONFIG_DISPLAY_BOARDINFO_LATE
826         console_announce_r,
827         show_board_info,
828 #endif
829 #ifdef CONFIG_ARCH_MISC_INIT
830         arch_misc_init,         /* miscellaneous arch-dependent init */
831 #endif
832 #ifdef CONFIG_MISC_INIT_R
833         misc_init_r,            /* miscellaneous platform-dependent init */
834 #endif
835         INIT_FUNC_WATCHDOG_RESET
836 #ifdef CONFIG_CMD_KGDB
837         initr_kgdb,
838 #endif
839         interrupt_init,
840 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
841         timer_init,             /* initialize timer */
842 #endif
843 #if defined(CONFIG_LED_STATUS)
844         initr_status_led,
845 #endif
846         /* PPC has a udelay(20) here dating from 2002. Why? */
847 #ifdef CONFIG_CMD_NET
848         initr_ethaddr,
849 #endif
850 #if defined(CONFIG_GPIO_HOG)
851         gpio_hog_probe_all,
852 #endif
853 #ifdef CONFIG_BOARD_LATE_INIT
854         board_late_init,
855 #endif
856 #if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
857         INIT_FUNC_WATCHDOG_RESET
858         initr_scsi,
859 #endif
860 #ifdef CONFIG_BITBANGMII
861         initr_bbmii,
862 #endif
863 #ifdef CONFIG_PCI_ENDPOINT
864         initr_pci_ep,
865 #endif
866 #ifdef CONFIG_CMD_NET
867         INIT_FUNC_WATCHDOG_RESET
868         initr_net,
869 #endif
870 #ifdef CONFIG_POST
871         initr_post,
872 #endif
873 #if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
874         initr_ide,
875 #endif
876 #ifdef CONFIG_LAST_STAGE_INIT
877         INIT_FUNC_WATCHDOG_RESET
878         /*
879          * Some parts can be only initialized if all others (like
880          * Interrupts) are up and running (i.e. the PC-style ISA
881          * keyboard).
882          */
883         last_stage_init,
884 #endif
885 #ifdef CONFIG_CMD_BEDBUG
886         INIT_FUNC_WATCHDOG_RESET
887         bedbug_init,
888 #endif
889 #if defined(CONFIG_PRAM)
890         initr_mem,
891 #endif
892         run_main_loop,
893 };
894
895 void board_init_r(gd_t *new_gd, ulong dest_addr)
896 {
897         /*
898          * Set up the new global data pointer. So far only x86 does this
899          * here.
900          * TODO(sjg@chromium.org): Consider doing this for all archs, or
901          * dropping the new_gd parameter.
902          */
903 #if CONFIG_IS_ENABLED(X86_64)
904         arch_setup_gd(new_gd);
905 #endif
906
907 #ifdef CONFIG_NEEDS_MANUAL_RELOC
908         int i;
909 #endif
910
911 #if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
912         gd = new_gd;
913 #endif
914         gd->flags &= ~GD_FLG_LOG_READY;
915
916 #ifdef CONFIG_NEEDS_MANUAL_RELOC
917         for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
918                 init_sequence_r[i] += gd->reloc_off;
919 #endif
920
921         if (initcall_run_list(init_sequence_r))
922                 hang();
923
924         /* NOTREACHED - run_main_loop() does not return */
925         hang();
926 }