blob: a4b5df7835cf75f2f95a84ccc0a99722ed38bfb5 [file] [log] [blame]
Simon Glassc45e3592013-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 Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glassc45e3592013-03-11 06:49:53 +000011 */
12
13#include <common.h>
14#include <linux/compiler.h>
15#include <version.h>
Simon Glassa73bda42015-11-08 23:47:45 -070016#include <console.h>
Simon Glassc45e3592013-03-11 06:49:53 +000017#include <environment.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060018#include <dm.h>
Simon Glassc45e3592013-03-11 06:49:53 +000019#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000020#include <fs.h>
Simon Glass50250b52013-03-11 14:30:42 +000021#if defined(CONFIG_CMD_IDE)
22#include <ide.h>
23#endif
24#include <i2c.h>
Simon Glassc45e3592013-03-11 06:49:53 +000025#include <initcall.h>
26#include <logbuff.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070027#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050028#include <mapmem.h>
Simon Glass50250b52013-03-11 14:30:42 +000029
30/* TODO: Can we move these into arch/ headers? */
31#ifdef CONFIG_8xx
32#include <mpc8xx.h>
33#endif
34#ifdef CONFIG_5xx
35#include <mpc5xx.h>
36#endif
37#ifdef CONFIG_MPC5xxx
38#include <mpc5xxx.h>
39#endif
Gabriel Huauda0afc22014-09-03 13:57:54 -070040#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huau170ceaf2014-07-26 11:35:43 -070041#include <asm/mp.h>
42#endif
Simon Glass50250b52013-03-11 14:30:42 +000043
Simon Glass62cf9122013-04-26 02:53:43 +000044#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000045#include <post.h>
Simon Glass50250b52013-03-11 14:30:42 +000046#include <spi.h>
Jeroen Hofsteea802b982014-06-23 23:20:19 +020047#include <status_led.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070048#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070049#include <trace.h>
Simon Glassfce58f52016-01-18 19:52:21 -070050#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000051#include <watchdog.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090052#include <linux/errno.h>
Simon Glassc45e3592013-03-11 06:49:53 +000053#include <asm/io.h>
54#include <asm/sections.h>
Alexey Brodkin913e9f02015-02-24 19:40:36 +030055#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +000056#include <asm/init_helpers.h>
Chris Zankel41e37372016-08-10 18:36:43 +030057#endif
58#if defined(CONFIG_X86) || defined(CONFIG_ARC) || defined(CONFIG_XTENSA)
Simon Glass6d179872013-03-05 14:39:52 +000059#include <asm/relocate.h>
60#endif
Simon Glassa730c5d2014-07-23 06:55:04 -060061#include <dm/root.h>
Simon Glassc45e3592013-03-11 06:49:53 +000062#include <linux/compiler.h>
63
64/*
65 * Pointer to initial global data area
66 *
67 * Here we initialize it if needed.
68 */
69#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
70#undef XTRN_DECLARE_GLOBAL_DATA_PTR
71#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
72DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
73#else
74DECLARE_GLOBAL_DATA_PTR;
75#endif
76
77/*
Simon Glass839855c2015-04-28 20:25:03 -060078 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-03-11 06:49:53 +000079 * refactored to a single function, something like:
80 *
81 * void led_set_state(enum led_colour_t colour, int on);
82 */
83/************************************************************************
84 * Coloured LED functionality
85 ************************************************************************
86 * May be supplied by boards if desired
87 */
Jeroen Hofsteea802b982014-06-23 23:20:19 +020088__weak void coloured_LED_init(void) {}
89__weak void red_led_on(void) {}
90__weak void red_led_off(void) {}
91__weak void green_led_on(void) {}
92__weak void green_led_off(void) {}
93__weak void yellow_led_on(void) {}
94__weak void yellow_led_off(void) {}
95__weak void blue_led_on(void) {}
96__weak void blue_led_off(void) {}
Simon Glassc45e3592013-03-11 06:49:53 +000097
98/*
99 * Why is gd allocated a register? Prior to reloc it might be better to
100 * just pass it around to each function in this file?
101 *
102 * After reloc one could argue that it is hardly used and doesn't need
103 * to be in a register. Or if it is it should perhaps hold pointers to all
104 * global data for all modules, so that post-reloc we can avoid the massive
105 * literal pool we get on ARM. Or perhaps just encourage each module to use
106 * a structure...
107 */
108
109/*
110 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
111 */
112
Sonic Zhangf503a522014-07-17 19:01:34 +0800113#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +0000114static int init_func_watchdog_init(void)
115{
Tom Rini210ebce2017-03-14 11:08:10 -0400116# if defined(CONFIG_HW_WATCHDOG) && \
117 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100118 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +0200119 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100120 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +0800121 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +0000122 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +0200123# endif
Simon Glass50250b52013-03-11 14:30:42 +0000124 WATCHDOG_RESET();
125
126 return 0;
127}
128
129int init_func_watchdog_reset(void)
130{
131 WATCHDOG_RESET();
132
133 return 0;
134}
135#endif /* CONFIG_WATCHDOG */
136
Jeroen Hofstee45846052014-10-08 22:57:22 +0200137__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000138{
139 /* please define platform specific board_add_ram_info() */
140}
141
Simon Glassc45e3592013-03-11 06:49:53 +0000142static int init_baud_rate(void)
143{
144 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
145 return 0;
146}
147
148static int display_text_info(void)
149{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600150#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100151 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000152
Simon Glass9c9f44a2013-03-11 07:06:48 +0000153 bss_start = (ulong)&__bss_start;
154 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100155
Sonic Zhangf503a522014-07-17 19:01:34 +0800156#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100157 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800158#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100159 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800160#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100161
162 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
163 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000164#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000165
Simon Glassc45e3592013-03-11 06:49:53 +0000166#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
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100180#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000181static 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 Glassc45e3592013-03-11 06:49:53 +0000199static int show_dram_config(void)
200{
York Sun60ac15a2014-05-02 17:28:05 -0700201 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000202
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;
Bin Mengc8964482015-08-06 01:31:20 -0700209 debug("Bank #%d: %llx ", i,
210 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000211#ifdef DEBUG
212 print_size(gd->bd->bi_dram[i].size, "\n");
213#endif
214 }
215 debug("\nDRAM: ");
216#else
217 size = gd->ram_size;
218#endif
219
Simon Glass50250b52013-03-11 14:30:42 +0000220 print_size(size, "");
221 board_add_ram_info(0);
222 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000223
224 return 0;
225}
226
Jeroen Hofstee45846052014-10-08 22:57:22 +0200227__weak void dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000228{
229#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
230 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
231 gd->bd->bi_dram[0].size = get_effective_memsize();
232#endif
233}
234
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100235#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000236static int init_func_i2c(void)
237{
238 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200239#ifdef CONFIG_SYS_I2C
240 i2c_init_all();
241#else
Simon Glass50250b52013-03-11 14:30:42 +0000242 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trema6612902013-09-21 18:13:34 +0200243#endif
Simon Glass50250b52013-03-11 14:30:42 +0000244 puts("ready\n");
245 return 0;
246}
247#endif
248
249#if defined(CONFIG_HARD_SPI)
250static int init_func_spi(void)
251{
252 puts("SPI: ");
253 spi_init();
254 puts("ready\n");
255 return 0;
256}
257#endif
258
259__maybe_unused
Simon Glassc45e3592013-03-11 06:49:53 +0000260static int zero_global_data(void)
261{
262 memset((void *)gd, '\0', sizeof(gd_t));
263
264 return 0;
265}
266
267static int setup_mon_len(void)
268{
Michal Simek65e915c2014-05-08 16:08:44 +0200269#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100270 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600271#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000272 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400273#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800274 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200275#elif defined(CONFIG_NDS32) || defined(CONFIG_SH)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800276 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600277#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000278 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
279 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000280#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000281 return 0;
282}
283
284__weak int arch_cpu_init(void)
285{
286 return 0;
287}
288
Paul Burton1f508dd2016-09-21 11:18:46 +0100289__weak int mach_cpu_init(void)
290{
291 return 0;
292}
293
Simon Glassc45e3592013-03-11 06:49:53 +0000294/* Get the top of usable RAM */
295__weak ulong board_get_usable_ram_top(ulong total_size)
296{
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700297#ifdef CONFIG_SYS_SDRAM_BASE
298 /*
Simon Glass839855c2015-04-28 20:25:03 -0600299 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700300 * 32-bit address space. If so, clip the usable RAM so it doesn't.
301 */
302 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
303 /*
304 * Will wrap back to top of 32-bit space when reservations
305 * are made.
306 */
307 return 0;
308#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000309 return gd->ram_top;
310}
311
312static int setup_dest_addr(void)
313{
314 debug("Monitor len: %08lX\n", gd->mon_len);
315 /*
316 * Ram is setup, size stored in gd !!
317 */
318 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800319#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000320 /*
321 * Subtract specified amount of memory to hide so that it won't
322 * get "touched" at all by U-Boot. By fixing up gd->ram_size
323 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800324 * memory size and won't touch it either. This should work
325 * for arch/ppc and arch/powerpc. Only Linux board ports in
326 * arch/powerpc with bootwrapper support, that recalculate the
327 * memory size from the SDRAM controller setup will have to
328 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000329 */
York Sun4de24ef2017-03-06 09:02:28 -0800330 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
331#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000332#ifdef CONFIG_SYS_SDRAM_BASE
333 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
334#endif
Simon Glass50250b52013-03-11 14:30:42 +0000335 gd->ram_top += get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000336 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000337 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000338 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700339#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000340 /*
341 * We need to make sure the location we intend to put secondary core
342 * boot code is reserved and not used by any part of u-boot
343 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000344 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
345 gd->relocaddr = determine_mp_bootpg(NULL);
346 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000347 }
348#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000349 return 0;
350}
351
352#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
353static int reserve_logbuffer(void)
354{
355 /* reserve kernel log buffer */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000356 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glassc45e3592013-03-11 06:49:53 +0000357 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000358 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000359 return 0;
360}
361#endif
362
363#ifdef CONFIG_PRAM
364/* reserve protected RAM */
365static int reserve_pram(void)
366{
367 ulong reg;
368
369 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000370 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000371 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000372 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000373 return 0;
374}
375#endif /* CONFIG_PRAM */
376
377/* Round memory pointer down to next 4 kB limit */
378static int reserve_round_4k(void)
379{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000380 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000381 return 0;
382}
383
384#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
385 defined(CONFIG_ARM)
386static int reserve_mmu(void)
387{
388 /* reserve TLB table */
David Feng1735de82013-12-14 11:47:36 +0800389 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadad1589242013-05-27 00:37:30 +0000390 gd->relocaddr -= gd->arch.tlb_size;
Simon Glassc45e3592013-03-11 06:49:53 +0000391
392 /* round down to next 64 kB limit */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000393 gd->relocaddr &= ~(0x10000 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000394
Masahiro Yamadad1589242013-05-27 00:37:30 +0000395 gd->arch.tlb_addr = gd->relocaddr;
Simon Glassc45e3592013-03-11 06:49:53 +0000396 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
397 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sunf84f81e2016-06-24 16:46:19 -0700398
399#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
400 /*
401 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
402 * with location within secure ram.
403 */
404 gd->arch.tlb_allocated = gd->arch.tlb_addr;
405#endif
406
Simon Glassc45e3592013-03-11 06:49:53 +0000407 return 0;
408}
409#endif
410
Simon Glassfce58f52016-01-18 19:52:21 -0700411#ifdef CONFIG_DM_VIDEO
412static int reserve_video(void)
413{
414 ulong addr;
415 int ret;
416
417 addr = gd->relocaddr;
418 ret = video_reserve(&addr);
419 if (ret)
420 return ret;
421 gd->relocaddr = addr;
422
423 return 0;
424}
425#else
426
427# ifdef CONFIG_LCD
Simon Glassc45e3592013-03-11 06:49:53 +0000428static int reserve_lcd(void)
429{
Simon Glassfce58f52016-01-18 19:52:21 -0700430# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000431 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700432# else
Simon Glassc45e3592013-03-11 06:49:53 +0000433 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000434 gd->relocaddr = lcd_setmem(gd->relocaddr);
435 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700436# endif /* CONFIG_FB_ADDR */
437
Simon Glassc45e3592013-03-11 06:49:53 +0000438 return 0;
439}
Simon Glassfce58f52016-01-18 19:52:21 -0700440# endif /* CONFIG_LCD */
Simon Glassc45e3592013-03-11 06:49:53 +0000441
Simon Glassfce58f52016-01-18 19:52:21 -0700442# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangf503a522014-07-17 19:01:34 +0800443 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Rini210ebce2017-03-14 11:08:10 -0400444 !defined(CONFIG_M68K)
Simon Glass1008da02016-01-18 19:52:20 -0700445static int reserve_legacy_video(void)
Simon Glass50250b52013-03-11 14:30:42 +0000446{
447 /* reserve memory for video display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000448 gd->relocaddr = video_setmem(gd->relocaddr);
449 gd->fb_base = gd->relocaddr;
Simon Glass50250b52013-03-11 14:30:42 +0000450
451 return 0;
452}
Simon Glassfce58f52016-01-18 19:52:21 -0700453# endif
454#endif /* !CONFIG_DM_VIDEO */
Simon Glass50250b52013-03-11 14:30:42 +0000455
Simon Glass1008da02016-01-18 19:52:20 -0700456static int reserve_trace(void)
457{
458#ifdef CONFIG_TRACE
459 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
460 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
461 debug("Reserving %dk for trace data at: %08lx\n",
462 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
463#endif
464
465 return 0;
466}
467
Simon Glassc45e3592013-03-11 06:49:53 +0000468static int reserve_uboot(void)
469{
470 /*
471 * reserve memory for U-Boot code, data & bss
472 * round down to next 4 kB limit
473 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000474 gd->relocaddr -= gd->mon_len;
475 gd->relocaddr &= ~(4096 - 1);
Simon Glass50250b52013-03-11 14:30:42 +0000476#ifdef CONFIG_E500
477 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000478 gd->relocaddr &= ~(65536 - 1);
Simon Glass50250b52013-03-11 14:30:42 +0000479#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000480
481 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000482 gd->relocaddr);
483
484 gd->start_addr_sp = gd->relocaddr;
485
Simon Glassc45e3592013-03-11 06:49:53 +0000486 return 0;
487}
488
Simon Glass4d2aee82013-03-05 14:39:45 +0000489#ifndef CONFIG_SPL_BUILD
Simon Glassc45e3592013-03-11 06:49:53 +0000490/* reserve memory for malloc() area */
491static int reserve_malloc(void)
492{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000493 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glassc45e3592013-03-11 06:49:53 +0000494 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000495 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000496 return 0;
497}
498
499/* (permanently) allocate a Board Info struct */
500static int reserve_board(void)
501{
Sonic Zhangf503a522014-07-17 19:01:34 +0800502 if (!gd->bd) {
503 gd->start_addr_sp -= sizeof(bd_t);
504 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
505 memset(gd->bd, '\0', sizeof(bd_t));
506 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
507 sizeof(bd_t), gd->start_addr_sp);
508 }
Simon Glassc45e3592013-03-11 06:49:53 +0000509 return 0;
510}
Simon Glass4d2aee82013-03-05 14:39:45 +0000511#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000512
513static int setup_machine(void)
514{
515#ifdef CONFIG_MACH_TYPE
516 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
517#endif
518 return 0;
519}
520
521static int reserve_global_data(void)
522{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000523 gd->start_addr_sp -= sizeof(gd_t);
524 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000525 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000526 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000527 return 0;
528}
529
530static int reserve_fdt(void)
531{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100532#ifndef CONFIG_OF_EMBED
Simon Glassc45e3592013-03-11 06:49:53 +0000533 /*
Simon Glass839855c2015-04-28 20:25:03 -0600534 * If the device tree is sitting immediately above our image then we
Simon Glassc45e3592013-03-11 06:49:53 +0000535 * must relocate it. If it is embedded in the data section, then it
536 * will be relocated with other data.
537 */
538 if (gd->fdt_blob) {
539 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
540
Masahiro Yamadad1589242013-05-27 00:37:30 +0000541 gd->start_addr_sp -= gd->fdt_size;
542 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glass62cf9122013-04-26 02:53:43 +0000543 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000544 gd->fdt_size, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000545 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100546#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000547
548 return 0;
549}
550
Andreas Bießmann25429862015-02-06 23:06:45 +0100551int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000552{
Andreas Bießmann25429862015-02-06 23:06:45 +0100553 return 0;
554}
Simon Glass4d2aee82013-03-05 14:39:45 +0000555
Andreas Bießmann25429862015-02-06 23:06:45 +0100556static int reserve_stacks(void)
557{
558 /* make stack pointer 16-byte aligned */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000559 gd->start_addr_sp -= 16;
560 gd->start_addr_sp &= ~0xf;
Simon Glassc45e3592013-03-11 06:49:53 +0000561
562 /*
Simon Glass839855c2015-04-28 20:25:03 -0600563 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100564 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000565 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100566 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000567}
568
569static int display_new_sp(void)
570{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000571 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000572
573 return 0;
574}
575
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200576#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
577 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000578static int setup_board_part1(void)
579{
580 bd_t *bd = gd->bd;
581
582 /*
583 * Save local variables to board info struct
584 */
Simon Glass50250b52013-03-11 14:30:42 +0000585 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
586 bd->bi_memsize = gd->ram_size; /* size in bytes */
587
588#ifdef CONFIG_SYS_SRAM_BASE
589 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
590 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
591#endif
592
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900593#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glass50250b52013-03-11 14:30:42 +0000594 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
595 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
596#endif
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100597#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000598 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
599#endif
600#if defined(CONFIG_MPC83xx)
601 bd->bi_immrbar = CONFIG_SYS_IMMR;
602#endif
Simon Glass50250b52013-03-11 14:30:42 +0000603
604 return 0;
605}
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100606#endif
Simon Glass50250b52013-03-11 14:30:42 +0000607
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100608#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000609static int setup_board_part2(void)
610{
611 bd_t *bd = gd->bd;
612
613 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
614 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
615#if defined(CONFIG_CPM2)
616 bd->bi_cpmfreq = gd->arch.cpm_clk;
617 bd->bi_brgfreq = gd->arch.brg_clk;
618 bd->bi_sccfreq = gd->arch.scc_clk;
619 bd->bi_vco = gd->arch.vco_out;
620#endif /* CONFIG_CPM2 */
621#if defined(CONFIG_MPC512X)
622 bd->bi_ipsfreq = gd->arch.ips_clk;
623#endif /* CONFIG_MPC512X */
624#if defined(CONFIG_MPC5xxx)
625 bd->bi_ipbfreq = gd->arch.ipb_clk;
626 bd->bi_pcifreq = gd->pci_clk;
627#endif /* CONFIG_MPC5xxx */
Alison Wang8f6d8f32015-02-12 18:33:15 +0800628#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
629 bd->bi_pcifreq = gd->pci_clk;
630#endif
631#if defined(CONFIG_EXTRA_CLOCK)
632 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
633 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
634 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
635#endif
Simon Glass50250b52013-03-11 14:30:42 +0000636
637 return 0;
638}
639#endif
640
641#ifdef CONFIG_SYS_EXTBDINFO
642static int setup_board_extra(void)
643{
644 bd_t *bd = gd->bd;
645
646 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
647 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
648 sizeof(bd->bi_r_version));
649
650 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
651 bd->bi_plb_busfreq = gd->bus_clk;
652#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
653 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
654 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
655 bd->bi_pci_busfreq = get_PCI_freq();
656 bd->bi_opbfreq = get_OPB_freq();
657#elif defined(CONFIG_XILINX_405)
658 bd->bi_pci_busfreq = get_PCI_freq();
659#endif
660
661 return 0;
662}
663#endif
664
Simon Glassc45e3592013-03-11 06:49:53 +0000665#ifdef CONFIG_POST
666static int init_post(void)
667{
668 post_bootmode_init();
669 post_run(NULL, POST_ROM | post_bootmode_get(0));
670
671 return 0;
672}
673#endif
674
Simon Glassc45e3592013-03-11 06:49:53 +0000675static int setup_dram_config(void)
676{
677 /* Ram is board specific, so move it to board code ... */
678 dram_init_banksize();
679
680 return 0;
681}
682
683static int reloc_fdt(void)
684{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100685#ifndef CONFIG_OF_EMBED
Simon Glass00dd17a2015-08-04 12:33:39 -0600686 if (gd->flags & GD_FLG_SKIP_RELOC)
687 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000688 if (gd->new_fdt) {
689 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
690 gd->fdt_blob = gd->new_fdt;
691 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100692#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000693
694 return 0;
695}
696
697static int setup_reloc(void)
698{
Simon Glass00dd17a2015-08-04 12:33:39 -0600699 if (gd->flags & GD_FLG_SKIP_RELOC) {
700 debug("Skipping relocation due to flag\n");
701 return 0;
702 }
703
Sonic Zhangf503a522014-07-17 19:01:34 +0800704#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadad1589242013-05-27 00:37:30 +0000705 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100706#ifdef CONFIG_M68K
707 /*
708 * On all ColdFire arch cpu, monitor code starts always
709 * just after the default vector table location, so at 0x400
710 */
711 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
712#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800713#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000714 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
715
716 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass62cf9122013-04-26 02:53:43 +0000717 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000718 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
719 gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000720
721 return 0;
722}
723
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100724#ifdef CONFIG_OF_BOARD_FIXUP
725static int fix_fdt(void)
726{
727 return board_fix_fdt((void *)gd->fdt_blob);
728}
729#endif
730
Simon Glassc45e3592013-03-11 06:49:53 +0000731/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700732#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
733 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000734
735static int jump_to_copy(void)
736{
Simon Glass00dd17a2015-08-04 12:33:39 -0600737 if (gd->flags & GD_FLG_SKIP_RELOC)
738 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000739 /*
740 * x86 is special, but in a nice way. It uses a trampoline which
741 * enables the dcache if possible.
742 *
743 * For now, other archs use relocate_code(), which is implemented
744 * similarly for all archs. When we do generic relocation, hopefully
745 * we can make all archs enable the dcache prior to relocation.
746 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300747#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000748 /*
749 * SDRAM and console are now initialised. The final stack can now
750 * be setup in SDRAM. Code execution will continue in Flash, but
751 * with the stack in SDRAM and Global Data in temporary memory
752 * (CPU cache)
753 */
Simon Glass0e27b872015-08-10 20:44:32 -0600754 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000755 board_init_f_r_trampoline(gd->start_addr_sp);
756#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000757 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000758#endif
Simon Glassc45e3592013-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 Glass1bb49232015-11-08 23:47:48 -0700772static int initf_console_record(void)
773{
774#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
775 return console_record_init();
776#else
777 return 0;
778#endif
779}
780
Simon Glassa730c5d2014-07-23 06:55:04 -0600781static int initf_dm(void)
782{
783#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
784 int ret;
785
786 ret = dm_init_and_scan(true);
787 if (ret)
788 return ret;
789#endif
Simon Glass8e4f80f2016-02-24 09:14:50 -0700790#ifdef CONFIG_TIMER_EARLY
791 ret = dm_timer_init();
792 if (ret)
793 return ret;
794#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600795
796 return 0;
797}
798
Simon Glass5ded7e52015-01-19 22:16:12 -0700799/* Architecture-specific memory reservation */
800__weak int reserve_arch(void)
801{
802 return 0;
803}
804
Simon Glass7af8d052015-03-05 12:25:16 -0700805__weak int arch_cpu_init_dm(void)
806{
807 return 0;
808}
809
Simon Glass2031fad2017-01-16 07:03:50 -0700810static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000811 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700812#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700813 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700814#endif
Kevin Hilman676f0192014-12-09 15:03:58 -0800815#ifdef CONFIG_TRACE
Simon Glass209a1a62013-06-11 11:14:42 -0700816 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800817#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700818 initf_malloc,
Simon Glass1bb49232015-11-08 23:47:48 -0700819 initf_console_record,
Simon Glass295c4232017-03-28 10:27:18 -0600820#if defined(CONFIG_HAVE_FSP)
821 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700822#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000823 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100824 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600825 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700826 arch_cpu_init_dm,
Thomas Chouc2fbaa22015-10-30 15:35:51 +0800827 mark_bootstage, /* need timer, go after init dm */
Simon Glassc45e3592013-03-11 06:49:53 +0000828#if defined(CONFIG_BOARD_EARLY_INIT_F)
829 board_early_init_f,
830#endif
Simon Glasse8d20d42017-03-28 10:27:23 -0600831#ifdef CONFIG_PPC
Simon Glass70064a72017-03-28 10:27:19 -0600832 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000833 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass50250b52013-03-11 14:30:42 +0000834 /* TODO: can we rename this to timer_init()? */
835 init_timebase,
Simon Glasse8d20d42017-03-28 10:27:23 -0600836#endif
Bin Meng31617642015-12-08 17:31:40 -0800837#if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \
Tom Rinifef2bd12017-03-14 11:08:11 -0400838 defined(CONFIG_NDS32) || defined(CONFIG_SH)
Simon Glassc45e3592013-03-11 06:49:53 +0000839 timer_init, /* initialize timer */
Simon Glass50250b52013-03-11 14:30:42 +0000840#endif
Simon Glass50250b52013-03-11 14:30:42 +0000841#if defined(CONFIG_BOARD_POSTCLK_INIT)
842 board_postclk_init,
843#endif
Peng Fand7f18922015-10-30 17:30:02 +0800844#if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100845 get_clocks,
846#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000847 env_init, /* initialize environment */
848 init_baud_rate, /* initialze baudrate settings */
849 serial_init, /* serial communications setup */
850 console_init_f, /* stage 1 init of console */
Simon Glass62cf9122013-04-26 02:53:43 +0000851#ifdef CONFIG_SANDBOX
852 sandbox_early_getopt_check,
853#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000854 display_options, /* say that we are here */
855 display_text_info, /* show debugging info if required */
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900856#if defined(CONFIG_MPC8260)
Simon Glass50250b52013-03-11 14:30:42 +0000857 prt_8260_rsr,
858 prt_8260_clks,
Masahiro Yamada5a2bf982014-03-05 17:40:10 +0900859#endif /* CONFIG_MPC8260 */
Simon Glass50250b52013-03-11 14:30:42 +0000860#if defined(CONFIG_MPC83xx)
861 prt_83xx_rsr,
862#endif
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200863#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000864 checkcpu,
865#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700866#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000867 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700868#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000869#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900870 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000871#endif
Simon Glass50250b52013-03-11 14:30:42 +0000872 INIT_FUNC_WATCHDOG_INIT
873#if defined(CONFIG_MISC_INIT_F)
874 misc_init_f,
875#endif
876 INIT_FUNC_WATCHDOG_RESET
Heiko Schocher479a4cf2013-01-29 08:53:15 +0100877#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000878 init_func_i2c,
879#endif
880#if defined(CONFIG_HARD_SPI)
881 init_func_spi,
882#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000883 announce_dram_init,
884 /* TODO: unify all these dram functions? */
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800885#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200886 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || \
887 defined(CONFIG_SH)
Simon Glassc45e3592013-03-11 06:49:53 +0000888 dram_init, /* configure available RAM banks */
889#endif
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100890#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000891 init_func_ram,
892#endif
893#ifdef CONFIG_POST
894 post_init_f,
895#endif
896 INIT_FUNC_WATCHDOG_RESET
897#if defined(CONFIG_SYS_DRAM_TEST)
898 testdram,
899#endif /* CONFIG_SYS_DRAM_TEST */
900 INIT_FUNC_WATCHDOG_RESET
901
Simon Glassc45e3592013-03-11 06:49:53 +0000902#ifdef CONFIG_POST
903 init_post,
904#endif
Simon Glass50250b52013-03-11 14:30:42 +0000905 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000906 /*
907 * Now that we have DRAM mapped and working, we can
908 * relocate the code and continue running from DRAM.
909 *
910 * Reserve memory at end of RAM for (top down in that order):
911 * - area that won't get touched by U-Boot and Linux (optional)
912 * - kernel log buffer
913 * - protected RAM
914 * - LCD framebuffer
915 * - monitor code
916 * - board info struct
917 */
918 setup_dest_addr,
Tom Rini210ebce2017-03-14 11:08:10 -0400919#if defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800920 /* Blackfin u-boot monitor should be on top of the ram */
921 reserve_uboot,
922#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000923#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
924 reserve_logbuffer,
925#endif
926#ifdef CONFIG_PRAM
927 reserve_pram,
928#endif
929 reserve_round_4k,
930#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
931 defined(CONFIG_ARM)
932 reserve_mmu,
933#endif
Simon Glassfce58f52016-01-18 19:52:21 -0700934#ifdef CONFIG_DM_VIDEO
935 reserve_video,
936#else
937# ifdef CONFIG_LCD
Simon Glassc45e3592013-03-11 06:49:53 +0000938 reserve_lcd,
Simon Glassfce58f52016-01-18 19:52:21 -0700939# endif
Simon Glass50250b52013-03-11 14:30:42 +0000940 /* TODO: Why the dependency on CONFIG_8xx? */
Simon Glassfce58f52016-01-18 19:52:21 -0700941# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangf503a522014-07-17 19:01:34 +0800942 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Rini210ebce2017-03-14 11:08:10 -0400943 !defined(CONFIG_M68K)
Simon Glassfce58f52016-01-18 19:52:21 -0700944 reserve_legacy_video,
945# endif
946#endif /* CONFIG_DM_VIDEO */
Simon Glass1008da02016-01-18 19:52:20 -0700947 reserve_trace,
Tom Rini210ebce2017-03-14 11:08:10 -0400948#if !defined(CONFIG_XTENSA)
Simon Glassc45e3592013-03-11 06:49:53 +0000949 reserve_uboot,
Sonic Zhangf503a522014-07-17 19:01:34 +0800950#endif
Simon Glass4d2aee82013-03-05 14:39:45 +0000951#ifndef CONFIG_SPL_BUILD
Simon Glassc45e3592013-03-11 06:49:53 +0000952 reserve_malloc,
953 reserve_board,
Simon Glass4d2aee82013-03-05 14:39:45 +0000954#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000955 setup_machine,
956 reserve_global_data,
957 reserve_fdt,
Simon Glass5ded7e52015-01-19 22:16:12 -0700958 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000959 reserve_stacks,
960 setup_dram_config,
961 show_dram_config,
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200962#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
963 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000964 setup_board_part1,
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100965#endif
966#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000967 INIT_FUNC_WATCHDOG_RESET
968 setup_board_part2,
969#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000970 display_new_sp,
Simon Glass50250b52013-03-11 14:30:42 +0000971#ifdef CONFIG_SYS_EXTBDINFO
972 setup_board_extra,
973#endif
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100974#ifdef CONFIG_OF_BOARD_FIXUP
975 fix_fdt,
976#endif
Simon Glass50250b52013-03-11 14:30:42 +0000977 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000978 reloc_fdt,
979 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300980#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700981 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -0700982 do_elf_reloc_fixups,
Simon Glass2a7bf772017-01-16 07:03:52 -0700983 clear_bss,
Simon Glassd50b2f42015-01-01 16:18:09 -0700984#endif
Chris Zankel41e37372016-08-10 18:36:43 +0300985#if defined(CONFIG_XTENSA)
986 clear_bss,
987#endif
Simon Glass6e1a81a2017-01-16 07:03:49 -0700988#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
989 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000990 jump_to_copy,
991#endif
992 NULL,
993};
994
995void board_init_f(ulong boot_flags)
996{
York Sun021d2022014-05-02 17:28:04 -0700997#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
998 /*
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400999 * For some architectures, global data is initialized and used before
York Sun021d2022014-05-02 17:28:04 -07001000 * calling this function. The data should be preserved. For others,
1001 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
1002 * here to host global data until relocation.
1003 */
Simon Glassc45e3592013-03-11 06:49:53 +00001004 gd_t data;
1005
1006 gd = &data;
1007
David Feng1735de82013-12-14 11:47:36 +08001008 /*
1009 * Clear global data before it is accessed at debug print
1010 * in initcall_run_list. Otherwise the debug print probably
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -04001011 * get the wrong value of gd->have_console.
David Feng1735de82013-12-14 11:47:36 +08001012 */
David Feng1735de82013-12-14 11:47:36 +08001013 zero_global_data();
1014#endif
1015
Simon Glassc45e3592013-03-11 06:49:53 +00001016 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +04001017 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +00001018
1019 if (initcall_run_list(init_sequence_f))
1020 hang();
1021
Ben Stoltz1930e8d2015-07-31 09:31:37 -06001022#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass6e1a81a2017-01-16 07:03:49 -07001023 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +00001024 /* NOTREACHED - jump_to_copy() does not return */
1025 hang();
1026#endif
1027}
Simon Glass6d179872013-03-05 14:39:52 +00001028
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001029#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +00001030/*
1031 * For now this code is only used on x86.
1032 *
1033 * init_sequence_f_r is the list of init functions which are run when
1034 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1035 * The following limitations must be considered when implementing an
1036 * '_f_r' function:
1037 * - 'static' variables are read-only
1038 * - Global Data (gd->xxx) is read/write
1039 *
1040 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1041 * supported). It _should_, if possible, copy global data to RAM and
1042 * initialise the CPU caches (to speed up the relocation process)
1043 *
1044 * NOTE: At present only x86 uses this route, but it is intended that
1045 * all archs will move to this when generic relocation is implemented.
1046 */
Simon Glass2031fad2017-01-16 07:03:50 -07001047static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001048#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001049 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001050#endif
Simon Glass6d179872013-03-05 14:39:52 +00001051
1052 NULL,
1053};
1054
1055void board_init_f_r(void)
1056{
1057 if (initcall_run_list(init_sequence_f_r))
1058 hang();
1059
1060 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001061 * The pre-relocation drivers may be using memory that has now gone
1062 * away. Mark serial as unavailable - this will fall back to the debug
1063 * UART if available.
1064 */
1065 gd->flags &= ~GD_FLG_SERIAL_READY;
1066
1067 /*
Simon Glass6d179872013-03-05 14:39:52 +00001068 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1069 * Transfer execution from Flash to RAM by calculating the address
1070 * of the in-RAM copy of board_init_r() and calling it
1071 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001072 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001073
1074 /* NOTREACHED - board_init_r() does not return */
1075 hang();
1076}
Alexey Brodkin73503182015-03-24 11:12:47 +03001077#endif /* CONFIG_X86 */