blob: e3591cbaebdbf48aa9fd65ddafdd26c1a167b530 [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>
Simon Glass4bfd1f52019-08-01 09:46:43 -060017#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060018#include <env_internal.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000019#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000020#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000021#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000022#include <initcall.h>
Simon Glass3c1ecde2019-08-01 09:46:38 -060023#include <lcd.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070024#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050025#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000026#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000027#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060028#include <relocate.h>
Simon Glassb0edea32018-11-15 18:44:09 -070029#ifdef CONFIG_SPL
30#include <spl.h>
31#endif
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020032#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020033#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070034#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070035#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070036#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000037#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060038#ifdef CONFIG_MACH_TYPE
39#include <asm/mach-types.h>
40#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060041#if defined(CONFIG_MP) && defined(CONFIG_PPC)
42#include <asm/mp.h>
43#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000044#include <asm/io.h>
45#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060046#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060047#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000048
49/*
50 * Pointer to initial global data area
51 *
52 * Here we initialize it if needed.
53 */
54#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
55#undef XTRN_DECLARE_GLOBAL_DATA_PTR
56#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010057DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000058#else
59DECLARE_GLOBAL_DATA_PTR;
60#endif
61
62/*
Simon Glass4c509342015-04-28 20:25:03 -060063 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000064 * refactored to a single function, something like:
65 *
66 * void led_set_state(enum led_colour_t colour, int on);
67 */
68/************************************************************************
69 * Coloured LED functionality
70 ************************************************************************
71 * May be supplied by boards if desired
72 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020073__weak void coloured_LED_init(void) {}
74__weak void red_led_on(void) {}
75__weak void red_led_off(void) {}
76__weak void green_led_on(void) {}
77__weak void green_led_off(void) {}
78__weak void yellow_led_on(void) {}
79__weak void yellow_led_off(void) {}
80__weak void blue_led_on(void) {}
81__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000082
83/*
84 * Why is gd allocated a register? Prior to reloc it might be better to
85 * just pass it around to each function in this file?
86 *
87 * After reloc one could argue that it is hardly used and doesn't need
88 * to be in a register. Or if it is it should perhaps hold pointers to all
89 * global data for all modules, so that post-reloc we can avoid the massive
90 * literal pool we get on ARM. Or perhaps just encourage each module to use
91 * a structure...
92 */
93
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080094#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000095static int init_func_watchdog_init(void)
96{
Tom Riniea3310e2017-03-14 11:08:10 -040097# if defined(CONFIG_HW_WATCHDOG) && \
98 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -070099 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +0200100 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100101 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800102 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000103 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200104# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000105 WATCHDOG_RESET();
106
107 return 0;
108}
109
110int init_func_watchdog_reset(void)
111{
112 WATCHDOG_RESET();
113
114 return 0;
115}
116#endif /* CONFIG_WATCHDOG */
117
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200118__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000119{
120 /* please define platform specific board_add_ram_info() */
121}
122
Simon Glass1938f4a2013-03-11 06:49:53 +0000123static int init_baud_rate(void)
124{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600125 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000126 return 0;
127}
128
129static int display_text_info(void)
130{
Ben Stoltz9b217492015-07-31 09:31:37 -0600131#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100132 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000133
Simon Glass632efa72013-03-11 07:06:48 +0000134 bss_start = (ulong)&__bss_start;
135 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100136
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800137#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100138 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800139#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100140 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800141#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100142
143 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100144 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000145#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000146
Simon Glass1938f4a2013-03-11 06:49:53 +0000147 return 0;
148}
149
Mario Six23471ae2018-08-06 10:23:34 +0200150#ifdef CONFIG_SYSRESET
151static int print_resetinfo(void)
152{
153 struct udevice *dev;
154 char status[256];
155 int ret;
156
157 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
158 if (ret) {
159 debug("%s: No sysreset device found (error: %d)\n",
160 __func__, ret);
161 /* Not all boards have sysreset drivers available during early
162 * boot, so don't fail if one can't be found.
163 */
164 return 0;
165 }
166
167 if (!sysreset_get_status(dev, status, sizeof(status)))
168 printf("%s", status);
169
170 return 0;
171}
172#endif
173
Mario Six5d6c61a2018-08-06 10:23:41 +0200174#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
175static int print_cpuinfo(void)
176{
177 struct udevice *dev;
178 char desc[512];
179 int ret;
180
181 ret = uclass_first_device_err(UCLASS_CPU, &dev);
182 if (ret) {
183 debug("%s: Could not get CPU device (err = %d)\n",
184 __func__, ret);
185 return ret;
186 }
187
188 ret = cpu_get_desc(dev, desc, sizeof(desc));
189 if (ret) {
190 debug("%s: Could not get CPU description (err = %d)\n",
191 dev->name, ret);
192 return ret;
193 }
194
Bin Mengecfe6632018-10-10 22:06:55 -0700195 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200196
197 return 0;
198}
199#endif
200
Simon Glass1938f4a2013-03-11 06:49:53 +0000201static int announce_dram_init(void)
202{
203 puts("DRAM: ");
204 return 0;
205}
206
207static int show_dram_config(void)
208{
York Sunfa39ffe2014-05-02 17:28:05 -0700209 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000210
211#ifdef CONFIG_NR_DRAM_BANKS
212 int i;
213
214 debug("\nRAM Configuration:\n");
215 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
216 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700217 debug("Bank #%d: %llx ", i,
218 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000219#ifdef DEBUG
220 print_size(gd->bd->bi_dram[i].size, "\n");
221#endif
222 }
223 debug("\nDRAM: ");
224#else
225 size = gd->ram_size;
226#endif
227
Simon Glasse4fef6c2013-03-11 14:30:42 +0000228 print_size(size, "");
229 board_add_ram_info(0);
230 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000231
232 return 0;
233}
234
Simon Glass76b00ac2017-03-31 08:40:32 -0600235__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000236{
237#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
238 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
239 gd->bd->bi_dram[0].size = get_effective_memsize();
240#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600241
242 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000243}
244
Simon Glass69153982017-05-12 21:09:56 -0600245#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000246static int init_func_i2c(void)
247{
248 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200249#ifdef CONFIG_SYS_I2C
250 i2c_init_all();
251#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000252 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200253#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000254 puts("ready\n");
255 return 0;
256}
257#endif
258
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530259#if defined(CONFIG_VID)
260__weak int init_func_vid(void)
261{
262 return 0;
263}
264#endif
265
Simon Glass1938f4a2013-03-11 06:49:53 +0000266static int setup_mon_len(void)
267{
Michal Simeke945f6d2014-05-08 16:08:44 +0200268#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100269 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600270#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000271 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400272#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800273 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800274#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800275 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600276#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000277 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
278 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000279#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000280 return 0;
281}
282
Simon Glassb0edea32018-11-15 18:44:09 -0700283static int setup_spl_handoff(void)
284{
285#if CONFIG_IS_ENABLED(HANDOFF)
286 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
287 sizeof(struct spl_handoff));
288 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
289#endif
290
291 return 0;
292}
293
Simon Glass1938f4a2013-03-11 06:49:53 +0000294__weak int arch_cpu_init(void)
295{
296 return 0;
297}
298
Paul Burton8ebf5062016-09-21 11:18:46 +0100299__weak int mach_cpu_init(void)
300{
301 return 0;
302}
303
Simon Glass1938f4a2013-03-11 06:49:53 +0000304/* Get the top of usable RAM */
305__weak ulong board_get_usable_ram_top(ulong total_size)
306{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700307#ifdef CONFIG_SYS_SDRAM_BASE
308 /*
Simon Glass4c509342015-04-28 20:25:03 -0600309 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700310 * 32-bit address space. If so, clip the usable RAM so it doesn't.
311 */
312 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
313 /*
314 * Will wrap back to top of 32-bit space when reservations
315 * are made.
316 */
317 return 0;
318#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000319 return gd->ram_top;
320}
321
322static int setup_dest_addr(void)
323{
324 debug("Monitor len: %08lX\n", gd->mon_len);
325 /*
326 * Ram is setup, size stored in gd !!
327 */
328 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800329#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000330 /*
331 * Subtract specified amount of memory to hide so that it won't
332 * get "touched" at all by U-Boot. By fixing up gd->ram_size
333 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800334 * memory size and won't touch it either. This should work
335 * for arch/ppc and arch/powerpc. Only Linux board ports in
336 * arch/powerpc with bootwrapper support, that recalculate the
337 * memory size from the SDRAM controller setup will have to
338 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000339 */
York Sun36cc0de2017-03-06 09:02:28 -0800340 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
341#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000342#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530343 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000344#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530345 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000346 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000347 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000348 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700349#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000350 /*
351 * We need to make sure the location we intend to put secondary core
352 * boot code is reserved and not used by any part of u-boot
353 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000354 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
355 gd->relocaddr = determine_mp_bootpg(NULL);
356 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000357 }
358#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000359 return 0;
360}
361
Simon Glass1938f4a2013-03-11 06:49:53 +0000362#ifdef CONFIG_PRAM
363/* reserve protected RAM */
364static int reserve_pram(void)
365{
366 ulong reg;
367
Simon Glassbfebc8c2017-08-03 12:22:13 -0600368 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000369 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000370 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000371 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000372 return 0;
373}
374#endif /* CONFIG_PRAM */
375
376/* Round memory pointer down to next 4 kB limit */
377static int reserve_round_4k(void)
378{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000379 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000380 return 0;
381}
382
Simon Glass80d4bcd2017-03-31 08:40:29 -0600383#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530384__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000385{
Trevor Woerner10015022019-05-03 09:41:00 -0400386#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000387 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800388 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000389 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000390
391 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000392 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000393
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000394 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000395 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
396 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700397
398#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
399 /*
400 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
401 * with location within secure ram.
402 */
403 gd->arch.tlb_allocated = gd->arch.tlb_addr;
404#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600405#endif
York Sun50e93b92016-06-24 16:46:19 -0700406
Simon Glass1938f4a2013-03-11 06:49:53 +0000407 return 0;
408}
409#endif
410
Simon Glass5a541942016-01-18 19:52:21 -0700411static int reserve_video(void)
412{
Simon Glass0f079eb2017-03-31 08:40:30 -0600413#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700414 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;
Simon Glass0f079eb2017-03-31 08:40:30 -0600422#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700423# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000424 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700425# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000426 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000427 gd->relocaddr = lcd_setmem(gd->relocaddr);
428 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700429# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600430#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700431
432 return 0;
433}
Simon Glass8703ef32016-01-18 19:52:20 -0700434
Simon Glass71c52db2013-06-11 11:14:42 -0700435static int reserve_trace(void)
436{
437#ifdef CONFIG_TRACE
438 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
439 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200440 debug("Reserving %luk for trace data at: %08lx\n",
441 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700442#endif
443
444 return 0;
445}
446
Simon Glass1938f4a2013-03-11 06:49:53 +0000447static int reserve_uboot(void)
448{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300449 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
450 /*
451 * reserve memory for U-Boot code, data & bss
452 * round down to next 4 kB limit
453 */
454 gd->relocaddr -= gd->mon_len;
455 gd->relocaddr &= ~(4096 - 1);
456 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
457 /* round down to next 64 kB limit so that IVPR stays aligned */
458 gd->relocaddr &= ~(65536 - 1);
459 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000460
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300461 debug("Reserving %ldk for U-Boot at: %08lx\n",
462 gd->mon_len >> 10, gd->relocaddr);
463 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000464
465 gd->start_addr_sp = gd->relocaddr;
466
Simon Glass1938f4a2013-03-11 06:49:53 +0000467 return 0;
468}
469
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700470#ifdef CONFIG_SYS_NONCACHED_MEMORY
471static int reserve_noncached(void)
472{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600473 /*
474 * The value of gd->start_addr_sp must match the value of malloc_start
475 * calculated in boatrd_f.c:initr_malloc(), which is passed to
476 * board_r.c:mem_malloc_init() and then used by
477 * cache.c:noncached_init()
478 *
479 * These calculations must match the code in cache.c:noncached_init()
480 */
481 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
482 MMU_SECTION_SIZE;
483 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
484 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700485 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
486 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
487
488 return 0;
489}
490#endif
491
Simon Glass1938f4a2013-03-11 06:49:53 +0000492/* reserve memory for malloc() area */
493static int reserve_malloc(void)
494{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000495 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000496 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100497 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700498#ifdef CONFIG_SYS_NONCACHED_MEMORY
499 reserve_noncached();
500#endif
501
Simon Glass1938f4a2013-03-11 06:49:53 +0000502 return 0;
503}
504
505/* (permanently) allocate a Board Info struct */
506static int reserve_board(void)
507{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800508 if (!gd->bd) {
509 gd->start_addr_sp -= sizeof(bd_t);
510 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
511 memset(gd->bd, '\0', sizeof(bd_t));
512 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
513 sizeof(bd_t), gd->start_addr_sp);
514 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000515 return 0;
516}
517
518static int setup_machine(void)
519{
520#ifdef CONFIG_MACH_TYPE
521 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
522#endif
523 return 0;
524}
525
526static int reserve_global_data(void)
527{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000528 gd->start_addr_sp -= sizeof(gd_t);
529 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000530 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100531 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000532 return 0;
533}
534
535static int reserve_fdt(void)
536{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100537#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000538 /*
Simon Glass4c509342015-04-28 20:25:03 -0600539 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000540 * must relocate it. If it is embedded in the data section, then it
541 * will be relocated with other data.
542 */
543 if (gd->fdt_blob) {
544 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
545
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000546 gd->start_addr_sp -= gd->fdt_size;
547 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000548 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000549 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000550 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100551#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000552
553 return 0;
554}
555
Simon Glass25e7dc62017-05-22 05:05:30 -0600556static int reserve_bootstage(void)
557{
558#ifdef CONFIG_BOOTSTAGE
559 int size = bootstage_get_size();
560
561 gd->start_addr_sp -= size;
562 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
563 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
564 gd->start_addr_sp);
565#endif
566
567 return 0;
568}
569
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100570__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100571{
572 return 0;
573}
574
Simon Glass1938f4a2013-03-11 06:49:53 +0000575static int reserve_stacks(void)
576{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100577 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000578 gd->start_addr_sp -= 16;
579 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000580
581 /*
Simon Glass4c509342015-04-28 20:25:03 -0600582 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100583 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000584 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100585 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000586}
587
Simon Glassf0293d32018-11-15 18:43:52 -0700588static int reserve_bloblist(void)
589{
590#ifdef CONFIG_BLOBLIST
Simon Glass5074a8a2019-10-21 17:26:46 -0600591 gd->start_addr_sp &= ~0xf;
Simon Glassf0293d32018-11-15 18:43:52 -0700592 gd->start_addr_sp -= CONFIG_BLOBLIST_SIZE;
593 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
594#endif
595
596 return 0;
597}
598
Simon Glass1938f4a2013-03-11 06:49:53 +0000599static int display_new_sp(void)
600{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000601 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000602
603 return 0;
604}
605
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200606#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
607 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000608static int setup_board_part1(void)
609{
610 bd_t *bd = gd->bd;
611
612 /*
613 * Save local variables to board info struct
614 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000615 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
616 bd->bi_memsize = gd->ram_size; /* size in bytes */
617
618#ifdef CONFIG_SYS_SRAM_BASE
619 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
620 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
621#endif
622
Heiko Schocher50258972017-06-07 17:33:11 +0200623#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000624 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
625#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200626#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000627 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
628#endif
629#if defined(CONFIG_MPC83xx)
630 bd->bi_immrbar = CONFIG_SYS_IMMR;
631#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000632
633 return 0;
634}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100635#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000636
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100637#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000638static int setup_board_part2(void)
639{
640 bd_t *bd = gd->bd;
641
642 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
643 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
644#if defined(CONFIG_CPM2)
645 bd->bi_cpmfreq = gd->arch.cpm_clk;
646 bd->bi_brgfreq = gd->arch.brg_clk;
647 bd->bi_sccfreq = gd->arch.scc_clk;
648 bd->bi_vco = gd->arch.vco_out;
649#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800650#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
651 bd->bi_pcifreq = gd->pci_clk;
652#endif
653#if defined(CONFIG_EXTRA_CLOCK)
654 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
655 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
656 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
657#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000658
659 return 0;
660}
661#endif
662
Simon Glass1938f4a2013-03-11 06:49:53 +0000663#ifdef CONFIG_POST
664static int init_post(void)
665{
666 post_bootmode_init();
667 post_run(NULL, POST_ROM | post_bootmode_get(0));
668
669 return 0;
670}
671#endif
672
Simon Glass1938f4a2013-03-11 06:49:53 +0000673static int reloc_fdt(void)
674{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100675#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600676 if (gd->flags & GD_FLG_SKIP_RELOC)
677 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000678 if (gd->new_fdt) {
679 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
680 gd->fdt_blob = gd->new_fdt;
681 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100682#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000683
684 return 0;
685}
686
Simon Glass25e7dc62017-05-22 05:05:30 -0600687static int reloc_bootstage(void)
688{
689#ifdef CONFIG_BOOTSTAGE
690 if (gd->flags & GD_FLG_SKIP_RELOC)
691 return 0;
692 if (gd->new_bootstage) {
693 int size = bootstage_get_size();
694
695 debug("Copying bootstage from %p to %p, size %x\n",
696 gd->bootstage, gd->new_bootstage, size);
697 memcpy(gd->new_bootstage, gd->bootstage, size);
698 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600699 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600700 }
701#endif
702
703 return 0;
704}
705
Simon Glassf0293d32018-11-15 18:43:52 -0700706static int reloc_bloblist(void)
707{
708#ifdef CONFIG_BLOBLIST
709 if (gd->flags & GD_FLG_SKIP_RELOC)
710 return 0;
711 if (gd->new_bloblist) {
712 int size = CONFIG_BLOBLIST_SIZE;
713
714 debug("Copying bloblist from %p to %p, size %x\n",
715 gd->bloblist, gd->new_bloblist, size);
716 memcpy(gd->new_bloblist, gd->bloblist, size);
717 gd->bloblist = gd->new_bloblist;
718 }
719#endif
720
721 return 0;
722}
723
Simon Glass1938f4a2013-03-11 06:49:53 +0000724static int setup_reloc(void)
725{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600726 if (gd->flags & GD_FLG_SKIP_RELOC) {
727 debug("Skipping relocation due to flag\n");
728 return 0;
729 }
730
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800731#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200732#ifdef ARM
733 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
734#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100735 /*
736 * On all ColdFire arch cpu, monitor code starts always
737 * just after the default vector table location, so at 0x400
738 */
739 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600740#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200741 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100742#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800743#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000744 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
745
746 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000747 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000748 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
749 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000750
751 return 0;
752}
753
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100754#ifdef CONFIG_OF_BOARD_FIXUP
755static int fix_fdt(void)
756{
757 return board_fix_fdt((void *)gd->fdt_blob);
758}
759#endif
760
Simon Glass1938f4a2013-03-11 06:49:53 +0000761/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700762#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
763 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000764
765static int jump_to_copy(void)
766{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600767 if (gd->flags & GD_FLG_SKIP_RELOC)
768 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000769 /*
770 * x86 is special, but in a nice way. It uses a trampoline which
771 * enables the dcache if possible.
772 *
773 * For now, other archs use relocate_code(), which is implemented
774 * similarly for all archs. When we do generic relocation, hopefully
775 * we can make all archs enable the dcache prior to relocation.
776 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300777#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000778 /*
779 * SDRAM and console are now initialised. The final stack can now
780 * be setup in SDRAM. Code execution will continue in Flash, but
781 * with the stack in SDRAM and Global Data in temporary memory
782 * (CPU cache)
783 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600784 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000785 board_init_f_r_trampoline(gd->start_addr_sp);
786#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000787 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000788#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000789
790 return 0;
791}
792#endif
793
794/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600795static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000796{
Simon Glassbaa7d342017-06-07 10:28:46 -0600797 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
798 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600799 int ret;
800
Simon Glass824bb1b2017-05-22 05:05:35 -0600801 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600802 if (ret)
803 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600804 if (from_spl) {
805 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
806 CONFIG_BOOTSTAGE_STASH_SIZE);
807
808 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
809 if (ret && ret != -ENOENT) {
810 debug("Failed to unstash bootstage: err=%d\n", ret);
811 return ret;
812 }
813 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600814
Simon Glass1938f4a2013-03-11 06:49:53 +0000815 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
816
817 return 0;
818}
819
Simon Glass9854a872015-11-08 23:47:48 -0700820static int initf_console_record(void)
821{
Andy Yanf1896c42017-07-24 17:43:34 +0800822#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700823 return console_record_init();
824#else
825 return 0;
826#endif
827}
828
Simon Glassab7cd622014-07-23 06:55:04 -0600829static int initf_dm(void)
830{
Andy Yanf1896c42017-07-24 17:43:34 +0800831#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600832 int ret;
833
Simon Glass63c5bf42017-05-22 05:05:32 -0600834 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600835 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600836 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600837 if (ret)
838 return ret;
839#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700840#ifdef CONFIG_TIMER_EARLY
841 ret = dm_timer_init();
842 if (ret)
843 return ret;
844#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600845
846 return 0;
847}
848
Simon Glass146251f2015-01-19 22:16:12 -0700849/* Architecture-specific memory reservation */
850__weak int reserve_arch(void)
851{
852 return 0;
853}
854
Simon Glassd4c671c2015-03-05 12:25:16 -0700855__weak int arch_cpu_init_dm(void)
856{
857 return 0;
858}
859
Simon Glass4acff452017-01-16 07:03:50 -0700860static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000861 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700862#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700863 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700864#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200865#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700866 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800867#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700868 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700869 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600870 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassf0293d32018-11-15 18:43:52 -0700871#ifdef CONFIG_BLOBLIST
872 bloblist_init,
873#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700874 setup_spl_handoff,
Simon Glass9854a872015-11-08 23:47:48 -0700875 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600876#if defined(CONFIG_HAVE_FSP)
877 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700878#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000879 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100880 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600881 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700882 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000883#if defined(CONFIG_BOARD_EARLY_INIT_F)
884 board_early_init_f,
885#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600886#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600887 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000888 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600889#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200890#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000891 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200892#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000893#if defined(CONFIG_BOARD_POSTCLK_INIT)
894 board_postclk_init,
895#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000896 env_init, /* initialize environment */
897 init_baud_rate, /* initialze baudrate settings */
898 serial_init, /* serial communications setup */
899 console_init_f, /* stage 1 init of console */
900 display_options, /* say that we are here */
901 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200902#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000903 checkcpu,
904#endif
Mario Six23471ae2018-08-06 10:23:34 +0200905#if defined(CONFIG_SYSRESET)
906 print_resetinfo,
907#endif
Simon Glasscc664002017-01-23 13:31:25 -0700908#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000909 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700910#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500911#if defined(CONFIG_DTB_RESELECT)
912 embedded_dtb_select,
913#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000914#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900915 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000916#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000917 INIT_FUNC_WATCHDOG_INIT
918#if defined(CONFIG_MISC_INIT_F)
919 misc_init_f,
920#endif
921 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600922#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000923 init_func_i2c,
924#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530925#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
926 init_func_vid,
927#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000928 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000929 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000930#ifdef CONFIG_POST
931 post_init_f,
932#endif
933 INIT_FUNC_WATCHDOG_RESET
934#if defined(CONFIG_SYS_DRAM_TEST)
935 testdram,
936#endif /* CONFIG_SYS_DRAM_TEST */
937 INIT_FUNC_WATCHDOG_RESET
938
Simon Glass1938f4a2013-03-11 06:49:53 +0000939#ifdef CONFIG_POST
940 init_post,
941#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000942 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000943 /*
944 * Now that we have DRAM mapped and working, we can
945 * relocate the code and continue running from DRAM.
946 *
947 * Reserve memory at end of RAM for (top down in that order):
948 * - area that won't get touched by U-Boot and Linux (optional)
949 * - kernel log buffer
950 * - protected RAM
951 * - LCD framebuffer
952 * - monitor code
953 * - board info struct
954 */
955 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000956#ifdef CONFIG_PRAM
957 reserve_pram,
958#endif
959 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600960#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000961 reserve_mmu,
962#endif
Simon Glass5a541942016-01-18 19:52:21 -0700963 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700964 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000965 reserve_uboot,
966 reserve_malloc,
967 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000968 setup_machine,
969 reserve_global_data,
970 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600971 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700972 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700973 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000974 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600975 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000976 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200977#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
978 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000979 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100980#endif
981#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000982 INIT_FUNC_WATCHDOG_RESET
983 setup_board_part2,
984#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000985 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100986#ifdef CONFIG_OF_BOARD_FIXUP
987 fix_fdt,
988#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000989 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000990 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600991 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700992 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000993 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300994#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700995 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700996 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700997 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700998#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300999#if defined(CONFIG_XTENSA)
1000 clear_bss,
1001#endif
Simon Glass530f27e2017-01-16 07:03:49 -07001002#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1003 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +00001004 jump_to_copy,
1005#endif
1006 NULL,
1007};
1008
1009void board_init_f(ulong boot_flags)
1010{
Simon Glass1938f4a2013-03-11 06:49:53 +00001011 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +04001012 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001013
1014 if (initcall_run_list(init_sequence_f))
1015 hang();
1016
Ben Stoltz9b217492015-07-31 09:31:37 -06001017#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +03001018 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1019 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +00001020 /* NOTREACHED - jump_to_copy() does not return */
1021 hang();
1022#endif
1023}
1024
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001025#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001026/*
1027 * For now this code is only used on x86.
1028 *
1029 * init_sequence_f_r is the list of init functions which are run when
1030 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1031 * The following limitations must be considered when implementing an
1032 * '_f_r' function:
1033 * - 'static' variables are read-only
1034 * - Global Data (gd->xxx) is read/write
1035 *
1036 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1037 * supported). It _should_, if possible, copy global data to RAM and
1038 * initialise the CPU caches (to speed up the relocation process)
1039 *
1040 * NOTE: At present only x86 uses this route, but it is intended that
1041 * all archs will move to this when generic relocation is implemented.
1042 */
Simon Glass4acff452017-01-16 07:03:50 -07001043static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001044#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001045 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001046#endif
Simon Glass48a33802013-03-05 14:39:52 +00001047
1048 NULL,
1049};
1050
1051void board_init_f_r(void)
1052{
1053 if (initcall_run_list(init_sequence_f_r))
1054 hang();
1055
1056 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001057 * The pre-relocation drivers may be using memory that has now gone
1058 * away. Mark serial as unavailable - this will fall back to the debug
1059 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001060 *
1061 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001062 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001063 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001064#ifdef CONFIG_TIMER
1065 gd->timer = NULL;
1066#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001067
1068 /*
Simon Glass48a33802013-03-05 14:39:52 +00001069 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1070 * Transfer execution from Flash to RAM by calculating the address
1071 * of the in-RAM copy of board_init_r() and calling it
1072 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001073 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001074
1075 /* NOTREACHED - board_init_r() does not return */
1076 hang();
1077}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001078#endif /* CONFIG_X86 */