]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/board_f.c
common: Rewrite hiding the end of memory
[people/ms/u-boot.git] / common / board_f.c
CommitLineData
1938f4a5
SG
1/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
1a459660 10 * SPDX-License-Identifier: GPL-2.0+
1938f4a5
SG
11 */
12
13#include <common.h>
14#include <linux/compiler.h>
15#include <version.h>
24b852a7 16#include <console.h>
1938f4a5 17#include <environment.h>
ab7cd627 18#include <dm.h>
1938f4a5 19#include <fdtdec.h>
f828bf25 20#include <fs.h>
e4fef6cf
SG
21#if defined(CONFIG_CMD_IDE)
22#include <ide.h>
23#endif
24#include <i2c.h>
1938f4a5
SG
25#include <initcall.h>
26#include <logbuff.h>
fb5cf7f1 27#include <malloc.h>
0eb25b61 28#include <mapmem.h>
e4fef6cf
SG
29
30/* TODO: Can we move these into arch/ headers? */
31#ifdef CONFIG_8xx
32#include <mpc8xx.h>
33#endif
34#ifdef CONFIG_5xx
35#include <mpc5xx.h>
36#endif
37#ifdef CONFIG_MPC5xxx
38#include <mpc5xxx.h>
39#endif
ec3b4820 40#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
a76df709
GH
41#include <asm/mp.h>
42#endif
e4fef6cf 43
a733b06b 44#include <os.h>
1938f4a5 45#include <post.h>
e4fef6cf 46#include <spi.h>
c5d4001a 47#include <status_led.h>
71c52dba 48#include <trace.h>
e4fef6cf 49#include <watchdog.h>
a733b06b 50#include <asm/errno.h>
1938f4a5
SG
51#include <asm/io.h>
52#include <asm/sections.h>
3fb80163 53#if defined(CONFIG_X86) || defined(CONFIG_ARC)
48a33806
SG
54#include <asm/init_helpers.h>
55#include <asm/relocate.h>
56#endif
a733b06b
SG
57#ifdef CONFIG_SANDBOX
58#include <asm/state.h>
59#endif
ab7cd627 60#include <dm/root.h>
1938f4a5
SG
61#include <linux/compiler.h>
62
63/*
64 * Pointer to initial global data area
65 *
66 * Here we initialize it if needed.
67 */
68#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
69#undef XTRN_DECLARE_GLOBAL_DATA_PTR
70#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
71DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
72#else
73DECLARE_GLOBAL_DATA_PTR;
74#endif
75
76/*
4c509343 77 * TODO(sjg@chromium.org): IMO this code should be
1938f4a5
SG
78 * refactored to a single function, something like:
79 *
80 * void led_set_state(enum led_colour_t colour, int on);
81 */
82/************************************************************************
83 * Coloured LED functionality
84 ************************************************************************
85 * May be supplied by boards if desired
86 */
c5d4001a
JH
87__weak void coloured_LED_init(void) {}
88__weak void red_led_on(void) {}
89__weak void red_led_off(void) {}
90__weak void green_led_on(void) {}
91__weak void green_led_off(void) {}
92__weak void yellow_led_on(void) {}
93__weak void yellow_led_off(void) {}
94__weak void blue_led_on(void) {}
95__weak void blue_led_off(void) {}
1938f4a5
SG
96
97/*
98 * Why is gd allocated a register? Prior to reloc it might be better to
99 * just pass it around to each function in this file?
100 *
101 * After reloc one could argue that it is hardly used and doesn't need
102 * to be in a register. Or if it is it should perhaps hold pointers to all
103 * global data for all modules, so that post-reloc we can avoid the massive
104 * literal pool we get on ARM. Or perhaps just encourage each module to use
105 * a structure...
106 */
107
108/*
109 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
110 */
111
d54d7eb9 112#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
e4fef6cf
SG
113static int init_func_watchdog_init(void)
114{
d54d7eb9
SZ
115# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
116 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
14a380a8
SR
117 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
118 defined(CONFIG_IMX_WATCHDOG))
d54d7eb9
SZ
119 hw_watchdog_init();
120# endif
e4fef6cf
SG
121 puts(" Watchdog enabled\n");
122 WATCHDOG_RESET();
123
124 return 0;
125}
126
127int init_func_watchdog_reset(void)
128{
129 WATCHDOG_RESET();
130
131 return 0;
132}
133#endif /* CONFIG_WATCHDOG */
134
dd2a6cd0 135__weak void board_add_ram_info(int use_default)
e4fef6cf
SG
136{
137 /* please define platform specific board_add_ram_info() */
138}
139
1938f4a5
SG
140static int init_baud_rate(void)
141{
142 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
143 return 0;
144}
145
146static int display_text_info(void)
147{
9b217498 148#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
9fdee7d7 149 ulong bss_start, bss_end, text_base;
1938f4a5 150
632efa74
SG
151 bss_start = (ulong)&__bss_start;
152 bss_end = (ulong)&__bss_end;
b60eff31 153
d54d7eb9 154#ifdef CONFIG_SYS_TEXT_BASE
9fdee7d7 155 text_base = CONFIG_SYS_TEXT_BASE;
d54d7eb9 156#else
9fdee7d7 157 text_base = CONFIG_SYS_MONITOR_BASE;
d54d7eb9 158#endif
9fdee7d7
DS
159
160 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
161 text_base, bss_start, bss_end);
a733b06b 162#endif
1938f4a5
SG
163
164#ifdef CONFIG_MODEM_SUPPORT
165 debug("Modem Support enabled\n");
166#endif
167#ifdef CONFIG_USE_IRQ
168 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
169 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
170#endif
171
172 return 0;
173}
174
175static int announce_dram_init(void)
176{
177 puts("DRAM: ");
178 return 0;
179}
180
e310b93e 181#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
e4fef6cf
SG
182static int init_func_ram(void)
183{
184#ifdef CONFIG_BOARD_TYPES
185 int board_type = gd->board_type;
186#else
187 int board_type = 0; /* use dummy arg */
188#endif
189
190 gd->ram_size = initdram(board_type);
191
192 if (gd->ram_size > 0)
193 return 0;
194
195 puts("*** failed ***\n");
196 return 1;
197}
198#endif
199
1938f4a5
SG
200static int show_dram_config(void)
201{
fa39ffe5 202 unsigned long long size;
1938f4a5
SG
203
204#ifdef CONFIG_NR_DRAM_BANKS
205 int i;
206
207 debug("\nRAM Configuration:\n");
208 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
209 size += gd->bd->bi_dram[i].size;
715f599f
BM
210 debug("Bank #%d: %llx ", i,
211 (unsigned long long)(gd->bd->bi_dram[i].start));
1938f4a5
SG
212#ifdef DEBUG
213 print_size(gd->bd->bi_dram[i].size, "\n");
214#endif
215 }
216 debug("\nDRAM: ");
217#else
218 size = gd->ram_size;
219#endif
220
e4fef6cf
SG
221 print_size(size, "");
222 board_add_ram_info(0);
223 putc('\n');
1938f4a5
SG
224
225 return 0;
226}
227
dd2a6cd0 228__weak void dram_init_banksize(void)
1938f4a5
SG
229{
230#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
231 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
232 gd->bd->bi_dram[0].size = get_effective_memsize();
233#endif
234}
235
ea818dbb 236#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
e4fef6cf
SG
237static int init_func_i2c(void)
238{
239 puts("I2C: ");
815a76f2 240#ifdef CONFIG_SYS_I2C
241 i2c_init_all();
242#else
e4fef6cf 243 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
815a76f2 244#endif
e4fef6cf
SG
245 puts("ready\n");
246 return 0;
247}
248#endif
249
250#if defined(CONFIG_HARD_SPI)
251static int init_func_spi(void)
252{
253 puts("SPI: ");
254 spi_init();
255 puts("ready\n");
256 return 0;
257}
258#endif
259
260__maybe_unused
1938f4a5
SG
261static int zero_global_data(void)
262{
263 memset((void *)gd, '\0', sizeof(gd_t));
264
265 return 0;
266}
267
268static int setup_mon_len(void)
269{
e945f6dc 270#if defined(__ARM__) || defined(__MICROBLAZE__)
b60eff31 271 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
9b217498 272#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
a733b06b 273 gd->mon_len = (ulong)&_end - (ulong)_init;
5ff10aa7 274#elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
d54d7eb9 275 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
2e88bb28
KHH
276#elif defined(CONFIG_NDS32)
277 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
632efa74 278#else
e4fef6cf
SG
279 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
280 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
632efa74 281#endif
1938f4a5
SG
282 return 0;
283}
284
285__weak int arch_cpu_init(void)
286{
287 return 0;
288}
289
a733b06b
SG
290#ifdef CONFIG_SANDBOX
291static int setup_ram_buf(void)
292{
5c2859cd
SG
293 struct sandbox_state *state = state_get_current();
294
295 gd->arch.ram_buf = state->ram_buf;
296 gd->ram_size = state->ram_size;
a733b06b
SG
297
298 return 0;
299}
300#endif
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
aabd7ddb
YS
320__weak phys_size_t board_reserve_ram_top(phys_size_t ram_size)
321{
322#ifdef CONFIG_SYS_MEM_TOP_HIDE
323 return ram_size - CONFIG_SYS_MEM_TOP_HIDE;
324#else
325 return ram_size;
326#endif
327}
328
1938f4a5
SG
329static int setup_dest_addr(void)
330{
331 debug("Monitor len: %08lX\n", gd->mon_len);
332 /*
333 * Ram is setup, size stored in gd !!
334 */
335 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
e8149522
YS
336#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
337 /* Reserve memory for secure MMU tables, and/or security monitor */
338 gd->ram_size -= CONFIG_SYS_MEM_RESERVE_SECURE;
339 /*
340 * Record secure memory location. Need recalcuate if memory splits
341 * into banks, or the ram base is not zero.
342 */
343 gd->secure_ram = gd->ram_size;
344#endif
1938f4a5
SG
345 /*
346 * Subtract specified amount of memory to hide so that it won't
347 * get "touched" at all by U-Boot. By fixing up gd->ram_size
348 * the Linux kernel should now get passed the now "corrected"
aabd7ddb
YS
349 * memory size and won't touch it either. This has been used
350 * by arch/powerpc exclusively. Now ARMv8 takes advantage of
351 * thie mechanism. If memory is split into banks, addresses
352 * need to be calculated.
1938f4a5 353 */
aabd7ddb
YS
354 gd->ram_size = board_reserve_ram_top(gd->ram_size);
355
1938f4a5
SG
356#ifdef CONFIG_SYS_SDRAM_BASE
357 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
358#endif
e4fef6cf 359 gd->ram_top += get_effective_memsize();
1938f4a5 360 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
a0ba279a 361 gd->relocaddr = gd->ram_top;
1938f4a5 362 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
ec3b4820 363#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
e4fef6cf
SG
364 /*
365 * We need to make sure the location we intend to put secondary core
366 * boot code is reserved and not used by any part of u-boot
367 */
a0ba279a
MY
368 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
369 gd->relocaddr = determine_mp_bootpg(NULL);
370 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
e4fef6cf
SG
371 }
372#endif
1938f4a5
SG
373 return 0;
374}
375
1e85ccec
FR
376#if defined(CONFIG_SPARC)
377static int reserve_prom(void)
378{
379 /* defined in arch/sparc/cpu/leon?/prom.c */
380 extern void *__prom_start_reloc;
381 int size = 8192; /* page table = 2k, prom = 6k */
382 gd->relocaddr -= size;
383 __prom_start_reloc = map_sysmem(gd->relocaddr + 2048, size - 2048);
384 debug("Reserving %dk for PROM and page table at %08lx\n", size,
385 gd->relocaddr);
386 return 0;
387}
388#endif
389
1938f4a5
SG
390#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
391static int reserve_logbuffer(void)
392{
393 /* reserve kernel log buffer */
a0ba279a 394 gd->relocaddr -= LOGBUFF_RESERVE;
1938f4a5 395 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
a0ba279a 396 gd->relocaddr);
1938f4a5
SG
397 return 0;
398}
399#endif
400
401#ifdef CONFIG_PRAM
402/* reserve protected RAM */
403static int reserve_pram(void)
404{
405 ulong reg;
406
407 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
a0ba279a 408 gd->relocaddr -= (reg << 10); /* size is in kB */
1938f4a5 409 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
a0ba279a 410 gd->relocaddr);
1938f4a5
SG
411 return 0;
412}
413#endif /* CONFIG_PRAM */
414
415/* Round memory pointer down to next 4 kB limit */
416static int reserve_round_4k(void)
417{
a0ba279a 418 gd->relocaddr &= ~(4096 - 1);
1938f4a5
SG
419 return 0;
420}
421
422#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
423 defined(CONFIG_ARM)
424static int reserve_mmu(void)
425{
426 /* reserve TLB table */
cce6be7f 427 gd->arch.tlb_size = PGTABLE_SIZE;
a0ba279a 428 gd->relocaddr -= gd->arch.tlb_size;
1938f4a5
SG
429
430 /* round down to next 64 kB limit */
a0ba279a 431 gd->relocaddr &= ~(0x10000 - 1);
1938f4a5 432
a0ba279a 433 gd->arch.tlb_addr = gd->relocaddr;
1938f4a5
SG
434 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
435 gd->arch.tlb_addr + gd->arch.tlb_size);
436 return 0;
437}
438#endif
439
440#ifdef CONFIG_LCD
441static int reserve_lcd(void)
442{
443#ifdef CONFIG_FB_ADDR
444 gd->fb_base = CONFIG_FB_ADDR;
445#else
446 /* reserve memory for LCD display (always full pages) */
a0ba279a
MY
447 gd->relocaddr = lcd_setmem(gd->relocaddr);
448 gd->fb_base = gd->relocaddr;
1938f4a5
SG
449#endif /* CONFIG_FB_ADDR */
450 return 0;
451}
452#endif /* CONFIG_LCD */
453
71c52dba
SG
454static 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 %dk for trace data at: %08lx\n",
460 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
461#endif
462
463 return 0;
464}
465
d54d7eb9
SZ
466#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
467 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
944ab340 468 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
e4fef6cf
SG
469static int reserve_video(void)
470{
471 /* reserve memory for video display (always full pages) */
a0ba279a
MY
472 gd->relocaddr = video_setmem(gd->relocaddr);
473 gd->fb_base = gd->relocaddr;
e4fef6cf
SG
474
475 return 0;
476}
477#endif
478
1938f4a5
SG
479static int reserve_uboot(void)
480{
481 /*
482 * reserve memory for U-Boot code, data & bss
483 * round down to next 4 kB limit
484 */
a0ba279a
MY
485 gd->relocaddr -= gd->mon_len;
486 gd->relocaddr &= ~(4096 - 1);
e4fef6cf
SG
487#ifdef CONFIG_E500
488 /* round down to next 64 kB limit so that IVPR stays aligned */
a0ba279a 489 gd->relocaddr &= ~(65536 - 1);
e4fef6cf 490#endif
1938f4a5
SG
491
492 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
a0ba279a
MY
493 gd->relocaddr);
494
495 gd->start_addr_sp = gd->relocaddr;
496
1938f4a5
SG
497 return 0;
498}
499
8cae8a68 500#ifndef CONFIG_SPL_BUILD
1938f4a5
SG
501/* reserve memory for malloc() area */
502static int reserve_malloc(void)
503{
a0ba279a 504 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
1938f4a5 505 debug("Reserving %dk for malloc() at: %08lx\n",
a0ba279a 506 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
1938f4a5
SG
507 return 0;
508}
509
510/* (permanently) allocate a Board Info struct */
511static int reserve_board(void)
512{
d54d7eb9
SZ
513 if (!gd->bd) {
514 gd->start_addr_sp -= sizeof(bd_t);
515 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
516 memset(gd->bd, '\0', sizeof(bd_t));
517 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
518 sizeof(bd_t), gd->start_addr_sp);
519 }
1938f4a5
SG
520 return 0;
521}
8cae8a68 522#endif
1938f4a5
SG
523
524static int setup_machine(void)
525{
526#ifdef CONFIG_MACH_TYPE
527 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
528#endif
529 return 0;
530}
531
532static int reserve_global_data(void)
533{
a0ba279a
MY
534 gd->start_addr_sp -= sizeof(gd_t);
535 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
1938f4a5 536 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
a0ba279a 537 sizeof(gd_t), gd->start_addr_sp);
1938f4a5
SG
538 return 0;
539}
540
541static int reserve_fdt(void)
542{
e9acb9ea 543#ifndef CONFIG_OF_EMBED
1938f4a5 544 /*
4c509343 545 * If the device tree is sitting immediately above our image then we
1938f4a5
SG
546 * must relocate it. If it is embedded in the data section, then it
547 * will be relocated with other data.
548 */
549 if (gd->fdt_blob) {
550 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
551
a0ba279a
MY
552 gd->start_addr_sp -= gd->fdt_size;
553 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
a733b06b 554 debug("Reserving %lu Bytes for FDT at: %08lx\n",
a0ba279a 555 gd->fdt_size, gd->start_addr_sp);
1938f4a5 556 }
e9acb9ea 557#endif
1938f4a5
SG
558
559 return 0;
560}
561
68145d4c 562int arch_reserve_stacks(void)
1938f4a5 563{
68145d4c
AB
564 return 0;
565}
8cae8a68 566
68145d4c
AB
567static int reserve_stacks(void)
568{
569 /* make stack pointer 16-byte aligned */
a0ba279a
MY
570 gd->start_addr_sp -= 16;
571 gd->start_addr_sp &= ~0xf;
1938f4a5
SG
572
573 /*
4c509343 574 * let the architecture-specific code tailor gd->start_addr_sp and
68145d4c 575 * gd->irq_sp
1938f4a5 576 */
68145d4c 577 return arch_reserve_stacks();
1938f4a5
SG
578}
579
580static int display_new_sp(void)
581{
a0ba279a 582 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
1938f4a5
SG
583
584 return 0;
585}
586
fb3db635 587#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
e4fef6cf
SG
588static int setup_board_part1(void)
589{
590 bd_t *bd = gd->bd;
591
592 /*
593 * Save local variables to board info struct
594 */
e4fef6cf
SG
595 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
596 bd->bi_memsize = gd->ram_size; /* size in bytes */
597
598#ifdef CONFIG_SYS_SRAM_BASE
599 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
600 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
601#endif
602
58dac327 603#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
e4fef6cf
SG
604 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
605 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
606#endif
e310b93e 607#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
e4fef6cf
SG
608 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
609#endif
610#if defined(CONFIG_MPC83xx)
611 bd->bi_immrbar = CONFIG_SYS_IMMR;
612#endif
e4fef6cf
SG
613
614 return 0;
615}
fb3db635 616#endif
e4fef6cf 617
fb3db635 618#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
e4fef6cf
SG
619static int setup_board_part2(void)
620{
621 bd_t *bd = gd->bd;
622
623 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
624 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
625#if defined(CONFIG_CPM2)
626 bd->bi_cpmfreq = gd->arch.cpm_clk;
627 bd->bi_brgfreq = gd->arch.brg_clk;
628 bd->bi_sccfreq = gd->arch.scc_clk;
629 bd->bi_vco = gd->arch.vco_out;
630#endif /* CONFIG_CPM2 */
631#if defined(CONFIG_MPC512X)
632 bd->bi_ipsfreq = gd->arch.ips_clk;
633#endif /* CONFIG_MPC512X */
634#if defined(CONFIG_MPC5xxx)
635 bd->bi_ipbfreq = gd->arch.ipb_clk;
636 bd->bi_pcifreq = gd->pci_clk;
637#endif /* CONFIG_MPC5xxx */
1313db48
AW
638#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
639 bd->bi_pcifreq = gd->pci_clk;
640#endif
641#if defined(CONFIG_EXTRA_CLOCK)
642 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
643 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
644 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
645#endif
e4fef6cf
SG
646
647 return 0;
648}
649#endif
650
651#ifdef CONFIG_SYS_EXTBDINFO
652static int setup_board_extra(void)
653{
654 bd_t *bd = gd->bd;
655
656 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
657 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
658 sizeof(bd->bi_r_version));
659
660 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
661 bd->bi_plb_busfreq = gd->bus_clk;
662#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
663 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
664 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
665 bd->bi_pci_busfreq = get_PCI_freq();
666 bd->bi_opbfreq = get_OPB_freq();
667#elif defined(CONFIG_XILINX_405)
668 bd->bi_pci_busfreq = get_PCI_freq();
669#endif
670
671 return 0;
672}
673#endif
674
1938f4a5
SG
675#ifdef CONFIG_POST
676static int init_post(void)
677{
678 post_bootmode_init();
679 post_run(NULL, POST_ROM | post_bootmode_get(0));
680
681 return 0;
682}
683#endif
684
1938f4a5
SG
685static int setup_dram_config(void)
686{
687 /* Ram is board specific, so move it to board code ... */
688 dram_init_banksize();
689
690 return 0;
691}
692
693static int reloc_fdt(void)
694{
e9acb9ea 695#ifndef CONFIG_OF_EMBED
f05ad9ba
SG
696 if (gd->flags & GD_FLG_SKIP_RELOC)
697 return 0;
1938f4a5
SG
698 if (gd->new_fdt) {
699 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
700 gd->fdt_blob = gd->new_fdt;
701 }
e9acb9ea 702#endif
1938f4a5
SG
703
704 return 0;
705}
706
707static int setup_reloc(void)
708{
f05ad9ba
SG
709 if (gd->flags & GD_FLG_SKIP_RELOC) {
710 debug("Skipping relocation due to flag\n");
711 return 0;
712 }
713
d54d7eb9 714#ifdef CONFIG_SYS_TEXT_BASE
a0ba279a 715 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
e310b93e 716#ifdef CONFIG_M68K
717 /*
718 * On all ColdFire arch cpu, monitor code starts always
719 * just after the default vector table location, so at 0x400
720 */
721 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
722#endif
d54d7eb9 723#endif
1938f4a5
SG
724 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
725
726 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
a733b06b 727 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
a0ba279a
MY
728 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
729 gd->start_addr_sp);
1938f4a5
SG
730
731 return 0;
732}
733
734/* ARM calls relocate_code from its crt0.S */
808434cd 735#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1938f4a5
SG
736
737static int jump_to_copy(void)
738{
f05ad9ba
SG
739 if (gd->flags & GD_FLG_SKIP_RELOC)
740 return 0;
48a33806
SG
741 /*
742 * x86 is special, but in a nice way. It uses a trampoline which
743 * enables the dcache if possible.
744 *
745 * For now, other archs use relocate_code(), which is implemented
746 * similarly for all archs. When we do generic relocation, hopefully
747 * we can make all archs enable the dcache prior to relocation.
748 */
3fb80163 749#if defined(CONFIG_X86) || defined(CONFIG_ARC)
48a33806
SG
750 /*
751 * SDRAM and console are now initialised. The final stack can now
752 * be setup in SDRAM. Code execution will continue in Flash, but
753 * with the stack in SDRAM and Global Data in temporary memory
754 * (CPU cache)
755 */
f0c7d9c7 756 arch_setup_gd(gd->new_gd);
48a33806
SG
757 board_init_f_r_trampoline(gd->start_addr_sp);
758#else
a0ba279a 759 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
48a33806 760#endif
1938f4a5
SG
761
762 return 0;
763}
764#endif
765
766/* Record the board_init_f() bootstage (after arch_cpu_init()) */
767static int mark_bootstage(void)
768{
769 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
770
771 return 0;
772}
773
9854a874
SG
774static int initf_console_record(void)
775{
776#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
777 return console_record_init();
778#else
779 return 0;
780#endif
781}
782
ab7cd627
SG
783static int initf_dm(void)
784{
785#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
786 int ret;
787
788 ret = dm_init_and_scan(true);
789 if (ret)
790 return ret;
791#endif
792
793 return 0;
794}
795
146251f8
SG
796/* Architecture-specific memory reservation */
797__weak int reserve_arch(void)
798{
799 return 0;
800}
801
d4c671cc
SG
802__weak int arch_cpu_init_dm(void)
803{
804 return 0;
805}
806
1938f4a5 807static init_fnc_t init_sequence_f[] = {
a733b06b
SG
808#ifdef CONFIG_SANDBOX
809 setup_ram_buf,
e4fef6cf 810#endif
1938f4a5 811 setup_mon_len,
b45122fd 812#ifdef CONFIG_OF_CONTROL
0879361f 813 fdtdec_setup,
b45122fd 814#endif
d210718d 815#ifdef CONFIG_TRACE
71c52dba 816 trace_early_init,
d210718d 817#endif
768e0f52 818 initf_malloc,
9854a874 819 initf_console_record,
e4fef6cf
SG
820#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
821 /* TODO: can this go into arch_cpu_init()? */
822 probecpu,
a52a068e
BM
823#endif
824#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
825 x86_fsp_init,
e4fef6cf 826#endif
1938f4a5 827 arch_cpu_init, /* basic arch cpu dependent setup */
3ea0953d 828 initf_dm,
d4c671cc 829 arch_cpu_init_dm,
67521957 830 mark_bootstage, /* need timer, go after init dm */
1938f4a5
SG
831#if defined(CONFIG_BOARD_EARLY_INIT_F)
832 board_early_init_f,
833#endif
e4fef6cf
SG
834 /* TODO: can any of this go into arch_cpu_init()? */
835#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
836 get_clocks, /* get CPU and bus clocks (etc.) */
837#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
838 && !defined(CONFIG_TQM885D)
839 adjust_sdram_tbs_8xx,
840#endif
841 /* TODO: can we rename this to timer_init()? */
842 init_timebase,
843#endif
2317cf09 844#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
c97088c3
FR
845 defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \
846 defined(CONFIG_SPARC)
1938f4a5 847 timer_init, /* initialize timer */
e4fef6cf 848#endif
e4fef6cf
SG
849#ifdef CONFIG_SYS_ALLOC_DPRAM
850#if !defined(CONFIG_CPM2)
851 dpram_init,
852#endif
853#endif
854#if defined(CONFIG_BOARD_POSTCLK_INIT)
855 board_postclk_init,
b8521b74 856#endif
7664846b 857#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
e310b93e 858 get_clocks,
1938f4a5
SG
859#endif
860 env_init, /* initialize environment */
e4fef6cf
SG
861#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
862 /* get CPU and bus clocks according to the environment variable */
863 get_clocks_866,
864 /* adjust sdram refresh rate according to the new clock */
865 sdram_adjust_866,
866 init_timebase,
867#endif
1938f4a5
SG
868 init_baud_rate, /* initialze baudrate settings */
869 serial_init, /* serial communications setup */
870 console_init_f, /* stage 1 init of console */
a733b06b
SG
871#ifdef CONFIG_SANDBOX
872 sandbox_early_getopt_check,
873#endif
874#ifdef CONFIG_OF_CONTROL
875 fdtdec_prepare_fdt,
48a33806 876#endif
1938f4a5
SG
877 display_options, /* say that we are here */
878 display_text_info, /* show debugging info if required */
58dac327 879#if defined(CONFIG_MPC8260)
e4fef6cf
SG
880 prt_8260_rsr,
881 prt_8260_clks,
58dac327 882#endif /* CONFIG_MPC8260 */
e4fef6cf
SG
883#if defined(CONFIG_MPC83xx)
884 prt_83xx_rsr,
885#endif
e310b93e 886#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
e4fef6cf
SG
887 checkcpu,
888#endif
1938f4a5 889 print_cpuinfo, /* display cpu info (and speed) */
e4fef6cf
SG
890#if defined(CONFIG_MPC5xxx)
891 prt_mpc5xxx_clks,
892#endif /* CONFIG_MPC5xxx */
1938f4a5 893#if defined(CONFIG_DISPLAY_BOARDINFO)
0365ffcc 894 show_board_info,
e4fef6cf
SG
895#endif
896 INIT_FUNC_WATCHDOG_INIT
897#if defined(CONFIG_MISC_INIT_F)
898 misc_init_f,
899#endif
900 INIT_FUNC_WATCHDOG_RESET
ea818dbb 901#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
e4fef6cf
SG
902 init_func_i2c,
903#endif
904#if defined(CONFIG_HARD_SPI)
905 init_func_spi,
1938f4a5
SG
906#endif
907 announce_dram_init,
908 /* TODO: unify all these dram functions? */
2e88bb28
KHH
909#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
910 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
1938f4a5
SG
911 dram_init, /* configure available RAM banks */
912#endif
e310b93e 913#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
e4fef6cf
SG
914 init_func_ram,
915#endif
916#ifdef CONFIG_POST
917 post_init_f,
918#endif
919 INIT_FUNC_WATCHDOG_RESET
920#if defined(CONFIG_SYS_DRAM_TEST)
921 testdram,
922#endif /* CONFIG_SYS_DRAM_TEST */
923 INIT_FUNC_WATCHDOG_RESET
924
1938f4a5
SG
925#ifdef CONFIG_POST
926 init_post,
927#endif
e4fef6cf 928 INIT_FUNC_WATCHDOG_RESET
1938f4a5
SG
929 /*
930 * Now that we have DRAM mapped and working, we can
931 * relocate the code and continue running from DRAM.
932 *
933 * Reserve memory at end of RAM for (top down in that order):
934 * - area that won't get touched by U-Boot and Linux (optional)
935 * - kernel log buffer
936 * - protected RAM
937 * - LCD framebuffer
938 * - monitor code
939 * - board info struct
940 */
941 setup_dest_addr,
bbfdff31 942#if defined(CONFIG_BLACKFIN)
d54d7eb9
SZ
943 /* Blackfin u-boot monitor should be on top of the ram */
944 reserve_uboot,
945#endif
1e85ccec
FR
946#if defined(CONFIG_SPARC)
947 reserve_prom,
948#endif
1938f4a5
SG
949#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
950 reserve_logbuffer,
951#endif
952#ifdef CONFIG_PRAM
953 reserve_pram,
954#endif
955 reserve_round_4k,
956#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
957 defined(CONFIG_ARM)
958 reserve_mmu,
959#endif
960#ifdef CONFIG_LCD
961 reserve_lcd,
e4fef6cf 962#endif
71c52dba 963 reserve_trace,
e4fef6cf 964 /* TODO: Why the dependency on CONFIG_8xx? */
d54d7eb9
SZ
965#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
966 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
944ab340 967 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
e4fef6cf 968 reserve_video,
1938f4a5 969#endif
bbfdff31 970#if !defined(CONFIG_BLACKFIN)
1938f4a5 971 reserve_uboot,
d54d7eb9 972#endif
8cae8a68 973#ifndef CONFIG_SPL_BUILD
1938f4a5
SG
974 reserve_malloc,
975 reserve_board,
8cae8a68 976#endif
1938f4a5
SG
977 setup_machine,
978 reserve_global_data,
979 reserve_fdt,
146251f8 980 reserve_arch,
1938f4a5
SG
981 reserve_stacks,
982 setup_dram_config,
983 show_dram_config,
fb3db635 984#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
e4fef6cf 985 setup_board_part1,
fb3db635
DS
986#endif
987#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
e4fef6cf
SG
988 INIT_FUNC_WATCHDOG_RESET
989 setup_board_part2,
990#endif
1938f4a5 991 display_new_sp,
e4fef6cf
SG
992#ifdef CONFIG_SYS_EXTBDINFO
993 setup_board_extra,
994#endif
995 INIT_FUNC_WATCHDOG_RESET
1938f4a5
SG
996 reloc_fdt,
997 setup_reloc,
3fb80163 998#if defined(CONFIG_X86) || defined(CONFIG_ARC)
313aef37
SG
999 copy_uboot_to_ram,
1000 clear_bss,
1001 do_elf_reloc_fixups,
1002#endif
808434cd 1003#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
1938f4a5
SG
1004 jump_to_copy,
1005#endif
1006 NULL,
1007};
1008
1009void board_init_f(ulong boot_flags)
1010{
2a1680e3
YS
1011#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1012 /*
1013 * For some archtectures, global data is initialized and used before
1014 * calling this function. The data should be preserved. For others,
1015 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1016 * here to host global data until relocation.
1017 */
1938f4a5
SG
1018 gd_t data;
1019
1020 gd = &data;
1021
cce6be7f
DF
1022 /*
1023 * Clear global data before it is accessed at debug print
1024 * in initcall_run_list. Otherwise the debug print probably
1025 * get the wrong vaule of gd->have_console.
1026 */
cce6be7f
DF
1027 zero_global_data();
1028#endif
1029
1938f4a5 1030 gd->flags = boot_flags;
9aed5a27 1031 gd->have_console = 0;
1938f4a5
SG
1032
1033 if (initcall_run_list(init_sequence_f))
1034 hang();
1035
9b217498
BS
1036#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1037 !defined(CONFIG_EFI_APP)
1938f4a5
SG
1038 /* NOTREACHED - jump_to_copy() does not return */
1039 hang();
1040#endif
1041}
1042
3fb80163 1043#if defined(CONFIG_X86) || defined(CONFIG_ARC)
48a33806
SG
1044/*
1045 * For now this code is only used on x86.
1046 *
1047 * init_sequence_f_r is the list of init functions which are run when
1048 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1049 * The following limitations must be considered when implementing an
1050 * '_f_r' function:
1051 * - 'static' variables are read-only
1052 * - Global Data (gd->xxx) is read/write
1053 *
1054 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1055 * supported). It _should_, if possible, copy global data to RAM and
1056 * initialise the CPU caches (to speed up the relocation process)
1057 *
1058 * NOTE: At present only x86 uses this route, but it is intended that
1059 * all archs will move to this when generic relocation is implemented.
1060 */
1061static init_fnc_t init_sequence_f_r[] = {
1062 init_cache_f_r,
48a33806
SG
1063
1064 NULL,
1065};
1066
1067void board_init_f_r(void)
1068{
1069 if (initcall_run_list(init_sequence_f_r))
1070 hang();
1071
1072 /*
1073 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1074 * Transfer execution from Flash to RAM by calculating the address
1075 * of the in-RAM copy of board_init_r() and calling it
1076 */
7bf9f20d 1077 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
48a33806
SG
1078
1079 /* NOTREACHED - board_init_r() does not return */
1080 hang();
1081}
5bcd19aa 1082#endif /* CONFIG_X86 */