blob: 8d936cc0b7bae9af144afe7e75d3b68f042708ea [file] [log] [blame]
Simon Glass1938f4a2013-03-11 06:49:53 +00001/*
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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-03-11 06:49:53 +000011 */
12
13#include <common.h>
14#include <linux/compiler.h>
15#include <version.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000017#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060018#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000019#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000020#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000021#if defined(CONFIG_CMD_IDE)
22#include <ide.h>
23#endif
24#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <initcall.h>
26#include <logbuff.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070027#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050028#include <mapmem.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000029
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
Gabriel Huauec3b4822014-09-03 13:57:54 -070040#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huaua76df702014-07-26 11:35:43 -070041#include <asm/mp.h>
42#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000043
Simon Glassa733b062013-04-26 02:53:43 +000044#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000045#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000046#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020047#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070048#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070049#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070050#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000051#include <watchdog.h>
Simon Glassa733b062013-04-26 02:53:43 +000052#include <asm/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000053#include <asm/io.h>
54#include <asm/sections.h>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030055#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000056#include <asm/init_helpers.h>
57#include <asm/relocate.h>
58#endif
Simon Glassa733b062013-04-26 02:53:43 +000059#ifdef CONFIG_SANDBOX
60#include <asm/state.h>
61#endif
Simon Glassab7cd622014-07-23 06:55:04 -060062#include <dm/root.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000063#include <linux/compiler.h>
64
65/*
66 * Pointer to initial global data area
67 *
68 * Here we initialize it if needed.
69 */
70#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
71#undef XTRN_DECLARE_GLOBAL_DATA_PTR
72#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
73DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
74#else
75DECLARE_GLOBAL_DATA_PTR;
76#endif
77
78/*
Simon Glass4c509342015-04-28 20:25:03 -060079 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000080 * refactored to a single function, something like:
81 *
82 * void led_set_state(enum led_colour_t colour, int on);
83 */
84/************************************************************************
85 * Coloured LED functionality
86 ************************************************************************
87 * May be supplied by boards if desired
88 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020089__weak void coloured_LED_init(void) {}
90__weak void red_led_on(void) {}
91__weak void red_led_off(void) {}
92__weak void green_led_on(void) {}
93__weak void green_led_off(void) {}
94__weak void yellow_led_on(void) {}
95__weak void yellow_led_off(void) {}
96__weak void blue_led_on(void) {}
97__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000098
99/*
100 * Why is gd allocated a register? Prior to reloc it might be better to
101 * just pass it around to each function in this file?
102 *
103 * After reloc one could argue that it is hardly used and doesn't need
104 * to be in a register. Or if it is it should perhaps hold pointers to all
105 * global data for all modules, so that post-reloc we can avoid the massive
106 * literal pool we get on ARM. Or perhaps just encourage each module to use
107 * a structure...
108 */
109
110/*
111 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
112 */
113
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800114#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000115static int init_func_watchdog_init(void)
116{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800117# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
118 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100119 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +0200120 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100121 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800122 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000123 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200124# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000125 WATCHDOG_RESET();
126
127 return 0;
128}
129
130int init_func_watchdog_reset(void)
131{
132 WATCHDOG_RESET();
133
134 return 0;
135}
136#endif /* CONFIG_WATCHDOG */
137
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200138__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000139{
140 /* please define platform specific board_add_ram_info() */
141}
142
Simon Glass1938f4a2013-03-11 06:49:53 +0000143static int init_baud_rate(void)
144{
145 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
146 return 0;
147}
148
149static int display_text_info(void)
150{
Ben Stoltz9b217492015-07-31 09:31:37 -0600151#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100152 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000153
Simon Glass632efa72013-03-11 07:06:48 +0000154 bss_start = (ulong)&__bss_start;
155 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100156
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800157#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100158 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800159#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100160 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800161#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100162
163 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
164 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000165#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000166
Simon Glass1938f4a2013-03-11 06:49:53 +0000167#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
angelo@sysam.ite310b932015-02-12 01:40:17 +0100181#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000182static 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
Simon Glass1938f4a2013-03-11 06:49:53 +0000200static int show_dram_config(void)
201{
York Sunfa39ffe2014-05-02 17:28:05 -0700202 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000203
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;
Bin Meng715f5992015-08-06 01:31:20 -0700210 debug("Bank #%d: %llx ", i,
211 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000212#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
Simon Glasse4fef6c2013-03-11 14:30:42 +0000221 print_size(size, "");
222 board_add_ram_info(0);
223 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000224
225 return 0;
226}
227
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200228__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000229{
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
Heiko Schocherea818db2013-01-29 08:53:15 +0100236#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000237static int init_func_i2c(void)
238{
239 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200240#ifdef CONFIG_SYS_I2C
241 i2c_init_all();
242#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000243 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200244#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000245 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
Simon Glass1938f4a2013-03-11 06:49:53 +0000261static 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{
Michal Simeke945f6d2014-05-08 16:08:44 +0200270#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100271 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600272#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000273 gd->mon_len = (ulong)&_end - (ulong)_init;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800274#elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800275 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800276#elif defined(CONFIG_NDS32)
277 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600278#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000279 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
280 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000281#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000282 return 0;
283}
284
285__weak int arch_cpu_init(void)
286{
287 return 0;
288}
289
Simon Glassa733b062013-04-26 02:53:43 +0000290#ifdef CONFIG_SANDBOX
291static int setup_ram_buf(void)
292{
Simon Glass5c2859c2013-11-10 10:27:03 -0700293 struct sandbox_state *state = state_get_current();
294
295 gd->arch.ram_buf = state->ram_buf;
296 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000297
298 return 0;
299}
300#endif
301
Simon Glass1938f4a2013-03-11 06:49:53 +0000302/* Get the top of usable RAM */
303__weak ulong board_get_usable_ram_top(ulong total_size)
304{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700305#ifdef CONFIG_SYS_SDRAM_BASE
306 /*
Simon Glass4c509342015-04-28 20:25:03 -0600307 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700308 * 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
Simon Glass1938f4a2013-03-11 06:49:53 +0000317 return gd->ram_top;
318}
319
York Sunaabd7dd2015-12-07 11:05:29 -0800320__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
Simon Glass1938f4a2013-03-11 06:49:53 +0000329static 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);
York Sune8149522015-12-04 11:57:07 -0800336#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
Simon Glass1938f4a2013-03-11 06:49:53 +0000345 /*
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"
York Sunaabd7dd2015-12-07 11:05:29 -0800349 * 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.
Simon Glass1938f4a2013-03-11 06:49:53 +0000353 */
York Sunaabd7dd2015-12-07 11:05:29 -0800354 gd->ram_size = board_reserve_ram_top(gd->ram_size);
355
Simon Glass1938f4a2013-03-11 06:49:53 +0000356#ifdef CONFIG_SYS_SDRAM_BASE
357 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
358#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000359 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000360 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000361 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000362 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700363#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000364 /*
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 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000368 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);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000371 }
372#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000373 return 0;
374}
375
Francois Retief1e85cce2015-11-23 13:05:44 +0200376#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
Simon Glass1938f4a2013-03-11 06:49:53 +0000390#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
391static int reserve_logbuffer(void)
392{
393 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000394 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000395 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000396 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000397 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);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000408 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000409 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000410 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000411 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{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000418 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000419 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 */
David Fengcce6be72013-12-14 11:47:36 +0800427 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000428 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000429
430 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000431 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000432
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000433 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000434 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
Simon Glass5a541942016-01-18 19:52:21 -0700440#ifdef CONFIG_DM_VIDEO
441static int reserve_video(void)
442{
443 ulong addr;
444 int ret;
445
446 addr = gd->relocaddr;
447 ret = video_reserve(&addr);
448 if (ret)
449 return ret;
450 gd->relocaddr = addr;
451
452 return 0;
453}
454#else
455
456# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000457static int reserve_lcd(void)
458{
Simon Glass5a541942016-01-18 19:52:21 -0700459# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000460 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700461# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000462 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000463 gd->relocaddr = lcd_setmem(gd->relocaddr);
464 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700465# endif /* CONFIG_FB_ADDR */
466
Simon Glass1938f4a2013-03-11 06:49:53 +0000467 return 0;
468}
Simon Glass5a541942016-01-18 19:52:21 -0700469# endif /* CONFIG_LCD */
Simon Glass1938f4a2013-03-11 06:49:53 +0000470
Simon Glass5a541942016-01-18 19:52:21 -0700471# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700472 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
473 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
474static int reserve_legacy_video(void)
475{
476 /* reserve memory for video display (always full pages) */
477 gd->relocaddr = video_setmem(gd->relocaddr);
478 gd->fb_base = gd->relocaddr;
479
480 return 0;
481}
Simon Glass5a541942016-01-18 19:52:21 -0700482# endif
483#endif /* !CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700484
Simon Glass71c52db2013-06-11 11:14:42 -0700485static int reserve_trace(void)
486{
487#ifdef CONFIG_TRACE
488 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
489 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
490 debug("Reserving %dk for trace data at: %08lx\n",
491 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
492#endif
493
494 return 0;
495}
496
Simon Glass1938f4a2013-03-11 06:49:53 +0000497static int reserve_uboot(void)
498{
499 /*
500 * reserve memory for U-Boot code, data & bss
501 * round down to next 4 kB limit
502 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000503 gd->relocaddr -= gd->mon_len;
504 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000505#ifdef CONFIG_E500
506 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000507 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000508#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000509
510 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000511 gd->relocaddr);
512
513 gd->start_addr_sp = gd->relocaddr;
514
Simon Glass1938f4a2013-03-11 06:49:53 +0000515 return 0;
516}
517
Simon Glass8cae8a62013-03-05 14:39:45 +0000518#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000519/* reserve memory for malloc() area */
520static int reserve_malloc(void)
521{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000522 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000523 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000524 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000525 return 0;
526}
527
528/* (permanently) allocate a Board Info struct */
529static int reserve_board(void)
530{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800531 if (!gd->bd) {
532 gd->start_addr_sp -= sizeof(bd_t);
533 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
534 memset(gd->bd, '\0', sizeof(bd_t));
535 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
536 sizeof(bd_t), gd->start_addr_sp);
537 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000538 return 0;
539}
Simon Glass8cae8a62013-03-05 14:39:45 +0000540#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000541
542static int setup_machine(void)
543{
544#ifdef CONFIG_MACH_TYPE
545 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
546#endif
547 return 0;
548}
549
550static int reserve_global_data(void)
551{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000552 gd->start_addr_sp -= sizeof(gd_t);
553 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000554 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000555 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000556 return 0;
557}
558
559static int reserve_fdt(void)
560{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100561#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000562 /*
Simon Glass4c509342015-04-28 20:25:03 -0600563 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000564 * must relocate it. If it is embedded in the data section, then it
565 * will be relocated with other data.
566 */
567 if (gd->fdt_blob) {
568 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
569
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000570 gd->start_addr_sp -= gd->fdt_size;
571 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000572 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000573 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000574 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100575#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000576
577 return 0;
578}
579
Andreas Bießmann68145d42015-02-06 23:06:45 +0100580int arch_reserve_stacks(void)
581{
582 return 0;
583}
584
Simon Glass1938f4a2013-03-11 06:49:53 +0000585static int reserve_stacks(void)
586{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100587 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000588 gd->start_addr_sp -= 16;
589 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000590
591 /*
Simon Glass4c509342015-04-28 20:25:03 -0600592 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100593 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000594 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100595 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000596}
597
598static int display_new_sp(void)
599{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000600 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000601
602 return 0;
603}
604
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100605#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000606static int setup_board_part1(void)
607{
608 bd_t *bd = gd->bd;
609
610 /*
611 * Save local variables to board info struct
612 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000613 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
614 bd->bi_memsize = gd->ram_size; /* size in bytes */
615
616#ifdef CONFIG_SYS_SRAM_BASE
617 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
618 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
619#endif
620
Masahiro Yamada58dac322014-03-05 17:40:10 +0900621#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000622 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
623 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
624#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100625#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000626 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
627#endif
628#if defined(CONFIG_MPC83xx)
629 bd->bi_immrbar = CONFIG_SYS_IMMR;
630#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000631
632 return 0;
633}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100634#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000635
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100636#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000637static int setup_board_part2(void)
638{
639 bd_t *bd = gd->bd;
640
641 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
642 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
643#if defined(CONFIG_CPM2)
644 bd->bi_cpmfreq = gd->arch.cpm_clk;
645 bd->bi_brgfreq = gd->arch.brg_clk;
646 bd->bi_sccfreq = gd->arch.scc_clk;
647 bd->bi_vco = gd->arch.vco_out;
648#endif /* CONFIG_CPM2 */
649#if defined(CONFIG_MPC512X)
650 bd->bi_ipsfreq = gd->arch.ips_clk;
651#endif /* CONFIG_MPC512X */
652#if defined(CONFIG_MPC5xxx)
653 bd->bi_ipbfreq = gd->arch.ipb_clk;
654 bd->bi_pcifreq = gd->pci_clk;
655#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800656#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
657 bd->bi_pcifreq = gd->pci_clk;
658#endif
659#if defined(CONFIG_EXTRA_CLOCK)
660 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
661 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
662 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
663#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000664
665 return 0;
666}
667#endif
668
669#ifdef CONFIG_SYS_EXTBDINFO
670static int setup_board_extra(void)
671{
672 bd_t *bd = gd->bd;
673
674 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
675 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
676 sizeof(bd->bi_r_version));
677
678 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
679 bd->bi_plb_busfreq = gd->bus_clk;
680#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
681 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
682 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
683 bd->bi_pci_busfreq = get_PCI_freq();
684 bd->bi_opbfreq = get_OPB_freq();
685#elif defined(CONFIG_XILINX_405)
686 bd->bi_pci_busfreq = get_PCI_freq();
687#endif
688
689 return 0;
690}
691#endif
692
Simon Glass1938f4a2013-03-11 06:49:53 +0000693#ifdef CONFIG_POST
694static int init_post(void)
695{
696 post_bootmode_init();
697 post_run(NULL, POST_ROM | post_bootmode_get(0));
698
699 return 0;
700}
701#endif
702
Simon Glass1938f4a2013-03-11 06:49:53 +0000703static int setup_dram_config(void)
704{
705 /* Ram is board specific, so move it to board code ... */
706 dram_init_banksize();
707
708 return 0;
709}
710
711static int reloc_fdt(void)
712{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100713#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600714 if (gd->flags & GD_FLG_SKIP_RELOC)
715 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000716 if (gd->new_fdt) {
717 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
718 gd->fdt_blob = gd->new_fdt;
719 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100720#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000721
722 return 0;
723}
724
725static int setup_reloc(void)
726{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600727 if (gd->flags & GD_FLG_SKIP_RELOC) {
728 debug("Skipping relocation due to flag\n");
729 return 0;
730 }
731
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800732#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000733 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100734#ifdef CONFIG_M68K
735 /*
736 * On all ColdFire arch cpu, monitor code starts always
737 * just after the default vector table location, so at 0x400
738 */
739 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
740#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800741#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000742 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
743
744 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000745 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000746 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
747 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000748
749 return 0;
750}
751
752/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700753#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000754
755static int jump_to_copy(void)
756{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600757 if (gd->flags & GD_FLG_SKIP_RELOC)
758 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000759 /*
760 * x86 is special, but in a nice way. It uses a trampoline which
761 * enables the dcache if possible.
762 *
763 * For now, other archs use relocate_code(), which is implemented
764 * similarly for all archs. When we do generic relocation, hopefully
765 * we can make all archs enable the dcache prior to relocation.
766 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300767#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000768 /*
769 * SDRAM and console are now initialised. The final stack can now
770 * be setup in SDRAM. Code execution will continue in Flash, but
771 * with the stack in SDRAM and Global Data in temporary memory
772 * (CPU cache)
773 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600774 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000775 board_init_f_r_trampoline(gd->start_addr_sp);
776#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000777 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000778#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000779
780 return 0;
781}
782#endif
783
784/* Record the board_init_f() bootstage (after arch_cpu_init()) */
785static int mark_bootstage(void)
786{
787 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
788
789 return 0;
790}
791
Simon Glass9854a872015-11-08 23:47:48 -0700792static int initf_console_record(void)
793{
794#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
795 return console_record_init();
796#else
797 return 0;
798#endif
799}
800
Simon Glassab7cd622014-07-23 06:55:04 -0600801static int initf_dm(void)
802{
803#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
804 int ret;
805
806 ret = dm_init_and_scan(true);
807 if (ret)
808 return ret;
809#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700810#ifdef CONFIG_TIMER_EARLY
811 ret = dm_timer_init();
812 if (ret)
813 return ret;
814#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600815
816 return 0;
817}
818
Simon Glass146251f2015-01-19 22:16:12 -0700819/* Architecture-specific memory reservation */
820__weak int reserve_arch(void)
821{
822 return 0;
823}
824
Simon Glassd4c671c2015-03-05 12:25:16 -0700825__weak int arch_cpu_init_dm(void)
826{
827 return 0;
828}
829
Simon Glass1938f4a2013-03-11 06:49:53 +0000830static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000831#ifdef CONFIG_SANDBOX
832 setup_ram_buf,
833#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000834 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700835#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700836 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700837#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800838#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700839 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800840#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700841 initf_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700842 initf_console_record,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000843#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
844 /* TODO: can this go into arch_cpu_init()? */
845 probecpu,
846#endif
Bin Menga52a0682015-08-20 06:40:18 -0700847#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
848 x86_fsp_init,
849#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000850 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600851 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700852 arch_cpu_init_dm,
Thomas Chou67521952015-10-30 15:35:51 +0800853 mark_bootstage, /* need timer, go after init dm */
Simon Glass1938f4a2013-03-11 06:49:53 +0000854#if defined(CONFIG_BOARD_EARLY_INIT_F)
855 board_early_init_f,
856#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000857 /* TODO: can any of this go into arch_cpu_init()? */
858#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
859 get_clocks, /* get CPU and bus clocks (etc.) */
860#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
861 && !defined(CONFIG_TQM885D)
862 adjust_sdram_tbs_8xx,
863#endif
864 /* TODO: can we rename this to timer_init()? */
865 init_timebase,
866#endif
Bin Meng2317cf02015-12-08 17:31:40 -0800867#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
Francois Retiefc97088c2015-10-28 15:18:22 +0200868 defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \
869 defined(CONFIG_SPARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000870 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000871#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000872#ifdef CONFIG_SYS_ALLOC_DPRAM
873#if !defined(CONFIG_CPM2)
874 dpram_init,
875#endif
876#endif
877#if defined(CONFIG_BOARD_POSTCLK_INIT)
878 board_postclk_init,
879#endif
Peng Fan76648462015-10-30 17:30:02 +0800880#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100881 get_clocks,
882#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000883 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000884#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
885 /* get CPU and bus clocks according to the environment variable */
886 get_clocks_866,
887 /* adjust sdram refresh rate according to the new clock */
888 sdram_adjust_866,
889 init_timebase,
890#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 init_baud_rate, /* initialze baudrate settings */
892 serial_init, /* serial communications setup */
893 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000894#ifdef CONFIG_SANDBOX
895 sandbox_early_getopt_check,
896#endif
897#ifdef CONFIG_OF_CONTROL
898 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000899#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000900 display_options, /* say that we are here */
901 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900902#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000903 prt_8260_rsr,
904 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900905#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000906#if defined(CONFIG_MPC83xx)
907 prt_83xx_rsr,
908#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100909#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000910 checkcpu,
911#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000912 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000913#if defined(CONFIG_MPC5xxx)
914 prt_mpc5xxx_clks,
915#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000916#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900917 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000918#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000919 INIT_FUNC_WATCHDOG_INIT
920#if defined(CONFIG_MISC_INIT_F)
921 misc_init_f,
922#endif
923 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100924#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000925 init_func_i2c,
926#endif
927#if defined(CONFIG_HARD_SPI)
928 init_func_spi,
929#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000930 announce_dram_init,
931 /* TODO: unify all these dram functions? */
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800932#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
933 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 dram_init, /* configure available RAM banks */
935#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100936#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000937 init_func_ram,
938#endif
939#ifdef CONFIG_POST
940 post_init_f,
941#endif
942 INIT_FUNC_WATCHDOG_RESET
943#if defined(CONFIG_SYS_DRAM_TEST)
944 testdram,
945#endif /* CONFIG_SYS_DRAM_TEST */
946 INIT_FUNC_WATCHDOG_RESET
947
Simon Glass1938f4a2013-03-11 06:49:53 +0000948#ifdef CONFIG_POST
949 init_post,
950#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000951 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000952 /*
953 * Now that we have DRAM mapped and working, we can
954 * relocate the code and continue running from DRAM.
955 *
956 * Reserve memory at end of RAM for (top down in that order):
957 * - area that won't get touched by U-Boot and Linux (optional)
958 * - kernel log buffer
959 * - protected RAM
960 * - LCD framebuffer
961 * - monitor code
962 * - board info struct
963 */
964 setup_dest_addr,
Thomas Choubbfdff32015-10-27 11:23:39 +0800965#if defined(CONFIG_BLACKFIN)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800966 /* Blackfin u-boot monitor should be on top of the ram */
967 reserve_uboot,
968#endif
Francois Retief1e85cce2015-11-23 13:05:44 +0200969#if defined(CONFIG_SPARC)
970 reserve_prom,
971#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000972#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
973 reserve_logbuffer,
974#endif
975#ifdef CONFIG_PRAM
976 reserve_pram,
977#endif
978 reserve_round_4k,
979#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
980 defined(CONFIG_ARM)
981 reserve_mmu,
982#endif
Simon Glass5a541942016-01-18 19:52:21 -0700983#ifdef CONFIG_DM_VIDEO
984 reserve_video,
985#else
986# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000987 reserve_lcd,
Simon Glass5a541942016-01-18 19:52:21 -0700988# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000989 /* TODO: Why the dependency on CONFIG_8xx? */
Simon Glass5a541942016-01-18 19:52:21 -0700990# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800991 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100992 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glass5a541942016-01-18 19:52:21 -0700993 reserve_legacy_video,
994# endif
995#endif /* CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700996 reserve_trace,
Thomas Choubbfdff32015-10-27 11:23:39 +0800997#if !defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000998 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800999#endif
Simon Glass8cae8a62013-03-05 14:39:45 +00001000#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +00001001 reserve_malloc,
1002 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +00001003#endif
Simon Glass1938f4a2013-03-11 06:49:53 +00001004 setup_machine,
1005 reserve_global_data,
1006 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -07001007 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +00001008 reserve_stacks,
1009 setup_dram_config,
1010 show_dram_config,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +01001011#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +00001012 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +01001013#endif
1014#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +00001015 INIT_FUNC_WATCHDOG_RESET
1016 setup_board_part2,
1017#endif
Simon Glass1938f4a2013-03-11 06:49:53 +00001018 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +00001019#ifdef CONFIG_SYS_EXTBDINFO
1020 setup_board_extra,
1021#endif
1022 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +00001023 reloc_fdt,
1024 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001025#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -07001026 copy_uboot_to_ram,
1027 clear_bss,
1028 do_elf_reloc_fixups,
1029#endif
Simon Glass808434c2013-11-10 10:26:59 -07001030#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001031 jump_to_copy,
1032#endif
1033 NULL,
1034};
1035
1036void board_init_f(ulong boot_flags)
1037{
York Sun2a1680e2014-05-02 17:28:04 -07001038#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1039 /*
1040 * For some archtectures, global data is initialized and used before
1041 * calling this function. The data should be preserved. For others,
1042 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1043 * here to host global data until relocation.
1044 */
Simon Glass1938f4a2013-03-11 06:49:53 +00001045 gd_t data;
1046
1047 gd = &data;
1048
David Fengcce6be72013-12-14 11:47:36 +08001049 /*
1050 * Clear global data before it is accessed at debug print
1051 * in initcall_run_list. Otherwise the debug print probably
1052 * get the wrong vaule of gd->have_console.
1053 */
David Fengcce6be72013-12-14 11:47:36 +08001054 zero_global_data();
1055#endif
1056
Simon Glass1938f4a2013-03-11 06:49:53 +00001057 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001058 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001059
1060 if (initcall_run_list(init_sequence_f))
1061 hang();
1062
Ben Stoltz9b217492015-07-31 09:31:37 -06001063#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1064 !defined(CONFIG_EFI_APP)
Simon Glass1938f4a2013-03-11 06:49:53 +00001065 /* NOTREACHED - jump_to_copy() does not return */
1066 hang();
1067#endif
1068}
1069
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001070#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001071/*
1072 * For now this code is only used on x86.
1073 *
1074 * init_sequence_f_r is the list of init functions which are run when
1075 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1076 * The following limitations must be considered when implementing an
1077 * '_f_r' function:
1078 * - 'static' variables are read-only
1079 * - Global Data (gd->xxx) is read/write
1080 *
1081 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1082 * supported). It _should_, if possible, copy global data to RAM and
1083 * initialise the CPU caches (to speed up the relocation process)
1084 *
1085 * NOTE: At present only x86 uses this route, but it is intended that
1086 * all archs will move to this when generic relocation is implemented.
1087 */
1088static init_fnc_t init_sequence_f_r[] = {
1089 init_cache_f_r,
Simon Glass48a33802013-03-05 14:39:52 +00001090
1091 NULL,
1092};
1093
1094void board_init_f_r(void)
1095{
1096 if (initcall_run_list(init_sequence_f_r))
1097 hang();
1098
1099 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001100 * The pre-relocation drivers may be using memory that has now gone
1101 * away. Mark serial as unavailable - this will fall back to the debug
1102 * UART if available.
1103 */
1104 gd->flags &= ~GD_FLG_SERIAL_READY;
1105
1106 /*
Simon Glass48a33802013-03-05 14:39:52 +00001107 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1108 * Transfer execution from Flash to RAM by calculating the address
1109 * of the in-RAM copy of board_init_r() and calling it
1110 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001111 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001112
1113 /* NOTREACHED - board_init_r() does not return */
1114 hang();
1115}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001116#endif /* CONFIG_X86 */