blob: 775df1419e6c990b66213c148bef7d2a96c7af9d [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 Glassf828bf22013-04-20 08:42:41 +0000285#ifdef CONFIG_OF_HOSTFILE
286
Simon Glassf828bf22013-04-20 08:42:41 +0000287static int read_fdt_from_file(void)
288{
289 struct sandbox_state *state = state_get_current();
Simon Glass95fac6a2014-02-27 13:25:58 -0700290 const char *fname = state->fdt_fname;
Simon Glassf828bf22013-04-20 08:42:41 +0000291 void *blob;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800292 loff_t size;
Simon Glassf828bf22013-04-20 08:42:41 +0000293 int err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700294 int fd;
Simon Glassf828bf22013-04-20 08:42:41 +0000295
296 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
297 if (!state->fdt_fname) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700298 err = fdt_create_empty_tree(blob, 256);
Simon Glassf828bf22013-04-20 08:42:41 +0000299 if (!err)
300 goto done;
Simon Glass95fac6a2014-02-27 13:25:58 -0700301 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
302 return -EINVAL;
Simon Glassf828bf22013-04-20 08:42:41 +0000303 }
Simon Glass95fac6a2014-02-27 13:25:58 -0700304
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800305 err = os_get_filesize(fname, &size);
306 if (err < 0) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700307 printf("Failed to file FDT file '%s'\n", fname);
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800308 return err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700309 }
310 fd = os_open(fname, OS_O_RDONLY);
311 if (fd < 0) {
312 printf("Failed to open FDT file '%s'\n", fname);
313 return -EACCES;
314 }
315 if (os_read(fd, blob, size) != size) {
316 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000317 return -EIO;
Simon Glass95fac6a2014-02-27 13:25:58 -0700318 }
319 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000320
321done:
322 gd->fdt_blob = blob;
323
324 return 0;
325}
326#endif
327
Simon Glassa733b062013-04-26 02:53:43 +0000328#ifdef CONFIG_SANDBOX
329static int setup_ram_buf(void)
330{
Simon Glass5c2859c2013-11-10 10:27:03 -0700331 struct sandbox_state *state = state_get_current();
332
333 gd->arch.ram_buf = state->ram_buf;
334 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000335
336 return 0;
337}
338#endif
339
Simon Glass1938f4a2013-03-11 06:49:53 +0000340static int setup_fdt(void)
341{
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900342#ifdef CONFIG_OF_CONTROL
343# ifdef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000344 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900345 gd->fdt_blob = __dtb_dt_begin;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900346# elif defined CONFIG_OF_SEPARATE
Simon Glass1938f4a2013-03-11 06:49:53 +0000347 /* FDT is at end of image */
Simon Glass632efa72013-03-11 07:06:48 +0000348 gd->fdt_blob = (ulong *)&_end;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900349# elif defined(CONFIG_OF_HOSTFILE)
Simon Glassf828bf22013-04-20 08:42:41 +0000350 if (read_fdt_from_file()) {
351 puts("Failed to read control FDT\n");
352 return -1;
353 }
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900354# endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000355 /* Allow the early environment to override the fdt address */
356 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
357 (uintptr_t)gd->fdt_blob);
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900358#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000359 return 0;
360}
361
362/* Get the top of usable RAM */
363__weak ulong board_get_usable_ram_top(ulong total_size)
364{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700365#ifdef CONFIG_SYS_SDRAM_BASE
366 /*
367 * Detect whether we have so much RAM it goes past the end of our
368 * 32-bit address space. If so, clip the usable RAM so it doesn't.
369 */
370 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
371 /*
372 * Will wrap back to top of 32-bit space when reservations
373 * are made.
374 */
375 return 0;
376#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000377 return gd->ram_top;
378}
379
380static int setup_dest_addr(void)
381{
382 debug("Monitor len: %08lX\n", gd->mon_len);
383 /*
384 * Ram is setup, size stored in gd !!
385 */
386 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
387#if defined(CONFIG_SYS_MEM_TOP_HIDE)
388 /*
389 * Subtract specified amount of memory to hide so that it won't
390 * get "touched" at all by U-Boot. By fixing up gd->ram_size
391 * the Linux kernel should now get passed the now "corrected"
392 * memory size and won't touch it either. This should work
393 * for arch/ppc and arch/powerpc. Only Linux board ports in
394 * arch/powerpc with bootwrapper support, that recalculate the
395 * memory size from the SDRAM controller setup will have to
396 * get fixed.
397 */
398 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
399#endif
400#ifdef CONFIG_SYS_SDRAM_BASE
401 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
402#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000403 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000404 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000405 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000406 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700407#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000408 /*
409 * We need to make sure the location we intend to put secondary core
410 * boot code is reserved and not used by any part of u-boot
411 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000412 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
413 gd->relocaddr = determine_mp_bootpg(NULL);
414 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000415 }
416#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000417 return 0;
418}
419
420#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
421static int reserve_logbuffer(void)
422{
423 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000424 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000425 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000426 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000427 return 0;
428}
429#endif
430
431#ifdef CONFIG_PRAM
432/* reserve protected RAM */
433static int reserve_pram(void)
434{
435 ulong reg;
436
437 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000438 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000439 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000440 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000441 return 0;
442}
443#endif /* CONFIG_PRAM */
444
445/* Round memory pointer down to next 4 kB limit */
446static int reserve_round_4k(void)
447{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000448 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000449 return 0;
450}
451
452#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
453 defined(CONFIG_ARM)
454static int reserve_mmu(void)
455{
456 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800457 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000458 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000459
460 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000461 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000462
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000463 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000464 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
465 gd->arch.tlb_addr + gd->arch.tlb_size);
466 return 0;
467}
468#endif
469
470#ifdef CONFIG_LCD
471static int reserve_lcd(void)
472{
473#ifdef CONFIG_FB_ADDR
474 gd->fb_base = CONFIG_FB_ADDR;
475#else
476 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000477 gd->relocaddr = lcd_setmem(gd->relocaddr);
478 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000479#endif /* CONFIG_FB_ADDR */
480 return 0;
481}
482#endif /* CONFIG_LCD */
483
Simon Glass71c52db2013-06-11 11:14:42 -0700484static int reserve_trace(void)
485{
486#ifdef CONFIG_TRACE
487 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
488 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
489 debug("Reserving %dk for trace data at: %08lx\n",
490 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
491#endif
492
493 return 0;
494}
495
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800496#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
497 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100498 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000499static int reserve_video(void)
500{
501 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000502 gd->relocaddr = video_setmem(gd->relocaddr);
503 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000504
505 return 0;
506}
507#endif
508
Simon Glass1938f4a2013-03-11 06:49:53 +0000509static int reserve_uboot(void)
510{
511 /*
512 * reserve memory for U-Boot code, data & bss
513 * round down to next 4 kB limit
514 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000515 gd->relocaddr -= gd->mon_len;
516 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000517#ifdef CONFIG_E500
518 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000519 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000520#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000521
522 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000523 gd->relocaddr);
524
525 gd->start_addr_sp = gd->relocaddr;
526
Simon Glass1938f4a2013-03-11 06:49:53 +0000527 return 0;
528}
529
Simon Glass8cae8a62013-03-05 14:39:45 +0000530#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000531/* reserve memory for malloc() area */
532static int reserve_malloc(void)
533{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000534 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000535 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000536 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000537 return 0;
538}
539
540/* (permanently) allocate a Board Info struct */
541static int reserve_board(void)
542{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800543 if (!gd->bd) {
544 gd->start_addr_sp -= sizeof(bd_t);
545 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
546 memset(gd->bd, '\0', sizeof(bd_t));
547 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
548 sizeof(bd_t), gd->start_addr_sp);
549 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000550 return 0;
551}
Simon Glass8cae8a62013-03-05 14:39:45 +0000552#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000553
554static int setup_machine(void)
555{
556#ifdef CONFIG_MACH_TYPE
557 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
558#endif
559 return 0;
560}
561
562static int reserve_global_data(void)
563{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000564 gd->start_addr_sp -= sizeof(gd_t);
565 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000566 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000567 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000568 return 0;
569}
570
571static int reserve_fdt(void)
572{
573 /*
574 * If the device tree is sitting immediate above our image then we
575 * must relocate it. If it is embedded in the data section, then it
576 * will be relocated with other data.
577 */
578 if (gd->fdt_blob) {
579 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
580
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000581 gd->start_addr_sp -= gd->fdt_size;
582 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000583 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000584 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000585 }
586
587 return 0;
588}
589
Andreas Bießmann68145d42015-02-06 23:06:45 +0100590int arch_reserve_stacks(void)
591{
592 return 0;
593}
594
Simon Glass1938f4a2013-03-11 06:49:53 +0000595static int reserve_stacks(void)
596{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100597 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000598 gd->start_addr_sp -= 16;
599 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000600
601 /*
Andreas Bießmann68145d42015-02-06 23:06:45 +0100602 * let the architecture specific code tailor gd->start_addr_sp and
603 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000604 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100605 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000606}
607
608static int display_new_sp(void)
609{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000610 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000611
612 return 0;
613}
614
angelo@sysam.ite310b932015-02-12 01:40:17 +0100615#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000616static int setup_board_part1(void)
617{
618 bd_t *bd = gd->bd;
619
620 /*
621 * Save local variables to board info struct
622 */
623
624 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
625 bd->bi_memsize = gd->ram_size; /* size in bytes */
626
627#ifdef CONFIG_SYS_SRAM_BASE
628 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
629 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
630#endif
631
Masahiro Yamada58dac322014-03-05 17:40:10 +0900632#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000633 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
634 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
635#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100636#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000637 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
638#endif
639#if defined(CONFIG_MPC83xx)
640 bd->bi_immrbar = CONFIG_SYS_IMMR;
641#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000642
643 return 0;
644}
645
646static int setup_board_part2(void)
647{
648 bd_t *bd = gd->bd;
649
650 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
651 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
652#if defined(CONFIG_CPM2)
653 bd->bi_cpmfreq = gd->arch.cpm_clk;
654 bd->bi_brgfreq = gd->arch.brg_clk;
655 bd->bi_sccfreq = gd->arch.scc_clk;
656 bd->bi_vco = gd->arch.vco_out;
657#endif /* CONFIG_CPM2 */
658#if defined(CONFIG_MPC512X)
659 bd->bi_ipsfreq = gd->arch.ips_clk;
660#endif /* CONFIG_MPC512X */
661#if defined(CONFIG_MPC5xxx)
662 bd->bi_ipbfreq = gd->arch.ipb_clk;
663 bd->bi_pcifreq = gd->pci_clk;
664#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800665#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
666 bd->bi_pcifreq = gd->pci_clk;
667#endif
668#if defined(CONFIG_EXTRA_CLOCK)
669 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
670 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
671 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
672#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000673
674 return 0;
675}
676#endif
677
678#ifdef CONFIG_SYS_EXTBDINFO
679static int setup_board_extra(void)
680{
681 bd_t *bd = gd->bd;
682
683 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
684 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
685 sizeof(bd->bi_r_version));
686
687 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
688 bd->bi_plb_busfreq = gd->bus_clk;
689#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
690 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
691 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
692 bd->bi_pci_busfreq = get_PCI_freq();
693 bd->bi_opbfreq = get_OPB_freq();
694#elif defined(CONFIG_XILINX_405)
695 bd->bi_pci_busfreq = get_PCI_freq();
696#endif
697
698 return 0;
699}
700#endif
701
Simon Glass1938f4a2013-03-11 06:49:53 +0000702#ifdef CONFIG_POST
703static int init_post(void)
704{
705 post_bootmode_init();
706 post_run(NULL, POST_ROM | post_bootmode_get(0));
707
708 return 0;
709}
710#endif
711
Simon Glass1938f4a2013-03-11 06:49:53 +0000712static int setup_dram_config(void)
713{
714 /* Ram is board specific, so move it to board code ... */
715 dram_init_banksize();
716
717 return 0;
718}
719
720static int reloc_fdt(void)
721{
722 if (gd->new_fdt) {
723 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
724 gd->fdt_blob = gd->new_fdt;
725 }
726
727 return 0;
728}
729
730static int setup_reloc(void)
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 Glass48a33802013-03-05 14:39:52 +0000757 /*
758 * x86 is special, but in a nice way. It uses a trampoline which
759 * enables the dcache if possible.
760 *
761 * For now, other archs use relocate_code(), which is implemented
762 * similarly for all archs. When we do generic relocation, hopefully
763 * we can make all archs enable the dcache prior to relocation.
764 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300765#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000766 /*
767 * SDRAM and console are now initialised. The final stack can now
768 * be setup in SDRAM. Code execution will continue in Flash, but
769 * with the stack in SDRAM and Global Data in temporary memory
770 * (CPU cache)
771 */
772 board_init_f_r_trampoline(gd->start_addr_sp);
773#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000774 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000775#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000776
777 return 0;
778}
779#endif
780
781/* Record the board_init_f() bootstage (after arch_cpu_init()) */
782static int mark_bootstage(void)
783{
784 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
785
786 return 0;
787}
788
Simon Glassd59476b2014-07-10 22:23:28 -0600789static int initf_malloc(void)
790{
791#ifdef CONFIG_SYS_MALLOC_F_LEN
792 assert(gd->malloc_base); /* Set up by crt0.S */
793 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
794 gd->malloc_ptr = 0;
795#endif
796
797 return 0;
798}
799
Simon Glassab7cd622014-07-23 06:55:04 -0600800static int initf_dm(void)
801{
802#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
803 int ret;
804
805 ret = dm_init_and_scan(true);
806 if (ret)
807 return ret;
808#endif
809
810 return 0;
811}
812
Simon Glass146251f2015-01-19 22:16:12 -0700813/* Architecture-specific memory reservation */
814__weak int reserve_arch(void)
815{
816 return 0;
817}
818
Simon Glassd4c671c2015-03-05 12:25:16 -0700819__weak int arch_cpu_init_dm(void)
820{
821 return 0;
822}
823
Simon Glass1938f4a2013-03-11 06:49:53 +0000824static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000825#ifdef CONFIG_SANDBOX
826 setup_ram_buf,
827#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000828 setup_mon_len,
Simon Glass71c52db2013-06-11 11:14:42 -0700829 setup_fdt,
Kevin Hilmand2107182014-12-09 15:03:58 -0800830#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700831 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800832#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700833 initf_malloc,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000834#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
835 /* TODO: can this go into arch_cpu_init()? */
836 probecpu,
837#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000838 arch_cpu_init, /* basic arch cpu dependent setup */
839 mark_bootstage,
840#ifdef CONFIG_OF_CONTROL
841 fdtdec_check_fdt,
842#endif
Simon Glass3ea09532014-09-03 17:36:59 -0600843 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700844 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000845#if defined(CONFIG_BOARD_EARLY_INIT_F)
846 board_early_init_f,
847#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000848 /* TODO: can any of this go into arch_cpu_init()? */
849#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
850 get_clocks, /* get CPU and bus clocks (etc.) */
851#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
852 && !defined(CONFIG_TQM885D)
853 adjust_sdram_tbs_8xx,
854#endif
855 /* TODO: can we rename this to timer_init()? */
856 init_timebase,
857#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800858#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000861#ifdef CONFIG_SYS_ALLOC_DPRAM
862#if !defined(CONFIG_CPM2)
863 dpram_init,
864#endif
865#endif
866#if defined(CONFIG_BOARD_POSTCLK_INIT)
867 board_postclk_init,
868#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000869#ifdef CONFIG_FSL_ESDHC
870 get_clocks,
871#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100872#ifdef CONFIG_M68K
873 get_clocks,
874#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000875 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
877 /* get CPU and bus clocks according to the environment variable */
878 get_clocks_866,
879 /* adjust sdram refresh rate according to the new clock */
880 sdram_adjust_866,
881 init_timebase,
882#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000883 init_baud_rate, /* initialze baudrate settings */
884 serial_init, /* serial communications setup */
885 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000886#ifdef CONFIG_SANDBOX
887 sandbox_early_getopt_check,
888#endif
889#ifdef CONFIG_OF_CONTROL
890 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000891#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000892 display_options, /* say that we are here */
893 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900894#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000895 prt_8260_rsr,
896 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900897#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000898#if defined(CONFIG_MPC83xx)
899 prt_83xx_rsr,
900#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100901#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000902 checkcpu,
903#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000904 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000905#if defined(CONFIG_MPC5xxx)
906 prt_mpc5xxx_clks,
907#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000908#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900909 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000910#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000911 INIT_FUNC_WATCHDOG_INIT
912#if defined(CONFIG_MISC_INIT_F)
913 misc_init_f,
914#endif
915 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100916#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000917 init_func_i2c,
918#endif
919#if defined(CONFIG_HARD_SPI)
920 init_func_spi,
921#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000922 announce_dram_init,
923 /* TODO: unify all these dram functions? */
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100924#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
Simon Glass1938f4a2013-03-11 06:49:53 +0000925 dram_init, /* configure available RAM banks */
926#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100927#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000928 init_func_ram,
929#endif
930#ifdef CONFIG_POST
931 post_init_f,
932#endif
933 INIT_FUNC_WATCHDOG_RESET
934#if defined(CONFIG_SYS_DRAM_TEST)
935 testdram,
936#endif /* CONFIG_SYS_DRAM_TEST */
937 INIT_FUNC_WATCHDOG_RESET
938
Simon Glass1938f4a2013-03-11 06:49:53 +0000939#ifdef CONFIG_POST
940 init_post,
941#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000942 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000943 /*
944 * Now that we have DRAM mapped and working, we can
945 * relocate the code and continue running from DRAM.
946 *
947 * Reserve memory at end of RAM for (top down in that order):
948 * - area that won't get touched by U-Boot and Linux (optional)
949 * - kernel log buffer
950 * - protected RAM
951 * - LCD framebuffer
952 * - monitor code
953 * - board info struct
954 */
955 setup_dest_addr,
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800956#if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800957 /* Blackfin u-boot monitor should be on top of the ram */
958 reserve_uboot,
959#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000960#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
961 reserve_logbuffer,
962#endif
963#ifdef CONFIG_PRAM
964 reserve_pram,
965#endif
966 reserve_round_4k,
967#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
968 defined(CONFIG_ARM)
969 reserve_mmu,
970#endif
971#ifdef CONFIG_LCD
972 reserve_lcd,
973#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700974 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000975 /* TODO: Why the dependency on CONFIG_8xx? */
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800976#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
977 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100978 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000979 reserve_video,
980#endif
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800981#if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
Simon Glass1938f4a2013-03-11 06:49:53 +0000982 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800983#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000984#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000985 reserve_malloc,
986 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000987#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000988 setup_machine,
989 reserve_global_data,
990 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700991 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000992 reserve_stacks,
993 setup_dram_config,
994 show_dram_config,
angelo@sysam.ite310b932015-02-12 01:40:17 +0100995#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000996 setup_board_part1,
997 INIT_FUNC_WATCHDOG_RESET
998 setup_board_part2,
999#endif
Simon Glass1938f4a2013-03-11 06:49:53 +00001000 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +00001001#ifdef CONFIG_SYS_EXTBDINFO
1002 setup_board_extra,
1003#endif
1004 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +00001005 reloc_fdt,
1006 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001007#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -07001008 copy_uboot_to_ram,
1009 clear_bss,
1010 do_elf_reloc_fixups,
1011#endif
Simon Glass808434c2013-11-10 10:26:59 -07001012#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001013 jump_to_copy,
1014#endif
1015 NULL,
1016};
1017
1018void board_init_f(ulong boot_flags)
1019{
York Sun2a1680e2014-05-02 17:28:04 -07001020#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1021 /*
1022 * For some archtectures, global data is initialized and used before
1023 * calling this function. The data should be preserved. For others,
1024 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1025 * here to host global data until relocation.
1026 */
Simon Glass1938f4a2013-03-11 06:49:53 +00001027 gd_t data;
1028
1029 gd = &data;
1030
David Fengcce6be72013-12-14 11:47:36 +08001031 /*
1032 * Clear global data before it is accessed at debug print
1033 * in initcall_run_list. Otherwise the debug print probably
1034 * get the wrong vaule of gd->have_console.
1035 */
David Fengcce6be72013-12-14 11:47:36 +08001036 zero_global_data();
1037#endif
1038
Simon Glass1938f4a2013-03-11 06:49:53 +00001039 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001040 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001041
1042 if (initcall_run_list(init_sequence_f))
1043 hang();
1044
Simon Glass808434c2013-11-10 10:26:59 -07001045#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001046 /* NOTREACHED - jump_to_copy() does not return */
1047 hang();
1048#endif
1049}
1050
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001051#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001052/*
1053 * For now this code is only used on x86.
1054 *
1055 * init_sequence_f_r is the list of init functions which are run when
1056 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1057 * The following limitations must be considered when implementing an
1058 * '_f_r' function:
1059 * - 'static' variables are read-only
1060 * - Global Data (gd->xxx) is read/write
1061 *
1062 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1063 * supported). It _should_, if possible, copy global data to RAM and
1064 * initialise the CPU caches (to speed up the relocation process)
1065 *
1066 * NOTE: At present only x86 uses this route, but it is intended that
1067 * all archs will move to this when generic relocation is implemented.
1068 */
1069static init_fnc_t init_sequence_f_r[] = {
1070 init_cache_f_r,
Simon Glass48a33802013-03-05 14:39:52 +00001071
1072 NULL,
1073};
1074
1075void board_init_f_r(void)
1076{
1077 if (initcall_run_list(init_sequence_f_r))
1078 hang();
1079
1080 /*
1081 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1082 * Transfer execution from Flash to RAM by calculating the address
1083 * of the in-RAM copy of board_init_r() and calling it
1084 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001085 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001086
1087 /* NOTREACHED - board_init_r() does not return */
1088 hang();
1089}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001090#endif /* CONFIG_X86 */
1091
1092#ifndef CONFIG_X86
Simon Glass74d01862015-02-07 11:51:34 -07001093ulong board_init_f_mem(ulong top)
1094{
1095 /* Leave space for the stack we are running with now */
1096 top -= 0x40;
1097
1098 top -= sizeof(struct global_data);
1099 top = ALIGN(top, 16);
1100 gd = (struct global_data *)top;
1101 memset((void *)gd, '\0', sizeof(*gd));
1102
1103#ifdef CONFIG_SYS_MALLOC_F_LEN
1104 top -= CONFIG_SYS_MALLOC_F_LEN;
1105 gd->malloc_base = top;
1106#endif
1107
1108 return top;
1109}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001110#endif /* !CONFIG_X86 */