Merge branch '2021-11-18-regression-fixes'
[platform/kernel/u-boot.git] / common / board_f.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 <bloblist.h>
14 #include <bootstage.h>
15 #include <clock_legacy.h>
16 #include <console.h>
17 #include <cpu.h>
18 #include <cpu_func.h>
19 #include <dm.h>
20 #include <env.h>
21 #include <env_internal.h>
22 #include <fdtdec.h>
23 #include <fs.h>
24 #include <hang.h>
25 #include <i2c.h>
26 #include <init.h>
27 #include <initcall.h>
28 #include <lcd.h>
29 #include <log.h>
30 #include <malloc.h>
31 #include <mapmem.h>
32 #include <os.h>
33 #include <post.h>
34 #include <relocate.h>
35 #include <serial.h>
36 #ifdef CONFIG_SPL
37 #include <spl.h>
38 #endif
39 #include <status_led.h>
40 #include <sysreset.h>
41 #include <timer.h>
42 #include <trace.h>
43 #include <video.h>
44 #include <watchdog.h>
45 #include <asm/cache.h>
46 #ifdef CONFIG_MACH_TYPE
47 #include <asm/mach-types.h>
48 #endif
49 #if defined(CONFIG_MP) && defined(CONFIG_PPC)
50 #include <asm/mp.h>
51 #endif
52 #include <asm/global_data.h>
53 #include <asm/io.h>
54 #include <asm/sections.h>
55 #include <dm/root.h>
56 #include <linux/errno.h>
57
58 /*
59  * Pointer to initial global data area
60  *
61  * Here we initialize it if needed.
62  */
63 #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
64 #undef  XTRN_DECLARE_GLOBAL_DATA_PTR
65 #define XTRN_DECLARE_GLOBAL_DATA_PTR    /* empty = allocate here */
66 DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
67 #else
68 DECLARE_GLOBAL_DATA_PTR;
69 #endif
70
71 /*
72  * TODO(sjg@chromium.org): IMO this code should be
73  * refactored to a single function, something like:
74  *
75  * void led_set_state(enum led_colour_t colour, int on);
76  */
77 /************************************************************************
78  * Coloured LED functionality
79  ************************************************************************
80  * May be supplied by boards if desired
81  */
82 __weak void coloured_LED_init(void) {}
83 __weak void red_led_on(void) {}
84 __weak void red_led_off(void) {}
85 __weak void green_led_on(void) {}
86 __weak void green_led_off(void) {}
87 __weak void yellow_led_on(void) {}
88 __weak void yellow_led_off(void) {}
89 __weak void blue_led_on(void) {}
90 __weak void blue_led_off(void) {}
91
92 /*
93  * Why is gd allocated a register? Prior to reloc it might be better to
94  * just pass it around to each function in this file?
95  *
96  * After reloc one could argue that it is hardly used and doesn't need
97  * to be in a register. Or if it is it should perhaps hold pointers to all
98  * global data for all modules, so that post-reloc we can avoid the massive
99  * literal pool we get on ARM. Or perhaps just encourage each module to use
100  * a structure...
101  */
102
103 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
104 static int init_func_watchdog_init(void)
105 {
106 # if defined(CONFIG_HW_WATCHDOG) && \
107         (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
108         defined(CONFIG_SH) || \
109         defined(CONFIG_DESIGNWARE_WATCHDOG) || \
110         defined(CONFIG_IMX_WATCHDOG))
111         hw_watchdog_init();
112         puts("       Watchdog enabled\n");
113 # endif
114         WATCHDOG_RESET();
115
116         return 0;
117 }
118
119 int init_func_watchdog_reset(void)
120 {
121         WATCHDOG_RESET();
122
123         return 0;
124 }
125 #endif /* CONFIG_WATCHDOG */
126
127 __weak void board_add_ram_info(int use_default)
128 {
129         /* please define platform specific board_add_ram_info() */
130 }
131
132 static int init_baud_rate(void)
133 {
134         gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
135         return 0;
136 }
137
138 static int display_text_info(void)
139 {
140 #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
141         ulong bss_start, bss_end, text_base;
142
143         bss_start = (ulong)&__bss_start;
144         bss_end = (ulong)&__bss_end;
145
146 #ifdef CONFIG_SYS_TEXT_BASE
147         text_base = CONFIG_SYS_TEXT_BASE;
148 #else
149         text_base = CONFIG_SYS_MONITOR_BASE;
150 #endif
151
152         debug("U-Boot code: %08lX -> %08lX  BSS: -> %08lX\n",
153               text_base, bss_start, bss_end);
154 #endif
155
156         return 0;
157 }
158
159 #ifdef CONFIG_SYSRESET
160 static int print_resetinfo(void)
161 {
162         struct udevice *dev;
163         char status[256];
164         int ret;
165
166         ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
167         if (ret) {
168                 debug("%s: No sysreset device found (error: %d)\n",
169                       __func__, ret);
170                 /* Not all boards have sysreset drivers available during early
171                  * boot, so don't fail if one can't be found.
172                  */
173                 return 0;
174         }
175
176         if (!sysreset_get_status(dev, status, sizeof(status)))
177                 printf("%s", status);
178
179         return 0;
180 }
181 #endif
182
183 #if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
184 static int print_cpuinfo(void)
185 {
186         struct udevice *dev;
187         char desc[512];
188         int ret;
189
190         dev = cpu_get_current_dev();
191         if (!dev) {
192                 debug("%s: Could not get CPU device\n",
193                       __func__);
194                 return -ENODEV;
195         }
196
197         ret = cpu_get_desc(dev, desc, sizeof(desc));
198         if (ret) {
199                 debug("%s: Could not get CPU description (err = %d)\n",
200                       dev->name, ret);
201                 return ret;
202         }
203
204         printf("CPU:   %s\n", desc);
205
206         return 0;
207 }
208 #endif
209
210 static int announce_dram_init(void)
211 {
212         puts("DRAM:  ");
213         return 0;
214 }
215
216 static int show_dram_config(void)
217 {
218         unsigned long long size;
219         int i;
220
221         debug("\nRAM Configuration:\n");
222         for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
223                 size += gd->bd->bi_dram[i].size;
224                 debug("Bank #%d: %llx ", i,
225                       (unsigned long long)(gd->bd->bi_dram[i].start));
226 #ifdef DEBUG
227                 print_size(gd->bd->bi_dram[i].size, "\n");
228 #endif
229         }
230         debug("\nDRAM:  ");
231
232         print_size(size, "");
233         board_add_ram_info(0);
234         putc('\n');
235
236         return 0;
237 }
238
239 __weak int dram_init_banksize(void)
240 {
241         gd->bd->bi_dram[0].start = gd->ram_base;
242         gd->bd->bi_dram[0].size = get_effective_memsize();
243
244         return 0;
245 }
246
247 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
248 static int init_func_i2c(void)
249 {
250         puts("I2C:   ");
251         i2c_init_all();
252         puts("ready\n");
253         return 0;
254 }
255 #endif
256
257 #if defined(CONFIG_VID)
258 __weak int init_func_vid(void)
259 {
260         return 0;
261 }
262 #endif
263
264 static int setup_mon_len(void)
265 {
266 #if defined(__ARM__) || defined(__MICROBLAZE__)
267         gd->mon_len = (ulong)&__bss_end - (ulong)_start;
268 #elif defined(CONFIG_SANDBOX)
269         gd->mon_len = 0;
270 #elif defined(CONFIG_EFI_APP)
271         gd->mon_len = (ulong)&_end - (ulong)_init;
272 #elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
273         gd->mon_len = CONFIG_SYS_MONITOR_LEN;
274 #elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
275         gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
276 #elif defined(CONFIG_SYS_MONITOR_BASE)
277         /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
278         gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
279 #endif
280         return 0;
281 }
282
283 static int setup_spl_handoff(void)
284 {
285 #if CONFIG_IS_ENABLED(HANDOFF)
286         gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
287                                         sizeof(struct spl_handoff));
288         debug("Found SPL hand-off info %p\n", gd->spl_handoff);
289 #endif
290
291         return 0;
292 }
293
294 __weak int arch_cpu_init(void)
295 {
296         return 0;
297 }
298
299 __weak int mach_cpu_init(void)
300 {
301         return 0;
302 }
303
304 /* Get the top of usable RAM */
305 __weak ulong board_get_usable_ram_top(ulong total_size)
306 {
307 #if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
308         /*
309          * Detect whether we have so much RAM that it goes past the end of our
310          * 32-bit address space. If so, clip the usable RAM so it doesn't.
311          */
312         if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
313                 /*
314                  * Will wrap back to top of 32-bit space when reservations
315                  * are made.
316                  */
317                 return 0;
318 #endif
319         return gd->ram_top;
320 }
321
322 static int setup_dest_addr(void)
323 {
324         debug("Monitor len: %08lX\n", gd->mon_len);
325         /*
326          * Ram is setup, size stored in gd !!
327          */
328         debug("Ram size: %08lX\n", (ulong)gd->ram_size);
329 #if defined(CONFIG_SYS_MEM_TOP_HIDE)
330         /*
331          * Subtract specified amount of memory to hide so that it won't
332          * get "touched" at all by U-Boot. By fixing up gd->ram_size
333          * the Linux kernel should now get passed the now "corrected"
334          * memory size and won't touch it either. This should work
335          * for arch/ppc and arch/powerpc. Only Linux board ports in
336          * arch/powerpc with bootwrapper support, that recalculate the
337          * memory size from the SDRAM controller setup will have to
338          * get fixed.
339          */
340         gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
341 #endif
342 #ifdef CONFIG_SYS_SDRAM_BASE
343         gd->ram_base = CONFIG_SYS_SDRAM_BASE;
344 #endif
345         gd->ram_top = gd->ram_base + get_effective_memsize();
346         gd->ram_top = board_get_usable_ram_top(gd->mon_len);
347         gd->relocaddr = gd->ram_top;
348         debug("Ram top: %08lX\n", (ulong)gd->ram_top);
349 #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
350         /*
351          * We need to make sure the location we intend to put secondary core
352          * boot code is reserved and not used by any part of u-boot
353          */
354         if (gd->relocaddr > determine_mp_bootpg(NULL)) {
355                 gd->relocaddr = determine_mp_bootpg(NULL);
356                 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
357         }
358 #endif
359         return 0;
360 }
361
362 #ifdef CONFIG_PRAM
363 /* reserve protected RAM */
364 static int reserve_pram(void)
365 {
366         ulong reg;
367
368         reg = env_get_ulong("pram", 10, CONFIG_PRAM);
369         gd->relocaddr -= (reg << 10);           /* size is in kB */
370         debug("Reserving %ldk for protected RAM at %08lx\n", reg,
371               gd->relocaddr);
372         return 0;
373 }
374 #endif /* CONFIG_PRAM */
375
376 /* Round memory pointer down to next 4 kB limit */
377 static int reserve_round_4k(void)
378 {
379         gd->relocaddr &= ~(4096 - 1);
380         return 0;
381 }
382
383 __weak int arch_reserve_mmu(void)
384 {
385         return 0;
386 }
387
388 static int reserve_video(void)
389 {
390 #ifdef CONFIG_DM_VIDEO
391         ulong addr;
392         int ret;
393
394         addr = gd->relocaddr;
395         ret = video_reserve(&addr);
396         if (ret)
397                 return ret;
398         debug("Reserving %luk for video at: %08lx\n",
399               ((unsigned long)gd->relocaddr - addr) >> 10, addr);
400         gd->relocaddr = addr;
401 #elif defined(CONFIG_LCD)
402 #  ifdef CONFIG_FB_ADDR
403         gd->fb_base = CONFIG_FB_ADDR;
404 #  else
405         /* reserve memory for LCD display (always full pages) */
406         gd->relocaddr = lcd_setmem(gd->relocaddr);
407         gd->fb_base = gd->relocaddr;
408 #  endif /* CONFIG_FB_ADDR */
409 #endif
410
411         return 0;
412 }
413
414 static int reserve_trace(void)
415 {
416 #ifdef CONFIG_TRACE
417         gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
418         gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
419         debug("Reserving %luk for trace data at: %08lx\n",
420               (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
421 #endif
422
423         return 0;
424 }
425
426 static int reserve_uboot(void)
427 {
428         if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
429                 /*
430                  * reserve memory for U-Boot code, data & bss
431                  * round down to next 4 kB limit
432                  */
433                 gd->relocaddr -= gd->mon_len;
434                 gd->relocaddr &= ~(4096 - 1);
435         #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
436                 /* round down to next 64 kB limit so that IVPR stays aligned */
437                 gd->relocaddr &= ~(65536 - 1);
438         #endif
439
440                 debug("Reserving %ldk for U-Boot at: %08lx\n",
441                       gd->mon_len >> 10, gd->relocaddr);
442         }
443
444         gd->start_addr_sp = gd->relocaddr;
445
446         return 0;
447 }
448
449 /*
450  * reserve after start_addr_sp the requested size and make the stack pointer
451  * 16-byte aligned, this alignment is needed for cast on the reserved memory
452  * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
453  *     = ARMv8 Instruction Set Overview: quad word, 16 bytes
454  */
455 static unsigned long reserve_stack_aligned(size_t size)
456 {
457         return ALIGN_DOWN(gd->start_addr_sp - size, 16);
458 }
459
460 #ifdef CONFIG_SYS_NONCACHED_MEMORY
461 static int reserve_noncached(void)
462 {
463         /*
464          * The value of gd->start_addr_sp must match the value of malloc_start
465          * calculated in boatrd_f.c:initr_malloc(), which is passed to
466          * board_r.c:mem_malloc_init() and then used by
467          * cache.c:noncached_init()
468          *
469          * These calculations must match the code in cache.c:noncached_init()
470          */
471         gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
472                 MMU_SECTION_SIZE;
473         gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
474                                    MMU_SECTION_SIZE);
475         debug("Reserving %dM for noncached_alloc() at: %08lx\n",
476               CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
477
478         return 0;
479 }
480 #endif
481
482 /* reserve memory for malloc() area */
483 static int reserve_malloc(void)
484 {
485         gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
486         debug("Reserving %dk for malloc() at: %08lx\n",
487               TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
488 #ifdef CONFIG_SYS_NONCACHED_MEMORY
489         reserve_noncached();
490 #endif
491
492         return 0;
493 }
494
495 /* (permanently) allocate a Board Info struct */
496 static int reserve_board(void)
497 {
498         if (!gd->bd) {
499                 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
500                 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
501                                                       sizeof(struct bd_info));
502                 memset(gd->bd, '\0', sizeof(struct bd_info));
503                 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
504                       sizeof(struct bd_info), gd->start_addr_sp);
505         }
506         return 0;
507 }
508
509 static int reserve_global_data(void)
510 {
511         gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
512         gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
513         debug("Reserving %zu Bytes for Global Data at: %08lx\n",
514               sizeof(gd_t), gd->start_addr_sp);
515         return 0;
516 }
517
518 static int reserve_fdt(void)
519 {
520         if (!IS_ENABLED(CONFIG_OF_EMBED)) {
521                 /*
522                  * If the device tree is sitting immediately above our image
523                  * then we must relocate it. If it is embedded in the data
524                  * section, then it will be relocated with other data.
525                  */
526                 if (gd->fdt_blob) {
527                         gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
528
529                         gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
530                         gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
531                         debug("Reserving %lu Bytes for FDT at: %08lx\n",
532                               gd->fdt_size, gd->start_addr_sp);
533                 }
534         }
535
536         return 0;
537 }
538
539 static int reserve_bootstage(void)
540 {
541 #ifdef CONFIG_BOOTSTAGE
542         int size = bootstage_get_size();
543
544         gd->start_addr_sp = reserve_stack_aligned(size);
545         gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
546         debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
547               gd->start_addr_sp);
548 #endif
549
550         return 0;
551 }
552
553 __weak int arch_reserve_stacks(void)
554 {
555         return 0;
556 }
557
558 static int reserve_stacks(void)
559 {
560         /* make stack pointer 16-byte aligned */
561         gd->start_addr_sp = reserve_stack_aligned(16);
562
563         /*
564          * let the architecture-specific code tailor gd->start_addr_sp and
565          * gd->irq_sp
566          */
567         return arch_reserve_stacks();
568 }
569
570 static int reserve_bloblist(void)
571 {
572 #ifdef CONFIG_BLOBLIST
573         /* Align to a 4KB boundary for easier reading of addresses */
574         gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp -
575                                        CONFIG_BLOBLIST_SIZE_RELOC, 0x1000);
576         gd->new_bloblist = map_sysmem(gd->start_addr_sp,
577                                       CONFIG_BLOBLIST_SIZE_RELOC);
578 #endif
579
580         return 0;
581 }
582
583 static int display_new_sp(void)
584 {
585         debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
586
587         return 0;
588 }
589
590 __weak int arch_setup_bdinfo(void)
591 {
592         return 0;
593 }
594
595 int setup_bdinfo(void)
596 {
597         struct bd_info *bd = gd->bd;
598
599         if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
600                 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
601                 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;  /* size  of SRAM */
602         }
603
604 #ifdef CONFIG_MACH_TYPE
605         bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
606 #endif
607
608         return arch_setup_bdinfo();
609 }
610
611 #ifdef CONFIG_POST
612 static int init_post(void)
613 {
614         post_bootmode_init();
615         post_run(NULL, POST_ROM | post_bootmode_get(0));
616
617         return 0;
618 }
619 #endif
620
621 static int reloc_fdt(void)
622 {
623         if (!IS_ENABLED(CONFIG_OF_EMBED)) {
624                 if (gd->flags & GD_FLG_SKIP_RELOC)
625                         return 0;
626                 if (gd->new_fdt) {
627                         memcpy(gd->new_fdt, gd->fdt_blob,
628                                fdt_totalsize(gd->fdt_blob));
629                         gd->fdt_blob = gd->new_fdt;
630                 }
631         }
632
633         return 0;
634 }
635
636 static int reloc_bootstage(void)
637 {
638 #ifdef CONFIG_BOOTSTAGE
639         if (gd->flags & GD_FLG_SKIP_RELOC)
640                 return 0;
641         if (gd->new_bootstage) {
642                 int size = bootstage_get_size();
643
644                 debug("Copying bootstage from %p to %p, size %x\n",
645                       gd->bootstage, gd->new_bootstage, size);
646                 memcpy(gd->new_bootstage, gd->bootstage, size);
647                 gd->bootstage = gd->new_bootstage;
648                 bootstage_relocate();
649         }
650 #endif
651
652         return 0;
653 }
654
655 static int reloc_bloblist(void)
656 {
657 #ifdef CONFIG_BLOBLIST
658         if (gd->flags & GD_FLG_SKIP_RELOC)
659                 return 0;
660         if (gd->new_bloblist) {
661                 int size = CONFIG_BLOBLIST_SIZE;
662
663                 debug("Copying bloblist from %p to %p, size %x\n",
664                       gd->bloblist, gd->new_bloblist, size);
665                 bloblist_reloc(gd->new_bloblist, CONFIG_BLOBLIST_SIZE_RELOC,
666                                gd->bloblist, size);
667                 gd->bloblist = gd->new_bloblist;
668         }
669 #endif
670
671         return 0;
672 }
673
674 static int setup_reloc(void)
675 {
676         if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
677 #ifdef CONFIG_SYS_TEXT_BASE
678 #ifdef ARM
679                 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
680 #elif defined(CONFIG_M68K)
681                 /*
682                  * On all ColdFire arch cpu, monitor code starts always
683                  * just after the default vector table location, so at 0x400
684                  */
685                 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
686 #elif !defined(CONFIG_SANDBOX)
687                 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
688 #endif
689 #endif
690         }
691
692         memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
693
694         if (gd->flags & GD_FLG_SKIP_RELOC) {
695                 debug("Skipping relocation due to flag\n");
696         } else {
697                 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
698                 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
699                       gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
700                       gd->start_addr_sp);
701         }
702
703         return 0;
704 }
705
706 #ifdef CONFIG_OF_BOARD_FIXUP
707 static int fix_fdt(void)
708 {
709         return board_fix_fdt((void *)gd->fdt_blob);
710 }
711 #endif
712
713 /* ARM calls relocate_code from its crt0.S */
714 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
715                 !CONFIG_IS_ENABLED(X86_64)
716
717 static int jump_to_copy(void)
718 {
719         if (gd->flags & GD_FLG_SKIP_RELOC)
720                 return 0;
721         /*
722          * x86 is special, but in a nice way. It uses a trampoline which
723          * enables the dcache if possible.
724          *
725          * For now, other archs use relocate_code(), which is implemented
726          * similarly for all archs. When we do generic relocation, hopefully
727          * we can make all archs enable the dcache prior to relocation.
728          */
729 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
730         /*
731          * SDRAM and console are now initialised. The final stack can now
732          * be setup in SDRAM. Code execution will continue in Flash, but
733          * with the stack in SDRAM and Global Data in temporary memory
734          * (CPU cache)
735          */
736         arch_setup_gd(gd->new_gd);
737         board_init_f_r_trampoline(gd->start_addr_sp);
738 #else
739         relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
740 #endif
741
742         return 0;
743 }
744 #endif
745
746 /* Record the board_init_f() bootstage (after arch_cpu_init()) */
747 static int initf_bootstage(void)
748 {
749         bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
750                         IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
751         int ret;
752
753         ret = bootstage_init(!from_spl);
754         if (ret)
755                 return ret;
756         if (from_spl) {
757                 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
758                                                CONFIG_BOOTSTAGE_STASH_SIZE);
759
760                 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
761                 if (ret && ret != -ENOENT) {
762                         debug("Failed to unstash bootstage: err=%d\n", ret);
763                         return ret;
764                 }
765         }
766
767         bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
768
769         return 0;
770 }
771
772 static int initf_dm(void)
773 {
774 #if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
775         int ret;
776
777         bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
778         ret = dm_init_and_scan(true);
779         bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
780         if (ret)
781                 return ret;
782
783         if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
784                 ret = dm_timer_init();
785                 if (ret)
786                         return ret;
787         }
788 #endif
789
790         return 0;
791 }
792
793 /* Architecture-specific memory reservation */
794 __weak int reserve_arch(void)
795 {
796         return 0;
797 }
798
799 __weak int arch_cpu_init_dm(void)
800 {
801         return 0;
802 }
803
804 __weak int checkcpu(void)
805 {
806         return 0;
807 }
808
809 __weak int clear_bss(void)
810 {
811         return 0;
812 }
813
814 static const init_fnc_t init_sequence_f[] = {
815         setup_mon_len,
816 #ifdef CONFIG_OF_CONTROL
817         fdtdec_setup,
818 #endif
819 #ifdef CONFIG_TRACE_EARLY
820         trace_early_init,
821 #endif
822         initf_malloc,
823         log_init,
824         initf_bootstage,        /* uses its own timer, so does not need DM */
825 #ifdef CONFIG_BLOBLIST
826         bloblist_init,
827 #endif
828         setup_spl_handoff,
829 #if defined(CONFIG_CONSOLE_RECORD_INIT_F)
830         console_record_init,
831 #endif
832 #if defined(CONFIG_HAVE_FSP)
833         arch_fsp_init,
834 #endif
835         arch_cpu_init,          /* basic arch cpu dependent setup */
836         mach_cpu_init,          /* SoC/machine dependent CPU setup */
837         initf_dm,
838         arch_cpu_init_dm,
839 #if defined(CONFIG_BOARD_EARLY_INIT_F)
840         board_early_init_f,
841 #endif
842 #if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
843         /* get CPU and bus clocks according to the environment variable */
844         get_clocks,             /* get CPU and bus clocks (etc.) */
845 #endif
846 #if !defined(CONFIG_M68K)
847         timer_init,             /* initialize timer */
848 #endif
849 #if defined(CONFIG_BOARD_POSTCLK_INIT)
850         board_postclk_init,
851 #endif
852         env_init,               /* initialize environment */
853         init_baud_rate,         /* initialze baudrate settings */
854         serial_init,            /* serial communications setup */
855         console_init_f,         /* stage 1 init of console */
856         display_options,        /* say that we are here */
857         display_text_info,      /* show debugging info if required */
858         checkcpu,
859 #if defined(CONFIG_SYSRESET)
860         print_resetinfo,
861 #endif
862 #if defined(CONFIG_DISPLAY_CPUINFO)
863         print_cpuinfo,          /* display cpu info (and speed) */
864 #endif
865 #if defined(CONFIG_DTB_RESELECT)
866         embedded_dtb_select,
867 #endif
868 #if defined(CONFIG_DISPLAY_BOARDINFO)
869         show_board_info,
870 #endif
871         INIT_FUNC_WATCHDOG_INIT
872 #if defined(CONFIG_MISC_INIT_F)
873         misc_init_f,
874 #endif
875         INIT_FUNC_WATCHDOG_RESET
876 #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
877         init_func_i2c,
878 #endif
879 #if defined(CONFIG_VID) && !defined(CONFIG_SPL)
880         init_func_vid,
881 #endif
882         announce_dram_init,
883         dram_init,              /* configure available RAM banks */
884 #ifdef CONFIG_POST
885         post_init_f,
886 #endif
887         INIT_FUNC_WATCHDOG_RESET
888 #if defined(CONFIG_SYS_DRAM_TEST)
889         testdram,
890 #endif /* CONFIG_SYS_DRAM_TEST */
891         INIT_FUNC_WATCHDOG_RESET
892
893 #ifdef CONFIG_POST
894         init_post,
895 #endif
896         INIT_FUNC_WATCHDOG_RESET
897         /*
898          * Now that we have DRAM mapped and working, we can
899          * relocate the code and continue running from DRAM.
900          *
901          * Reserve memory at end of RAM for (top down in that order):
902          *  - area that won't get touched by U-Boot and Linux (optional)
903          *  - kernel log buffer
904          *  - protected RAM
905          *  - LCD framebuffer
906          *  - monitor code
907          *  - board info struct
908          */
909         setup_dest_addr,
910 #ifdef CONFIG_OF_BOARD_FIXUP
911         fix_fdt,
912 #endif
913 #ifdef CONFIG_PRAM
914         reserve_pram,
915 #endif
916         reserve_round_4k,
917         arch_reserve_mmu,
918         reserve_video,
919         reserve_trace,
920         reserve_uboot,
921         reserve_malloc,
922         reserve_board,
923         reserve_global_data,
924         reserve_fdt,
925         reserve_bootstage,
926         reserve_bloblist,
927         reserve_arch,
928         reserve_stacks,
929         dram_init_banksize,
930         show_dram_config,
931         INIT_FUNC_WATCHDOG_RESET
932         setup_bdinfo,
933         display_new_sp,
934         INIT_FUNC_WATCHDOG_RESET
935         reloc_fdt,
936         reloc_bootstage,
937         reloc_bloblist,
938         setup_reloc,
939 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
940         copy_uboot_to_ram,
941         do_elf_reloc_fixups,
942 #endif
943         clear_bss,
944 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
945                 !CONFIG_IS_ENABLED(X86_64)
946         jump_to_copy,
947 #endif
948         NULL,
949 };
950
951 void board_init_f(ulong boot_flags)
952 {
953         gd->flags = boot_flags;
954         gd->have_console = 0;
955
956         if (initcall_run_list(init_sequence_f))
957                 hang();
958
959 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
960                 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
961                 !defined(CONFIG_ARC)
962         /* NOTREACHED - jump_to_copy() does not return */
963         hang();
964 #endif
965 }
966
967 #if defined(CONFIG_X86) || defined(CONFIG_ARC)
968 /*
969  * For now this code is only used on x86.
970  *
971  * init_sequence_f_r is the list of init functions which are run when
972  * U-Boot is executing from Flash with a semi-limited 'C' environment.
973  * The following limitations must be considered when implementing an
974  * '_f_r' function:
975  *  - 'static' variables are read-only
976  *  - Global Data (gd->xxx) is read/write
977  *
978  * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
979  * supported).  It _should_, if possible, copy global data to RAM and
980  * initialise the CPU caches (to speed up the relocation process)
981  *
982  * NOTE: At present only x86 uses this route, but it is intended that
983  * all archs will move to this when generic relocation is implemented.
984  */
985 static const init_fnc_t init_sequence_f_r[] = {
986 #if !CONFIG_IS_ENABLED(X86_64)
987         init_cache_f_r,
988 #endif
989
990         NULL,
991 };
992
993 void board_init_f_r(void)
994 {
995         if (initcall_run_list(init_sequence_f_r))
996                 hang();
997
998         /*
999          * The pre-relocation drivers may be using memory that has now gone
1000          * away. Mark serial as unavailable - this will fall back to the debug
1001          * UART if available.
1002          *
1003          * Do the same with log drivers since the memory may not be available.
1004          */
1005         gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
1006 #ifdef CONFIG_TIMER
1007         gd->timer = NULL;
1008 #endif
1009
1010         /*
1011          * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1012          * Transfer execution from Flash to RAM by calculating the address
1013          * of the in-RAM copy of board_init_r() and calling it
1014          */
1015         (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
1016
1017         /* NOTREACHED - board_init_r() does not return */
1018         hang();
1019 }
1020 #endif /* CONFIG_X86 */