blob: afafec5e4d02657926f164f7a06abaf76914e851 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-03-11 06:49:53 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
Simon Glass1938f4a2013-03-11 06:49:53 +000010 */
11
12#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070013#include <console.h>
Simon Glassab7cd622014-07-23 06:55:04 -060014#include <dm.h>
Mario Six138181a2018-08-06 10:23:39 +020015#include <environment.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000016#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000017#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000018#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000019#include <initcall.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070020#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050021#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000022#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000023#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060024#include <relocate.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000025#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020026#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020027#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070028#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070029#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070030#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000031#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060032#ifdef CONFIG_MACH_TYPE
33#include <asm/mach-types.h>
34#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060035#if defined(CONFIG_MP) && defined(CONFIG_PPC)
36#include <asm/mp.h>
37#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000038#include <asm/io.h>
39#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060040#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060041#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000042
43/*
44 * Pointer to initial global data area
45 *
46 * Here we initialize it if needed.
47 */
48#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
49#undef XTRN_DECLARE_GLOBAL_DATA_PTR
50#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010051DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000052#else
53DECLARE_GLOBAL_DATA_PTR;
54#endif
55
56/*
Simon Glass4c509342015-04-28 20:25:03 -060057 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000058 * refactored to a single function, something like:
59 *
60 * void led_set_state(enum led_colour_t colour, int on);
61 */
62/************************************************************************
63 * Coloured LED functionality
64 ************************************************************************
65 * May be supplied by boards if desired
66 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020067__weak void coloured_LED_init(void) {}
68__weak void red_led_on(void) {}
69__weak void red_led_off(void) {}
70__weak void green_led_on(void) {}
71__weak void green_led_off(void) {}
72__weak void yellow_led_on(void) {}
73__weak void yellow_led_off(void) {}
74__weak void blue_led_on(void) {}
75__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000076
77/*
78 * Why is gd allocated a register? Prior to reloc it might be better to
79 * just pass it around to each function in this file?
80 *
81 * After reloc one could argue that it is hardly used and doesn't need
82 * to be in a register. Or if it is it should perhaps hold pointers to all
83 * global data for all modules, so that post-reloc we can avoid the massive
84 * literal pool we get on ARM. Or perhaps just encourage each module to use
85 * a structure...
86 */
87
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080088#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000089static int init_func_watchdog_init(void)
90{
Tom Riniea3310e2017-03-14 11:08:10 -040091# if defined(CONFIG_HW_WATCHDOG) && \
92 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010093 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020094 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010095 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080096 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +000097 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +020098# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000099 WATCHDOG_RESET();
100
101 return 0;
102}
103
104int init_func_watchdog_reset(void)
105{
106 WATCHDOG_RESET();
107
108 return 0;
109}
110#endif /* CONFIG_WATCHDOG */
111
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200112__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113{
114 /* please define platform specific board_add_ram_info() */
115}
116
Simon Glass1938f4a2013-03-11 06:49:53 +0000117static int init_baud_rate(void)
118{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600119 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000120 return 0;
121}
122
123static int display_text_info(void)
124{
Ben Stoltz9b217492015-07-31 09:31:37 -0600125#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100126 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000127
Simon Glass632efa72013-03-11 07:06:48 +0000128 bss_start = (ulong)&__bss_start;
129 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100130
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800131#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100132 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800133#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100134 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800135#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100136
137 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100138 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000139#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000140
Simon Glass1938f4a2013-03-11 06:49:53 +0000141 return 0;
142}
143
Mario Six23471ae2018-08-06 10:23:34 +0200144#ifdef CONFIG_SYSRESET
145static int print_resetinfo(void)
146{
147 struct udevice *dev;
148 char status[256];
149 int ret;
150
151 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
152 if (ret) {
153 debug("%s: No sysreset device found (error: %d)\n",
154 __func__, ret);
155 /* Not all boards have sysreset drivers available during early
156 * boot, so don't fail if one can't be found.
157 */
158 return 0;
159 }
160
161 if (!sysreset_get_status(dev, status, sizeof(status)))
162 printf("%s", status);
163
164 return 0;
165}
166#endif
167
Simon Glass1938f4a2013-03-11 06:49:53 +0000168static int announce_dram_init(void)
169{
170 puts("DRAM: ");
171 return 0;
172}
173
174static int show_dram_config(void)
175{
York Sunfa39ffe2014-05-02 17:28:05 -0700176 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000177
178#ifdef CONFIG_NR_DRAM_BANKS
179 int i;
180
181 debug("\nRAM Configuration:\n");
182 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
183 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700184 debug("Bank #%d: %llx ", i,
185 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000186#ifdef DEBUG
187 print_size(gd->bd->bi_dram[i].size, "\n");
188#endif
189 }
190 debug("\nDRAM: ");
191#else
192 size = gd->ram_size;
193#endif
194
Simon Glasse4fef6c2013-03-11 14:30:42 +0000195 print_size(size, "");
196 board_add_ram_info(0);
197 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000198
199 return 0;
200}
201
Simon Glass76b00ac2017-03-31 08:40:32 -0600202__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000203{
204#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
205 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
206 gd->bd->bi_dram[0].size = get_effective_memsize();
207#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600208
209 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000210}
211
Simon Glass69153982017-05-12 21:09:56 -0600212#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000213static int init_func_i2c(void)
214{
215 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200216#ifdef CONFIG_SYS_I2C
217 i2c_init_all();
218#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000219 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200220#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000221 puts("ready\n");
222 return 0;
223}
224#endif
225
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530226#if defined(CONFIG_VID)
227__weak int init_func_vid(void)
228{
229 return 0;
230}
231#endif
232
Simon Glasse4fef6c2013-03-11 14:30:42 +0000233#if defined(CONFIG_HARD_SPI)
234static int init_func_spi(void)
235{
236 puts("SPI: ");
237 spi_init();
238 puts("ready\n");
239 return 0;
240}
241#endif
242
Simon Glass1938f4a2013-03-11 06:49:53 +0000243static int setup_mon_len(void)
244{
Michal Simeke945f6d2014-05-08 16:08:44 +0200245#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100246 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600247#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000248 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400249#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800250 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800251#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800252 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600253#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000254 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
255 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000256#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000257 return 0;
258}
259
260__weak int arch_cpu_init(void)
261{
262 return 0;
263}
264
Paul Burton8ebf5062016-09-21 11:18:46 +0100265__weak int mach_cpu_init(void)
266{
267 return 0;
268}
269
Simon Glass1938f4a2013-03-11 06:49:53 +0000270/* Get the top of usable RAM */
271__weak ulong board_get_usable_ram_top(ulong total_size)
272{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700273#ifdef CONFIG_SYS_SDRAM_BASE
274 /*
Simon Glass4c509342015-04-28 20:25:03 -0600275 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700276 * 32-bit address space. If so, clip the usable RAM so it doesn't.
277 */
278 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
279 /*
280 * Will wrap back to top of 32-bit space when reservations
281 * are made.
282 */
283 return 0;
284#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000285 return gd->ram_top;
286}
287
288static int setup_dest_addr(void)
289{
290 debug("Monitor len: %08lX\n", gd->mon_len);
291 /*
292 * Ram is setup, size stored in gd !!
293 */
294 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800295#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000296 /*
297 * Subtract specified amount of memory to hide so that it won't
298 * get "touched" at all by U-Boot. By fixing up gd->ram_size
299 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800300 * memory size and won't touch it either. This should work
301 * for arch/ppc and arch/powerpc. Only Linux board ports in
302 * arch/powerpc with bootwrapper support, that recalculate the
303 * memory size from the SDRAM controller setup will have to
304 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000305 */
York Sun36cc0de2017-03-06 09:02:28 -0800306 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
307#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000308#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530309 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000310#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530311 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000312 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000313 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000314 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700315#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000316 /*
317 * We need to make sure the location we intend to put secondary core
318 * boot code is reserved and not used by any part of u-boot
319 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000320 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
321 gd->relocaddr = determine_mp_bootpg(NULL);
322 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000323 }
324#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000325 return 0;
326}
327
Simon Glass1938f4a2013-03-11 06:49:53 +0000328#ifdef CONFIG_PRAM
329/* reserve protected RAM */
330static int reserve_pram(void)
331{
332 ulong reg;
333
Simon Glassbfebc8c2017-08-03 12:22:13 -0600334 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000335 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000336 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000337 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000338 return 0;
339}
340#endif /* CONFIG_PRAM */
341
342/* Round memory pointer down to next 4 kB limit */
343static int reserve_round_4k(void)
344{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000345 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000346 return 0;
347}
348
Simon Glass80d4bcd2017-03-31 08:40:29 -0600349#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530350__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000351{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600352#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000353 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800354 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000355 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000356
357 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000358 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000359
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000360 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000361 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
362 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700363
364#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
365 /*
366 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
367 * with location within secure ram.
368 */
369 gd->arch.tlb_allocated = gd->arch.tlb_addr;
370#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600371#endif
York Sun50e93b92016-06-24 16:46:19 -0700372
Simon Glass1938f4a2013-03-11 06:49:53 +0000373 return 0;
374}
375#endif
376
Simon Glass5a541942016-01-18 19:52:21 -0700377static int reserve_video(void)
378{
Simon Glass0f079eb2017-03-31 08:40:30 -0600379#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700380 ulong addr;
381 int ret;
382
383 addr = gd->relocaddr;
384 ret = video_reserve(&addr);
385 if (ret)
386 return ret;
387 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600388#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700389# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000390 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700391# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000392 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000393 gd->relocaddr = lcd_setmem(gd->relocaddr);
394 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700395# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600396#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200397 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700398 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400399 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700400 /* reserve memory for video display (always full pages) */
401 gd->relocaddr = video_setmem(gd->relocaddr);
402 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600403#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700404
405 return 0;
406}
Simon Glass8703ef32016-01-18 19:52:20 -0700407
Simon Glass71c52db2013-06-11 11:14:42 -0700408static int reserve_trace(void)
409{
410#ifdef CONFIG_TRACE
411 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
412 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
413 debug("Reserving %dk for trace data at: %08lx\n",
414 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
415#endif
416
417 return 0;
418}
419
Simon Glass1938f4a2013-03-11 06:49:53 +0000420static int reserve_uboot(void)
421{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300422 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
423 /*
424 * reserve memory for U-Boot code, data & bss
425 * round down to next 4 kB limit
426 */
427 gd->relocaddr -= gd->mon_len;
428 gd->relocaddr &= ~(4096 - 1);
429 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
430 /* round down to next 64 kB limit so that IVPR stays aligned */
431 gd->relocaddr &= ~(65536 - 1);
432 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000433
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300434 debug("Reserving %ldk for U-Boot at: %08lx\n",
435 gd->mon_len >> 10, gd->relocaddr);
436 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000437
438 gd->start_addr_sp = gd->relocaddr;
439
Simon Glass1938f4a2013-03-11 06:49:53 +0000440 return 0;
441}
442
443/* reserve memory for malloc() area */
444static int reserve_malloc(void)
445{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000446 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000447 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100448 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000449 return 0;
450}
451
452/* (permanently) allocate a Board Info struct */
453static int reserve_board(void)
454{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800455 if (!gd->bd) {
456 gd->start_addr_sp -= sizeof(bd_t);
457 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
458 memset(gd->bd, '\0', sizeof(bd_t));
459 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
460 sizeof(bd_t), gd->start_addr_sp);
461 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000462 return 0;
463}
464
465static int setup_machine(void)
466{
467#ifdef CONFIG_MACH_TYPE
468 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
469#endif
470 return 0;
471}
472
473static int reserve_global_data(void)
474{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000475 gd->start_addr_sp -= sizeof(gd_t);
476 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000477 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100478 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000479 return 0;
480}
481
482static int reserve_fdt(void)
483{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100484#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000485 /*
Simon Glass4c509342015-04-28 20:25:03 -0600486 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000487 * must relocate it. If it is embedded in the data section, then it
488 * will be relocated with other data.
489 */
490 if (gd->fdt_blob) {
491 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
492
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000493 gd->start_addr_sp -= gd->fdt_size;
494 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000495 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000496 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000497 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100498#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000499
500 return 0;
501}
502
Simon Glass25e7dc62017-05-22 05:05:30 -0600503static int reserve_bootstage(void)
504{
505#ifdef CONFIG_BOOTSTAGE
506 int size = bootstage_get_size();
507
508 gd->start_addr_sp -= size;
509 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
510 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
511 gd->start_addr_sp);
512#endif
513
514 return 0;
515}
516
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100517__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100518{
519 return 0;
520}
521
Simon Glass1938f4a2013-03-11 06:49:53 +0000522static int reserve_stacks(void)
523{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100524 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000525 gd->start_addr_sp -= 16;
526 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000527
528 /*
Simon Glass4c509342015-04-28 20:25:03 -0600529 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100530 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000531 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100532 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000533}
534
535static int display_new_sp(void)
536{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000537 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000538
539 return 0;
540}
541
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200542#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
543 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000544static int setup_board_part1(void)
545{
546 bd_t *bd = gd->bd;
547
548 /*
549 * Save local variables to board info struct
550 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000551 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
552 bd->bi_memsize = gd->ram_size; /* size in bytes */
553
554#ifdef CONFIG_SYS_SRAM_BASE
555 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
556 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
557#endif
558
Heiko Schocher50258972017-06-07 17:33:11 +0200559#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000560 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
561#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200562#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000563 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
564#endif
565#if defined(CONFIG_MPC83xx)
566 bd->bi_immrbar = CONFIG_SYS_IMMR;
567#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000568
569 return 0;
570}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100571#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000572
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100573#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000574static int setup_board_part2(void)
575{
576 bd_t *bd = gd->bd;
577
578 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
579 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
580#if defined(CONFIG_CPM2)
581 bd->bi_cpmfreq = gd->arch.cpm_clk;
582 bd->bi_brgfreq = gd->arch.brg_clk;
583 bd->bi_sccfreq = gd->arch.scc_clk;
584 bd->bi_vco = gd->arch.vco_out;
585#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800586#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
587 bd->bi_pcifreq = gd->pci_clk;
588#endif
589#if defined(CONFIG_EXTRA_CLOCK)
590 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
591 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
592 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
593#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000594
595 return 0;
596}
597#endif
598
Simon Glass1938f4a2013-03-11 06:49:53 +0000599#ifdef CONFIG_POST
600static int init_post(void)
601{
602 post_bootmode_init();
603 post_run(NULL, POST_ROM | post_bootmode_get(0));
604
605 return 0;
606}
607#endif
608
Simon Glass1938f4a2013-03-11 06:49:53 +0000609static int reloc_fdt(void)
610{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100611#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600612 if (gd->flags & GD_FLG_SKIP_RELOC)
613 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000614 if (gd->new_fdt) {
615 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
616 gd->fdt_blob = gd->new_fdt;
617 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100618#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000619
620 return 0;
621}
622
Simon Glass25e7dc62017-05-22 05:05:30 -0600623static int reloc_bootstage(void)
624{
625#ifdef CONFIG_BOOTSTAGE
626 if (gd->flags & GD_FLG_SKIP_RELOC)
627 return 0;
628 if (gd->new_bootstage) {
629 int size = bootstage_get_size();
630
631 debug("Copying bootstage from %p to %p, size %x\n",
632 gd->bootstage, gd->new_bootstage, size);
633 memcpy(gd->new_bootstage, gd->bootstage, size);
634 gd->bootstage = gd->new_bootstage;
635 }
636#endif
637
638 return 0;
639}
640
Simon Glass1938f4a2013-03-11 06:49:53 +0000641static int setup_reloc(void)
642{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600643 if (gd->flags & GD_FLG_SKIP_RELOC) {
644 debug("Skipping relocation due to flag\n");
645 return 0;
646 }
647
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800648#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200649#ifdef ARM
650 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
651#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100652 /*
653 * On all ColdFire arch cpu, monitor code starts always
654 * just after the default vector table location, so at 0x400
655 */
656 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200657#else
658 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100659#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800660#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000661 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
662
663 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000664 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000665 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
666 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000667
668 return 0;
669}
670
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100671#ifdef CONFIG_OF_BOARD_FIXUP
672static int fix_fdt(void)
673{
674 return board_fix_fdt((void *)gd->fdt_blob);
675}
676#endif
677
Simon Glass1938f4a2013-03-11 06:49:53 +0000678/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700679#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
680 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000681
682static int jump_to_copy(void)
683{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600684 if (gd->flags & GD_FLG_SKIP_RELOC)
685 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000686 /*
687 * x86 is special, but in a nice way. It uses a trampoline which
688 * enables the dcache if possible.
689 *
690 * For now, other archs use relocate_code(), which is implemented
691 * similarly for all archs. When we do generic relocation, hopefully
692 * we can make all archs enable the dcache prior to relocation.
693 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300694#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000695 /*
696 * SDRAM and console are now initialised. The final stack can now
697 * be setup in SDRAM. Code execution will continue in Flash, but
698 * with the stack in SDRAM and Global Data in temporary memory
699 * (CPU cache)
700 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600701 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000702 board_init_f_r_trampoline(gd->start_addr_sp);
703#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000704 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000705#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000706
707 return 0;
708}
709#endif
710
711/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600712static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000713{
Simon Glassbaa7d342017-06-07 10:28:46 -0600714 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
715 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600716 int ret;
717
Simon Glass824bb1b2017-05-22 05:05:35 -0600718 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600719 if (ret)
720 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600721 if (from_spl) {
722 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
723 CONFIG_BOOTSTAGE_STASH_SIZE);
724
725 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
726 if (ret && ret != -ENOENT) {
727 debug("Failed to unstash bootstage: err=%d\n", ret);
728 return ret;
729 }
730 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600731
Simon Glass1938f4a2013-03-11 06:49:53 +0000732 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
733
734 return 0;
735}
736
Simon Glass9854a872015-11-08 23:47:48 -0700737static int initf_console_record(void)
738{
Andy Yanf1896c42017-07-24 17:43:34 +0800739#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700740 return console_record_init();
741#else
742 return 0;
743#endif
744}
745
Simon Glassab7cd622014-07-23 06:55:04 -0600746static int initf_dm(void)
747{
Andy Yanf1896c42017-07-24 17:43:34 +0800748#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600749 int ret;
750
Simon Glass63c5bf42017-05-22 05:05:32 -0600751 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600752 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600753 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600754 if (ret)
755 return ret;
756#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700757#ifdef CONFIG_TIMER_EARLY
758 ret = dm_timer_init();
759 if (ret)
760 return ret;
761#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600762
763 return 0;
764}
765
Simon Glass146251f2015-01-19 22:16:12 -0700766/* Architecture-specific memory reservation */
767__weak int reserve_arch(void)
768{
769 return 0;
770}
771
Simon Glassd4c671c2015-03-05 12:25:16 -0700772__weak int arch_cpu_init_dm(void)
773{
774 return 0;
775}
776
Simon Glass4acff452017-01-16 07:03:50 -0700777static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000778 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700779#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700780 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700781#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800782#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700783 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800784#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700785 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700786 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600787 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glass9854a872015-11-08 23:47:48 -0700788 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600789#if defined(CONFIG_HAVE_FSP)
790 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700791#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000792 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100793 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600794 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700795 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000796#if defined(CONFIG_BOARD_EARLY_INIT_F)
797 board_early_init_f,
798#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600799#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600800 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000801 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600802#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200803#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000804 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200805#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000806#if defined(CONFIG_BOARD_POSTCLK_INIT)
807 board_postclk_init,
808#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000809 env_init, /* initialize environment */
810 init_baud_rate, /* initialze baudrate settings */
811 serial_init, /* serial communications setup */
812 console_init_f, /* stage 1 init of console */
813 display_options, /* say that we are here */
814 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200815#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000816 checkcpu,
817#endif
Mario Six23471ae2018-08-06 10:23:34 +0200818#if defined(CONFIG_SYSRESET)
819 print_resetinfo,
820#endif
Simon Glasscc664002017-01-23 13:31:25 -0700821#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000822 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700823#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500824#if defined(CONFIG_DTB_RESELECT)
825 embedded_dtb_select,
826#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000827#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900828 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000829#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000830 INIT_FUNC_WATCHDOG_INIT
831#if defined(CONFIG_MISC_INIT_F)
832 misc_init_f,
833#endif
834 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600835#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000836 init_func_i2c,
837#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530838#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
839 init_func_vid,
840#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000841#if defined(CONFIG_HARD_SPI)
842 init_func_spi,
843#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000844 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000845 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000846#ifdef CONFIG_POST
847 post_init_f,
848#endif
849 INIT_FUNC_WATCHDOG_RESET
850#if defined(CONFIG_SYS_DRAM_TEST)
851 testdram,
852#endif /* CONFIG_SYS_DRAM_TEST */
853 INIT_FUNC_WATCHDOG_RESET
854
Simon Glass1938f4a2013-03-11 06:49:53 +0000855#ifdef CONFIG_POST
856 init_post,
857#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000858 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 /*
860 * Now that we have DRAM mapped and working, we can
861 * relocate the code and continue running from DRAM.
862 *
863 * Reserve memory at end of RAM for (top down in that order):
864 * - area that won't get touched by U-Boot and Linux (optional)
865 * - kernel log buffer
866 * - protected RAM
867 * - LCD framebuffer
868 * - monitor code
869 * - board info struct
870 */
871 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000872#ifdef CONFIG_PRAM
873 reserve_pram,
874#endif
875 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600876#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000877 reserve_mmu,
878#endif
Simon Glass5a541942016-01-18 19:52:21 -0700879 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700880 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000881 reserve_uboot,
882 reserve_malloc,
883 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000884 setup_machine,
885 reserve_global_data,
886 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600887 reserve_bootstage,
Simon Glass146251f2015-01-19 22:16:12 -0700888 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000889 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600890 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200892#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
893 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000894 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100895#endif
896#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000897 INIT_FUNC_WATCHDOG_RESET
898 setup_board_part2,
899#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000900 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100901#ifdef CONFIG_OF_BOARD_FIXUP
902 fix_fdt,
903#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000904 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000905 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600906 reloc_bootstage,
Simon Glass1938f4a2013-03-11 06:49:53 +0000907 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300908#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700909 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700910 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700911 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700912#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300913#if defined(CONFIG_XTENSA)
914 clear_bss,
915#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700916#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
917 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000918 jump_to_copy,
919#endif
920 NULL,
921};
922
923void board_init_f(ulong boot_flags)
924{
Simon Glass1938f4a2013-03-11 06:49:53 +0000925 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400926 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000927
928 if (initcall_run_list(init_sequence_f))
929 hang();
930
Ben Stoltz9b217492015-07-31 09:31:37 -0600931#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300932 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
933 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 /* NOTREACHED - jump_to_copy() does not return */
935 hang();
936#endif
937}
938
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300939#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000940/*
941 * For now this code is only used on x86.
942 *
943 * init_sequence_f_r is the list of init functions which are run when
944 * U-Boot is executing from Flash with a semi-limited 'C' environment.
945 * The following limitations must be considered when implementing an
946 * '_f_r' function:
947 * - 'static' variables are read-only
948 * - Global Data (gd->xxx) is read/write
949 *
950 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
951 * supported). It _should_, if possible, copy global data to RAM and
952 * initialise the CPU caches (to speed up the relocation process)
953 *
954 * NOTE: At present only x86 uses this route, but it is intended that
955 * all archs will move to this when generic relocation is implemented.
956 */
Simon Glass4acff452017-01-16 07:03:50 -0700957static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -0700958#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +0000959 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -0700960#endif
Simon Glass48a33802013-03-05 14:39:52 +0000961
962 NULL,
963};
964
965void board_init_f_r(void)
966{
967 if (initcall_run_list(init_sequence_f_r))
968 hang();
969
970 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -0700971 * The pre-relocation drivers may be using memory that has now gone
972 * away. Mark serial as unavailable - this will fall back to the debug
973 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700974 *
975 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -0700976 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700977 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -0600978#ifdef CONFIG_TIMER
979 gd->timer = NULL;
980#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -0700981
982 /*
Simon Glass48a33802013-03-05 14:39:52 +0000983 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
984 * Transfer execution from Flash to RAM by calculating the address
985 * of the in-RAM copy of board_init_r() and calling it
986 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +0300987 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000988
989 /* NOTREACHED - board_init_r() does not return */
990 hang();
991}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +0300992#endif /* CONFIG_X86 */