blob: 835b7247c58d634bf7655ca87d96e85acd788ae4 [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 Glassf0293d32018-11-15 18:43:52 -070013#include <bloblist.h>
Simon Glass24b852a2015-11-08 23:47:45 -070014#include <console.h>
Mario Six5d6c61a2018-08-06 10:23:41 +020015#include <cpu.h>
Simon Glassab7cd622014-07-23 06:55:04 -060016#include <dm.h>
Mario Six138181a2018-08-06 10:23:39 +020017#include <environment.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#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000021#include <initcall.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070022#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050023#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000024#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060026#include <relocate.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000027#include <spi.h>
Simon Glassb0edea32018-11-15 18:44:09 -070028#ifdef CONFIG_SPL
29#include <spl.h>
30#endif
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020031#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020032#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070033#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070034#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070035#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000036#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060037#ifdef CONFIG_MACH_TYPE
38#include <asm/mach-types.h>
39#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060040#if defined(CONFIG_MP) && defined(CONFIG_PPC)
41#include <asm/mp.h>
42#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000043#include <asm/io.h>
44#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060045#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060046#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000047
48/*
49 * Pointer to initial global data area
50 *
51 * Here we initialize it if needed.
52 */
53#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
54#undef XTRN_DECLARE_GLOBAL_DATA_PTR
55#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010056DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000057#else
58DECLARE_GLOBAL_DATA_PTR;
59#endif
60
61/*
Simon Glass4c509342015-04-28 20:25:03 -060062 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000063 * refactored to a single function, something like:
64 *
65 * void led_set_state(enum led_colour_t colour, int on);
66 */
67/************************************************************************
68 * Coloured LED functionality
69 ************************************************************************
70 * May be supplied by boards if desired
71 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020072__weak void coloured_LED_init(void) {}
73__weak void red_led_on(void) {}
74__weak void red_led_off(void) {}
75__weak void green_led_on(void) {}
76__weak void green_led_off(void) {}
77__weak void yellow_led_on(void) {}
78__weak void yellow_led_off(void) {}
79__weak void blue_led_on(void) {}
80__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000081
82/*
83 * Why is gd allocated a register? Prior to reloc it might be better to
84 * just pass it around to each function in this file?
85 *
86 * After reloc one could argue that it is hardly used and doesn't need
87 * to be in a register. Or if it is it should perhaps hold pointers to all
88 * global data for all modules, so that post-reloc we can avoid the massive
89 * literal pool we get on ARM. Or perhaps just encourage each module to use
90 * a structure...
91 */
92
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080093#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000094static int init_func_watchdog_init(void)
95{
Tom Riniea3310e2017-03-14 11:08:10 -040096# if defined(CONFIG_HW_WATCHDOG) && \
97 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -070098 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020099 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100100 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800101 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000102 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200103# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000104 WATCHDOG_RESET();
105
106 return 0;
107}
108
109int init_func_watchdog_reset(void)
110{
111 WATCHDOG_RESET();
112
113 return 0;
114}
115#endif /* CONFIG_WATCHDOG */
116
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200117__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000118{
119 /* please define platform specific board_add_ram_info() */
120}
121
Simon Glass1938f4a2013-03-11 06:49:53 +0000122static int init_baud_rate(void)
123{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600124 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000125 return 0;
126}
127
128static int display_text_info(void)
129{
Ben Stoltz9b217492015-07-31 09:31:37 -0600130#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100131 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000132
Simon Glass632efa72013-03-11 07:06:48 +0000133 bss_start = (ulong)&__bss_start;
134 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100135
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800136#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100137 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800138#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100139 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800140#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100141
142 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100143 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000144#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000145
Simon Glass1938f4a2013-03-11 06:49:53 +0000146 return 0;
147}
148
Mario Six23471ae2018-08-06 10:23:34 +0200149#ifdef CONFIG_SYSRESET
150static int print_resetinfo(void)
151{
152 struct udevice *dev;
153 char status[256];
154 int ret;
155
156 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
157 if (ret) {
158 debug("%s: No sysreset device found (error: %d)\n",
159 __func__, ret);
160 /* Not all boards have sysreset drivers available during early
161 * boot, so don't fail if one can't be found.
162 */
163 return 0;
164 }
165
166 if (!sysreset_get_status(dev, status, sizeof(status)))
167 printf("%s", status);
168
169 return 0;
170}
171#endif
172
Mario Six5d6c61a2018-08-06 10:23:41 +0200173#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
174static int print_cpuinfo(void)
175{
176 struct udevice *dev;
177 char desc[512];
178 int ret;
179
180 ret = uclass_first_device_err(UCLASS_CPU, &dev);
181 if (ret) {
182 debug("%s: Could not get CPU device (err = %d)\n",
183 __func__, ret);
184 return ret;
185 }
186
187 ret = cpu_get_desc(dev, desc, sizeof(desc));
188 if (ret) {
189 debug("%s: Could not get CPU description (err = %d)\n",
190 dev->name, ret);
191 return ret;
192 }
193
Bin Mengecfe6632018-10-10 22:06:55 -0700194 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200195
196 return 0;
197}
198#endif
199
Simon Glass1938f4a2013-03-11 06:49:53 +0000200static int announce_dram_init(void)
201{
202 puts("DRAM: ");
203 return 0;
204}
205
206static int show_dram_config(void)
207{
York Sunfa39ffe2014-05-02 17:28:05 -0700208 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000209
210#ifdef CONFIG_NR_DRAM_BANKS
211 int i;
212
213 debug("\nRAM Configuration:\n");
214 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
215 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700216 debug("Bank #%d: %llx ", i,
217 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000218#ifdef DEBUG
219 print_size(gd->bd->bi_dram[i].size, "\n");
220#endif
221 }
222 debug("\nDRAM: ");
223#else
224 size = gd->ram_size;
225#endif
226
Simon Glasse4fef6c2013-03-11 14:30:42 +0000227 print_size(size, "");
228 board_add_ram_info(0);
229 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000230
231 return 0;
232}
233
Simon Glass76b00ac2017-03-31 08:40:32 -0600234__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000235{
236#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
237 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
238 gd->bd->bi_dram[0].size = get_effective_memsize();
239#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600240
241 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000242}
243
Simon Glass69153982017-05-12 21:09:56 -0600244#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000245static int init_func_i2c(void)
246{
247 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200248#ifdef CONFIG_SYS_I2C
249 i2c_init_all();
250#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000251 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200252#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000253 puts("ready\n");
254 return 0;
255}
256#endif
257
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530258#if defined(CONFIG_VID)
259__weak int init_func_vid(void)
260{
261 return 0;
262}
263#endif
264
Simon Glasse4fef6c2013-03-11 14:30:42 +0000265#if defined(CONFIG_HARD_SPI)
266static int init_func_spi(void)
267{
268 puts("SPI: ");
269 spi_init();
270 puts("ready\n");
271 return 0;
272}
273#endif
274
Simon Glass1938f4a2013-03-11 06:49:53 +0000275static int setup_mon_len(void)
276{
Michal Simeke945f6d2014-05-08 16:08:44 +0200277#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100278 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600279#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000280 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400281#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800282 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800283#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800284 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600285#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000286 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
287 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000288#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000289 return 0;
290}
291
Simon Glassb0edea32018-11-15 18:44:09 -0700292static int setup_spl_handoff(void)
293{
294#if CONFIG_IS_ENABLED(HANDOFF)
295 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
296 sizeof(struct spl_handoff));
297 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
298#endif
299
300 return 0;
301}
302
Simon Glass1938f4a2013-03-11 06:49:53 +0000303__weak int arch_cpu_init(void)
304{
305 return 0;
306}
307
Paul Burton8ebf5062016-09-21 11:18:46 +0100308__weak int mach_cpu_init(void)
309{
310 return 0;
311}
312
Simon Glass1938f4a2013-03-11 06:49:53 +0000313/* Get the top of usable RAM */
314__weak ulong board_get_usable_ram_top(ulong total_size)
315{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700316#ifdef CONFIG_SYS_SDRAM_BASE
317 /*
Simon Glass4c509342015-04-28 20:25:03 -0600318 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700319 * 32-bit address space. If so, clip the usable RAM so it doesn't.
320 */
321 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
322 /*
323 * Will wrap back to top of 32-bit space when reservations
324 * are made.
325 */
326 return 0;
327#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000328 return gd->ram_top;
329}
330
331static int setup_dest_addr(void)
332{
333 debug("Monitor len: %08lX\n", gd->mon_len);
334 /*
335 * Ram is setup, size stored in gd !!
336 */
337 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800338#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000339 /*
340 * Subtract specified amount of memory to hide so that it won't
341 * get "touched" at all by U-Boot. By fixing up gd->ram_size
342 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800343 * memory size and won't touch it either. This should work
344 * for arch/ppc and arch/powerpc. Only Linux board ports in
345 * arch/powerpc with bootwrapper support, that recalculate the
346 * memory size from the SDRAM controller setup will have to
347 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000348 */
York Sun36cc0de2017-03-06 09:02:28 -0800349 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
350#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000351#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530352 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000353#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530354 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000355 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000356 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000357 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700358#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000359 /*
360 * We need to make sure the location we intend to put secondary core
361 * boot code is reserved and not used by any part of u-boot
362 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000363 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
364 gd->relocaddr = determine_mp_bootpg(NULL);
365 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000366 }
367#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000368 return 0;
369}
370
Simon Glass1938f4a2013-03-11 06:49:53 +0000371#ifdef CONFIG_PRAM
372/* reserve protected RAM */
373static int reserve_pram(void)
374{
375 ulong reg;
376
Simon Glassbfebc8c2017-08-03 12:22:13 -0600377 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000378 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000379 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000380 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000381 return 0;
382}
383#endif /* CONFIG_PRAM */
384
385/* Round memory pointer down to next 4 kB limit */
386static int reserve_round_4k(void)
387{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000388 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000389 return 0;
390}
391
Simon Glass80d4bcd2017-03-31 08:40:29 -0600392#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530393__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000394{
Simon Glass80d4bcd2017-03-31 08:40:29 -0600395#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000396 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800397 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000398 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000399
400 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000401 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000402
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000403 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000404 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
405 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700406
407#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
408 /*
409 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
410 * with location within secure ram.
411 */
412 gd->arch.tlb_allocated = gd->arch.tlb_addr;
413#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600414#endif
York Sun50e93b92016-06-24 16:46:19 -0700415
Simon Glass1938f4a2013-03-11 06:49:53 +0000416 return 0;
417}
418#endif
419
Simon Glass5a541942016-01-18 19:52:21 -0700420static int reserve_video(void)
421{
Simon Glass0f079eb2017-03-31 08:40:30 -0600422#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700423 ulong addr;
424 int ret;
425
426 addr = gd->relocaddr;
427 ret = video_reserve(&addr);
428 if (ret)
429 return ret;
430 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600431#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700432# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000433 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700434# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000435 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000436 gd->relocaddr = lcd_setmem(gd->relocaddr);
437 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700438# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600439#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200440 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700441 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400442 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700443 /* reserve memory for video display (always full pages) */
444 gd->relocaddr = video_setmem(gd->relocaddr);
445 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600446#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700447
448 return 0;
449}
Simon Glass8703ef32016-01-18 19:52:20 -0700450
Simon Glass71c52db2013-06-11 11:14:42 -0700451static int reserve_trace(void)
452{
453#ifdef CONFIG_TRACE
454 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
455 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
456 debug("Reserving %dk for trace data at: %08lx\n",
457 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
458#endif
459
460 return 0;
461}
462
Simon Glass1938f4a2013-03-11 06:49:53 +0000463static int reserve_uboot(void)
464{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300465 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
466 /*
467 * reserve memory for U-Boot code, data & bss
468 * round down to next 4 kB limit
469 */
470 gd->relocaddr -= gd->mon_len;
471 gd->relocaddr &= ~(4096 - 1);
472 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
473 /* round down to next 64 kB limit so that IVPR stays aligned */
474 gd->relocaddr &= ~(65536 - 1);
475 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000476
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300477 debug("Reserving %ldk for U-Boot at: %08lx\n",
478 gd->mon_len >> 10, gd->relocaddr);
479 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000480
481 gd->start_addr_sp = gd->relocaddr;
482
Simon Glass1938f4a2013-03-11 06:49:53 +0000483 return 0;
484}
485
486/* reserve memory for malloc() area */
487static int reserve_malloc(void)
488{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000489 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000490 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100491 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000492 return 0;
493}
494
495/* (permanently) allocate a Board Info struct */
496static int reserve_board(void)
497{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800498 if (!gd->bd) {
499 gd->start_addr_sp -= sizeof(bd_t);
500 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
501 memset(gd->bd, '\0', sizeof(bd_t));
502 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
503 sizeof(bd_t), gd->start_addr_sp);
504 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000505 return 0;
506}
507
508static int setup_machine(void)
509{
510#ifdef CONFIG_MACH_TYPE
511 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
512#endif
513 return 0;
514}
515
516static int reserve_global_data(void)
517{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000518 gd->start_addr_sp -= sizeof(gd_t);
519 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000520 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100521 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000522 return 0;
523}
524
525static int reserve_fdt(void)
526{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100527#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000528 /*
Simon Glass4c509342015-04-28 20:25:03 -0600529 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000530 * must relocate it. If it is embedded in the data section, then it
531 * will be relocated with other data.
532 */
533 if (gd->fdt_blob) {
534 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
535
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000536 gd->start_addr_sp -= gd->fdt_size;
537 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000538 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000539 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000540 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100541#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000542
543 return 0;
544}
545
Simon Glass25e7dc62017-05-22 05:05:30 -0600546static int reserve_bootstage(void)
547{
548#ifdef CONFIG_BOOTSTAGE
549 int size = bootstage_get_size();
550
551 gd->start_addr_sp -= size;
552 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
553 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
554 gd->start_addr_sp);
555#endif
556
557 return 0;
558}
559
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100560__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100561{
562 return 0;
563}
564
Simon Glass1938f4a2013-03-11 06:49:53 +0000565static int reserve_stacks(void)
566{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100567 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000568 gd->start_addr_sp -= 16;
569 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000570
571 /*
Simon Glass4c509342015-04-28 20:25:03 -0600572 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100573 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000574 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100575 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000576}
577
Simon Glassf0293d32018-11-15 18:43:52 -0700578static int reserve_bloblist(void)
579{
580#ifdef CONFIG_BLOBLIST
581 gd->start_addr_sp -= CONFIG_BLOBLIST_SIZE;
582 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
583#endif
584
585 return 0;
586}
587
Simon Glass1938f4a2013-03-11 06:49:53 +0000588static int display_new_sp(void)
589{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000590 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000591
592 return 0;
593}
594
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200595#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
596 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000597static int setup_board_part1(void)
598{
599 bd_t *bd = gd->bd;
600
601 /*
602 * Save local variables to board info struct
603 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000604 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
605 bd->bi_memsize = gd->ram_size; /* size in bytes */
606
607#ifdef CONFIG_SYS_SRAM_BASE
608 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
609 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
610#endif
611
Heiko Schocher50258972017-06-07 17:33:11 +0200612#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000613 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
614#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200615#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000616 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
617#endif
618#if defined(CONFIG_MPC83xx)
619 bd->bi_immrbar = CONFIG_SYS_IMMR;
620#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000621
622 return 0;
623}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100624#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000625
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100626#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000627static int setup_board_part2(void)
628{
629 bd_t *bd = gd->bd;
630
631 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
632 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
633#if defined(CONFIG_CPM2)
634 bd->bi_cpmfreq = gd->arch.cpm_clk;
635 bd->bi_brgfreq = gd->arch.brg_clk;
636 bd->bi_sccfreq = gd->arch.scc_clk;
637 bd->bi_vco = gd->arch.vco_out;
638#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800639#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
640 bd->bi_pcifreq = gd->pci_clk;
641#endif
642#if defined(CONFIG_EXTRA_CLOCK)
643 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
644 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
645 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
646#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000647
648 return 0;
649}
650#endif
651
Simon Glass1938f4a2013-03-11 06:49:53 +0000652#ifdef CONFIG_POST
653static int init_post(void)
654{
655 post_bootmode_init();
656 post_run(NULL, POST_ROM | post_bootmode_get(0));
657
658 return 0;
659}
660#endif
661
Simon Glass1938f4a2013-03-11 06:49:53 +0000662static int reloc_fdt(void)
663{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100664#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600665 if (gd->flags & GD_FLG_SKIP_RELOC)
666 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000667 if (gd->new_fdt) {
668 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
669 gd->fdt_blob = gd->new_fdt;
670 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100671#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000672
673 return 0;
674}
675
Simon Glass25e7dc62017-05-22 05:05:30 -0600676static int reloc_bootstage(void)
677{
678#ifdef CONFIG_BOOTSTAGE
679 if (gd->flags & GD_FLG_SKIP_RELOC)
680 return 0;
681 if (gd->new_bootstage) {
682 int size = bootstage_get_size();
683
684 debug("Copying bootstage from %p to %p, size %x\n",
685 gd->bootstage, gd->new_bootstage, size);
686 memcpy(gd->new_bootstage, gd->bootstage, size);
687 gd->bootstage = gd->new_bootstage;
688 }
689#endif
690
691 return 0;
692}
693
Simon Glassf0293d32018-11-15 18:43:52 -0700694static int reloc_bloblist(void)
695{
696#ifdef CONFIG_BLOBLIST
697 if (gd->flags & GD_FLG_SKIP_RELOC)
698 return 0;
699 if (gd->new_bloblist) {
700 int size = CONFIG_BLOBLIST_SIZE;
701
702 debug("Copying bloblist from %p to %p, size %x\n",
703 gd->bloblist, gd->new_bloblist, size);
704 memcpy(gd->new_bloblist, gd->bloblist, size);
705 gd->bloblist = gd->new_bloblist;
706 }
707#endif
708
709 return 0;
710}
711
Simon Glass1938f4a2013-03-11 06:49:53 +0000712static int setup_reloc(void)
713{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600714 if (gd->flags & GD_FLG_SKIP_RELOC) {
715 debug("Skipping relocation due to flag\n");
716 return 0;
717 }
718
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800719#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200720#ifdef ARM
721 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
722#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100723 /*
724 * On all ColdFire arch cpu, monitor code starts always
725 * just after the default vector table location, so at 0x400
726 */
727 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200728#else
729 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100730#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800731#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000732 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
733
734 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000735 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000736 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
737 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000738
739 return 0;
740}
741
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100742#ifdef CONFIG_OF_BOARD_FIXUP
743static int fix_fdt(void)
744{
745 return board_fix_fdt((void *)gd->fdt_blob);
746}
747#endif
748
Simon Glass1938f4a2013-03-11 06:49:53 +0000749/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700750#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
751 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000752
753static int jump_to_copy(void)
754{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600755 if (gd->flags & GD_FLG_SKIP_RELOC)
756 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000757 /*
758 * x86 is special, but in a nice way. It uses a trampoline which
759 * enables the dcache if possible.
760 *
761 * For now, other archs use relocate_code(), which is implemented
762 * similarly for all archs. When we do generic relocation, hopefully
763 * we can make all archs enable the dcache prior to relocation.
764 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300765#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000766 /*
767 * SDRAM and console are now initialised. The final stack can now
768 * be setup in SDRAM. Code execution will continue in Flash, but
769 * with the stack in SDRAM and Global Data in temporary memory
770 * (CPU cache)
771 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600772 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000773 board_init_f_r_trampoline(gd->start_addr_sp);
774#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000775 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000776#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000777
778 return 0;
779}
780#endif
781
782/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600783static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000784{
Simon Glassbaa7d342017-06-07 10:28:46 -0600785 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
786 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600787 int ret;
788
Simon Glass824bb1b2017-05-22 05:05:35 -0600789 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600790 if (ret)
791 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600792 if (from_spl) {
793 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
794 CONFIG_BOOTSTAGE_STASH_SIZE);
795
796 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
797 if (ret && ret != -ENOENT) {
798 debug("Failed to unstash bootstage: err=%d\n", ret);
799 return ret;
800 }
801 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600802
Simon Glass1938f4a2013-03-11 06:49:53 +0000803 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
804
805 return 0;
806}
807
Simon Glass9854a872015-11-08 23:47:48 -0700808static int initf_console_record(void)
809{
Andy Yanf1896c42017-07-24 17:43:34 +0800810#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700811 return console_record_init();
812#else
813 return 0;
814#endif
815}
816
Simon Glassab7cd622014-07-23 06:55:04 -0600817static int initf_dm(void)
818{
Andy Yanf1896c42017-07-24 17:43:34 +0800819#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600820 int ret;
821
Simon Glass63c5bf42017-05-22 05:05:32 -0600822 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600823 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600824 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600825 if (ret)
826 return ret;
827#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700828#ifdef CONFIG_TIMER_EARLY
829 ret = dm_timer_init();
830 if (ret)
831 return ret;
832#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600833
834 return 0;
835}
836
Simon Glass146251f2015-01-19 22:16:12 -0700837/* Architecture-specific memory reservation */
838__weak int reserve_arch(void)
839{
840 return 0;
841}
842
Simon Glassd4c671c2015-03-05 12:25:16 -0700843__weak int arch_cpu_init_dm(void)
844{
845 return 0;
846}
847
Simon Glass4acff452017-01-16 07:03:50 -0700848static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000849 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700850#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700851 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700852#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800853#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700854 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800855#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700856 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700857 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600858 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassf0293d32018-11-15 18:43:52 -0700859#ifdef CONFIG_BLOBLIST
860 bloblist_init,
861#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700862 setup_spl_handoff,
Simon Glass9854a872015-11-08 23:47:48 -0700863 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600864#if defined(CONFIG_HAVE_FSP)
865 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700866#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000867 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100868 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600869 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700870 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000871#if defined(CONFIG_BOARD_EARLY_INIT_F)
872 board_early_init_f,
873#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600874#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600875 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600877#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200878#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000879 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200880#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000881#if defined(CONFIG_BOARD_POSTCLK_INIT)
882 board_postclk_init,
883#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000884 env_init, /* initialize environment */
885 init_baud_rate, /* initialze baudrate settings */
886 serial_init, /* serial communications setup */
887 console_init_f, /* stage 1 init of console */
888 display_options, /* say that we are here */
889 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200890#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000891 checkcpu,
892#endif
Mario Six23471ae2018-08-06 10:23:34 +0200893#if defined(CONFIG_SYSRESET)
894 print_resetinfo,
895#endif
Simon Glasscc664002017-01-23 13:31:25 -0700896#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000897 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700898#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500899#if defined(CONFIG_DTB_RESELECT)
900 embedded_dtb_select,
901#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000902#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900903 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000904#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000905 INIT_FUNC_WATCHDOG_INIT
906#if defined(CONFIG_MISC_INIT_F)
907 misc_init_f,
908#endif
909 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600910#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000911 init_func_i2c,
912#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530913#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
914 init_func_vid,
915#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000916#if defined(CONFIG_HARD_SPI)
917 init_func_spi,
918#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000919 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000920 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000921#ifdef CONFIG_POST
922 post_init_f,
923#endif
924 INIT_FUNC_WATCHDOG_RESET
925#if defined(CONFIG_SYS_DRAM_TEST)
926 testdram,
927#endif /* CONFIG_SYS_DRAM_TEST */
928 INIT_FUNC_WATCHDOG_RESET
929
Simon Glass1938f4a2013-03-11 06:49:53 +0000930#ifdef CONFIG_POST
931 init_post,
932#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000933 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 /*
935 * Now that we have DRAM mapped and working, we can
936 * relocate the code and continue running from DRAM.
937 *
938 * Reserve memory at end of RAM for (top down in that order):
939 * - area that won't get touched by U-Boot and Linux (optional)
940 * - kernel log buffer
941 * - protected RAM
942 * - LCD framebuffer
943 * - monitor code
944 * - board info struct
945 */
946 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000947#ifdef CONFIG_PRAM
948 reserve_pram,
949#endif
950 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600951#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000952 reserve_mmu,
953#endif
Simon Glass5a541942016-01-18 19:52:21 -0700954 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700955 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000956 reserve_uboot,
957 reserve_malloc,
958 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000959 setup_machine,
960 reserve_global_data,
961 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600962 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700963 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700964 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000965 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600966 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000967 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200968#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
969 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000970 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100971#endif
972#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000973 INIT_FUNC_WATCHDOG_RESET
974 setup_board_part2,
975#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100977#ifdef CONFIG_OF_BOARD_FIXUP
978 fix_fdt,
979#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000980 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000981 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600982 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700983 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000984 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300985#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700986 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700987 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700988 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700989#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300990#if defined(CONFIG_XTENSA)
991 clear_bss,
992#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700993#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
994 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000995 jump_to_copy,
996#endif
997 NULL,
998};
999
1000void board_init_f(ulong boot_flags)
1001{
Simon Glass1938f4a2013-03-11 06:49:53 +00001002 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001003 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001004
1005 if (initcall_run_list(init_sequence_f))
1006 hang();
1007
Ben Stoltz9b217492015-07-31 09:31:37 -06001008#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +03001009 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1010 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +00001011 /* NOTREACHED - jump_to_copy() does not return */
1012 hang();
1013#endif
1014}
1015
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001016#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001017/*
1018 * For now this code is only used on x86.
1019 *
1020 * init_sequence_f_r is the list of init functions which are run when
1021 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1022 * The following limitations must be considered when implementing an
1023 * '_f_r' function:
1024 * - 'static' variables are read-only
1025 * - Global Data (gd->xxx) is read/write
1026 *
1027 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1028 * supported). It _should_, if possible, copy global data to RAM and
1029 * initialise the CPU caches (to speed up the relocation process)
1030 *
1031 * NOTE: At present only x86 uses this route, but it is intended that
1032 * all archs will move to this when generic relocation is implemented.
1033 */
Simon Glass4acff452017-01-16 07:03:50 -07001034static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001035#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001036 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001037#endif
Simon Glass48a33802013-03-05 14:39:52 +00001038
1039 NULL,
1040};
1041
1042void board_init_f_r(void)
1043{
1044 if (initcall_run_list(init_sequence_f_r))
1045 hang();
1046
1047 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001048 * The pre-relocation drivers may be using memory that has now gone
1049 * away. Mark serial as unavailable - this will fall back to the debug
1050 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001051 *
1052 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001053 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001054 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001055#ifdef CONFIG_TIMER
1056 gd->timer = NULL;
1057#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001058
1059 /*
Simon Glass48a33802013-03-05 14:39:52 +00001060 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1061 * Transfer execution from Flash to RAM by calculating the address
1062 * of the in-RAM copy of board_init_r() and calling it
1063 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001064 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001065
1066 /* NOTREACHED - board_init_r() does not return */
1067 hang();
1068}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001069#endif /* CONFIG_X86 */