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