blob: a570390f77f5aef90f701a0e886018a644801a10 [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>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030050#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000051#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) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100114 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
115 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800116 hw_watchdog_init();
117# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000118 puts(" Watchdog enabled\n");
119 WATCHDOG_RESET();
120
121 return 0;
122}
123
124int init_func_watchdog_reset(void)
125{
126 WATCHDOG_RESET();
127
128 return 0;
129}
130#endif /* CONFIG_WATCHDOG */
131
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200132__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000133{
134 /* please define platform specific board_add_ram_info() */
135}
136
Simon Glass1938f4a2013-03-11 06:49:53 +0000137static int init_baud_rate(void)
138{
139 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
140 return 0;
141}
142
143static int display_text_info(void)
144{
Simon Glassa733b062013-04-26 02:53:43 +0000145#ifndef CONFIG_SANDBOX
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100146 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000147
Simon Glass632efa72013-03-11 07:06:48 +0000148 bss_start = (ulong)&__bss_start;
149 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100150
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800151#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100152 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800153#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100154 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800155#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100156
157 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
158 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000159#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000160
161#ifdef CONFIG_MODEM_SUPPORT
162 debug("Modem Support enabled\n");
163#endif
164#ifdef CONFIG_USE_IRQ
165 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
166 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
167#endif
168
169 return 0;
170}
171
172static int announce_dram_init(void)
173{
174 puts("DRAM: ");
175 return 0;
176}
177
angelo@sysam.ite310b932015-02-12 01:40:17 +0100178#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000179static int init_func_ram(void)
180{
181#ifdef CONFIG_BOARD_TYPES
182 int board_type = gd->board_type;
183#else
184 int board_type = 0; /* use dummy arg */
185#endif
186
187 gd->ram_size = initdram(board_type);
188
189 if (gd->ram_size > 0)
190 return 0;
191
192 puts("*** failed ***\n");
193 return 1;
194}
195#endif
196
Simon Glass1938f4a2013-03-11 06:49:53 +0000197static int show_dram_config(void)
198{
York Sunfa39ffe2014-05-02 17:28:05 -0700199 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000200
201#ifdef CONFIG_NR_DRAM_BANKS
202 int i;
203
204 debug("\nRAM Configuration:\n");
205 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
206 size += gd->bd->bi_dram[i].size;
207 debug("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
208#ifdef DEBUG
209 print_size(gd->bd->bi_dram[i].size, "\n");
210#endif
211 }
212 debug("\nDRAM: ");
213#else
214 size = gd->ram_size;
215#endif
216
Simon Glasse4fef6c2013-03-11 14:30:42 +0000217 print_size(size, "");
218 board_add_ram_info(0);
219 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000220
221 return 0;
222}
223
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200224__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000225{
226#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
227 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
228 gd->bd->bi_dram[0].size = get_effective_memsize();
229#endif
230}
231
Heiko Schocherea818db2013-01-29 08:53:15 +0100232#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000233static int init_func_i2c(void)
234{
235 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200236#ifdef CONFIG_SYS_I2C
237 i2c_init_all();
238#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000239 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200240#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000241 puts("ready\n");
242 return 0;
243}
244#endif
245
246#if defined(CONFIG_HARD_SPI)
247static int init_func_spi(void)
248{
249 puts("SPI: ");
250 spi_init();
251 puts("ready\n");
252 return 0;
253}
254#endif
255
256__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000257static int zero_global_data(void)
258{
259 memset((void *)gd, '\0', sizeof(gd_t));
260
261 return 0;
262}
263
264static int setup_mon_len(void)
265{
Michal Simeke945f6d2014-05-08 16:08:44 +0200266#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100267 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Simon Glassa733b062013-04-26 02:53:43 +0000268#elif defined(CONFIG_SANDBOX)
269 gd->mon_len = (ulong)&_end - (ulong)_init;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800270#elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800271 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Simon Glass632efa72013-03-11 07:06:48 +0000272#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000273 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
274 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000275#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000276 return 0;
277}
278
279__weak int arch_cpu_init(void)
280{
281 return 0;
282}
283
Simon Glassf828bf22013-04-20 08:42:41 +0000284#ifdef CONFIG_OF_HOSTFILE
285
Simon Glassf828bf22013-04-20 08:42:41 +0000286static int read_fdt_from_file(void)
287{
288 struct sandbox_state *state = state_get_current();
Simon Glass95fac6a2014-02-27 13:25:58 -0700289 const char *fname = state->fdt_fname;
Simon Glassf828bf22013-04-20 08:42:41 +0000290 void *blob;
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800291 loff_t size;
Simon Glassf828bf22013-04-20 08:42:41 +0000292 int err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700293 int fd;
Simon Glassf828bf22013-04-20 08:42:41 +0000294
295 blob = map_sysmem(CONFIG_SYS_FDT_LOAD_ADDR, 0);
296 if (!state->fdt_fname) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700297 err = fdt_create_empty_tree(blob, 256);
Simon Glassf828bf22013-04-20 08:42:41 +0000298 if (!err)
299 goto done;
Simon Glass95fac6a2014-02-27 13:25:58 -0700300 printf("Unable to create empty FDT: %s\n", fdt_strerror(err));
301 return -EINVAL;
Simon Glassf828bf22013-04-20 08:42:41 +0000302 }
Simon Glass95fac6a2014-02-27 13:25:58 -0700303
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800304 err = os_get_filesize(fname, &size);
305 if (err < 0) {
Simon Glass95fac6a2014-02-27 13:25:58 -0700306 printf("Failed to file FDT file '%s'\n", fname);
Suriyan Ramasami96b10462014-11-17 14:39:37 -0800307 return err;
Simon Glass95fac6a2014-02-27 13:25:58 -0700308 }
309 fd = os_open(fname, OS_O_RDONLY);
310 if (fd < 0) {
311 printf("Failed to open FDT file '%s'\n", fname);
312 return -EACCES;
313 }
314 if (os_read(fd, blob, size) != size) {
315 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000316 return -EIO;
Simon Glass95fac6a2014-02-27 13:25:58 -0700317 }
318 os_close(fd);
Simon Glassf828bf22013-04-20 08:42:41 +0000319
320done:
321 gd->fdt_blob = blob;
322
323 return 0;
324}
325#endif
326
Simon Glassa733b062013-04-26 02:53:43 +0000327#ifdef CONFIG_SANDBOX
328static int setup_ram_buf(void)
329{
Simon Glass5c2859c2013-11-10 10:27:03 -0700330 struct sandbox_state *state = state_get_current();
331
332 gd->arch.ram_buf = state->ram_buf;
333 gd->ram_size = state->ram_size;
Simon Glassa733b062013-04-26 02:53:43 +0000334
335 return 0;
336}
337#endif
338
Simon Glass1938f4a2013-03-11 06:49:53 +0000339static int setup_fdt(void)
340{
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900341#ifdef CONFIG_OF_CONTROL
342# ifdef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000343 /* Get a pointer to the FDT */
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +0900344 gd->fdt_blob = __dtb_dt_begin;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900345# elif defined CONFIG_OF_SEPARATE
Simon Glass1938f4a2013-03-11 06:49:53 +0000346 /* FDT is at end of image */
Simon Glass632efa72013-03-11 07:06:48 +0000347 gd->fdt_blob = (ulong *)&_end;
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900348# elif defined(CONFIG_OF_HOSTFILE)
Simon Glassf828bf22013-04-20 08:42:41 +0000349 if (read_fdt_from_file()) {
350 puts("Failed to read control FDT\n");
351 return -1;
352 }
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900353# endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000354 /* Allow the early environment to override the fdt address */
355 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
356 (uintptr_t)gd->fdt_blob);
Masahiro Yamadac970dff2014-09-06 23:39:00 +0900357#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000358 return 0;
359}
360
361/* Get the top of usable RAM */
362__weak ulong board_get_usable_ram_top(ulong total_size)
363{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700364#ifdef CONFIG_SYS_SDRAM_BASE
365 /*
366 * Detect whether we have so much RAM it goes past the end of our
367 * 32-bit address space. If so, clip the usable RAM so it doesn't.
368 */
369 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
370 /*
371 * Will wrap back to top of 32-bit space when reservations
372 * are made.
373 */
374 return 0;
375#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000376 return gd->ram_top;
377}
378
379static int setup_dest_addr(void)
380{
381 debug("Monitor len: %08lX\n", gd->mon_len);
382 /*
383 * Ram is setup, size stored in gd !!
384 */
385 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
386#if defined(CONFIG_SYS_MEM_TOP_HIDE)
387 /*
388 * Subtract specified amount of memory to hide so that it won't
389 * get "touched" at all by U-Boot. By fixing up gd->ram_size
390 * the Linux kernel should now get passed the now "corrected"
391 * memory size and won't touch it either. This should work
392 * for arch/ppc and arch/powerpc. Only Linux board ports in
393 * arch/powerpc with bootwrapper support, that recalculate the
394 * memory size from the SDRAM controller setup will have to
395 * get fixed.
396 */
397 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
398#endif
399#ifdef CONFIG_SYS_SDRAM_BASE
400 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
401#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000402 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000403 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000404 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000405 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700406#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000407 /*
408 * We need to make sure the location we intend to put secondary core
409 * boot code is reserved and not used by any part of u-boot
410 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000411 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
412 gd->relocaddr = determine_mp_bootpg(NULL);
413 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000414 }
415#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000416 return 0;
417}
418
419#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
420static int reserve_logbuffer(void)
421{
422 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000423 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000424 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000425 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000426 return 0;
427}
428#endif
429
430#ifdef CONFIG_PRAM
431/* reserve protected RAM */
432static int reserve_pram(void)
433{
434 ulong reg;
435
436 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000437 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000438 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000439 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000440 return 0;
441}
442#endif /* CONFIG_PRAM */
443
444/* Round memory pointer down to next 4 kB limit */
445static int reserve_round_4k(void)
446{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000447 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000448 return 0;
449}
450
451#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
452 defined(CONFIG_ARM)
453static int reserve_mmu(void)
454{
455 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800456 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000457 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000458
459 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000460 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000461
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000462 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000463 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
464 gd->arch.tlb_addr + gd->arch.tlb_size);
465 return 0;
466}
467#endif
468
469#ifdef CONFIG_LCD
470static int reserve_lcd(void)
471{
472#ifdef CONFIG_FB_ADDR
473 gd->fb_base = CONFIG_FB_ADDR;
474#else
475 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000476 gd->relocaddr = lcd_setmem(gd->relocaddr);
477 gd->fb_base = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000478#endif /* CONFIG_FB_ADDR */
479 return 0;
480}
481#endif /* CONFIG_LCD */
482
Simon Glass71c52db2013-06-11 11:14:42 -0700483static int reserve_trace(void)
484{
485#ifdef CONFIG_TRACE
486 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
487 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
488 debug("Reserving %dk for trace data at: %08lx\n",
489 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
490#endif
491
492 return 0;
493}
494
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800495#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
496 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100497 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000498static int reserve_video(void)
499{
500 /* reserve memory for video display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000501 gd->relocaddr = video_setmem(gd->relocaddr);
502 gd->fb_base = gd->relocaddr;
Simon Glasse4fef6c2013-03-11 14:30:42 +0000503
504 return 0;
505}
506#endif
507
Simon Glass1938f4a2013-03-11 06:49:53 +0000508static int reserve_uboot(void)
509{
510 /*
511 * reserve memory for U-Boot code, data & bss
512 * round down to next 4 kB limit
513 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000514 gd->relocaddr -= gd->mon_len;
515 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000516#ifdef CONFIG_E500
517 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000518 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000519#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000520
521 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000522 gd->relocaddr);
523
524 gd->start_addr_sp = gd->relocaddr;
525
Simon Glass1938f4a2013-03-11 06:49:53 +0000526 return 0;
527}
528
Simon Glass8cae8a62013-03-05 14:39:45 +0000529#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000530/* reserve memory for malloc() area */
531static int reserve_malloc(void)
532{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000533 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000534 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000535 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000536 return 0;
537}
538
539/* (permanently) allocate a Board Info struct */
540static int reserve_board(void)
541{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800542 if (!gd->bd) {
543 gd->start_addr_sp -= sizeof(bd_t);
544 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
545 memset(gd->bd, '\0', sizeof(bd_t));
546 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
547 sizeof(bd_t), gd->start_addr_sp);
548 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000549 return 0;
550}
Simon Glass8cae8a62013-03-05 14:39:45 +0000551#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000552
553static int setup_machine(void)
554{
555#ifdef CONFIG_MACH_TYPE
556 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
557#endif
558 return 0;
559}
560
561static int reserve_global_data(void)
562{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000563 gd->start_addr_sp -= sizeof(gd_t);
564 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000565 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000566 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000567 return 0;
568}
569
570static int reserve_fdt(void)
571{
572 /*
573 * If the device tree is sitting immediate above our image then we
574 * must relocate it. If it is embedded in the data section, then it
575 * will be relocated with other data.
576 */
577 if (gd->fdt_blob) {
578 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
579
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000580 gd->start_addr_sp -= gd->fdt_size;
581 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000582 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000583 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000584 }
585
586 return 0;
587}
588
Andreas Bießmann68145d42015-02-06 23:06:45 +0100589int arch_reserve_stacks(void)
590{
591 return 0;
592}
593
Simon Glass1938f4a2013-03-11 06:49:53 +0000594static int reserve_stacks(void)
595{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100596 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000597 gd->start_addr_sp -= 16;
598 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000599
600 /*
Andreas Bießmann68145d42015-02-06 23:06:45 +0100601 * let the architecture specific code tailor gd->start_addr_sp and
602 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000603 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100604 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000605}
606
607static int display_new_sp(void)
608{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000609 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000610
611 return 0;
612}
613
angelo@sysam.ite310b932015-02-12 01:40:17 +0100614#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000615static int setup_board_part1(void)
616{
617 bd_t *bd = gd->bd;
618
619 /*
620 * Save local variables to board info struct
621 */
622
623 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
624 bd->bi_memsize = gd->ram_size; /* size in bytes */
625
626#ifdef CONFIG_SYS_SRAM_BASE
627 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
628 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
629#endif
630
Masahiro Yamada58dac322014-03-05 17:40:10 +0900631#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000632 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
633 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
634#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100635#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000636 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
637#endif
638#if defined(CONFIG_MPC83xx)
639 bd->bi_immrbar = CONFIG_SYS_IMMR;
640#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000641
642 return 0;
643}
644
645static int setup_board_part2(void)
646{
647 bd_t *bd = gd->bd;
648
649 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
650 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
651#if defined(CONFIG_CPM2)
652 bd->bi_cpmfreq = gd->arch.cpm_clk;
653 bd->bi_brgfreq = gd->arch.brg_clk;
654 bd->bi_sccfreq = gd->arch.scc_clk;
655 bd->bi_vco = gd->arch.vco_out;
656#endif /* CONFIG_CPM2 */
657#if defined(CONFIG_MPC512X)
658 bd->bi_ipsfreq = gd->arch.ips_clk;
659#endif /* CONFIG_MPC512X */
660#if defined(CONFIG_MPC5xxx)
661 bd->bi_ipbfreq = gd->arch.ipb_clk;
662 bd->bi_pcifreq = gd->pci_clk;
663#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800664#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
665 bd->bi_pcifreq = gd->pci_clk;
666#endif
667#if defined(CONFIG_EXTRA_CLOCK)
668 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
669 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
670 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
671#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000672
673 return 0;
674}
675#endif
676
677#ifdef CONFIG_SYS_EXTBDINFO
678static int setup_board_extra(void)
679{
680 bd_t *bd = gd->bd;
681
682 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
683 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
684 sizeof(bd->bi_r_version));
685
686 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
687 bd->bi_plb_busfreq = gd->bus_clk;
688#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
689 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
690 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
691 bd->bi_pci_busfreq = get_PCI_freq();
692 bd->bi_opbfreq = get_OPB_freq();
693#elif defined(CONFIG_XILINX_405)
694 bd->bi_pci_busfreq = get_PCI_freq();
695#endif
696
697 return 0;
698}
699#endif
700
Simon Glass1938f4a2013-03-11 06:49:53 +0000701#ifdef CONFIG_POST
702static int init_post(void)
703{
704 post_bootmode_init();
705 post_run(NULL, POST_ROM | post_bootmode_get(0));
706
707 return 0;
708}
709#endif
710
Simon Glass1938f4a2013-03-11 06:49:53 +0000711static int setup_dram_config(void)
712{
713 /* Ram is board specific, so move it to board code ... */
714 dram_init_banksize();
715
716 return 0;
717}
718
719static int reloc_fdt(void)
720{
721 if (gd->new_fdt) {
722 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
723 gd->fdt_blob = gd->new_fdt;
724 }
725
726 return 0;
727}
728
729static int setup_reloc(void)
730{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800731#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000732 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100733#ifdef CONFIG_M68K
734 /*
735 * On all ColdFire arch cpu, monitor code starts always
736 * just after the default vector table location, so at 0x400
737 */
738 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
739#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800740#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000741 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
742
743 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000744 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000745 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
746 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000747
748 return 0;
749}
750
751/* ARM calls relocate_code from its crt0.S */
Simon Glass808434c2013-11-10 10:26:59 -0700752#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +0000753
754static int jump_to_copy(void)
755{
Simon Glass48a33802013-03-05 14:39:52 +0000756 /*
757 * x86 is special, but in a nice way. It uses a trampoline which
758 * enables the dcache if possible.
759 *
760 * For now, other archs use relocate_code(), which is implemented
761 * similarly for all archs. When we do generic relocation, hopefully
762 * we can make all archs enable the dcache prior to relocation.
763 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300764#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000765 /*
766 * SDRAM and console are now initialised. The final stack can now
767 * be setup in SDRAM. Code execution will continue in Flash, but
768 * with the stack in SDRAM and Global Data in temporary memory
769 * (CPU cache)
770 */
771 board_init_f_r_trampoline(gd->start_addr_sp);
772#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000773 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000774#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000775
776 return 0;
777}
778#endif
779
780/* Record the board_init_f() bootstage (after arch_cpu_init()) */
781static int mark_bootstage(void)
782{
783 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
784
785 return 0;
786}
787
Simon Glassd59476b2014-07-10 22:23:28 -0600788static int initf_malloc(void)
789{
790#ifdef CONFIG_SYS_MALLOC_F_LEN
791 assert(gd->malloc_base); /* Set up by crt0.S */
792 gd->malloc_limit = gd->malloc_base + CONFIG_SYS_MALLOC_F_LEN;
793 gd->malloc_ptr = 0;
794#endif
795
796 return 0;
797}
798
Simon Glassab7cd622014-07-23 06:55:04 -0600799static int initf_dm(void)
800{
801#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
802 int ret;
803
804 ret = dm_init_and_scan(true);
805 if (ret)
806 return ret;
807#endif
808
809 return 0;
810}
811
Simon Glass146251f2015-01-19 22:16:12 -0700812/* Architecture-specific memory reservation */
813__weak int reserve_arch(void)
814{
815 return 0;
816}
817
Simon Glassd4c671c2015-03-05 12:25:16 -0700818__weak int arch_cpu_init_dm(void)
819{
820 return 0;
821}
822
Simon Glass1938f4a2013-03-11 06:49:53 +0000823static init_fnc_t init_sequence_f[] = {
Simon Glassa733b062013-04-26 02:53:43 +0000824#ifdef CONFIG_SANDBOX
825 setup_ram_buf,
826#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000827 setup_mon_len,
Simon Glass71c52db2013-06-11 11:14:42 -0700828 setup_fdt,
Kevin Hilmand2107182014-12-09 15:03:58 -0800829#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700830 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800831#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700832 initf_malloc,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000833#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
834 /* TODO: can this go into arch_cpu_init()? */
835 probecpu,
836#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000837 arch_cpu_init, /* basic arch cpu dependent setup */
838 mark_bootstage,
839#ifdef CONFIG_OF_CONTROL
840 fdtdec_check_fdt,
841#endif
Simon Glass3ea09532014-09-03 17:36:59 -0600842 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700843 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000844#if defined(CONFIG_BOARD_EARLY_INIT_F)
845 board_early_init_f,
846#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000847 /* TODO: can any of this go into arch_cpu_init()? */
848#if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT)
849 get_clocks, /* get CPU and bus clocks (etc.) */
850#if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \
851 && !defined(CONFIG_TQM885D)
852 adjust_sdram_tbs_8xx,
853#endif
854 /* TODO: can we rename this to timer_init()? */
855 init_timebase,
856#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800857#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_BLACKFIN)
Simon Glass1938f4a2013-03-11 06:49:53 +0000858 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000859#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860#ifdef CONFIG_SYS_ALLOC_DPRAM
861#if !defined(CONFIG_CPM2)
862 dpram_init,
863#endif
864#endif
865#if defined(CONFIG_BOARD_POSTCLK_INIT)
866 board_postclk_init,
867#endif
Masahiro Yamadab8521b72013-05-21 21:08:09 +0000868#ifdef CONFIG_FSL_ESDHC
869 get_clocks,
870#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100871#ifdef CONFIG_M68K
872 get_clocks,
873#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000874 env_init, /* initialize environment */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000875#if defined(CONFIG_8xx_CPUCLK_DEFAULT)
876 /* get CPU and bus clocks according to the environment variable */
877 get_clocks_866,
878 /* adjust sdram refresh rate according to the new clock */
879 sdram_adjust_866,
880 init_timebase,
881#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000882 init_baud_rate, /* initialze baudrate settings */
883 serial_init, /* serial communications setup */
884 console_init_f, /* stage 1 init of console */
Simon Glassa733b062013-04-26 02:53:43 +0000885#ifdef CONFIG_SANDBOX
886 sandbox_early_getopt_check,
887#endif
888#ifdef CONFIG_OF_CONTROL
889 fdtdec_prepare_fdt,
Simon Glass48a33802013-03-05 14:39:52 +0000890#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 display_options, /* say that we are here */
892 display_text_info, /* show debugging info if required */
Masahiro Yamada58dac322014-03-05 17:40:10 +0900893#if defined(CONFIG_MPC8260)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000894 prt_8260_rsr,
895 prt_8260_clks,
Masahiro Yamada58dac322014-03-05 17:40:10 +0900896#endif /* CONFIG_MPC8260 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000897#if defined(CONFIG_MPC83xx)
898 prt_83xx_rsr,
899#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100900#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000901 checkcpu,
902#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000903 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000904#if defined(CONFIG_MPC5xxx)
905 prt_mpc5xxx_clks,
906#endif /* CONFIG_MPC5xxx */
Simon Glass1938f4a2013-03-11 06:49:53 +0000907#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900908 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000909#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000910 INIT_FUNC_WATCHDOG_INIT
911#if defined(CONFIG_MISC_INIT_F)
912 misc_init_f,
913#endif
914 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100915#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000916 init_func_i2c,
917#endif
918#if defined(CONFIG_HARD_SPI)
919 init_func_spi,
920#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000921 announce_dram_init,
922 /* TODO: unify all these dram functions? */
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100923#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32)
Simon Glass1938f4a2013-03-11 06:49:53 +0000924 dram_init, /* configure available RAM banks */
925#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100926#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000927 init_func_ram,
928#endif
929#ifdef CONFIG_POST
930 post_init_f,
931#endif
932 INIT_FUNC_WATCHDOG_RESET
933#if defined(CONFIG_SYS_DRAM_TEST)
934 testdram,
935#endif /* CONFIG_SYS_DRAM_TEST */
936 INIT_FUNC_WATCHDOG_RESET
937
Simon Glass1938f4a2013-03-11 06:49:53 +0000938#ifdef CONFIG_POST
939 init_post,
940#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000941 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000942 /*
943 * Now that we have DRAM mapped and working, we can
944 * relocate the code and continue running from DRAM.
945 *
946 * Reserve memory at end of RAM for (top down in that order):
947 * - area that won't get touched by U-Boot and Linux (optional)
948 * - kernel log buffer
949 * - protected RAM
950 * - LCD framebuffer
951 * - monitor code
952 * - board info struct
953 */
954 setup_dest_addr,
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800955#if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800956 /* Blackfin u-boot monitor should be on top of the ram */
957 reserve_uboot,
958#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000959#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
960 reserve_logbuffer,
961#endif
962#ifdef CONFIG_PRAM
963 reserve_pram,
964#endif
965 reserve_round_4k,
966#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
967 defined(CONFIG_ARM)
968 reserve_mmu,
969#endif
970#ifdef CONFIG_LCD
971 reserve_lcd,
972#endif
Simon Glass71c52db2013-06-11 11:14:42 -0700973 reserve_trace,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000974 /* TODO: Why the dependency on CONFIG_8xx? */
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800975#if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
976 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
angelo@sysam.it944ab342015-03-28 11:34:52 +0100977 !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000978 reserve_video,
979#endif
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800980#if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2)
Simon Glass1938f4a2013-03-11 06:49:53 +0000981 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800982#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000983#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000984 reserve_malloc,
985 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000986#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000987 setup_machine,
988 reserve_global_data,
989 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700990 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000991 reserve_stacks,
992 setup_dram_config,
993 show_dram_config,
angelo@sysam.ite310b932015-02-12 01:40:17 +0100994#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000995 setup_board_part1,
996 INIT_FUNC_WATCHDOG_RESET
997 setup_board_part2,
998#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000999 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +00001000#ifdef CONFIG_SYS_EXTBDINFO
1001 setup_board_extra,
1002#endif
1003 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +00001004 reloc_fdt,
1005 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001006#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -07001007 copy_uboot_to_ram,
1008 clear_bss,
1009 do_elf_reloc_fixups,
1010#endif
Simon Glass808434c2013-11-10 10:26:59 -07001011#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001012 jump_to_copy,
1013#endif
1014 NULL,
1015};
1016
1017void board_init_f(ulong boot_flags)
1018{
York Sun2a1680e2014-05-02 17:28:04 -07001019#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
1020 /*
1021 * For some archtectures, global data is initialized and used before
1022 * calling this function. The data should be preserved. For others,
1023 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1024 * here to host global data until relocation.
1025 */
Simon Glass1938f4a2013-03-11 06:49:53 +00001026 gd_t data;
1027
1028 gd = &data;
1029
David Fengcce6be72013-12-14 11:47:36 +08001030 /*
1031 * Clear global data before it is accessed at debug print
1032 * in initcall_run_list. Otherwise the debug print probably
1033 * get the wrong vaule of gd->have_console.
1034 */
David Fengcce6be72013-12-14 11:47:36 +08001035 zero_global_data();
1036#endif
1037
Simon Glass1938f4a2013-03-11 06:49:53 +00001038 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001039 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001040
1041 if (initcall_run_list(init_sequence_f))
1042 hang();
1043
Simon Glass808434c2013-11-10 10:26:59 -07001044#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX)
Simon Glass1938f4a2013-03-11 06:49:53 +00001045 /* NOTREACHED - jump_to_copy() does not return */
1046 hang();
1047#endif
1048}
1049
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001050#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001051/*
1052 * For now this code is only used on x86.
1053 *
1054 * init_sequence_f_r is the list of init functions which are run when
1055 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1056 * The following limitations must be considered when implementing an
1057 * '_f_r' function:
1058 * - 'static' variables are read-only
1059 * - Global Data (gd->xxx) is read/write
1060 *
1061 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1062 * supported). It _should_, if possible, copy global data to RAM and
1063 * initialise the CPU caches (to speed up the relocation process)
1064 *
1065 * NOTE: At present only x86 uses this route, but it is intended that
1066 * all archs will move to this when generic relocation is implemented.
1067 */
1068static init_fnc_t init_sequence_f_r[] = {
1069 init_cache_f_r,
Simon Glass48a33802013-03-05 14:39:52 +00001070
1071 NULL,
1072};
1073
1074void board_init_f_r(void)
1075{
1076 if (initcall_run_list(init_sequence_f_r))
1077 hang();
1078
1079 /*
1080 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1081 * Transfer execution from Flash to RAM by calculating the address
1082 * of the in-RAM copy of board_init_r() and calling it
1083 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001084 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001085
1086 /* NOTREACHED - board_init_r() does not return */
1087 hang();
1088}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001089#endif /* CONFIG_X86 */
1090
1091#ifndef CONFIG_X86
Simon Glass74d01862015-02-07 11:51:34 -07001092ulong board_init_f_mem(ulong top)
1093{
1094 /* Leave space for the stack we are running with now */
1095 top -= 0x40;
1096
1097 top -= sizeof(struct global_data);
1098 top = ALIGN(top, 16);
1099 gd = (struct global_data *)top;
1100 memset((void *)gd, '\0', sizeof(*gd));
1101
1102#ifdef CONFIG_SYS_MALLOC_F_LEN
1103 top -= CONFIG_SYS_MALLOC_F_LEN;
1104 gd->malloc_base = top;
1105#endif
1106
1107 return top;
1108}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001109#endif /* !CONFIG_X86 */