blob: 90f3b8847f27389c1a197d987c84b1a9f4943e1c [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>
16#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060017#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000018#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000019#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000020#if defined(CONFIG_CMD_IDE)
21#include <ide.h>
22#endif
23#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000024#include <initcall.h>
25#include <logbuff.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050026#include <mapmem.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000027
28/* TODO: Can we move these into arch/ headers? */
29#ifdef CONFIG_8xx
30#include <mpc8xx.h>
31#endif
32#ifdef CONFIG_5xx
33#include <mpc5xx.h>
34#endif
35#ifdef CONFIG_MPC5xxx
36#include <mpc5xxx.h>
37#endif
Gabriel Huauec3b4822014-09-03 13:57:54 -070038#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huaua76df702014-07-26 11:35:43 -070039#include <asm/mp.h>
40#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000041
Simon Glassa733b062013-04-26 02:53:43 +000042#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000043#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000044#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020045#include <status_led.h>
Simon Glass71c52db2013-06-11 11:14:42 -070046#include <trace.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000047#include <watchdog.h>
Simon Glassa733b062013-04-26 02:53:43 +000048#include <asm/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000049#include <asm/io.h>
50#include <asm/sections.h>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030051#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000052#include <asm/init_helpers.h>
53#include <asm/relocate.h>
54#endif
Simon Glassa733b062013-04-26 02:53:43 +000055#ifdef CONFIG_SANDBOX
56#include <asm/state.h>
57#endif
Simon Glassab7cd622014-07-23 06:55:04 -060058#include <dm/root.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000059#include <linux/compiler.h>
60
61/*
62 * Pointer to initial global data area
63 *
64 * Here we initialize it if needed.
65 */
66#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
67#undef XTRN_DECLARE_GLOBAL_DATA_PTR
68#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
69DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
70#else
71DECLARE_GLOBAL_DATA_PTR;
72#endif
73
74/*
75 * sjg: IMO this code should be
76 * refactored to a single function, something like:
77 *
78 * void led_set_state(enum led_colour_t colour, int on);
79 */
80/************************************************************************
81 * Coloured LED functionality
82 ************************************************************************
83 * May be supplied by boards if desired
84 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020085__weak void coloured_LED_init(void) {}
86__weak void red_led_on(void) {}
87__weak void red_led_off(void) {}
88__weak void green_led_on(void) {}
89__weak void green_led_off(void) {}
90__weak void yellow_led_on(void) {}
91__weak void yellow_led_off(void) {}
92__weak void blue_led_on(void) {}
93__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000094
95/*
96 * Why is gd allocated a register? Prior to reloc it might be better to
97 * just pass it around to each function in this file?
98 *
99 * After reloc one could argue that it is hardly used and doesn't need
100 * to be in a register. Or if it is it should perhaps hold pointers to all
101 * global data for all modules, so that post-reloc we can avoid the massive
102 * literal pool we get on ARM. Or perhaps just encourage each module to use
103 * a structure...
104 */
105
106/*
107 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
108 */
109
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800110#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000111static int init_func_watchdog_init(void)
112{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800113# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
114 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100115 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
116 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800117 hw_watchdog_init();
118# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000119 puts(" Watchdog enabled\n");
120 WATCHDOG_RESET();
121
122 return 0;
123}
124
125int init_func_watchdog_reset(void)
126{
127 WATCHDOG_RESET();
128
129 return 0;
130}
131#endif /* CONFIG_WATCHDOG */
132
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200133__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000134{
135 /* please define platform specific board_add_ram_info() */
136}
137
Simon Glass1938f4a2013-03-11 06:49:53 +0000138static int init_baud_rate(void)
139{
140 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
141 return 0;
142}
143
144static int display_text_info(void)
145{
Simon Glassa733b062013-04-26 02:53:43 +0000146#ifndef CONFIG_SANDBOX
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100147 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000148
Simon Glass632efa72013-03-11 07:06:48 +0000149 bss_start = (ulong)&__bss_start;
150 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100151
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800152#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100153 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800154#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100155 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800156#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100157
158 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
159 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000160#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000161
162#ifdef CONFIG_MODEM_SUPPORT
163 debug("Modem Support enabled\n");
164#endif
165#ifdef CONFIG_USE_IRQ
166 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
167 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
168#endif
169
170 return 0;
171}
172
173static int announce_dram_init(void)
174{
175 puts("DRAM: ");
176 return 0;
177}
178
angelo@sysam.ite310b932015-02-12 01:40:17 +0100179#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000180static int init_func_ram(void)
181{
182#ifdef CONFIG_BOARD_TYPES
183 int board_type = gd->board_type;
184#else
185 int board_type = 0; /* use dummy arg */
186#endif
187
188 gd->ram_size = initdram(board_type);
189
190 if (gd->ram_size > 0)
191 return 0;
192
193 puts("*** failed ***\n");
194 return 1;
195}
196#endif
197
Simon Glass1938f4a2013-03-11 06:49:53 +0000198static int show_dram_config(void)
199{
York Sunfa39ffe2014-05-02 17:28:05 -0700200 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000201
202#ifdef CONFIG_NR_DRAM_BANKS
203 int i;
204
205 debug("\nRAM Configuration:\n");
206 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
207 size += gd->bd->bi_dram[i].size;
208 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
209#ifdef DEBUG
210 print_size(gd->bd->bi_dram[i].size, "\n");
211#endif
212 }
213 debug("\nDRAM: ");
214#else
215 size = gd->ram_size;
216#endif
217
Simon Glasse4fef6c2013-03-11 14:30:42 +0000218 print_size(size, "");
219 board_add_ram_info(0);
220 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000221
222 return 0;
223}
224
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200225__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000226{
227#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
228 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
229 gd->bd->bi_dram[0].size = get_effective_memsize();
230#endif
231}
232
Heiko Schocherea818db2013-01-29 08:53:15 +0100233#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000234static int init_func_i2c(void)
235{
236 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200237#ifdef CONFIG_SYS_I2C
238 i2c_init_all();
239#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000240 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200241#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000242 puts("ready\n");
243 return 0;
244}
245#endif
246
247#if defined(CONFIG_HARD_SPI)
248static int init_func_spi(void)
249{
250 puts("SPI: ");
251 spi_init();
252 puts("ready\n");
253 return 0;
254}
255#endif
256
257__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000258static int zero_global_data(void)
259{
260 memset((void *)gd, '\0', sizeof(gd_t));
261
262 return 0;
263}
264
265static int setup_mon_len(void)
266{
Michal Simeke945f6d2014-05-08 16:08:44 +0200267#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100268 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glassa733b062013-04-26 02:53:43 +0000269#elif defined(CONFIG_SANDBOX)
270 gd->mon_len = (ulong)&_end - (ulong)_init;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800271#elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800272 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Simon Glass632efa72013-03-11 07:06:48 +0000273#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000274 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
275 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000276#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000277 return 0;
278}
279
280__weak int arch_cpu_init(void)
281{
282 return 0;
283}
284
Simon Glassa733b062013-04-26 02:53:43 +0000285#ifdef CONFIG_SANDBOX
286static int setup_ram_buf(void)
287{
Simon Glass5c2859c2013-11-10 10:27:03 -0700288 struct sandbox_state *state = state_get_current();
289
290 gd->arch.ram_buf = state->ram_buf;
291 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000292
293 return 0;
294}
295#endif
296
Simon Glass1938f4a2013-03-11 06:49:53 +0000297/* Get the top of usable RAM */
298__weak ulong board_get_usable_ram_top(ulong total_size)
299{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700300#ifdef CONFIG_SYS_SDRAM_BASE
301 /*
302 * Detect whether we have so much RAM it goes past the end of our
303 * 32-bit address space. If so, clip the usable RAM so it doesn't.
304 */
305 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
306 /*
307 * Will wrap back to top of 32-bit space when reservations
308 * are made.
309 */
310 return 0;
311#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000312 return gd->ram_top;
313}
314
315static int setup_dest_addr(void)
316{
317 debug("Monitor len: %08lX\n", gd->mon_len);
318 /*
319 * Ram is setup, size stored in gd !!
320 */
321 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
322#if defined(CONFIG_SYS_MEM_TOP_HIDE)
323 /*
324 * Subtract specified amount of memory to hide so that it won't
325 * get "touched" at all by U-Boot. By fixing up gd->ram_size
326 * the Linux kernel should now get passed the now "corrected"
327 * memory size and won't touch it either. This should work
328 * for arch/ppc and arch/powerpc. Only Linux board ports in
329 * arch/powerpc with bootwrapper support, that recalculate the
330 * memory size from the SDRAM controller setup will have to
331 * get fixed.
332 */
333 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
334#endif
335#ifdef CONFIG_SYS_SDRAM_BASE
336 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
337#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000338 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000339 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000340 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000341 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700342#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000343 /*
344 * We need to make sure the location we intend to put secondary core
345 * boot code is reserved and not used by any part of u-boot
346 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000347 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
348 gd->relocaddr = determine_mp_bootpg(NULL);
349 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000350 }
351#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000352 return 0;
353}
354
355#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
356static int reserve_logbuffer(void)
357{
358 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000359 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000360 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000361 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000362 return 0;
363}
364#endif
365
366#ifdef CONFIG_PRAM
367/* reserve protected RAM */
368static int reserve_pram(void)
369{
370 ulong reg;
371
372 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000373 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000374 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000375 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000376 return 0;
377}
378#endif /* CONFIG_PRAM */
379
380/* Round memory pointer down to next 4 kB limit */
381static int reserve_round_4k(void)
382{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000383 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000384 return 0;
385}
386
387#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
388 defined(CONFIG_ARM)
389static int reserve_mmu(void)
390{
391 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800392 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000393 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000394
395 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000396 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000397
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000398 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000399 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
400 gd->arch.tlb_addr + gd->arch.tlb_size);
401 return 0;
402}
403#endif
404
405#ifdef CONFIG_LCD
406static int reserve_lcd(void)
407{
408#ifdef CONFIG_FB_ADDR
409 gd->fb_base = CONFIG_FB_ADDR;
410#else
411 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000412 gd->relocaddr = lcd_setmem(gd->relocaddr);
413 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000414#endif /* CONFIG_FB_ADDR */
415 return 0;
416}
417#endif /* CONFIG_LCD */
418
Simon Glass71c52db2013-06-11 11:14:42 -0700419static int reserve_trace(void)
420{
421#ifdef CONFIG_TRACE
422 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
423 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
424 debug("Reserving %dk for trace data at: %08lx\n",
425 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
426#endif
427
428 return 0;
429}
430
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800431#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
432 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100433 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000434static int reserve_video(void)
435{
436 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000437 gd->relocaddr = video_setmem(gd->relocaddr);
438 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000439
440 return 0;
441}
442#endif
443
Simon Glass1938f4a2013-03-11 06:49:53 +0000444static int reserve_uboot(void)
445{
446 /*
447 * reserve memory for U-Boot code, data & bss
448 * round down to next 4 kB limit
449 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000450 gd->relocaddr -= gd->mon_len;
451 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000452#ifdef CONFIG_E500
453 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000454 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000455#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000456
457 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000458 gd->relocaddr);
459
460 gd->start_addr_sp = gd->relocaddr;
461
Simon Glass1938f4a2013-03-11 06:49:53 +0000462 return 0;
463}
464
Simon Glass8cae8a62013-03-05 14:39:45 +0000465#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000466/* reserve memory for malloc() area */
467static int reserve_malloc(void)
468{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000469 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000470 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000471 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000472 return 0;
473}
474
475/* (permanently) allocate a Board Info struct */
476static int reserve_board(void)
477{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800478 if (!gd->bd) {
479 gd->start_addr_sp -= sizeof(bd_t);
480 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
481 memset(gd->bd, '\0', sizeof(bd_t));
482 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
483 sizeof(bd_t), gd->start_addr_sp);
484 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000485 return 0;
486}
Simon Glass8cae8a62013-03-05 14:39:45 +0000487#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000488
489static int setup_machine(void)
490{
491#ifdef CONFIG_MACH_TYPE
492 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
493#endif
494 return 0;
495}
496
497static int reserve_global_data(void)
498{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000499 gd->start_addr_sp -= sizeof(gd_t);
500 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000501 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000502 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000503 return 0;
504}
505
506static int reserve_fdt(void)
507{
508 /*
509 * If the device tree is sitting immediate above our image then we
510 * must relocate it. If it is embedded in the data section, then it
511 * will be relocated with other data.
512 */
513 if (gd->fdt_blob) {
514 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
515
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000516 gd->start_addr_sp -= gd->fdt_size;
517 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000518 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000519 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000520 }
521
522 return 0;
523}
524
Andreas Bießmann68145d42015-02-06 23:06:45 +0100525int arch_reserve_stacks(void)
526{
527 return 0;
528}
529
Simon Glass1938f4a2013-03-11 06:49:53 +0000530static int reserve_stacks(void)
531{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100532 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000533 gd->start_addr_sp -= 16;
534 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000535
536 /*
Andreas Bießmann68145d42015-02-06 23:06:45 +0100537 * let the architecture specific code tailor gd->start_addr_sp and
538 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000539 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100540 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000541}
542
543static int display_new_sp(void)
544{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000545 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000546
547 return 0;
548}
549
angelo@sysam.ite310b932015-02-12 01:40:17 +0100550#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000551static int setup_board_part1(void)
552{
553 bd_t *bd = gd->bd;
554
555 /*
556 * Save local variables to board info struct
557 */
558
559 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
560 bd->bi_memsize = gd->ram_size; /* size in bytes */
561
562#ifdef CONFIG_SYS_SRAM_BASE
563 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
564 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
565#endif
566
Masahiro Yamada58dac322014-03-05 17:40:10 +0900567#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000568 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
569 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
570#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100571#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000572 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
573#endif
574#if defined(CONFIG_MPC83xx)
575 bd->bi_immrbar = CONFIG_SYS_IMMR;
576#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000577
578 return 0;
579}
580
581static int setup_board_part2(void)
582{
583 bd_t *bd = gd->bd;
584
585 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
586 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
587#if defined(CONFIG_CPM2)
588 bd->bi_cpmfreq = gd->arch.cpm_clk;
589 bd->bi_brgfreq = gd->arch.brg_clk;
590 bd->bi_sccfreq = gd->arch.scc_clk;
591 bd->bi_vco = gd->arch.vco_out;
592#endif /* CONFIG_CPM2 */
593#if defined(CONFIG_MPC512X)
594 bd->bi_ipsfreq = gd->arch.ips_clk;
595#endif /* CONFIG_MPC512X */
596#if defined(CONFIG_MPC5xxx)
597 bd->bi_ipbfreq = gd->arch.ipb_clk;
598 bd->bi_pcifreq = gd->pci_clk;
599#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800600#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
601 bd->bi_pcifreq = gd->pci_clk;
602#endif
603#if defined(CONFIG_EXTRA_CLOCK)
604 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
605 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
606 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
607#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000608
609 return 0;
610}
611#endif
612
613#ifdef CONFIG_SYS_EXTBDINFO
614static int setup_board_extra(void)
615{
616 bd_t *bd = gd->bd;
617
618 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
619 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
620 sizeof(bd->bi_r_version));
621
622 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
623 bd->bi_plb_busfreq = gd->bus_clk;
624#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
625 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
626 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
627 bd->bi_pci_busfreq = get_PCI_freq();
628 bd->bi_opbfreq = get_OPB_freq();
629#elif defined(CONFIG_XILINX_405)
630 bd->bi_pci_busfreq = get_PCI_freq();
631#endif
632
633 return 0;
634}
635#endif
636
Simon Glass1938f4a2013-03-11 06:49:53 +0000637#ifdef CONFIG_POST
638static int init_post(void)
639{
640 post_bootmode_init();
641 post_run(NULL, POST_ROM | post_bootmode_get(0));
642
643 return 0;
644}
645#endif
646
Simon Glass1938f4a2013-03-11 06:49:53 +0000647static int setup_dram_config(void)
648{
649 /* Ram is board specific, so move it to board code ... */
650 dram_init_banksize();
651
652 return 0;
653}
654
655static int reloc_fdt(void)
656{
657 if (gd->new_fdt) {
658 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
659 gd->fdt_blob = gd->new_fdt;
660 }
661
662 return 0;
663}
664
665static int setup_reloc(void)
666{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800667#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000668 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100669#ifdef CONFIG_M68K
670 /*
671 * On all ColdFire arch cpu, monitor code starts always
672 * just after the default vector table location, so at 0x400
673 */
674 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
675#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800676#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000677 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
678
679 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000680 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000681 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
682 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000683
684 return 0;
685}
686
687/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700688#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000689
690static int jump_to_copy(void)
691{
Simon Glass48a33802013-03-05 14:39:52 +0000692 /*
693 * x86 is special, but in a nice way. It uses a trampoline which
694 * enables the dcache if possible.
695 *
696 * For now, other archs use relocate_code(), which is implemented
697 * similarly for all archs. When we do generic relocation, hopefully
698 * we can make all archs enable the dcache prior to relocation.
699 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300700#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000701 /*
702 * SDRAM and console are now initialised. The final stack can now
703 * be setup in SDRAM. Code execution will continue in Flash, but
704 * with the stack in SDRAM and Global Data in temporary memory
705 * (CPU cache)
706 */
707 board_init_f_r_trampoline(gd->start_addr_sp);
708#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000709 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000710#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000711
712 return 0;
713}
714#endif
715
716/* Record the board_init_f() bootstage (after arch_cpu_init()) */
717static int mark_bootstage(void)
718{
719 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
720
721 return 0;
722}
723
Simon Glassd59476b2014-07-10 22:23:28 -0600724static int initf_malloc(void)
725{
726#ifdef CONFIG_SYS_MALLOC_F_LEN
727 assert(gd->malloc_base); /* Set up by crt0.S */
728 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
729 gd->malloc_ptr = 0;
730#endif
731
732 return 0;
733}
734
Simon Glassab7cd622014-07-23 06:55:04 -0600735static int initf_dm(void)
736{
737#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
738 int ret;
739
740 ret = dm_init_and_scan(true);
741 if (ret)
742 return ret;
743#endif
744
745 return 0;
746}
747
Simon Glass146251f2015-01-19 22:16:12 -0700748/* Architecture-specific memory reservation */
749__weak int reserve_arch(void)
750{
751 return 0;
752}
753
Simon Glassd4c671c2015-03-05 12:25:16 -0700754__weak int arch_cpu_init_dm(void)
755{
756 return 0;
757}
758
Simon Glass1938f4a2013-03-11 06:49:53 +0000759static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000760#ifdef CONFIG_SANDBOX
761 setup_ram_buf,
762#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000763 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700764#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700765 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700766#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800767#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700768 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800769#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700770 initf_malloc,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000771#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
772 /* TODO: can this go into arch_cpu_init()? */
773 probecpu,
774#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000775 arch_cpu_init, /* basic arch cpu dependent setup */
776 mark_bootstage,
Simon Glass3ea09532014-09-03 17:36:59 -0600777 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700778 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000779#if defined(CONFIG_BOARD_EARLY_INIT_F)
780 board_early_init_f,
781#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000782 /* TODO: can any of this go into arch_cpu_init()? */
783#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
784 get_clocks, /* get CPU and bus clocks (etc.) */
785#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
786 && !defined(CONFIG_TQM885D)
787 adjust_sdram_tbs_8xx,
788#endif
789 /* TODO: can we rename this to timer_init()? */
790 init_timebase,
791#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800792#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000793 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000794#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000795#ifdef CONFIG_SYS_ALLOC_DPRAM
796#if !defined(CONFIG_CPM2)
797 dpram_init,
798#endif
799#endif
800#if defined(CONFIG_BOARD_POSTCLK_INIT)
801 board_postclk_init,
802#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000803#ifdef CONFIG_FSL_ESDHC
804 get_clocks,
805#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100806#ifdef CONFIG_M68K
807 get_clocks,
808#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000809 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000810#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
811 /* get CPU and bus clocks according to the environment variable */
812 get_clocks_866,
813 /* adjust sdram refresh rate according to the new clock */
814 sdram_adjust_866,
815 init_timebase,
816#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000817 init_baud_rate, /* initialze baudrate settings */
818 serial_init, /* serial communications setup */
819 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000820#ifdef CONFIG_SANDBOX
821 sandbox_early_getopt_check,
822#endif
823#ifdef CONFIG_OF_CONTROL
824 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000825#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000826 display_options, /* say that we are here */
827 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900828#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000829 prt_8260_rsr,
830 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900831#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000832#if defined(CONFIG_MPC83xx)
833 prt_83xx_rsr,
834#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100835#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000836 checkcpu,
837#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000838 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000839#if defined(CONFIG_MPC5xxx)
840 prt_mpc5xxx_clks,
841#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000842#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900843 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000844#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000845 INIT_FUNC_WATCHDOG_INIT
846#if defined(CONFIG_MISC_INIT_F)
847 misc_init_f,
848#endif
849 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100850#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000851 init_func_i2c,
852#endif
853#if defined(CONFIG_HARD_SPI)
854 init_func_spi,
855#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000856 announce_dram_init,
857 /* TODO: unify all these dram functions? */
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100858#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 dram_init, /* configure available RAM banks */
860#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100861#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000862 init_func_ram,
863#endif
864#ifdef CONFIG_POST
865 post_init_f,
866#endif
867 INIT_FUNC_WATCHDOG_RESET
868#if defined(CONFIG_SYS_DRAM_TEST)
869 testdram,
870#endif /* CONFIG_SYS_DRAM_TEST */
871 INIT_FUNC_WATCHDOG_RESET
872
Simon Glass1938f4a2013-03-11 06:49:53 +0000873#ifdef CONFIG_POST
874 init_post,
875#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000877 /*
878 * Now that we have DRAM mapped and working, we can
879 * relocate the code and continue running from DRAM.
880 *
881 * Reserve memory at end of RAM for (top down in that order):
882 * - area that won't get touched by U-Boot and Linux (optional)
883 * - kernel log buffer
884 * - protected RAM
885 * - LCD framebuffer
886 * - monitor code
887 * - board info struct
888 */
889 setup_dest_addr,
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800890#if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800891 /* Blackfin u-boot monitor should be on top of the ram */
892 reserve_uboot,
893#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000894#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
895 reserve_logbuffer,
896#endif
897#ifdef CONFIG_PRAM
898 reserve_pram,
899#endif
900 reserve_round_4k,
901#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
902 defined(CONFIG_ARM)
903 reserve_mmu,
904#endif
905#ifdef CONFIG_LCD
906 reserve_lcd,
907#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700908 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000909 /* TODO: Why the dependency on CONFIG_8xx? */
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800910#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
911 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100912 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000913 reserve_video,
914#endif
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800915#if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
Simon Glass1938f4a2013-03-11 06:49:53 +0000916 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800917#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000918#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000919 reserve_malloc,
920 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000921#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000922 setup_machine,
923 reserve_global_data,
924 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700925 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000926 reserve_stacks,
927 setup_dram_config,
928 show_dram_config,
angelo@sysam.ite310b932015-02-12 01:40:17 +0100929#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000930 setup_board_part1,
931 INIT_FUNC_WATCHDOG_RESET
932 setup_board_part2,
933#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000935#ifdef CONFIG_SYS_EXTBDINFO
936 setup_board_extra,
937#endif
938 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000939 reloc_fdt,
940 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300941#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700942 copy_uboot_to_ram,
943 clear_bss,
944 do_elf_reloc_fixups,
945#endif
Simon Glass808434c2013-11-10 10:26:59 -0700946#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000947 jump_to_copy,
948#endif
949 NULL,
950};
951
952void board_init_f(ulong boot_flags)
953{
York Sun2a1680e2014-05-02 17:28:04 -0700954#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
955 /*
956 * For some archtectures, global data is initialized and used before
957 * calling this function. The data should be preserved. For others,
958 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
959 * here to host global data until relocation.
960 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000961 gd_t data;
962
963 gd = &data;
964
David Fengcce6be72013-12-14 11:47:36 +0800965 /*
966 * Clear global data before it is accessed at debug print
967 * in initcall_run_list. Otherwise the debug print probably
968 * get the wrong vaule of gd->have_console.
969 */
David Fengcce6be72013-12-14 11:47:36 +0800970 zero_global_data();
971#endif
972
Simon Glass1938f4a2013-03-11 06:49:53 +0000973 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400974 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000975
976 if (initcall_run_list(init_sequence_f))
977 hang();
978
Simon Glass808434c2013-11-10 10:26:59 -0700979#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000980 /* NOTREACHED - jump_to_copy() does not return */
981 hang();
982#endif
983}
984
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300985#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000986/*
987 * For now this code is only used on x86.
988 *
989 * init_sequence_f_r is the list of init functions which are run when
990 * U-Boot is executing from Flash with a semi-limited 'C' environment.
991 * The following limitations must be considered when implementing an
992 * '_f_r' function:
993 * - 'static' variables are read-only
994 * - Global Data (gd->xxx) is read/write
995 *
996 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
997 * supported). It _should_, if possible, copy global data to RAM and
998 * initialise the CPU caches (to speed up the relocation process)
999 *
1000 * NOTE: At present only x86 uses this route, but it is intended that
1001 * all archs will move to this when generic relocation is implemented.
1002 */
1003static init_fnc_t init_sequence_f_r[] = {
1004 init_cache_f_r,
Simon Glass48a33802013-03-05 14:39:52 +00001005
1006 NULL,
1007};
1008
1009void board_init_f_r(void)
1010{
1011 if (initcall_run_list(init_sequence_f_r))
1012 hang();
1013
1014 /*
1015 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1016 * Transfer execution from Flash to RAM by calculating the address
1017 * of the in-RAM copy of board_init_r() and calling it
1018 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001019 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001020
1021 /* NOTREACHED - board_init_r() does not return */
1022 hang();
1023}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001024#endif /* CONFIG_X86 */
1025
1026#ifndef CONFIG_X86
Simon Glass74d01862015-02-07 11:51:34 -07001027ulong board_init_f_mem(ulong top)
1028{
1029 /* Leave space for the stack we are running with now */
1030 top -= 0x40;
1031
1032 top -= sizeof(struct global_data);
1033 top = ALIGN(top, 16);
1034 gd = (struct global_data *)top;
1035 memset((void *)gd, '\0', sizeof(*gd));
1036
1037#ifdef CONFIG_SYS_MALLOC_F_LEN
1038 top -= CONFIG_SYS_MALLOC_F_LEN;
1039 gd->malloc_base = top;
1040#endif
1041
1042 return top;
1043}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001044#endif /* !CONFIG_X86 */