blob: e1dbdf3c953bcd6c4fef9ce9954a58333e9893a6 [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 Huaua76df702014-07-26 11:35:43 -070037#if (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
38#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
Simon Glasse4fef6c2013-03-11 14:30:42 +0000109#if defined(CONFIG_WATCHDOG)
110static int init_func_watchdog_init(void)
111{
112 puts(" Watchdog enabled\n");
113 WATCHDOG_RESET();
114
115 return 0;
116}
117
118int init_func_watchdog_reset(void)
119{
120 WATCHDOG_RESET();
121
122 return 0;
123}
124#endif /* CONFIG_WATCHDOG */
125
126void __board_add_ram_info(int use_default)
127{
128 /* please define platform specific board_add_ram_info() */
129}
130
131void board_add_ram_info(int)
132 __attribute__ ((weak, alias("__board_add_ram_info")));
133
Simon Glass1938f4a2013-03-11 06:49:53 +0000134static int init_baud_rate(void)
135{
136 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
137 return 0;
138}
139
140static int display_text_info(void)
141{
Simon Glassa733b062013-04-26 02:53:43 +0000142#ifndef CONFIG_SANDBOX
Simon Glass1938f4a2013-03-11 06:49:53 +0000143 ulong bss_start, bss_end;
144
Simon Glass632efa72013-03-11 07:06:48 +0000145 bss_start = (ulong)&__bss_start;
146 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100147
Simon Glass1938f4a2013-03-11 06:49:53 +0000148 debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n",
149 CONFIG_SYS_TEXT_BASE, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000150#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000151
152#ifdef CONFIG_MODEM_SUPPORT
153 debug("Modem Support enabled\n");
154#endif
155#ifdef CONFIG_USE_IRQ
156 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
157 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
158#endif
159
160 return 0;
161}
162
163static int announce_dram_init(void)
164{
165 puts("DRAM: ");
166 return 0;
167}
168
Paul Burton3da7e5a2014-04-07 10:11:20 +0100169#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000170static int init_func_ram(void)
171{
172#ifdef CONFIG_BOARD_TYPES
173 int board_type = gd->board_type;
174#else
175 int board_type = 0; /* use dummy arg */
176#endif
177
178 gd->ram_size = initdram(board_type);
179
180 if (gd->ram_size > 0)
181 return 0;
182
183 puts("*** failed ***\n");
184 return 1;
185}
186#endif
187
Simon Glass1938f4a2013-03-11 06:49:53 +0000188static int show_dram_config(void)
189{
York Sunfa39ffe2014-05-02 17:28:05 -0700190 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000191
192#ifdef CONFIG_NR_DRAM_BANKS
193 int i;
194
195 debug("\nRAM Configuration:\n");
196 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
197 size += gd->bd->bi_dram[i].size;
198 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
199#ifdef DEBUG
200 print_size(gd->bd->bi_dram[i].size, "\n");
201#endif
202 }
203 debug("\nDRAM: ");
204#else
205 size = gd->ram_size;
206#endif
207
Simon Glasse4fef6c2013-03-11 14:30:42 +0000208 print_size(size, "");
209 board_add_ram_info(0);
210 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000211
212 return 0;
213}
214
215void __dram_init_banksize(void)
216{
217#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
218 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
219 gd->bd->bi_dram[0].size = get_effective_memsize();
220#endif
221}
222
223void dram_init_banksize(void)
224 __attribute__((weak, alias("__dram_init_banksize")));
225
Heiko Schocherea818db2013-01-29 08:53:15 +0100226#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000227static int init_func_i2c(void)
228{
229 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200230#ifdef CONFIG_SYS_I2C
231 i2c_init_all();
232#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000233 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200234#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000235 puts("ready\n");
236 return 0;
237}
238#endif
239
240#if defined(CONFIG_HARD_SPI)
241static int init_func_spi(void)
242{
243 puts("SPI: ");
244 spi_init();
245 puts("ready\n");
246 return 0;
247}
248#endif
249
250__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000251static int zero_global_data(void)
252{
253 memset((void *)gd, '\0', sizeof(gd_t));
254
255 return 0;
256}
257
258static int setup_mon_len(void)
259{
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100260#ifdef __ARM__
261 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glassa733b062013-04-26 02:53:43 +0000262#elif defined(CONFIG_SANDBOX)
263 gd->mon_len = (ulong)&_end - (ulong)_init;
Simon Glass632efa72013-03-11 07:06:48 +0000264#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000265 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
266 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000267#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000268 return 0;
269}
270
271__weak int arch_cpu_init(void)
272{
273 return 0;
274}
275
Simon Glassf828bf22013-04-20 08:42:41 +0000276#ifdef CONFIG_OF_HOSTFILE
277
Simon Glassf828bf22013-04-20 08:42:41 +0000278static int read_fdt_from_file(void)
279{
280 struct sandbox_state *state = state_get_current();
Simon Glass95fac6a2014-02-27 13:25:58 -0700281 const char *fname = state->fdt_fname;
Simon Glassf828bf22013-04-20 08:42:41 +0000282 void *blob;
Simon Glass95fac6a2014-02-27 13:25:58 -0700283 ssize_t size;
Simon Glassf828bf22013-04-20 08:42:41 +0000284 int err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700285 int fd;
Simon Glassf828bf22013-04-20 08:42:41 +0000286
287 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
288 if (!state->fdt_fname) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700289 err = fdt_create_empty_tree(blob, 256);
Simon Glassf828bf22013-04-20 08:42:41 +0000290 if (!err)
291 goto done;
Simon Glass95fac6a2014-02-27 13:25:58 -0700292 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
293 return -EINVAL;
Simon Glassf828bf22013-04-20 08:42:41 +0000294 }
Simon Glass95fac6a2014-02-27 13:25:58 -0700295
296 size = os_get_filesize(fname);
297 if (size < 0) {
298 printf("Failed to file FDT file '%s'\n", fname);
299 return -ENOENT;
300 }
301 fd = os_open(fname, OS_O_RDONLY);
302 if (fd < 0) {
303 printf("Failed to open FDT file '%s'\n", fname);
304 return -EACCES;
305 }
306 if (os_read(fd, blob, size) != size) {
307 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000308 return -EIO;
Simon Glass95fac6a2014-02-27 13:25:58 -0700309 }
310 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000311
312done:
313 gd->fdt_blob = blob;
314
315 return 0;
316}
317#endif
318
Simon Glassa733b062013-04-26 02:53:43 +0000319#ifdef CONFIG_SANDBOX
320static int setup_ram_buf(void)
321{
Simon Glass5c2859c2013-11-10 10:27:03 -0700322 struct sandbox_state *state = state_get_current();
323
324 gd->arch.ram_buf = state->ram_buf;
325 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000326
327 return 0;
328}
329#endif
330
Simon Glass1938f4a2013-03-11 06:49:53 +0000331static int setup_fdt(void)
332{
333#ifdef CONFIG_OF_EMBED
334 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900335 gd->fdt_blob = __dtb_dt_begin;
Simon Glass1938f4a2013-03-11 06:49:53 +0000336#elif defined CONFIG_OF_SEPARATE
337 /* FDT is at end of image */
Simon Glass632efa72013-03-11 07:06:48 +0000338 gd->fdt_blob = (ulong *)&_end;
Simon Glassf828bf22013-04-20 08:42:41 +0000339#elif defined(CONFIG_OF_HOSTFILE)
340 if (read_fdt_from_file()) {
341 puts("Failed to read control FDT\n");
342 return -1;
343 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000344#endif
345 /* Allow the early environment to override the fdt address */
346 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
347 (uintptr_t)gd->fdt_blob);
348 return 0;
349}
350
351/* Get the top of usable RAM */
352__weak ulong board_get_usable_ram_top(ulong total_size)
353{
354 return gd->ram_top;
355}
356
357static int setup_dest_addr(void)
358{
359 debug("Monitor len: %08lX\n", gd->mon_len);
360 /*
361 * Ram is setup, size stored in gd !!
362 */
363 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
364#if defined(CONFIG_SYS_MEM_TOP_HIDE)
365 /*
366 * Subtract specified amount of memory to hide so that it won't
367 * get "touched" at all by U-Boot. By fixing up gd->ram_size
368 * the Linux kernel should now get passed the now "corrected"
369 * memory size and won't touch it either. This should work
370 * for arch/ppc and arch/powerpc. Only Linux board ports in
371 * arch/powerpc with bootwrapper support, that recalculate the
372 * memory size from the SDRAM controller setup will have to
373 * get fixed.
374 */
375 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
376#endif
377#ifdef CONFIG_SYS_SDRAM_BASE
378 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
379#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000380 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000381 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000382 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000383 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huaua76df702014-07-26 11:35:43 -0700384#if (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000385 /*
386 * We need to make sure the location we intend to put secondary core
387 * boot code is reserved and not used by any part of u-boot
388 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000389 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
390 gd->relocaddr = determine_mp_bootpg(NULL);
391 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000392 }
393#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000394 return 0;
395}
396
397#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
398static int reserve_logbuffer(void)
399{
400 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000401 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000402 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000403 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000404 return 0;
405}
406#endif
407
408#ifdef CONFIG_PRAM
409/* reserve protected RAM */
410static int reserve_pram(void)
411{
412 ulong reg;
413
414 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000415 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000416 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000417 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000418 return 0;
419}
420#endif /* CONFIG_PRAM */
421
422/* Round memory pointer down to next 4 kB limit */
423static int reserve_round_4k(void)
424{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000425 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000426 return 0;
427}
428
429#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
430 defined(CONFIG_ARM)
431static int reserve_mmu(void)
432{
433 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800434 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000435 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000436
437 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000438 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000439
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000440 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000441 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
442 gd->arch.tlb_addr + gd->arch.tlb_size);
443 return 0;
444}
445#endif
446
447#ifdef CONFIG_LCD
448static int reserve_lcd(void)
449{
450#ifdef CONFIG_FB_ADDR
451 gd->fb_base = CONFIG_FB_ADDR;
452#else
453 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000454 gd->relocaddr = lcd_setmem(gd->relocaddr);
455 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000456#endif /* CONFIG_FB_ADDR */
457 return 0;
458}
459#endif /* CONFIG_LCD */
460
Simon Glass71c52db2013-06-11 11:14:42 -0700461static int reserve_trace(void)
462{
463#ifdef CONFIG_TRACE
464 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
465 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
466 debug("Reserving %dk for trace data at: %08lx\n",
467 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
468#endif
469
470 return 0;
471}
472
Simon Glasse4fef6c2013-03-11 14:30:42 +0000473#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
Simon Glass48a33802013-03-05 14:39:52 +0000474 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000475static int reserve_video(void)
476{
477 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000478 gd->relocaddr = video_setmem(gd->relocaddr);
479 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000480
481 return 0;
482}
483#endif
484
Simon Glass1938f4a2013-03-11 06:49:53 +0000485static int reserve_uboot(void)
486{
487 /*
488 * reserve memory for U-Boot code, data & bss
489 * round down to next 4 kB limit
490 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000491 gd->relocaddr -= gd->mon_len;
492 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000493#ifdef CONFIG_E500
494 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000495 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000496#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000497
498 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000499 gd->relocaddr);
500
501 gd->start_addr_sp = gd->relocaddr;
502
Simon Glass1938f4a2013-03-11 06:49:53 +0000503 return 0;
504}
505
Simon Glass8cae8a62013-03-05 14:39:45 +0000506#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000507/* reserve memory for malloc() area */
508static int reserve_malloc(void)
509{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000510 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000511 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000512 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000513 return 0;
514}
515
516/* (permanently) allocate a Board Info struct */
517static int reserve_board(void)
518{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000519 gd->start_addr_sp -= sizeof(bd_t);
520 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000521 memset(gd->bd, '\0', sizeof(bd_t));
522 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000523 sizeof(bd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000524 return 0;
525}
Simon Glass8cae8a62013-03-05 14:39:45 +0000526#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000527
528static int setup_machine(void)
529{
530#ifdef CONFIG_MACH_TYPE
531 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
532#endif
533 return 0;
534}
535
536static int reserve_global_data(void)
537{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000538 gd->start_addr_sp -= sizeof(gd_t);
539 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000540 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000541 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000542 return 0;
543}
544
545static int reserve_fdt(void)
546{
547 /*
548 * If the device tree is sitting immediate above our image then we
549 * must relocate it. If it is embedded in the data section, then it
550 * will be relocated with other data.
551 */
552 if (gd->fdt_blob) {
553 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
554
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000555 gd->start_addr_sp -= gd->fdt_size;
556 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000557 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000558 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000559 }
560
561 return 0;
562}
563
564static int reserve_stacks(void)
565{
Simon Glass8cae8a62013-03-05 14:39:45 +0000566#ifdef CONFIG_SPL_BUILD
567# ifdef CONFIG_ARM
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000568 gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
569 gd->irq_sp = gd->start_addr_sp;
Simon Glass8cae8a62013-03-05 14:39:45 +0000570# endif
571#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000572# ifdef CONFIG_PPC
573 ulong *s;
574# endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000575
Simon Glass1938f4a2013-03-11 06:49:53 +0000576 /* setup stack pointer for exceptions */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000577 gd->start_addr_sp -= 16;
578 gd->start_addr_sp &= ~0xf;
579 gd->irq_sp = gd->start_addr_sp;
Simon Glass1938f4a2013-03-11 06:49:53 +0000580
581 /*
582 * Handle architecture-specific things here
583 * TODO(sjg@chromium.org): Perhaps create arch_reserve_stack()
584 * to handle this and put in arch/xxx/lib/stack.c
585 */
David Fengcce6be72013-12-14 11:47:36 +0800586# if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000587# ifdef CONFIG_USE_IRQ
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000588 gd->start_addr_sp -= (CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ);
Simon Glass1938f4a2013-03-11 06:49:53 +0000589 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000590 CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000591
592 /* 8-byte alignment for ARM ABI compliance */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000593 gd->start_addr_sp &= ~0x07;
Simon Glass1938f4a2013-03-11 06:49:53 +0000594# endif
595 /* leave 3 words for abort-stack, plus 1 for alignment */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000596 gd->start_addr_sp -= 16;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000597# elif defined(CONFIG_PPC)
598 /* Clear initial stack frame */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000599 s = (ulong *) gd->start_addr_sp;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000600 *s = 0; /* Terminate back chain */
601 *++s = 0; /* NULL return address */
Simon Glass8cae8a62013-03-05 14:39:45 +0000602# endif /* Architecture specific code */
Simon Glass1938f4a2013-03-11 06:49:53 +0000603
604 return 0;
Simon Glass8cae8a62013-03-05 14:39:45 +0000605#endif
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
Simon Glasse4fef6c2013-03-11 14:30:42 +0000615#ifdef CONFIG_PPC
616static 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
636#if defined(CONFIG_MPC5xxx)
637 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 */
665
666 return 0;
667}
668#endif
669
670#ifdef CONFIG_SYS_EXTBDINFO
671static int setup_board_extra(void)
672{
673 bd_t *bd = gd->bd;
674
675 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
676 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
677 sizeof(bd->bi_r_version));
678
679 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
680 bd->bi_plb_busfreq = gd->bus_clk;
681#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
682 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
683 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
684 bd->bi_pci_busfreq = get_PCI_freq();
685 bd->bi_opbfreq = get_OPB_freq();
686#elif defined(CONFIG_XILINX_405)
687 bd->bi_pci_busfreq = get_PCI_freq();
688#endif
689
690 return 0;
691}
692#endif
693
Simon Glass1938f4a2013-03-11 06:49:53 +0000694#ifdef CONFIG_POST
695static int init_post(void)
696{
697 post_bootmode_init();
698 post_run(NULL, POST_ROM | post_bootmode_get(0));
699
700 return 0;
701}
702#endif
703
Simon Glass1938f4a2013-03-11 06:49:53 +0000704static int setup_dram_config(void)
705{
706 /* Ram is board specific, so move it to board code ... */
707 dram_init_banksize();
708
709 return 0;
710}
711
712static int reloc_fdt(void)
713{
714 if (gd->new_fdt) {
715 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
716 gd->fdt_blob = gd->new_fdt;
717 }
718
719 return 0;
720}
721
722static int setup_reloc(void)
723{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000724 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000725 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
726
727 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000728 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000729 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
730 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000731
732 return 0;
733}
734
735/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700736#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000737
738static int jump_to_copy(void)
739{
Simon Glass48a33802013-03-05 14:39:52 +0000740 /*
741 * x86 is special, but in a nice way. It uses a trampoline which
742 * enables the dcache if possible.
743 *
744 * For now, other archs use relocate_code(), which is implemented
745 * similarly for all archs. When we do generic relocation, hopefully
746 * we can make all archs enable the dcache prior to relocation.
747 */
748#ifdef CONFIG_X86
749 /*
750 * SDRAM and console are now initialised. The final stack can now
751 * be setup in SDRAM. Code execution will continue in Flash, but
752 * with the stack in SDRAM and Global Data in temporary memory
753 * (CPU cache)
754 */
755 board_init_f_r_trampoline(gd->start_addr_sp);
756#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000757 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000758#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000759
760 return 0;
761}
762#endif
763
764/* Record the board_init_f() bootstage (after arch_cpu_init()) */
765static int mark_bootstage(void)
766{
767 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
768
769 return 0;
770}
771
Simon Glassd59476b2014-07-10 22:23:28 -0600772static int initf_malloc(void)
773{
774#ifdef CONFIG_SYS_MALLOC_F_LEN
775 assert(gd->malloc_base); /* Set up by crt0.S */
776 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
777 gd->malloc_ptr = 0;
778#endif
779
780 return 0;
781}
782
Simon Glassab7cd622014-07-23 06:55:04 -0600783static int initf_dm(void)
784{
785#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
786 int ret;
787
788 ret = dm_init_and_scan(true);
789 if (ret)
790 return ret;
791#endif
792
793 return 0;
794}
795
Simon Glass1938f4a2013-03-11 06:49:53 +0000796static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000797#ifdef CONFIG_SANDBOX
798 setup_ram_buf,
799#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000800 setup_mon_len,
Simon Glass71c52db2013-06-11 11:14:42 -0700801 setup_fdt,
802 trace_early_init,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000803#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
804 /* TODO: can this go into arch_cpu_init()? */
805 probecpu,
806#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000807 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass48a33802013-03-05 14:39:52 +0000808#ifdef CONFIG_X86
809 cpu_init_f, /* TODO(sjg@chromium.org): remove */
810# ifdef CONFIG_OF_CONTROL
811 find_fdt, /* TODO(sjg@chromium.org): remove */
812# endif
813#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000814 mark_bootstage,
815#ifdef CONFIG_OF_CONTROL
816 fdtdec_check_fdt,
817#endif
818#if defined(CONFIG_BOARD_EARLY_INIT_F)
819 board_early_init_f,
820#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000821 /* TODO: can any of this go into arch_cpu_init()? */
822#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
823 get_clocks, /* get CPU and bus clocks (etc.) */
824#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
825 && !defined(CONFIG_TQM885D)
826 adjust_sdram_tbs_8xx,
827#endif
828 /* TODO: can we rename this to timer_init()? */
829 init_timebase,
830#endif
Paul Burton6dc9bac2014-04-07 10:11:21 +0100831#if defined(CONFIG_ARM) || defined(CONFIG_MIPS)
Simon Glass1938f4a2013-03-11 06:49:53 +0000832 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000833#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000834#ifdef CONFIG_SYS_ALLOC_DPRAM
835#if !defined(CONFIG_CPM2)
836 dpram_init,
837#endif
838#endif
839#if defined(CONFIG_BOARD_POSTCLK_INIT)
840 board_postclk_init,
841#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000842#ifdef CONFIG_FSL_ESDHC
843 get_clocks,
844#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000845 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000846#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
847 /* get CPU and bus clocks according to the environment variable */
848 get_clocks_866,
849 /* adjust sdram refresh rate according to the new clock */
850 sdram_adjust_866,
851 init_timebase,
852#endif
Simon Glassd59476b2014-07-10 22:23:28 -0600853 initf_malloc,
Simon Glassab7cd622014-07-23 06:55:04 -0600854 initf_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000855 init_baud_rate, /* initialze baudrate settings */
856 serial_init, /* serial communications setup */
857 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000858#ifdef CONFIG_SANDBOX
859 sandbox_early_getopt_check,
860#endif
861#ifdef CONFIG_OF_CONTROL
862 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000863#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000864 display_options, /* say that we are here */
865 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900866#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000867 prt_8260_rsr,
868 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900869#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000870#if defined(CONFIG_MPC83xx)
871 prt_83xx_rsr,
872#endif
873#ifdef CONFIG_PPC
874 checkcpu,
875#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000876 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000877#if defined(CONFIG_MPC5xxx)
878 prt_mpc5xxx_clks,
879#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000880#if defined(CONFIG_DISPLAY_BOARDINFO)
881 checkboard, /* display board info */
882#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000883 INIT_FUNC_WATCHDOG_INIT
884#if defined(CONFIG_MISC_INIT_F)
885 misc_init_f,
886#endif
887 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100888#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000889 init_func_i2c,
890#endif
891#if defined(CONFIG_HARD_SPI)
892 init_func_spi,
893#endif
894#ifdef CONFIG_X86
895 dram_init_f, /* configure available RAM banks */
Simon Glass8b42dfc2013-04-15 11:22:49 +0000896 calculate_relocation_address,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000897#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000898 announce_dram_init,
899 /* TODO: unify all these dram functions? */
900#ifdef CONFIG_ARM
901 dram_init, /* configure available RAM banks */
902#endif
Paul Burton3da7e5a2014-04-07 10:11:20 +0100903#if defined(CONFIG_MIPS) || defined(CONFIG_PPC)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000904 init_func_ram,
905#endif
906#ifdef CONFIG_POST
907 post_init_f,
908#endif
909 INIT_FUNC_WATCHDOG_RESET
910#if defined(CONFIG_SYS_DRAM_TEST)
911 testdram,
912#endif /* CONFIG_SYS_DRAM_TEST */
913 INIT_FUNC_WATCHDOG_RESET
914
Simon Glass1938f4a2013-03-11 06:49:53 +0000915#ifdef CONFIG_POST
916 init_post,
917#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000918 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000919 /*
920 * Now that we have DRAM mapped and working, we can
921 * relocate the code and continue running from DRAM.
922 *
923 * Reserve memory at end of RAM for (top down in that order):
924 * - area that won't get touched by U-Boot and Linux (optional)
925 * - kernel log buffer
926 * - protected RAM
927 * - LCD framebuffer
928 * - monitor code
929 * - board info struct
930 */
931 setup_dest_addr,
932#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
933 reserve_logbuffer,
934#endif
935#ifdef CONFIG_PRAM
936 reserve_pram,
937#endif
938 reserve_round_4k,
939#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
940 defined(CONFIG_ARM)
941 reserve_mmu,
942#endif
943#ifdef CONFIG_LCD
944 reserve_lcd,
945#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700946 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000947 /* TODO: Why the dependency on CONFIG_8xx? */
948#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
Simon Glass48a33802013-03-05 14:39:52 +0000949 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000950 reserve_video,
951#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000952 reserve_uboot,
Simon Glass8cae8a62013-03-05 14:39:45 +0000953#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000954 reserve_malloc,
955 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000956#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000957 setup_machine,
958 reserve_global_data,
959 reserve_fdt,
960 reserve_stacks,
961 setup_dram_config,
962 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000963#ifdef CONFIG_PPC
964 setup_board_part1,
965 INIT_FUNC_WATCHDOG_RESET
966 setup_board_part2,
967#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000968 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000969#ifdef CONFIG_SYS_EXTBDINFO
970 setup_board_extra,
971#endif
972 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000973 reloc_fdt,
974 setup_reloc,
Simon Glass808434c2013-11-10 10:26:59 -0700975#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 jump_to_copy,
977#endif
978 NULL,
979};
980
981void board_init_f(ulong boot_flags)
982{
York Sun2a1680e2014-05-02 17:28:04 -0700983#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
984 /*
985 * For some archtectures, global data is initialized and used before
986 * calling this function. The data should be preserved. For others,
987 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
988 * here to host global data until relocation.
989 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000990 gd_t data;
991
992 gd = &data;
993
David Fengcce6be72013-12-14 11:47:36 +0800994 /*
995 * Clear global data before it is accessed at debug print
996 * in initcall_run_list. Otherwise the debug print probably
997 * get the wrong vaule of gd->have_console.
998 */
David Fengcce6be72013-12-14 11:47:36 +0800999 zero_global_data();
1000#endif
1001
Simon Glass1938f4a2013-03-11 06:49:53 +00001002 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001003 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001004
1005 if (initcall_run_list(init_sequence_f))
1006 hang();
1007
Simon Glass808434c2013-11-10 10:26:59 -07001008#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001009 /* NOTREACHED - jump_to_copy() does not return */
1010 hang();
1011#endif
1012}
1013
Simon Glass48a33802013-03-05 14:39:52 +00001014#ifdef CONFIG_X86
1015/*
1016 * For now this code is only used on x86.
1017 *
1018 * init_sequence_f_r is the list of init functions which are run when
1019 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1020 * The following limitations must be considered when implementing an
1021 * '_f_r' function:
1022 * - 'static' variables are read-only
1023 * - Global Data (gd->xxx) is read/write
1024 *
1025 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1026 * supported). It _should_, if possible, copy global data to RAM and
1027 * initialise the CPU caches (to speed up the relocation process)
1028 *
1029 * NOTE: At present only x86 uses this route, but it is intended that
1030 * all archs will move to this when generic relocation is implemented.
1031 */
1032static init_fnc_t init_sequence_f_r[] = {
1033 init_cache_f_r,
1034 copy_uboot_to_ram,
1035 clear_bss,
1036 do_elf_reloc_fixups,
1037
1038 NULL,
1039};
1040
1041void board_init_f_r(void)
1042{
1043 if (initcall_run_list(init_sequence_f_r))
1044 hang();
1045
1046 /*
1047 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1048 * Transfer execution from Flash to RAM by calculating the address
1049 * of the in-RAM copy of board_init_r() and calling it
1050 */
1051 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
1052
1053 /* NOTREACHED - board_init_r() does not return */
1054 hang();
1055}
1056#endif /* CONFIG_X86 */