blob: 8325dc333c69e44b218378b5fb1bf0b92dedbe97 [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 Glass71c52db2013-06-11 11:14:42 -070048#include <trace.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000049#include <watchdog.h>
Simon Glassa733b062013-04-26 02:53:43 +000050#include <asm/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000051#include <asm/io.h>
52#include <asm/sections.h>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030053#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000054#include <asm/init_helpers.h>
55#include <asm/relocate.h>
56#endif
Simon Glassa733b062013-04-26 02:53:43 +000057#ifdef CONFIG_SANDBOX
58#include <asm/state.h>
59#endif
Simon Glassab7cd622014-07-23 06:55:04 -060060#include <dm/root.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000061#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/*
Simon Glass4c509342015-04-28 20:25:03 -060077 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000078 * 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 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020087__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) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000096
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
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800112#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113static int init_func_watchdog_init(void)
114{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800115# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
116 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100117 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
118 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800119 hw_watchdog_init();
120# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000121 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
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200135__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000136{
137 /* please define platform specific board_add_ram_info() */
138}
139
Simon Glass1938f4a2013-03-11 06:49:53 +0000140static 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{
Ben Stoltz9b217492015-07-31 09:31:37 -0600148#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100149 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000150
Simon Glass632efa72013-03-11 07:06:48 +0000151 bss_start = (ulong)&__bss_start;
152 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100153
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800154#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100155 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800156#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100157 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800158#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100159
160 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
161 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000162#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000163
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
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 Glass632efa72013-03-11 07:06:48 +0000278#else
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
320static int setup_dest_addr(void)
321{
322 debug("Monitor len: %08lX\n", gd->mon_len);
323 /*
324 * Ram is setup, size stored in gd !!
325 */
326 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
327#if defined(CONFIG_SYS_MEM_TOP_HIDE)
328 /*
329 * Subtract specified amount of memory to hide so that it won't
330 * get "touched" at all by U-Boot. By fixing up gd->ram_size
331 * the Linux kernel should now get passed the now "corrected"
332 * memory size and won't touch it either. This should work
333 * for arch/ppc and arch/powerpc. Only Linux board ports in
334 * arch/powerpc with bootwrapper support, that recalculate the
335 * memory size from the SDRAM controller setup will have to
336 * get fixed.
337 */
338 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
339#endif
340#ifdef CONFIG_SYS_SDRAM_BASE
341 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
342#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000343 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000344 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000345 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000346 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700347#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000348 /*
349 * We need to make sure the location we intend to put secondary core
350 * boot code is reserved and not used by any part of u-boot
351 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000352 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
353 gd->relocaddr = determine_mp_bootpg(NULL);
354 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000355 }
356#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000357 return 0;
358}
359
Francois Retief1e85cce2015-11-23 13:05:44 +0200360#if defined(CONFIG_SPARC)
361static int reserve_prom(void)
362{
363 /* defined in arch/sparc/cpu/leon?/prom.c */
364 extern void *__prom_start_reloc;
365 int size = 8192; /* page table = 2k, prom = 6k */
366 gd->relocaddr -= size;
367 __prom_start_reloc = map_sysmem(gd->relocaddr + 2048, size - 2048);
368 debug("Reserving %dk for PROM and page table at %08lx\n", size,
369 gd->relocaddr);
370 return 0;
371}
372#endif
373
Simon Glass1938f4a2013-03-11 06:49:53 +0000374#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
375static int reserve_logbuffer(void)
376{
377 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000378 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000379 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000380 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000381 return 0;
382}
383#endif
384
385#ifdef CONFIG_PRAM
386/* reserve protected RAM */
387static int reserve_pram(void)
388{
389 ulong reg;
390
391 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000392 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000393 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000394 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000395 return 0;
396}
397#endif /* CONFIG_PRAM */
398
399/* Round memory pointer down to next 4 kB limit */
400static int reserve_round_4k(void)
401{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000402 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000403 return 0;
404}
405
406#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
407 defined(CONFIG_ARM)
408static int reserve_mmu(void)
409{
410 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800411 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000412 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000413
414 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000415 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000416
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000417 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000418 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
419 gd->arch.tlb_addr + gd->arch.tlb_size);
420 return 0;
421}
422#endif
423
424#ifdef CONFIG_LCD
425static int reserve_lcd(void)
426{
427#ifdef CONFIG_FB_ADDR
428 gd->fb_base = CONFIG_FB_ADDR;
429#else
430 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000431 gd->relocaddr = lcd_setmem(gd->relocaddr);
432 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000433#endif /* CONFIG_FB_ADDR */
434 return 0;
435}
436#endif /* CONFIG_LCD */
437
Simon Glass71c52db2013-06-11 11:14:42 -0700438static int reserve_trace(void)
439{
440#ifdef CONFIG_TRACE
441 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
442 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
443 debug("Reserving %dk for trace data at: %08lx\n",
444 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
445#endif
446
447 return 0;
448}
449
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800450#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
451 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100452 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000453static int reserve_video(void)
454{
455 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000456 gd->relocaddr = video_setmem(gd->relocaddr);
457 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000458
459 return 0;
460}
461#endif
462
Simon Glass1938f4a2013-03-11 06:49:53 +0000463static int reserve_uboot(void)
464{
465 /*
466 * reserve memory for U-Boot code, data & bss
467 * round down to next 4 kB limit
468 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000469 gd->relocaddr -= gd->mon_len;
470 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000471#ifdef CONFIG_E500
472 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000473 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000474#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000475
476 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000477 gd->relocaddr);
478
479 gd->start_addr_sp = gd->relocaddr;
480
Simon Glass1938f4a2013-03-11 06:49:53 +0000481 return 0;
482}
483
Simon Glass8cae8a62013-03-05 14:39:45 +0000484#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000485/* reserve memory for malloc() area */
486static int reserve_malloc(void)
487{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000488 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000489 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000490 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000491 return 0;
492}
493
494/* (permanently) allocate a Board Info struct */
495static int reserve_board(void)
496{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800497 if (!gd->bd) {
498 gd->start_addr_sp -= sizeof(bd_t);
499 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
500 memset(gd->bd, '\0', sizeof(bd_t));
501 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
502 sizeof(bd_t), gd->start_addr_sp);
503 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000504 return 0;
505}
Simon Glass8cae8a62013-03-05 14:39:45 +0000506#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000507
508static int setup_machine(void)
509{
510#ifdef CONFIG_MACH_TYPE
511 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
512#endif
513 return 0;
514}
515
516static int reserve_global_data(void)
517{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000518 gd->start_addr_sp -= sizeof(gd_t);
519 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000520 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000521 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000522 return 0;
523}
524
525static int reserve_fdt(void)
526{
527 /*
Simon Glass4c509342015-04-28 20:25:03 -0600528 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000529 * must relocate it. If it is embedded in the data section, then it
530 * will be relocated with other data.
531 */
532 if (gd->fdt_blob) {
533 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
534
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000535 gd->start_addr_sp -= gd->fdt_size;
536 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000537 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000538 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000539 }
540
541 return 0;
542}
543
Andreas Bießmann68145d42015-02-06 23:06:45 +0100544int arch_reserve_stacks(void)
545{
546 return 0;
547}
548
Simon Glass1938f4a2013-03-11 06:49:53 +0000549static int reserve_stacks(void)
550{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100551 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000552 gd->start_addr_sp -= 16;
553 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000554
555 /*
Simon Glass4c509342015-04-28 20:25:03 -0600556 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100557 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000558 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100559 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000560}
561
562static int display_new_sp(void)
563{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000564 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000565
566 return 0;
567}
568
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100569#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000570static int setup_board_part1(void)
571{
572 bd_t *bd = gd->bd;
573
574 /*
575 * Save local variables to board info struct
576 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000577 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
578 bd->bi_memsize = gd->ram_size; /* size in bytes */
579
580#ifdef CONFIG_SYS_SRAM_BASE
581 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
582 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
583#endif
584
Masahiro Yamada58dac322014-03-05 17:40:10 +0900585#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000586 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
587 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
588#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100589#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000590 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
591#endif
592#if defined(CONFIG_MPC83xx)
593 bd->bi_immrbar = CONFIG_SYS_IMMR;
594#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000595
596 return 0;
597}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100598#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000599
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100600#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000601static int setup_board_part2(void)
602{
603 bd_t *bd = gd->bd;
604
605 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
606 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
607#if defined(CONFIG_CPM2)
608 bd->bi_cpmfreq = gd->arch.cpm_clk;
609 bd->bi_brgfreq = gd->arch.brg_clk;
610 bd->bi_sccfreq = gd->arch.scc_clk;
611 bd->bi_vco = gd->arch.vco_out;
612#endif /* CONFIG_CPM2 */
613#if defined(CONFIG_MPC512X)
614 bd->bi_ipsfreq = gd->arch.ips_clk;
615#endif /* CONFIG_MPC512X */
616#if defined(CONFIG_MPC5xxx)
617 bd->bi_ipbfreq = gd->arch.ipb_clk;
618 bd->bi_pcifreq = gd->pci_clk;
619#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800620#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
621 bd->bi_pcifreq = gd->pci_clk;
622#endif
623#if defined(CONFIG_EXTRA_CLOCK)
624 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
625 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
626 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
627#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000628
629 return 0;
630}
631#endif
632
633#ifdef CONFIG_SYS_EXTBDINFO
634static int setup_board_extra(void)
635{
636 bd_t *bd = gd->bd;
637
638 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
639 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
640 sizeof(bd->bi_r_version));
641
642 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
643 bd->bi_plb_busfreq = gd->bus_clk;
644#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
645 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
646 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
647 bd->bi_pci_busfreq = get_PCI_freq();
648 bd->bi_opbfreq = get_OPB_freq();
649#elif defined(CONFIG_XILINX_405)
650 bd->bi_pci_busfreq = get_PCI_freq();
651#endif
652
653 return 0;
654}
655#endif
656
Simon Glass1938f4a2013-03-11 06:49:53 +0000657#ifdef CONFIG_POST
658static int init_post(void)
659{
660 post_bootmode_init();
661 post_run(NULL, POST_ROM | post_bootmode_get(0));
662
663 return 0;
664}
665#endif
666
Simon Glass1938f4a2013-03-11 06:49:53 +0000667static int setup_dram_config(void)
668{
669 /* Ram is board specific, so move it to board code ... */
670 dram_init_banksize();
671
672 return 0;
673}
674
675static int reloc_fdt(void)
676{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600677 if (gd->flags & GD_FLG_SKIP_RELOC)
678 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000679 if (gd->new_fdt) {
680 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
681 gd->fdt_blob = gd->new_fdt;
682 }
683
684 return 0;
685}
686
687static int setup_reloc(void)
688{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600689 if (gd->flags & GD_FLG_SKIP_RELOC) {
690 debug("Skipping relocation due to flag\n");
691 return 0;
692 }
693
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800694#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000695 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100696#ifdef CONFIG_M68K
697 /*
698 * On all ColdFire arch cpu, monitor code starts always
699 * just after the default vector table location, so at 0x400
700 */
701 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
702#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800703#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000704 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
705
706 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000707 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000708 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
709 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000710
711 return 0;
712}
713
714/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700715#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000716
717static int jump_to_copy(void)
718{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600719 if (gd->flags & GD_FLG_SKIP_RELOC)
720 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000721 /*
722 * x86 is special, but in a nice way. It uses a trampoline which
723 * enables the dcache if possible.
724 *
725 * For now, other archs use relocate_code(), which is implemented
726 * similarly for all archs. When we do generic relocation, hopefully
727 * we can make all archs enable the dcache prior to relocation.
728 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300729#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000730 /*
731 * SDRAM and console are now initialised. The final stack can now
732 * be setup in SDRAM. Code execution will continue in Flash, but
733 * with the stack in SDRAM and Global Data in temporary memory
734 * (CPU cache)
735 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600736 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000737 board_init_f_r_trampoline(gd->start_addr_sp);
738#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000739 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000740#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000741
742 return 0;
743}
744#endif
745
746/* Record the board_init_f() bootstage (after arch_cpu_init()) */
747static int mark_bootstage(void)
748{
749 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
750
751 return 0;
752}
753
Simon Glass9854a872015-11-08 23:47:48 -0700754static int initf_console_record(void)
755{
756#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
757 return console_record_init();
758#else
759 return 0;
760#endif
761}
762
Simon Glassab7cd622014-07-23 06:55:04 -0600763static int initf_dm(void)
764{
765#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
766 int ret;
767
768 ret = dm_init_and_scan(true);
769 if (ret)
770 return ret;
771#endif
772
773 return 0;
774}
775
Simon Glass146251f2015-01-19 22:16:12 -0700776/* Architecture-specific memory reservation */
777__weak int reserve_arch(void)
778{
779 return 0;
780}
781
Simon Glassd4c671c2015-03-05 12:25:16 -0700782__weak int arch_cpu_init_dm(void)
783{
784 return 0;
785}
786
Simon Glass1938f4a2013-03-11 06:49:53 +0000787static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000788#ifdef CONFIG_SANDBOX
789 setup_ram_buf,
790#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000791 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700792#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700793 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700794#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800795#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700796 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800797#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700798 initf_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700799 initf_console_record,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000800#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
801 /* TODO: can this go into arch_cpu_init()? */
802 probecpu,
803#endif
Bin Menga52a068e2015-08-20 06:40:18 -0700804#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
805 x86_fsp_init,
806#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000807 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600808 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700809 arch_cpu_init_dm,
Thomas Chou67521952015-10-30 15:35:51 +0800810 mark_bootstage, /* need timer, go after init dm */
Simon Glass1938f4a2013-03-11 06:49:53 +0000811#if defined(CONFIG_BOARD_EARLY_INIT_F)
812 board_early_init_f,
813#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000814 /* TODO: can any of this go into arch_cpu_init()? */
815#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
816 get_clocks, /* get CPU and bus clocks (etc.) */
817#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
818 && !defined(CONFIG_TQM885D)
819 adjust_sdram_tbs_8xx,
820#endif
821 /* TODO: can we rename this to timer_init()? */
822 init_timebase,
823#endif
Bin Meng643b0f72015-10-22 19:13:33 -0700824#if defined(CONFIG_X86) || defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
Francois Retiefc97088c2015-10-28 15:18:22 +0200825 defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) || \
826 defined(CONFIG_SPARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000827 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000828#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000829#ifdef CONFIG_SYS_ALLOC_DPRAM
830#if !defined(CONFIG_CPM2)
831 dpram_init,
832#endif
833#endif
834#if defined(CONFIG_BOARD_POSTCLK_INIT)
835 board_postclk_init,
836#endif
Peng Fan76648462015-10-30 17:30:02 +0800837#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100838 get_clocks,
839#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000840 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000841#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
842 /* get CPU and bus clocks according to the environment variable */
843 get_clocks_866,
844 /* adjust sdram refresh rate according to the new clock */
845 sdram_adjust_866,
846 init_timebase,
847#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000848 init_baud_rate, /* initialze baudrate settings */
849 serial_init, /* serial communications setup */
850 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000851#ifdef CONFIG_SANDBOX
852 sandbox_early_getopt_check,
853#endif
854#ifdef CONFIG_OF_CONTROL
855 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000856#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000857 display_options, /* say that we are here */
858 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900859#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860 prt_8260_rsr,
861 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900862#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000863#if defined(CONFIG_MPC83xx)
864 prt_83xx_rsr,
865#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100866#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000867 checkcpu,
868#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000869 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000870#if defined(CONFIG_MPC5xxx)
871 prt_mpc5xxx_clks,
872#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000873#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900874 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000875#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 INIT_FUNC_WATCHDOG_INIT
877#if defined(CONFIG_MISC_INIT_F)
878 misc_init_f,
879#endif
880 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100881#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000882 init_func_i2c,
883#endif
884#if defined(CONFIG_HARD_SPI)
885 init_func_spi,
886#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000887 announce_dram_init,
888 /* TODO: unify all these dram functions? */
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800889#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
890 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 dram_init, /* configure available RAM banks */
892#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100893#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000894 init_func_ram,
895#endif
896#ifdef CONFIG_POST
897 post_init_f,
898#endif
899 INIT_FUNC_WATCHDOG_RESET
900#if defined(CONFIG_SYS_DRAM_TEST)
901 testdram,
902#endif /* CONFIG_SYS_DRAM_TEST */
903 INIT_FUNC_WATCHDOG_RESET
904
Simon Glass1938f4a2013-03-11 06:49:53 +0000905#ifdef CONFIG_POST
906 init_post,
907#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000908 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000909 /*
910 * Now that we have DRAM mapped and working, we can
911 * relocate the code and continue running from DRAM.
912 *
913 * Reserve memory at end of RAM for (top down in that order):
914 * - area that won't get touched by U-Boot and Linux (optional)
915 * - kernel log buffer
916 * - protected RAM
917 * - LCD framebuffer
918 * - monitor code
919 * - board info struct
920 */
921 setup_dest_addr,
Thomas Choubbfdff32015-10-27 11:23:39 +0800922#if defined(CONFIG_BLACKFIN)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800923 /* Blackfin u-boot monitor should be on top of the ram */
924 reserve_uboot,
925#endif
Francois Retief1e85cce2015-11-23 13:05:44 +0200926#if defined(CONFIG_SPARC)
927 reserve_prom,
928#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000929#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
930 reserve_logbuffer,
931#endif
932#ifdef CONFIG_PRAM
933 reserve_pram,
934#endif
935 reserve_round_4k,
936#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
937 defined(CONFIG_ARM)
938 reserve_mmu,
939#endif
940#ifdef CONFIG_LCD
941 reserve_lcd,
942#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700943 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000944 /* TODO: Why the dependency on CONFIG_8xx? */
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800945#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
946 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100947 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000948 reserve_video,
949#endif
Thomas Choubbfdff32015-10-27 11:23:39 +0800950#if !defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000951 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800952#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000953#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000954 reserve_malloc,
955 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000956#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000957 setup_machine,
958 reserve_global_data,
959 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700960 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000961 reserve_stacks,
962 setup_dram_config,
963 show_dram_config,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100964#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000965 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100966#endif
967#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000968 INIT_FUNC_WATCHDOG_RESET
969 setup_board_part2,
970#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000971 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000972#ifdef CONFIG_SYS_EXTBDINFO
973 setup_board_extra,
974#endif
975 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 reloc_fdt,
977 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300978#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700979 copy_uboot_to_ram,
980 clear_bss,
981 do_elf_reloc_fixups,
982#endif
Simon Glass808434c2013-11-10 10:26:59 -0700983#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000984 jump_to_copy,
985#endif
986 NULL,
987};
988
989void board_init_f(ulong boot_flags)
990{
York Sun2a1680e2014-05-02 17:28:04 -0700991#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
992 /*
993 * For some archtectures, global data is initialized and used before
994 * calling this function. The data should be preserved. For others,
995 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
996 * here to host global data until relocation.
997 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000998 gd_t data;
999
1000 gd = &data;
1001
David Fengcce6be72013-12-14 11:47:36 +08001002 /*
1003 * Clear global data before it is accessed at debug print
1004 * in initcall_run_list. Otherwise the debug print probably
1005 * get the wrong vaule of gd->have_console.
1006 */
David Fengcce6be72013-12-14 11:47:36 +08001007 zero_global_data();
1008#endif
1009
Simon Glass1938f4a2013-03-11 06:49:53 +00001010 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001011 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001012
1013 if (initcall_run_list(init_sequence_f))
1014 hang();
1015
Ben Stoltz9b217492015-07-31 09:31:37 -06001016#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1017 !defined(CONFIG_EFI_APP)
Simon Glass1938f4a2013-03-11 06:49:53 +00001018 /* NOTREACHED - jump_to_copy() does not return */
1019 hang();
1020#endif
1021}
1022
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001023#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001024/*
1025 * For now this code is only used on x86.
1026 *
1027 * init_sequence_f_r is the list of init functions which are run when
1028 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1029 * The following limitations must be considered when implementing an
1030 * '_f_r' function:
1031 * - 'static' variables are read-only
1032 * - Global Data (gd->xxx) is read/write
1033 *
1034 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1035 * supported). It _should_, if possible, copy global data to RAM and
1036 * initialise the CPU caches (to speed up the relocation process)
1037 *
1038 * NOTE: At present only x86 uses this route, but it is intended that
1039 * all archs will move to this when generic relocation is implemented.
1040 */
1041static init_fnc_t init_sequence_f_r[] = {
1042 init_cache_f_r,
Simon Glass48a33802013-03-05 14:39:52 +00001043
1044 NULL,
1045};
1046
1047void board_init_f_r(void)
1048{
1049 if (initcall_run_list(init_sequence_f_r))
1050 hang();
1051
1052 /*
1053 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1054 * Transfer execution from Flash to RAM by calculating the address
1055 * of the in-RAM copy of board_init_r() and calling it
1056 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001057 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001058
1059 /* NOTREACHED - board_init_r() does not return */
1060 hang();
1061}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001062#endif /* CONFIG_X86 */