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