blob: b5bebc9dc862727b7aa2386f64691ace23475cc0 [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>
Simon Glasse4fef6c2013-03-11 14:30:42 +000026
27/* TODO: Can we move these into arch/ headers? */
28#ifdef CONFIG_8xx
29#include <mpc8xx.h>
30#endif
31#ifdef CONFIG_5xx
32#include <mpc5xx.h>
33#endif
34#ifdef CONFIG_MPC5xxx
35#include <mpc5xxx.h>
36#endif
Gabriel Huauec3b4822014-09-03 13:57:54 -070037#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huaua76df702014-07-26 11:35:43 -070038#include <asm/mp.h>
39#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000040
Simon Glassa733b062013-04-26 02:53:43 +000041#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000042#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000043#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020044#include <status_led.h>
Simon Glass71c52db2013-06-11 11:14:42 -070045#include <trace.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000046#include <watchdog.h>
Simon Glassa733b062013-04-26 02:53:43 +000047#include <asm/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000048#include <asm/io.h>
49#include <asm/sections.h>
Simon Glass48a33802013-03-05 14:39:52 +000050#ifdef CONFIG_X86
51#include <asm/init_helpers.h>
52#include <asm/relocate.h>
53#endif
Simon Glassa733b062013-04-26 02:53:43 +000054#ifdef CONFIG_SANDBOX
55#include <asm/state.h>
56#endif
Simon Glassab7cd622014-07-23 06:55:04 -060057#include <dm/root.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000058#include <linux/compiler.h>
59
60/*
61 * Pointer to initial global data area
62 *
63 * Here we initialize it if needed.
64 */
65#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
66#undef XTRN_DECLARE_GLOBAL_DATA_PTR
67#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
68DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
69#else
70DECLARE_GLOBAL_DATA_PTR;
71#endif
72
73/*
74 * sjg: IMO this code should be
75 * refactored to a single function, something like:
76 *
77 * void led_set_state(enum led_colour_t colour, int on);
78 */
79/************************************************************************
80 * Coloured LED functionality
81 ************************************************************************
82 * May be supplied by boards if desired
83 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020084__weak void coloured_LED_init(void) {}
85__weak void red_led_on(void) {}
86__weak void red_led_off(void) {}
87__weak void green_led_on(void) {}
88__weak void green_led_off(void) {}
89__weak void yellow_led_on(void) {}
90__weak void yellow_led_off(void) {}
91__weak void blue_led_on(void) {}
92__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000093
94/*
95 * Why is gd allocated a register? Prior to reloc it might be better to
96 * just pass it around to each function in this file?
97 *
98 * After reloc one could argue that it is hardly used and doesn't need
99 * to be in a register. Or if it is it should perhaps hold pointers to all
100 * global data for all modules, so that post-reloc we can avoid the massive
101 * literal pool we get on ARM. Or perhaps just encourage each module to use
102 * a structure...
103 */
104
105/*
106 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
107 */
108
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800109#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000110static int init_func_watchdog_init(void)
111{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800112# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
113 defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
114 defined(CONFIG_SH))
115 hw_watchdog_init();
116# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000117 puts(" Watchdog enabled\n");
118 WATCHDOG_RESET();
119
120 return 0;
121}
122
123int init_func_watchdog_reset(void)
124{
125 WATCHDOG_RESET();
126
127 return 0;
128}
129#endif /* CONFIG_WATCHDOG */
130
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200131__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000132{
133 /* please define platform specific board_add_ram_info() */
134}
135
Simon Glass1938f4a2013-03-11 06:49:53 +0000136static int init_baud_rate(void)
137{
138 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
139 return 0;
140}
141
142static int display_text_info(void)
143{
Simon Glassa733b062013-04-26 02:53:43 +0000144#ifndef CONFIG_SANDBOX
Simon Glass1938f4a2013-03-11 06:49:53 +0000145 ulong bss_start, bss_end;
146
Simon Glass632efa72013-03-11 07:06:48 +0000147 bss_start = (ulong)&__bss_start;
148 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100149
Simon Glass1938f4a2013-03-11 06:49:53 +0000150 debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n",
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800151#ifdef CONFIG_SYS_TEXT_BASE
Simon Glass1938f4a2013-03-11 06:49:53 +0000152 CONFIG_SYS_TEXT_BASE, bss_start, bss_end);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800153#else
154 CONFIG_SYS_MONITOR_BASE, bss_start, bss_end);
155#endif
Simon Glassa733b062013-04-26 02:53:43 +0000156#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000157
158#ifdef CONFIG_MODEM_SUPPORT
159 debug("Modem Support enabled\n");
160#endif
161#ifdef CONFIG_USE_IRQ
162 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
163 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
164#endif
165
166 return 0;
167}
168
169static int announce_dram_init(void)
170{
171 puts("DRAM: ");
172 return 0;
173}
174
Paul Burton3da7e5a2014-04-07 10:11:20 +0100175#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000176static int init_func_ram(void)
177{
178#ifdef CONFIG_BOARD_TYPES
179 int board_type = gd->board_type;
180#else
181 int board_type = 0; /* use dummy arg */
182#endif
183
184 gd->ram_size = initdram(board_type);
185
186 if (gd->ram_size > 0)
187 return 0;
188
189 puts("*** failed ***\n");
190 return 1;
191}
192#endif
193
Simon Glass1938f4a2013-03-11 06:49:53 +0000194static int show_dram_config(void)
195{
York Sunfa39ffe2014-05-02 17:28:05 -0700196 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000197
198#ifdef CONFIG_NR_DRAM_BANKS
199 int i;
200
201 debug("\nRAM Configuration:\n");
202 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
203 size += gd->bd->bi_dram[i].size;
204 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
205#ifdef DEBUG
206 print_size(gd->bd->bi_dram[i].size, "\n");
207#endif
208 }
209 debug("\nDRAM: ");
210#else
211 size = gd->ram_size;
212#endif
213
Simon Glasse4fef6c2013-03-11 14:30:42 +0000214 print_size(size, "");
215 board_add_ram_info(0);
216 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000217
218 return 0;
219}
220
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200221__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000222{
223#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
224 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
225 gd->bd->bi_dram[0].size = get_effective_memsize();
226#endif
227}
228
Heiko Schocherea818db2013-01-29 08:53:15 +0100229#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000230static int init_func_i2c(void)
231{
232 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200233#ifdef CONFIG_SYS_I2C
234 i2c_init_all();
235#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000236 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200237#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000238 puts("ready\n");
239 return 0;
240}
241#endif
242
243#if defined(CONFIG_HARD_SPI)
244static int init_func_spi(void)
245{
246 puts("SPI: ");
247 spi_init();
248 puts("ready\n");
249 return 0;
250}
251#endif
252
253__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000254static int zero_global_data(void)
255{
256 memset((void *)gd, '\0', sizeof(gd_t));
257
258 return 0;
259}
260
261static int setup_mon_len(void)
262{
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100263#ifdef __ARM__
264 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glassa733b062013-04-26 02:53:43 +0000265#elif defined(CONFIG_SANDBOX)
266 gd->mon_len = (ulong)&_end - (ulong)_init;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800267#elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800268 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Simon Glass632efa72013-03-11 07:06:48 +0000269#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000270 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
271 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000272#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000273 return 0;
274}
275
276__weak int arch_cpu_init(void)
277{
278 return 0;
279}
280
Simon Glassf828bf22013-04-20 08:42:41 +0000281#ifdef CONFIG_OF_HOSTFILE
282
Simon Glassf828bf22013-04-20 08:42:41 +0000283static int read_fdt_from_file(void)
284{
285 struct sandbox_state *state = state_get_current();
Simon Glass95fac6a2014-02-27 13:25:58 -0700286 const char *fname = state->fdt_fname;
Simon Glassf828bf22013-04-20 08:42:41 +0000287 void *blob;
Simon Glass95fac6a2014-02-27 13:25:58 -0700288 ssize_t size;
Simon Glassf828bf22013-04-20 08:42:41 +0000289 int err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700290 int fd;
Simon Glassf828bf22013-04-20 08:42:41 +0000291
292 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
293 if (!state->fdt_fname) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700294 err = fdt_create_empty_tree(blob, 256);
Simon Glassf828bf22013-04-20 08:42:41 +0000295 if (!err)
296 goto done;
Simon Glass95fac6a2014-02-27 13:25:58 -0700297 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
298 return -EINVAL;
Simon Glassf828bf22013-04-20 08:42:41 +0000299 }
Simon Glass95fac6a2014-02-27 13:25:58 -0700300
301 size = os_get_filesize(fname);
302 if (size < 0) {
303 printf("Failed to file FDT file '%s'\n", fname);
304 return -ENOENT;
305 }
306 fd = os_open(fname, OS_O_RDONLY);
307 if (fd < 0) {
308 printf("Failed to open FDT file '%s'\n", fname);
309 return -EACCES;
310 }
311 if (os_read(fd, blob, size) != size) {
312 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000313 return -EIO;
Simon Glass95fac6a2014-02-27 13:25:58 -0700314 }
315 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000316
317done:
318 gd->fdt_blob = blob;
319
320 return 0;
321}
322#endif
323
Simon Glassa733b062013-04-26 02:53:43 +0000324#ifdef CONFIG_SANDBOX
325static int setup_ram_buf(void)
326{
Simon Glass5c2859c2013-11-10 10:27:03 -0700327 struct sandbox_state *state = state_get_current();
328
329 gd->arch.ram_buf = state->ram_buf;
330 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000331
332 return 0;
333}
334#endif
335
Simon Glass1938f4a2013-03-11 06:49:53 +0000336static int setup_fdt(void)
337{
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900338#ifdef CONFIG_OF_CONTROL
339# ifdef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000340 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900341 gd->fdt_blob = __dtb_dt_begin;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900342# elif defined CONFIG_OF_SEPARATE
Simon Glass1938f4a2013-03-11 06:49:53 +0000343 /* FDT is at end of image */
Simon Glass632efa72013-03-11 07:06:48 +0000344 gd->fdt_blob = (ulong *)&_end;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900345# elif defined(CONFIG_OF_HOSTFILE)
Simon Glassf828bf22013-04-20 08:42:41 +0000346 if (read_fdt_from_file()) {
347 puts("Failed to read control FDT\n");
348 return -1;
349 }
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900350# endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000351 /* Allow the early environment to override the fdt address */
352 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
353 (uintptr_t)gd->fdt_blob);
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900354#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000355 return 0;
356}
357
358/* Get the top of usable RAM */
359__weak ulong board_get_usable_ram_top(ulong total_size)
360{
361 return gd->ram_top;
362}
363
364static int setup_dest_addr(void)
365{
366 debug("Monitor len: %08lX\n", gd->mon_len);
367 /*
368 * Ram is setup, size stored in gd !!
369 */
370 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
371#if defined(CONFIG_SYS_MEM_TOP_HIDE)
372 /*
373 * Subtract specified amount of memory to hide so that it won't
374 * get "touched" at all by U-Boot. By fixing up gd->ram_size
375 * the Linux kernel should now get passed the now "corrected"
376 * memory size and won't touch it either. This should work
377 * for arch/ppc and arch/powerpc. Only Linux board ports in
378 * arch/powerpc with bootwrapper support, that recalculate the
379 * memory size from the SDRAM controller setup will have to
380 * get fixed.
381 */
382 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
383#endif
384#ifdef CONFIG_SYS_SDRAM_BASE
385 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
386#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000387 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000388 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000389 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000390 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700391#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000392 /*
393 * We need to make sure the location we intend to put secondary core
394 * boot code is reserved and not used by any part of u-boot
395 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000396 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
397 gd->relocaddr = determine_mp_bootpg(NULL);
398 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000399 }
400#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000401 return 0;
402}
403
404#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
405static int reserve_logbuffer(void)
406{
407 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000408 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000409 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000410 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000411 return 0;
412}
413#endif
414
415#ifdef CONFIG_PRAM
416/* reserve protected RAM */
417static int reserve_pram(void)
418{
419 ulong reg;
420
421 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000422 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000423 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000424 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000425 return 0;
426}
427#endif /* CONFIG_PRAM */
428
429/* Round memory pointer down to next 4 kB limit */
430static int reserve_round_4k(void)
431{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000432 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000433 return 0;
434}
435
436#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
437 defined(CONFIG_ARM)
438static int reserve_mmu(void)
439{
440 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800441 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000442 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000443
444 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000445 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000446
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000447 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000448 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
449 gd->arch.tlb_addr + gd->arch.tlb_size);
450 return 0;
451}
452#endif
453
454#ifdef CONFIG_LCD
455static int reserve_lcd(void)
456{
457#ifdef CONFIG_FB_ADDR
458 gd->fb_base = CONFIG_FB_ADDR;
459#else
460 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000461 gd->relocaddr = lcd_setmem(gd->relocaddr);
462 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000463#endif /* CONFIG_FB_ADDR */
464 return 0;
465}
466#endif /* CONFIG_LCD */
467
Simon Glass71c52db2013-06-11 11:14:42 -0700468static int reserve_trace(void)
469{
470#ifdef CONFIG_TRACE
471 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
472 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
473 debug("Reserving %dk for trace data at: %08lx\n",
474 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
475#endif
476
477 return 0;
478}
479
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800480#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
481 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
482 !defined(CONFIG_BLACKFIN)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000483static int reserve_video(void)
484{
485 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000486 gd->relocaddr = video_setmem(gd->relocaddr);
487 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000488
489 return 0;
490}
491#endif
492
Simon Glass1938f4a2013-03-11 06:49:53 +0000493static int reserve_uboot(void)
494{
495 /*
496 * reserve memory for U-Boot code, data & bss
497 * round down to next 4 kB limit
498 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000499 gd->relocaddr -= gd->mon_len;
500 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000501#ifdef CONFIG_E500
502 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000503 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000504#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000505
506 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000507 gd->relocaddr);
508
509 gd->start_addr_sp = gd->relocaddr;
510
Simon Glass1938f4a2013-03-11 06:49:53 +0000511 return 0;
512}
513
Simon Glass8cae8a62013-03-05 14:39:45 +0000514#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000515/* reserve memory for malloc() area */
516static int reserve_malloc(void)
517{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000518 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000519 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000520 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000521 return 0;
522}
523
524/* (permanently) allocate a Board Info struct */
525static int reserve_board(void)
526{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800527 if (!gd->bd) {
528 gd->start_addr_sp -= sizeof(bd_t);
529 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
530 memset(gd->bd, '\0', sizeof(bd_t));
531 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
532 sizeof(bd_t), gd->start_addr_sp);
533 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000534 return 0;
535}
Simon Glass8cae8a62013-03-05 14:39:45 +0000536#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000537
538static int setup_machine(void)
539{
540#ifdef CONFIG_MACH_TYPE
541 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
542#endif
543 return 0;
544}
545
546static int reserve_global_data(void)
547{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000548 gd->start_addr_sp -= sizeof(gd_t);
549 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000550 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000551 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000552 return 0;
553}
554
555static int reserve_fdt(void)
556{
557 /*
558 * If the device tree is sitting immediate above our image then we
559 * must relocate it. If it is embedded in the data section, then it
560 * will be relocated with other data.
561 */
562 if (gd->fdt_blob) {
563 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
564
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000565 gd->start_addr_sp -= gd->fdt_size;
566 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000567 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000568 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000569 }
570
571 return 0;
572}
573
574static int reserve_stacks(void)
575{
Simon Glass8cae8a62013-03-05 14:39:45 +0000576#ifdef CONFIG_SPL_BUILD
577# ifdef CONFIG_ARM
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000578 gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
579 gd->irq_sp = gd->start_addr_sp;
Simon Glass8cae8a62013-03-05 14:39:45 +0000580# endif
581#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000582# ifdef CONFIG_PPC
583 ulong *s;
584# endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000585
Simon Glass1938f4a2013-03-11 06:49:53 +0000586 /* setup stack pointer for exceptions */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000587 gd->start_addr_sp -= 16;
588 gd->start_addr_sp &= ~0xf;
589 gd->irq_sp = gd->start_addr_sp;
Simon Glass1938f4a2013-03-11 06:49:53 +0000590
591 /*
592 * Handle architecture-specific things here
593 * TODO(sjg@chromium.org): Perhaps create arch_reserve_stack()
594 * to handle this and put in arch/xxx/lib/stack.c
595 */
David Fengcce6be72013-12-14 11:47:36 +0800596# if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000597# ifdef CONFIG_USE_IRQ
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000598 gd->start_addr_sp -= (CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ);
Simon Glass1938f4a2013-03-11 06:49:53 +0000599 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000600 CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000601
602 /* 8-byte alignment for ARM ABI compliance */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000603 gd->start_addr_sp &= ~0x07;
Simon Glass1938f4a2013-03-11 06:49:53 +0000604# endif
605 /* leave 3 words for abort-stack, plus 1 for alignment */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000606 gd->start_addr_sp -= 16;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000607# elif defined(CONFIG_PPC)
608 /* Clear initial stack frame */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000609 s = (ulong *) gd->start_addr_sp;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000610 *s = 0; /* Terminate back chain */
611 *++s = 0; /* NULL return address */
Simon Glass8cae8a62013-03-05 14:39:45 +0000612# endif /* Architecture specific code */
Simon Glass1938f4a2013-03-11 06:49:53 +0000613
614 return 0;
Simon Glass8cae8a62013-03-05 14:39:45 +0000615#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000616}
617
618static int display_new_sp(void)
619{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000620 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000621
622 return 0;
623}
624
Simon Glasse4fef6c2013-03-11 14:30:42 +0000625#ifdef CONFIG_PPC
626static int setup_board_part1(void)
627{
628 bd_t *bd = gd->bd;
629
630 /*
631 * Save local variables to board info struct
632 */
633
634 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
635 bd->bi_memsize = gd->ram_size; /* size in bytes */
636
637#ifdef CONFIG_SYS_SRAM_BASE
638 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
639 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
640#endif
641
Masahiro Yamada58dac322014-03-05 17:40:10 +0900642#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000643 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
644 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
645#endif
646#if defined(CONFIG_MPC5xxx)
647 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
648#endif
649#if defined(CONFIG_MPC83xx)
650 bd->bi_immrbar = CONFIG_SYS_IMMR;
651#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000652
653 return 0;
654}
655
656static int setup_board_part2(void)
657{
658 bd_t *bd = gd->bd;
659
660 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
661 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
662#if defined(CONFIG_CPM2)
663 bd->bi_cpmfreq = gd->arch.cpm_clk;
664 bd->bi_brgfreq = gd->arch.brg_clk;
665 bd->bi_sccfreq = gd->arch.scc_clk;
666 bd->bi_vco = gd->arch.vco_out;
667#endif /* CONFIG_CPM2 */
668#if defined(CONFIG_MPC512X)
669 bd->bi_ipsfreq = gd->arch.ips_clk;
670#endif /* CONFIG_MPC512X */
671#if defined(CONFIG_MPC5xxx)
672 bd->bi_ipbfreq = gd->arch.ipb_clk;
673 bd->bi_pcifreq = gd->pci_clk;
674#endif /* CONFIG_MPC5xxx */
675
676 return 0;
677}
678#endif
679
680#ifdef CONFIG_SYS_EXTBDINFO
681static int setup_board_extra(void)
682{
683 bd_t *bd = gd->bd;
684
685 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
686 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
687 sizeof(bd->bi_r_version));
688
689 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
690 bd->bi_plb_busfreq = gd->bus_clk;
691#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
692 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
693 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
694 bd->bi_pci_busfreq = get_PCI_freq();
695 bd->bi_opbfreq = get_OPB_freq();
696#elif defined(CONFIG_XILINX_405)
697 bd->bi_pci_busfreq = get_PCI_freq();
698#endif
699
700 return 0;
701}
702#endif
703
Simon Glass1938f4a2013-03-11 06:49:53 +0000704#ifdef CONFIG_POST
705static int init_post(void)
706{
707 post_bootmode_init();
708 post_run(NULL, POST_ROM | post_bootmode_get(0));
709
710 return 0;
711}
712#endif
713
Simon Glass1938f4a2013-03-11 06:49:53 +0000714static int setup_dram_config(void)
715{
716 /* Ram is board specific, so move it to board code ... */
717 dram_init_banksize();
718
719 return 0;
720}
721
722static int reloc_fdt(void)
723{
724 if (gd->new_fdt) {
725 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
726 gd->fdt_blob = gd->new_fdt;
727 }
728
729 return 0;
730}
731
732static int setup_reloc(void)
733{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800734#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000735 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800736#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000737 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
738
739 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000740 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000741 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
742 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000743
744 return 0;
745}
746
747/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700748#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000749
750static int jump_to_copy(void)
751{
Simon Glass48a33802013-03-05 14:39:52 +0000752 /*
753 * x86 is special, but in a nice way. It uses a trampoline which
754 * enables the dcache if possible.
755 *
756 * For now, other archs use relocate_code(), which is implemented
757 * similarly for all archs. When we do generic relocation, hopefully
758 * we can make all archs enable the dcache prior to relocation.
759 */
760#ifdef CONFIG_X86
761 /*
762 * SDRAM and console are now initialised. The final stack can now
763 * be setup in SDRAM. Code execution will continue in Flash, but
764 * with the stack in SDRAM and Global Data in temporary memory
765 * (CPU cache)
766 */
767 board_init_f_r_trampoline(gd->start_addr_sp);
768#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000769 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000770#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000771
772 return 0;
773}
774#endif
775
776/* Record the board_init_f() bootstage (after arch_cpu_init()) */
777static int mark_bootstage(void)
778{
779 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
780
781 return 0;
782}
783
Simon Glassd59476b2014-07-10 22:23:28 -0600784static int initf_malloc(void)
785{
786#ifdef CONFIG_SYS_MALLOC_F_LEN
787 assert(gd->malloc_base); /* Set up by crt0.S */
788 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
789 gd->malloc_ptr = 0;
790#endif
791
792 return 0;
793}
794
Simon Glassab7cd622014-07-23 06:55:04 -0600795static int initf_dm(void)
796{
797#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
798 int ret;
799
800 ret = dm_init_and_scan(true);
801 if (ret)
802 return ret;
803#endif
804
805 return 0;
806}
807
Simon Glass1938f4a2013-03-11 06:49:53 +0000808static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000809#ifdef CONFIG_SANDBOX
810 setup_ram_buf,
811#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000812 setup_mon_len,
Simon Glass71c52db2013-06-11 11:14:42 -0700813 setup_fdt,
814 trace_early_init,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000815#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
816 /* TODO: can this go into arch_cpu_init()? */
817 probecpu,
818#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000819 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass48a33802013-03-05 14:39:52 +0000820#ifdef CONFIG_X86
821 cpu_init_f, /* TODO(sjg@chromium.org): remove */
822# ifdef CONFIG_OF_CONTROL
823 find_fdt, /* TODO(sjg@chromium.org): remove */
824# endif
825#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000826 mark_bootstage,
827#ifdef CONFIG_OF_CONTROL
828 fdtdec_check_fdt,
829#endif
Simon Glass3ea09532014-09-03 17:36:59 -0600830 initf_malloc,
831 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000832#if defined(CONFIG_BOARD_EARLY_INIT_F)
833 board_early_init_f,
834#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000835 /* TODO: can any of this go into arch_cpu_init()? */
836#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
837 get_clocks, /* get CPU and bus clocks (etc.) */
838#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
839 && !defined(CONFIG_TQM885D)
840 adjust_sdram_tbs_8xx,
841#endif
842 /* TODO: can we rename this to timer_init()? */
843 init_timebase,
844#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800845#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000846 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000847#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000848#ifdef CONFIG_SYS_ALLOC_DPRAM
849#if !defined(CONFIG_CPM2)
850 dpram_init,
851#endif
852#endif
853#if defined(CONFIG_BOARD_POSTCLK_INIT)
854 board_postclk_init,
855#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000856#ifdef CONFIG_FSL_ESDHC
857 get_clocks,
858#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
861 /* get CPU and bus clocks according to the environment variable */
862 get_clocks_866,
863 /* adjust sdram refresh rate according to the new clock */
864 sdram_adjust_866,
865 init_timebase,
866#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000867 init_baud_rate, /* initialze baudrate settings */
868 serial_init, /* serial communications setup */
869 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000870#ifdef CONFIG_SANDBOX
871 sandbox_early_getopt_check,
872#endif
873#ifdef CONFIG_OF_CONTROL
874 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000875#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000876 display_options, /* say that we are here */
877 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900878#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000879 prt_8260_rsr,
880 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900881#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000882#if defined(CONFIG_MPC83xx)
883 prt_83xx_rsr,
884#endif
885#ifdef CONFIG_PPC
886 checkcpu,
887#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000888 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000889#if defined(CONFIG_MPC5xxx)
890 prt_mpc5xxx_clks,
891#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000892#if defined(CONFIG_DISPLAY_BOARDINFO)
893 checkboard, /* display board info */
894#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000895 INIT_FUNC_WATCHDOG_INIT
896#if defined(CONFIG_MISC_INIT_F)
897 misc_init_f,
898#endif
899 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100900#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000901 init_func_i2c,
902#endif
903#if defined(CONFIG_HARD_SPI)
904 init_func_spi,
905#endif
906#ifdef CONFIG_X86
907 dram_init_f, /* configure available RAM banks */
Simon Glass8b42dfc2013-04-15 11:22:49 +0000908 calculate_relocation_address,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000909#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000910 announce_dram_init,
911 /* TODO: unify all these dram functions? */
912#ifdef CONFIG_ARM
913 dram_init, /* configure available RAM banks */
914#endif
Paul Burton3da7e5a2014-04-07 10:11:20 +0100915#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000916 init_func_ram,
917#endif
918#ifdef CONFIG_POST
919 post_init_f,
920#endif
921 INIT_FUNC_WATCHDOG_RESET
922#if defined(CONFIG_SYS_DRAM_TEST)
923 testdram,
924#endif /* CONFIG_SYS_DRAM_TEST */
925 INIT_FUNC_WATCHDOG_RESET
926
Simon Glass1938f4a2013-03-11 06:49:53 +0000927#ifdef CONFIG_POST
928 init_post,
929#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000930 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000931 /*
932 * Now that we have DRAM mapped and working, we can
933 * relocate the code and continue running from DRAM.
934 *
935 * Reserve memory at end of RAM for (top down in that order):
936 * - area that won't get touched by U-Boot and Linux (optional)
937 * - kernel log buffer
938 * - protected RAM
939 * - LCD framebuffer
940 * - monitor code
941 * - board info struct
942 */
943 setup_dest_addr,
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800944#if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800945 /* Blackfin u-boot monitor should be on top of the ram */
946 reserve_uboot,
947#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000948#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
949 reserve_logbuffer,
950#endif
951#ifdef CONFIG_PRAM
952 reserve_pram,
953#endif
954 reserve_round_4k,
955#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
956 defined(CONFIG_ARM)
957 reserve_mmu,
958#endif
959#ifdef CONFIG_LCD
960 reserve_lcd,
961#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700962 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000963 /* TODO: Why the dependency on CONFIG_8xx? */
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800964#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
965 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
966 !defined(CONFIG_BLACKFIN)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000967 reserve_video,
968#endif
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800969#if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
Simon Glass1938f4a2013-03-11 06:49:53 +0000970 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800971#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000972#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000973 reserve_malloc,
974 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000975#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 setup_machine,
977 reserve_global_data,
978 reserve_fdt,
979 reserve_stacks,
980 setup_dram_config,
981 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000982#ifdef CONFIG_PPC
983 setup_board_part1,
984 INIT_FUNC_WATCHDOG_RESET
985 setup_board_part2,
986#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000987 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000988#ifdef CONFIG_SYS_EXTBDINFO
989 setup_board_extra,
990#endif
991 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000992 reloc_fdt,
993 setup_reloc,
Simon Glass808434c2013-11-10 10:26:59 -0700994#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000995 jump_to_copy,
996#endif
997 NULL,
998};
999
1000void board_init_f(ulong boot_flags)
1001{
York Sun2a1680e2014-05-02 17:28:04 -07001002#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1003 /*
1004 * For some archtectures, global data is initialized and used before
1005 * calling this function. The data should be preserved. For others,
1006 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1007 * here to host global data until relocation.
1008 */
Simon Glass1938f4a2013-03-11 06:49:53 +00001009 gd_t data;
1010
1011 gd = &data;
1012
David Fengcce6be72013-12-14 11:47:36 +08001013 /*
1014 * Clear global data before it is accessed at debug print
1015 * in initcall_run_list. Otherwise the debug print probably
1016 * get the wrong vaule of gd->have_console.
1017 */
David Fengcce6be72013-12-14 11:47:36 +08001018 zero_global_data();
1019#endif
1020
Simon Glass1938f4a2013-03-11 06:49:53 +00001021 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001022 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001023
1024 if (initcall_run_list(init_sequence_f))
1025 hang();
1026
Simon Glass808434c2013-11-10 10:26:59 -07001027#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001028 /* NOTREACHED - jump_to_copy() does not return */
1029 hang();
1030#endif
1031}
1032
Simon Glass48a33802013-03-05 14:39:52 +00001033#ifdef CONFIG_X86
1034/*
1035 * For now this code is only used on x86.
1036 *
1037 * init_sequence_f_r is the list of init functions which are run when
1038 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1039 * The following limitations must be considered when implementing an
1040 * '_f_r' function:
1041 * - 'static' variables are read-only
1042 * - Global Data (gd->xxx) is read/write
1043 *
1044 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1045 * supported). It _should_, if possible, copy global data to RAM and
1046 * initialise the CPU caches (to speed up the relocation process)
1047 *
1048 * NOTE: At present only x86 uses this route, but it is intended that
1049 * all archs will move to this when generic relocation is implemented.
1050 */
1051static init_fnc_t init_sequence_f_r[] = {
1052 init_cache_f_r,
1053 copy_uboot_to_ram,
1054 clear_bss,
1055 do_elf_reloc_fixups,
1056
1057 NULL,
1058};
1059
1060void board_init_f_r(void)
1061{
1062 if (initcall_run_list(init_sequence_f_r))
1063 hang();
1064
1065 /*
1066 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1067 * Transfer execution from Flash to RAM by calculating the address
1068 * of the in-RAM copy of board_init_r() and calling it
1069 */
1070 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
1071
1072 /* NOTREACHED - board_init_r() does not return */
1073 hang();
1074}
1075#endif /* CONFIG_X86 */