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