blob: 6f77e1d1295a1e66841ebe41bb0a9f23ebb97e9d [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>
17#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000018#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000019#if defined(CONFIG_CMD_IDE)
20#include <ide.h>
21#endif
22#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000023#include <initcall.h>
24#include <logbuff.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000025
26/* TODO: Can we move these into arch/ headers? */
27#ifdef CONFIG_8xx
28#include <mpc8xx.h>
29#endif
30#ifdef CONFIG_5xx
31#include <mpc5xx.h>
32#endif
33#ifdef CONFIG_MPC5xxx
34#include <mpc5xxx.h>
35#endif
36
Simon Glassa733b062013-04-26 02:53:43 +000037#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000038#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000039#include <spi.h>
Simon Glass71c52db2013-06-11 11:14:42 -070040#include <trace.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000041#include <watchdog.h>
Simon Glassa733b062013-04-26 02:53:43 +000042#include <asm/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000043#include <asm/io.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000044#ifdef CONFIG_MP
45#include <asm/mp.h>
46#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000047#include <asm/sections.h>
Simon Glass48a33802013-03-05 14:39:52 +000048#ifdef CONFIG_X86
49#include <asm/init_helpers.h>
50#include <asm/relocate.h>
51#endif
Simon Glassa733b062013-04-26 02:53:43 +000052#ifdef CONFIG_SANDBOX
53#include <asm/state.h>
54#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000055#include <linux/compiler.h>
56
57/*
58 * Pointer to initial global data area
59 *
60 * Here we initialize it if needed.
61 */
62#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
63#undef XTRN_DECLARE_GLOBAL_DATA_PTR
64#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
65DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
66#else
67DECLARE_GLOBAL_DATA_PTR;
68#endif
69
70/*
71 * sjg: IMO this code should be
72 * refactored to a single function, something like:
73 *
74 * void led_set_state(enum led_colour_t colour, int on);
75 */
76/************************************************************************
77 * Coloured LED functionality
78 ************************************************************************
79 * May be supplied by boards if desired
80 */
81inline void __coloured_LED_init(void) {}
82void coloured_LED_init(void)
83 __attribute__((weak, alias("__coloured_LED_init")));
84inline void __red_led_on(void) {}
85void red_led_on(void) __attribute__((weak, alias("__red_led_on")));
86inline void __red_led_off(void) {}
87void red_led_off(void) __attribute__((weak, alias("__red_led_off")));
88inline void __green_led_on(void) {}
89void green_led_on(void) __attribute__((weak, alias("__green_led_on")));
90inline void __green_led_off(void) {}
91void green_led_off(void) __attribute__((weak, alias("__green_led_off")));
92inline void __yellow_led_on(void) {}
93void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on")));
94inline void __yellow_led_off(void) {}
95void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off")));
96inline void __blue_led_on(void) {}
97void blue_led_on(void) __attribute__((weak, alias("__blue_led_on")));
98inline void __blue_led_off(void) {}
99void blue_led_off(void) __attribute__((weak, alias("__blue_led_off")));
100
101/*
102 * Why is gd allocated a register? Prior to reloc it might be better to
103 * just pass it around to each function in this file?
104 *
105 * After reloc one could argue that it is hardly used and doesn't need
106 * to be in a register. Or if it is it should perhaps hold pointers to all
107 * global data for all modules, so that post-reloc we can avoid the massive
108 * literal pool we get on ARM. Or perhaps just encourage each module to use
109 * a structure...
110 */
111
112/*
113 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
114 */
115
Simon Glasse4fef6c2013-03-11 14:30:42 +0000116#if defined(CONFIG_WATCHDOG)
117static int init_func_watchdog_init(void)
118{
119 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
133void __board_add_ram_info(int use_default)
134{
135 /* please define platform specific board_add_ram_info() */
136}
137
138void board_add_ram_info(int)
139 __attribute__ ((weak, alias("__board_add_ram_info")));
140
Simon Glass1938f4a2013-03-11 06:49:53 +0000141static int init_baud_rate(void)
142{
143 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
144 return 0;
145}
146
147static int display_text_info(void)
148{
Simon Glassa733b062013-04-26 02:53:43 +0000149#ifndef CONFIG_SANDBOX
Simon Glass1938f4a2013-03-11 06:49:53 +0000150 ulong bss_start, bss_end;
151
Simon Glass632efa72013-03-11 07:06:48 +0000152#ifdef CONFIG_SYS_SYM_OFFSETS
Simon Glass1938f4a2013-03-11 06:49:53 +0000153 bss_start = _bss_start_ofs + _TEXT_BASE;
154 bss_end = _bss_end_ofs + _TEXT_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000155#else
156 bss_start = (ulong)&__bss_start;
157 bss_end = (ulong)&__bss_end;
158#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000159 debug("U-Boot code: %08X -> %08lX BSS: -> %08lX\n",
160 CONFIG_SYS_TEXT_BASE, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000161#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000162
163#ifdef CONFIG_MODEM_SUPPORT
164 debug("Modem Support enabled\n");
165#endif
166#ifdef CONFIG_USE_IRQ
167 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
168 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
169#endif
170
171 return 0;
172}
173
174static int announce_dram_init(void)
175{
176 puts("DRAM: ");
177 return 0;
178}
179
Simon Glasse4fef6c2013-03-11 14:30:42 +0000180#ifdef CONFIG_PPC
181static int init_func_ram(void)
182{
183#ifdef CONFIG_BOARD_TYPES
184 int board_type = gd->board_type;
185#else
186 int board_type = 0; /* use dummy arg */
187#endif
188
189 gd->ram_size = initdram(board_type);
190
191 if (gd->ram_size > 0)
192 return 0;
193
194 puts("*** failed ***\n");
195 return 1;
196}
197#endif
198
Simon Glass1938f4a2013-03-11 06:49:53 +0000199static int show_dram_config(void)
200{
201 ulong size;
202
203#ifdef CONFIG_NR_DRAM_BANKS
204 int i;
205
206 debug("\nRAM Configuration:\n");
207 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
208 size += gd->bd->bi_dram[i].size;
209 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
210#ifdef DEBUG
211 print_size(gd->bd->bi_dram[i].size, "\n");
212#endif
213 }
214 debug("\nDRAM: ");
215#else
216 size = gd->ram_size;
217#endif
218
Simon Glasse4fef6c2013-03-11 14:30:42 +0000219 print_size(size, "");
220 board_add_ram_info(0);
221 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000222
223 return 0;
224}
225
Simon Glasse4fef6c2013-03-11 14:30:42 +0000226ulong get_effective_memsize(void)
227{
228#ifndef CONFIG_VERY_BIG_RAM
229 return gd->ram_size;
230#else
231 /* limit stack to what we can reasonable map */
232 return ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
233 CONFIG_MAX_MEM_MAPPED : gd->ram_size);
234#endif
235}
236
Simon Glass1938f4a2013-03-11 06:49:53 +0000237void __dram_init_banksize(void)
238{
239#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
240 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
241 gd->bd->bi_dram[0].size = get_effective_memsize();
242#endif
243}
244
245void dram_init_banksize(void)
246 __attribute__((weak, alias("__dram_init_banksize")));
247
Heiko Schocherea818db2013-01-29 08:53:15 +0100248#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000249static int init_func_i2c(void)
250{
251 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200252#ifdef CONFIG_SYS_I2C
253 i2c_init_all();
254#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000255 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200256#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000257 puts("ready\n");
258 return 0;
259}
260#endif
261
262#if defined(CONFIG_HARD_SPI)
263static int init_func_spi(void)
264{
265 puts("SPI: ");
266 spi_init();
267 puts("ready\n");
268 return 0;
269}
270#endif
271
272__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000273static int zero_global_data(void)
274{
275 memset((void *)gd, '\0', sizeof(gd_t));
276
277 return 0;
278}
279
280static int setup_mon_len(void)
281{
Simon Glass632efa72013-03-11 07:06:48 +0000282#ifdef CONFIG_SYS_SYM_OFFSETS
Simon Glass1938f4a2013-03-11 06:49:53 +0000283 gd->mon_len = _bss_end_ofs;
Simon Glassa733b062013-04-26 02:53:43 +0000284#elif defined(CONFIG_SANDBOX)
285 gd->mon_len = (ulong)&_end - (ulong)_init;
Simon Glass632efa72013-03-11 07:06:48 +0000286#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000287 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
288 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000289#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000290 return 0;
291}
292
293__weak int arch_cpu_init(void)
294{
295 return 0;
296}
297
Simon Glassf828bf22013-04-20 08:42:41 +0000298#ifdef CONFIG_OF_HOSTFILE
299
300#define CHECK(x) err = (x); if (err) goto failed;
301
302/* Create an empty device tree blob */
303static int make_empty_fdt(void *fdt)
304{
305 int err;
306
307 CHECK(fdt_create(fdt, 256));
308 CHECK(fdt_finish_reservemap(fdt));
309 CHECK(fdt_begin_node(fdt, ""));
310 CHECK(fdt_end_node(fdt));
311 CHECK(fdt_finish(fdt));
312
313 return 0;
314failed:
315 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
316 return -EACCES;
317}
318
319static int read_fdt_from_file(void)
320{
321 struct sandbox_state *state = state_get_current();
322 void *blob;
323 int size;
324 int err;
325
326 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
327 if (!state->fdt_fname) {
328 err = make_empty_fdt(blob);
329 if (!err)
330 goto done;
331 return err;
332 }
333 err = fs_set_blk_dev("host", NULL, FS_TYPE_SANDBOX);
334 if (err)
335 return err;
336 size = fs_read(state->fdt_fname, CONFIG_SYS_FDT_LOAD_ADDR, 0, 0);
337 if (size < 0)
338 return -EIO;
339
340done:
341 gd->fdt_blob = blob;
342
343 return 0;
344}
345#endif
346
Simon Glassa733b062013-04-26 02:53:43 +0000347#ifdef CONFIG_SANDBOX
348static int setup_ram_buf(void)
349{
350 gd->arch.ram_buf = os_malloc(CONFIG_SYS_SDRAM_SIZE);
351 assert(gd->arch.ram_buf);
352 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
353
354 return 0;
355}
356#endif
357
Simon Glass1938f4a2013-03-11 06:49:53 +0000358static int setup_fdt(void)
359{
360#ifdef CONFIG_OF_EMBED
361 /* Get a pointer to the FDT */
362 gd->fdt_blob = _binary_dt_dtb_start;
363#elif defined CONFIG_OF_SEPARATE
364 /* FDT is at end of image */
Simon Glass632efa72013-03-11 07:06:48 +0000365# ifdef CONFIG_SYS_SYM_OFFSETS
Simon Glass1938f4a2013-03-11 06:49:53 +0000366 gd->fdt_blob = (void *)(_end_ofs + CONFIG_SYS_TEXT_BASE);
Simon Glass632efa72013-03-11 07:06:48 +0000367# else
368 gd->fdt_blob = (ulong *)&_end;
369# endif
Simon Glassf828bf22013-04-20 08:42:41 +0000370#elif defined(CONFIG_OF_HOSTFILE)
371 if (read_fdt_from_file()) {
372 puts("Failed to read control FDT\n");
373 return -1;
374 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000375#endif
376 /* Allow the early environment to override the fdt address */
377 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
378 (uintptr_t)gd->fdt_blob);
379 return 0;
380}
381
382/* Get the top of usable RAM */
383__weak ulong board_get_usable_ram_top(ulong total_size)
384{
385 return gd->ram_top;
386}
387
388static int setup_dest_addr(void)
389{
390 debug("Monitor len: %08lX\n", gd->mon_len);
391 /*
392 * Ram is setup, size stored in gd !!
393 */
394 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
395#if defined(CONFIG_SYS_MEM_TOP_HIDE)
396 /*
397 * Subtract specified amount of memory to hide so that it won't
398 * get "touched" at all by U-Boot. By fixing up gd->ram_size
399 * the Linux kernel should now get passed the now "corrected"
400 * memory size and won't touch it either. This should work
401 * for arch/ppc and arch/powerpc. Only Linux board ports in
402 * arch/powerpc with bootwrapper support, that recalculate the
403 * memory size from the SDRAM controller setup will have to
404 * get fixed.
405 */
406 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
407#endif
408#ifdef CONFIG_SYS_SDRAM_BASE
409 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
410#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000411 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000412 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000413 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000414 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000415#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
416 /*
417 * We need to make sure the location we intend to put secondary core
418 * boot code is reserved and not used by any part of u-boot
419 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000420 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
421 gd->relocaddr = determine_mp_bootpg(NULL);
422 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000423 }
424#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000425 return 0;
426}
427
428#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
429static int reserve_logbuffer(void)
430{
431 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000432 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000433 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000434 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000435 return 0;
436}
437#endif
438
439#ifdef CONFIG_PRAM
440/* reserve protected RAM */
441static int reserve_pram(void)
442{
443 ulong reg;
444
445 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000446 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000447 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000448 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000449 return 0;
450}
451#endif /* CONFIG_PRAM */
452
453/* Round memory pointer down to next 4 kB limit */
454static int reserve_round_4k(void)
455{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000456 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000457 return 0;
458}
459
460#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
461 defined(CONFIG_ARM)
462static int reserve_mmu(void)
463{
464 /* reserve TLB table */
465 gd->arch.tlb_size = 4096 * 4;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000466 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000467
468 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000469 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000470
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000471 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000472 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
473 gd->arch.tlb_addr + gd->arch.tlb_size);
474 return 0;
475}
476#endif
477
478#ifdef CONFIG_LCD
479static int reserve_lcd(void)
480{
481#ifdef CONFIG_FB_ADDR
482 gd->fb_base = CONFIG_FB_ADDR;
483#else
484 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000485 gd->relocaddr = lcd_setmem(gd->relocaddr);
486 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000487#endif /* CONFIG_FB_ADDR */
488 return 0;
489}
490#endif /* CONFIG_LCD */
491
Simon Glass71c52db2013-06-11 11:14:42 -0700492static int reserve_trace(void)
493{
494#ifdef CONFIG_TRACE
495 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
496 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
497 debug("Reserving %dk for trace data at: %08lx\n",
498 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
499#endif
500
501 return 0;
502}
503
Simon Glasse4fef6c2013-03-11 14:30:42 +0000504#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
Simon Glass48a33802013-03-05 14:39:52 +0000505 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000506static int reserve_video(void)
507{
508 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000509 gd->relocaddr = video_setmem(gd->relocaddr);
510 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000511
512 return 0;
513}
514#endif
515
Simon Glass1938f4a2013-03-11 06:49:53 +0000516static int reserve_uboot(void)
517{
518 /*
519 * reserve memory for U-Boot code, data & bss
520 * round down to next 4 kB limit
521 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000522 gd->relocaddr -= gd->mon_len;
523 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000524#ifdef CONFIG_E500
525 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000526 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000527#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000528
529 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000530 gd->relocaddr);
531
532 gd->start_addr_sp = gd->relocaddr;
533
Simon Glass1938f4a2013-03-11 06:49:53 +0000534 return 0;
535}
536
Simon Glass8cae8a62013-03-05 14:39:45 +0000537#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000538/* reserve memory for malloc() area */
539static int reserve_malloc(void)
540{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000541 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000542 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000543 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000544 return 0;
545}
546
547/* (permanently) allocate a Board Info struct */
548static int reserve_board(void)
549{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000550 gd->start_addr_sp -= sizeof(bd_t);
551 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000552 memset(gd->bd, '\0', sizeof(bd_t));
553 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000554 sizeof(bd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000555 return 0;
556}
Simon Glass8cae8a62013-03-05 14:39:45 +0000557#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000558
559static int setup_machine(void)
560{
561#ifdef CONFIG_MACH_TYPE
562 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
563#endif
564 return 0;
565}
566
567static int reserve_global_data(void)
568{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000569 gd->start_addr_sp -= sizeof(gd_t);
570 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000571 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000572 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000573 return 0;
574}
575
576static int reserve_fdt(void)
577{
578 /*
579 * If the device tree is sitting immediate above our image then we
580 * must relocate it. If it is embedded in the data section, then it
581 * will be relocated with other data.
582 */
583 if (gd->fdt_blob) {
584 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
585
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000586 gd->start_addr_sp -= gd->fdt_size;
587 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000588 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000589 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000590 }
591
592 return 0;
593}
594
595static int reserve_stacks(void)
596{
Simon Glass8cae8a62013-03-05 14:39:45 +0000597#ifdef CONFIG_SPL_BUILD
598# ifdef CONFIG_ARM
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000599 gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
600 gd->irq_sp = gd->start_addr_sp;
Simon Glass8cae8a62013-03-05 14:39:45 +0000601# endif
602#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000603# ifdef CONFIG_PPC
604 ulong *s;
605# endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000606
Simon Glass1938f4a2013-03-11 06:49:53 +0000607 /* setup stack pointer for exceptions */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000608 gd->start_addr_sp -= 16;
609 gd->start_addr_sp &= ~0xf;
610 gd->irq_sp = gd->start_addr_sp;
Simon Glass1938f4a2013-03-11 06:49:53 +0000611
612 /*
613 * Handle architecture-specific things here
614 * TODO(sjg@chromium.org): Perhaps create arch_reserve_stack()
615 * to handle this and put in arch/xxx/lib/stack.c
616 */
617# ifdef CONFIG_ARM
618# ifdef CONFIG_USE_IRQ
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000619 gd->start_addr_sp -= (CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ);
Simon Glass1938f4a2013-03-11 06:49:53 +0000620 debug("Reserving %zu Bytes for IRQ stack at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000621 CONFIG_STACKSIZE_IRQ + CONFIG_STACKSIZE_FIQ, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000622
623 /* 8-byte alignment for ARM ABI compliance */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000624 gd->start_addr_sp &= ~0x07;
Simon Glass1938f4a2013-03-11 06:49:53 +0000625# endif
626 /* leave 3 words for abort-stack, plus 1 for alignment */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000627 gd->start_addr_sp -= 16;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000628# elif defined(CONFIG_PPC)
629 /* Clear initial stack frame */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000630 s = (ulong *) gd->start_addr_sp;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000631 *s = 0; /* Terminate back chain */
632 *++s = 0; /* NULL return address */
Simon Glass8cae8a62013-03-05 14:39:45 +0000633# endif /* Architecture specific code */
Simon Glass1938f4a2013-03-11 06:49:53 +0000634
635 return 0;
Simon Glass8cae8a62013-03-05 14:39:45 +0000636#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000637}
638
639static int display_new_sp(void)
640{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000641 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000642
643 return 0;
644}
645
Simon Glasse4fef6c2013-03-11 14:30:42 +0000646#ifdef CONFIG_PPC
647static int setup_board_part1(void)
648{
649 bd_t *bd = gd->bd;
650
651 /*
652 * Save local variables to board info struct
653 */
654
655 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
656 bd->bi_memsize = gd->ram_size; /* size in bytes */
657
658#ifdef CONFIG_SYS_SRAM_BASE
659 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
660 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
661#endif
662
663#if defined(CONFIG_8xx) || defined(CONFIG_8260) || defined(CONFIG_5xx) || \
664 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
665 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
666#endif
667#if defined(CONFIG_MPC5xxx)
668 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
669#endif
670#if defined(CONFIG_MPC83xx)
671 bd->bi_immrbar = CONFIG_SYS_IMMR;
672#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000673
674 return 0;
675}
676
677static int setup_board_part2(void)
678{
679 bd_t *bd = gd->bd;
680
681 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
682 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
683#if defined(CONFIG_CPM2)
684 bd->bi_cpmfreq = gd->arch.cpm_clk;
685 bd->bi_brgfreq = gd->arch.brg_clk;
686 bd->bi_sccfreq = gd->arch.scc_clk;
687 bd->bi_vco = gd->arch.vco_out;
688#endif /* CONFIG_CPM2 */
689#if defined(CONFIG_MPC512X)
690 bd->bi_ipsfreq = gd->arch.ips_clk;
691#endif /* CONFIG_MPC512X */
692#if defined(CONFIG_MPC5xxx)
693 bd->bi_ipbfreq = gd->arch.ipb_clk;
694 bd->bi_pcifreq = gd->pci_clk;
695#endif /* CONFIG_MPC5xxx */
696
697 return 0;
698}
699#endif
700
701#ifdef CONFIG_SYS_EXTBDINFO
702static int setup_board_extra(void)
703{
704 bd_t *bd = gd->bd;
705
706 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
707 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
708 sizeof(bd->bi_r_version));
709
710 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
711 bd->bi_plb_busfreq = gd->bus_clk;
712#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
713 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
714 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
715 bd->bi_pci_busfreq = get_PCI_freq();
716 bd->bi_opbfreq = get_OPB_freq();
717#elif defined(CONFIG_XILINX_405)
718 bd->bi_pci_busfreq = get_PCI_freq();
719#endif
720
721 return 0;
722}
723#endif
724
Simon Glass1938f4a2013-03-11 06:49:53 +0000725#ifdef CONFIG_POST
726static int init_post(void)
727{
728 post_bootmode_init();
729 post_run(NULL, POST_ROM | post_bootmode_get(0));
730
731 return 0;
732}
733#endif
734
735static int setup_baud_rate(void)
736{
737 /* Ick, can we get rid of this line? */
738 gd->bd->bi_baudrate = gd->baudrate;
739
740 return 0;
741}
742
743static int setup_dram_config(void)
744{
745 /* Ram is board specific, so move it to board code ... */
746 dram_init_banksize();
747
748 return 0;
749}
750
751static int reloc_fdt(void)
752{
753 if (gd->new_fdt) {
754 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
755 gd->fdt_blob = gd->new_fdt;
756 }
757
758 return 0;
759}
760
761static int setup_reloc(void)
762{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000763 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000764 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
765
766 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000767 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000768 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
769 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000770
771 return 0;
772}
773
774/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700775#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000776
777static int jump_to_copy(void)
778{
Simon Glass48a33802013-03-05 14:39:52 +0000779 /*
780 * x86 is special, but in a nice way. It uses a trampoline which
781 * enables the dcache if possible.
782 *
783 * For now, other archs use relocate_code(), which is implemented
784 * similarly for all archs. When we do generic relocation, hopefully
785 * we can make all archs enable the dcache prior to relocation.
786 */
787#ifdef CONFIG_X86
788 /*
789 * SDRAM and console are now initialised. The final stack can now
790 * be setup in SDRAM. Code execution will continue in Flash, but
791 * with the stack in SDRAM and Global Data in temporary memory
792 * (CPU cache)
793 */
794 board_init_f_r_trampoline(gd->start_addr_sp);
795#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000796 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000797#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000798
799 return 0;
800}
801#endif
802
803/* Record the board_init_f() bootstage (after arch_cpu_init()) */
804static int mark_bootstage(void)
805{
806 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
807
808 return 0;
809}
810
811static init_fnc_t init_sequence_f[] = {
Simon Glasse4fef6c2013-03-11 14:30:42 +0000812#if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \
813 !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \
Simon Glass7525c2d2013-04-15 11:25:20 +0000814 !defined(CONFIG_MPC86xx) && !defined(CONFIG_X86)
Simon Glass632efa72013-03-11 07:06:48 +0000815 zero_global_data,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000816#endif
Simon Glassa733b062013-04-26 02:53:43 +0000817#ifdef CONFIG_SANDBOX
818 setup_ram_buf,
819#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000820 setup_mon_len,
Simon Glass71c52db2013-06-11 11:14:42 -0700821 setup_fdt,
822 trace_early_init,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000823#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
824 /* TODO: can this go into arch_cpu_init()? */
825 probecpu,
826#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000827 arch_cpu_init, /* basic arch cpu dependent setup */
Simon Glass48a33802013-03-05 14:39:52 +0000828#ifdef CONFIG_X86
829 cpu_init_f, /* TODO(sjg@chromium.org): remove */
830# ifdef CONFIG_OF_CONTROL
831 find_fdt, /* TODO(sjg@chromium.org): remove */
832# endif
833#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000834 mark_bootstage,
835#ifdef CONFIG_OF_CONTROL
836 fdtdec_check_fdt,
837#endif
838#if defined(CONFIG_BOARD_EARLY_INIT_F)
839 board_early_init_f,
840#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000841 /* TODO: can any of this go into arch_cpu_init()? */
842#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
843 get_clocks, /* get CPU and bus clocks (etc.) */
844#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
845 && !defined(CONFIG_TQM885D)
846 adjust_sdram_tbs_8xx,
847#endif
848 /* TODO: can we rename this to timer_init()? */
849 init_timebase,
850#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000851#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000852 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000853#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000854#ifdef CONFIG_SYS_ALLOC_DPRAM
855#if !defined(CONFIG_CPM2)
856 dpram_init,
857#endif
858#endif
859#if defined(CONFIG_BOARD_POSTCLK_INIT)
860 board_postclk_init,
861#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000862#ifdef CONFIG_FSL_ESDHC
863 get_clocks,
864#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000865 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000866#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
867 /* get CPU and bus clocks according to the environment variable */
868 get_clocks_866,
869 /* adjust sdram refresh rate according to the new clock */
870 sdram_adjust_866,
871 init_timebase,
872#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000873 init_baud_rate, /* initialze baudrate settings */
874 serial_init, /* serial communications setup */
875 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000876#ifdef CONFIG_SANDBOX
877 sandbox_early_getopt_check,
878#endif
879#ifdef CONFIG_OF_CONTROL
880 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000881#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000882 display_options, /* say that we are here */
883 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000884#if defined(CONFIG_8260)
885 prt_8260_rsr,
886 prt_8260_clks,
887#endif /* CONFIG_8260 */
888#if defined(CONFIG_MPC83xx)
889 prt_83xx_rsr,
890#endif
891#ifdef CONFIG_PPC
892 checkcpu,
893#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000894#if defined(CONFIG_DISPLAY_CPUINFO)
895 print_cpuinfo, /* display cpu info (and speed) */
896#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000897#if defined(CONFIG_MPC5xxx)
898 prt_mpc5xxx_clks,
899#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000900#if defined(CONFIG_DISPLAY_BOARDINFO)
901 checkboard, /* display board info */
902#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000903 INIT_FUNC_WATCHDOG_INIT
904#if defined(CONFIG_MISC_INIT_F)
905 misc_init_f,
906#endif
907 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100908#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000909 init_func_i2c,
910#endif
911#if defined(CONFIG_HARD_SPI)
912 init_func_spi,
913#endif
914#ifdef CONFIG_X86
915 dram_init_f, /* configure available RAM banks */
Simon Glass8b42dfc2013-04-15 11:22:49 +0000916 calculate_relocation_address,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000917#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000918 announce_dram_init,
919 /* TODO: unify all these dram functions? */
920#ifdef CONFIG_ARM
921 dram_init, /* configure available RAM banks */
922#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000923#ifdef CONFIG_PPC
924 init_func_ram,
925#endif
926#ifdef CONFIG_POST
927 post_init_f,
928#endif
929 INIT_FUNC_WATCHDOG_RESET
930#if defined(CONFIG_SYS_DRAM_TEST)
931 testdram,
932#endif /* CONFIG_SYS_DRAM_TEST */
933 INIT_FUNC_WATCHDOG_RESET
934
Simon Glass1938f4a2013-03-11 06:49:53 +0000935#ifdef CONFIG_POST
936 init_post,
937#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000938 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000939 /*
940 * Now that we have DRAM mapped and working, we can
941 * relocate the code and continue running from DRAM.
942 *
943 * Reserve memory at end of RAM for (top down in that order):
944 * - area that won't get touched by U-Boot and Linux (optional)
945 * - kernel log buffer
946 * - protected RAM
947 * - LCD framebuffer
948 * - monitor code
949 * - board info struct
950 */
951 setup_dest_addr,
952#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
953 reserve_logbuffer,
954#endif
955#ifdef CONFIG_PRAM
956 reserve_pram,
957#endif
958 reserve_round_4k,
959#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
960 defined(CONFIG_ARM)
961 reserve_mmu,
962#endif
963#ifdef CONFIG_LCD
964 reserve_lcd,
965#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700966 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000967 /* TODO: Why the dependency on CONFIG_8xx? */
968#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) \
Simon Glass48a33802013-03-05 14:39:52 +0000969 && !defined(CONFIG_ARM) && !defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000970 reserve_video,
971#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000972 reserve_uboot,
Simon Glass8cae8a62013-03-05 14:39:45 +0000973#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000974 reserve_malloc,
975 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000976#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000977 setup_machine,
978 reserve_global_data,
979 reserve_fdt,
980 reserve_stacks,
981 setup_dram_config,
982 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000983#ifdef CONFIG_PPC
984 setup_board_part1,
985 INIT_FUNC_WATCHDOG_RESET
986 setup_board_part2,
987#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000988 setup_baud_rate,
989 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000990#ifdef CONFIG_SYS_EXTBDINFO
991 setup_board_extra,
992#endif
993 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000994 reloc_fdt,
995 setup_reloc,
Simon Glass808434c2013-11-10 10:26:59 -0700996#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000997 jump_to_copy,
998#endif
999 NULL,
1000};
1001
1002void board_init_f(ulong boot_flags)
1003{
Simon Glass48a33802013-03-05 14:39:52 +00001004#ifndef CONFIG_X86
Simon Glass1938f4a2013-03-11 06:49:53 +00001005 gd_t data;
1006
1007 gd = &data;
Simon Glass48a33802013-03-05 14:39:52 +00001008#endif
Simon Glass1938f4a2013-03-11 06:49:53 +00001009
1010 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001011 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001012
1013 if (initcall_run_list(init_sequence_f))
1014 hang();
1015
Simon Glass808434c2013-11-10 10:26:59 -07001016#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001017 /* NOTREACHED - jump_to_copy() does not return */
1018 hang();
1019#endif
1020}
1021
Simon Glass48a33802013-03-05 14:39:52 +00001022#ifdef CONFIG_X86
1023/*
1024 * For now this code is only used on x86.
1025 *
1026 * init_sequence_f_r is the list of init functions which are run when
1027 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1028 * The following limitations must be considered when implementing an
1029 * '_f_r' function:
1030 * - 'static' variables are read-only
1031 * - Global Data (gd->xxx) is read/write
1032 *
1033 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1034 * supported). It _should_, if possible, copy global data to RAM and
1035 * initialise the CPU caches (to speed up the relocation process)
1036 *
1037 * NOTE: At present only x86 uses this route, but it is intended that
1038 * all archs will move to this when generic relocation is implemented.
1039 */
1040static init_fnc_t init_sequence_f_r[] = {
1041 init_cache_f_r,
1042 copy_uboot_to_ram,
1043 clear_bss,
1044 do_elf_reloc_fixups,
1045
1046 NULL,
1047};
1048
1049void board_init_f_r(void)
1050{
1051 if (initcall_run_list(init_sequence_f_r))
1052 hang();
1053
1054 /*
1055 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1056 * Transfer execution from Flash to RAM by calculating the address
1057 * of the in-RAM copy of board_init_r() and calling it
1058 */
1059 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
1060
1061 /* NOTREACHED - board_init_r() does not return */
1062 hang();
1063}
1064#endif /* CONFIG_X86 */