blob: 9f441c44f176ec7c3e590009d42b636347eb94af [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 Glass52f24232020-05-10 11:40:00 -060014#include <bootstage.h>
Simon Glassd96c2602019-12-28 10:44:58 -070015#include <clock_legacy.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Mario Six5d6c61a2018-08-06 10:23:41 +020017#include <cpu.h>
Simon Glass30c7c432019-11-14 12:57:34 -070018#include <cpu_func.h>
Simon Glassab7cd622014-07-23 06:55:04 -060019#include <dm.h>
Simon Glass4bfd1f52019-08-01 09:46:43 -060020#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060021#include <env_internal.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000022#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000023#include <fs.h>
Simon Glassdb41d652019-12-28 10:45:07 -070024#include <hang.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000025#include <i2c.h>
Simon Glass67c4e9f2019-11-14 12:57:45 -070026#include <init.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000027#include <initcall.h>
Simon Glass3c1ecde2019-08-01 09:46:38 -060028#include <lcd.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060029#include <log.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070030#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050031#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000032#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000033#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060034#include <relocate.h>
Simon Glassb03e0512019-11-14 12:57:24 -070035#include <serial.h>
Simon Glassb0edea32018-11-15 18:44:09 -070036#ifdef CONFIG_SPL
37#include <spl.h>
38#endif
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020039#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020040#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070041#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070042#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070043#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000044#include <watchdog.h>
Simon Glass90526e92020-05-10 11:39:56 -060045#include <asm/cache.h>
Simon Glassb885d022017-05-17 08:23:01 -060046#ifdef CONFIG_MACH_TYPE
47#include <asm/mach-types.h>
48#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060049#if defined(CONFIG_MP) && defined(CONFIG_PPC)
50#include <asm/mp.h>
51#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000052#include <asm/io.h>
53#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060054#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060055#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000056
57/*
58 * Pointer to initial global data area
59 *
60 * Here we initialize it if needed.
61 */
62#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
63#undef XTRN_DECLARE_GLOBAL_DATA_PTR
64#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010065DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000066#else
67DECLARE_GLOBAL_DATA_PTR;
68#endif
69
70/*
Simon Glass4c509342015-04-28 20:25:03 -060071 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000072 * refactored to a single function, something like:
73 *
74 * void led_set_state(enum led_colour_t colour, int on);
75 */
76/************************************************************************
77 * Coloured LED functionality
78 ************************************************************************
79 * May be supplied by boards if desired
80 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020081__weak void coloured_LED_init(void) {}
82__weak void red_led_on(void) {}
83__weak void red_led_off(void) {}
84__weak void green_led_on(void) {}
85__weak void green_led_off(void) {}
86__weak void yellow_led_on(void) {}
87__weak void yellow_led_off(void) {}
88__weak void blue_led_on(void) {}
89__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000090
91/*
92 * Why is gd allocated a register? Prior to reloc it might be better to
93 * just pass it around to each function in this file?
94 *
95 * After reloc one could argue that it is hardly used and doesn't need
96 * to be in a register. Or if it is it should perhaps hold pointers to all
97 * global data for all modules, so that post-reloc we can avoid the massive
98 * literal pool we get on ARM. Or perhaps just encourage each module to use
99 * a structure...
100 */
101
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800102#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000103static int init_func_watchdog_init(void)
104{
Tom Riniea3310e2017-03-14 11:08:10 -0400105# if defined(CONFIG_HW_WATCHDOG) && \
106 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -0700107 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +0200108 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100109 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800110 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000111 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200112# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000113 WATCHDOG_RESET();
114
115 return 0;
116}
117
118int init_func_watchdog_reset(void)
119{
120 WATCHDOG_RESET();
121
122 return 0;
123}
124#endif /* CONFIG_WATCHDOG */
125
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200126__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000127{
128 /* please define platform specific board_add_ram_info() */
129}
130
Simon Glass1938f4a2013-03-11 06:49:53 +0000131static int init_baud_rate(void)
132{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600133 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000134 return 0;
135}
136
137static int display_text_info(void)
138{
Ben Stoltz9b217492015-07-31 09:31:37 -0600139#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100140 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000141
Simon Glass632efa72013-03-11 07:06:48 +0000142 bss_start = (ulong)&__bss_start;
143 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100144
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800145#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100146 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800147#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100148 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800149#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100150
151 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100152 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000153#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000154
Simon Glass1938f4a2013-03-11 06:49:53 +0000155 return 0;
156}
157
Mario Six23471ae2018-08-06 10:23:34 +0200158#ifdef CONFIG_SYSRESET
159static int print_resetinfo(void)
160{
161 struct udevice *dev;
162 char status[256];
163 int ret;
164
165 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
166 if (ret) {
167 debug("%s: No sysreset device found (error: %d)\n",
168 __func__, ret);
169 /* Not all boards have sysreset drivers available during early
170 * boot, so don't fail if one can't be found.
171 */
172 return 0;
173 }
174
175 if (!sysreset_get_status(dev, status, sizeof(status)))
176 printf("%s", status);
177
178 return 0;
179}
180#endif
181
Mario Six5d6c61a2018-08-06 10:23:41 +0200182#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
183static int print_cpuinfo(void)
184{
185 struct udevice *dev;
186 char desc[512];
187 int ret;
188
Ye Lif5b66af2020-05-03 21:58:50 +0800189 dev = cpu_get_current_dev();
190 if (!dev) {
191 debug("%s: Could not get CPU device\n",
192 __func__);
193 return -ENODEV;
Mario Six5d6c61a2018-08-06 10:23:41 +0200194 }
195
196 ret = cpu_get_desc(dev, desc, sizeof(desc));
197 if (ret) {
198 debug("%s: Could not get CPU description (err = %d)\n",
199 dev->name, ret);
200 return ret;
201 }
202
Bin Mengecfe6632018-10-10 22:06:55 -0700203 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200204
205 return 0;
206}
207#endif
208
Simon Glass1938f4a2013-03-11 06:49:53 +0000209static int announce_dram_init(void)
210{
211 puts("DRAM: ");
212 return 0;
213}
214
215static int show_dram_config(void)
216{
York Sunfa39ffe2014-05-02 17:28:05 -0700217 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000218 int i;
219
220 debug("\nRAM Configuration:\n");
221 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
222 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700223 debug("Bank #%d: %llx ", i,
224 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000225#ifdef DEBUG
226 print_size(gd->bd->bi_dram[i].size, "\n");
227#endif
228 }
229 debug("\nDRAM: ");
Simon Glass1938f4a2013-03-11 06:49:53 +0000230
Simon Glasse4fef6c2013-03-11 14:30:42 +0000231 print_size(size, "");
232 board_add_ram_info(0);
233 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000234
235 return 0;
236}
237
Simon Glass76b00ac2017-03-31 08:40:32 -0600238__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000239{
Stefan Roesef120aa72020-08-12 13:02:39 +0200240 gd->bd->bi_dram[0].start = gd->ram_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000241 gd->bd->bi_dram[0].size = get_effective_memsize();
Simon Glass76b00ac2017-03-31 08:40:32 -0600242
243 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000244}
245
Simon Glass69153982017-05-12 21:09:56 -0600246#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000247static int init_func_i2c(void)
248{
249 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200250 i2c_init_all();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000251 puts("ready\n");
252 return 0;
253}
254#endif
255
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530256#if defined(CONFIG_VID)
257__weak int init_func_vid(void)
258{
259 return 0;
260}
261#endif
262
Simon Glass1938f4a2013-03-11 06:49:53 +0000263static int setup_mon_len(void)
264{
Michal Simeke945f6d2014-05-08 16:08:44 +0200265#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100266 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600267#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000268 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400269#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800270 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800271#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800272 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600273#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000274 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
275 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000276#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000277 return 0;
278}
279
Simon Glassb0edea32018-11-15 18:44:09 -0700280static int setup_spl_handoff(void)
281{
282#if CONFIG_IS_ENABLED(HANDOFF)
283 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
284 sizeof(struct spl_handoff));
285 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
286#endif
287
288 return 0;
289}
290
Simon Glass1938f4a2013-03-11 06:49:53 +0000291__weak int arch_cpu_init(void)
292{
293 return 0;
294}
295
Paul Burton8ebf5062016-09-21 11:18:46 +0100296__weak int mach_cpu_init(void)
297{
298 return 0;
299}
300
Simon Glass1938f4a2013-03-11 06:49:53 +0000301/* Get the top of usable RAM */
302__weak ulong board_get_usable_ram_top(ulong total_size)
303{
Heinrich Schuchardt54280962020-05-09 21:21:14 +0200304#if defined(CONFIG_SYS_SDRAM_BASE) && CONFIG_SYS_SDRAM_BASE > 0
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700305 /*
Simon Glass4c509342015-04-28 20:25:03 -0600306 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700307 * 32-bit address space. If so, clip the usable RAM so it doesn't.
308 */
309 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
310 /*
311 * Will wrap back to top of 32-bit space when reservations
312 * are made.
313 */
314 return 0;
315#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000316 return gd->ram_top;
317}
318
319static int setup_dest_addr(void)
320{
321 debug("Monitor len: %08lX\n", gd->mon_len);
322 /*
323 * Ram is setup, size stored in gd !!
324 */
325 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800326#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000327 /*
328 * Subtract specified amount of memory to hide so that it won't
329 * get "touched" at all by U-Boot. By fixing up gd->ram_size
330 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800331 * memory size and won't touch it either. This should work
332 * for arch/ppc and arch/powerpc. Only Linux board ports in
333 * arch/powerpc with bootwrapper support, that recalculate the
334 * memory size from the SDRAM controller setup will have to
335 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000336 */
York Sun36cc0de2017-03-06 09:02:28 -0800337 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
338#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000339#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530340 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000341#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530342 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000343 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000344 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000345 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700346#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000347 /*
348 * We need to make sure the location we intend to put secondary core
349 * boot code is reserved and not used by any part of u-boot
350 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000351 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
352 gd->relocaddr = determine_mp_bootpg(NULL);
353 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000354 }
355#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000356 return 0;
357}
358
Simon Glass1938f4a2013-03-11 06:49:53 +0000359#ifdef CONFIG_PRAM
360/* reserve protected RAM */
361static int reserve_pram(void)
362{
363 ulong reg;
364
Simon Glassbfebc8c2017-08-03 12:22:13 -0600365 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000366 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000367 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000368 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000369 return 0;
370}
371#endif /* CONFIG_PRAM */
372
373/* Round memory pointer down to next 4 kB limit */
374static int reserve_round_4k(void)
375{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000376 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000377 return 0;
378}
379
Ovidiu Panait79926e42020-03-29 20:57:41 +0300380__weak int arch_reserve_mmu(void)
381{
382 return 0;
383}
384
Simon Glass5a541942016-01-18 19:52:21 -0700385static int reserve_video(void)
386{
Simon Glass0f079eb2017-03-31 08:40:30 -0600387#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700388 ulong addr;
389 int ret;
390
391 addr = gd->relocaddr;
392 ret = video_reserve(&addr);
393 if (ret)
394 return ret;
Simon Glass5630d2f2020-09-27 18:46:22 -0600395 debug("Reserving %luk for video at: %08lx\n",
396 (unsigned long)gd->relocaddr - addr, addr);
Simon Glass5a541942016-01-18 19:52:21 -0700397 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600398#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700399# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000400 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700401# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000402 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000403 gd->relocaddr = lcd_setmem(gd->relocaddr);
404 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700405# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600406#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700407
408 return 0;
409}
Simon Glass8703ef32016-01-18 19:52:20 -0700410
Simon Glass71c52db2013-06-11 11:14:42 -0700411static int reserve_trace(void)
412{
413#ifdef CONFIG_TRACE
414 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
415 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200416 debug("Reserving %luk for trace data at: %08lx\n",
417 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700418#endif
419
420 return 0;
421}
422
Simon Glass1938f4a2013-03-11 06:49:53 +0000423static int reserve_uboot(void)
424{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300425 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
426 /*
427 * reserve memory for U-Boot code, data & bss
428 * round down to next 4 kB limit
429 */
430 gd->relocaddr -= gd->mon_len;
431 gd->relocaddr &= ~(4096 - 1);
432 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
433 /* round down to next 64 kB limit so that IVPR stays aligned */
434 gd->relocaddr &= ~(65536 - 1);
435 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000436
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300437 debug("Reserving %ldk for U-Boot at: %08lx\n",
438 gd->mon_len >> 10, gd->relocaddr);
439 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000440
441 gd->start_addr_sp = gd->relocaddr;
442
Simon Glass1938f4a2013-03-11 06:49:53 +0000443 return 0;
444}
445
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100446/*
447 * reserve after start_addr_sp the requested size and make the stack pointer
448 * 16-byte aligned, this alignment is needed for cast on the reserved memory
449 * ref = x86_64 ABI: https://reviews.llvm.org/D30049: 16 bytes
450 * = ARMv8 Instruction Set Overview: quad word, 16 bytes
451 */
452static unsigned long reserve_stack_aligned(size_t size)
453{
454 return ALIGN_DOWN(gd->start_addr_sp - size, 16);
455}
456
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700457#ifdef CONFIG_SYS_NONCACHED_MEMORY
458static int reserve_noncached(void)
459{
Stephen Warren5e0404f2019-08-27 11:54:31 -0600460 /*
461 * The value of gd->start_addr_sp must match the value of malloc_start
462 * calculated in boatrd_f.c:initr_malloc(), which is passed to
463 * board_r.c:mem_malloc_init() and then used by
464 * cache.c:noncached_init()
465 *
466 * These calculations must match the code in cache.c:noncached_init()
467 */
468 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
469 MMU_SECTION_SIZE;
470 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
471 MMU_SECTION_SIZE);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700472 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
473 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
474
475 return 0;
476}
477#endif
478
Simon Glass1938f4a2013-03-11 06:49:53 +0000479/* reserve memory for malloc() area */
480static int reserve_malloc(void)
481{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100482 gd->start_addr_sp = reserve_stack_aligned(TOTAL_MALLOC_LEN);
Simon Glass1938f4a2013-03-11 06:49:53 +0000483 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100484 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha5f7adb52019-08-16 09:57:44 -0700485#ifdef CONFIG_SYS_NONCACHED_MEMORY
486 reserve_noncached();
487#endif
488
Simon Glass1938f4a2013-03-11 06:49:53 +0000489 return 0;
490}
491
492/* (permanently) allocate a Board Info struct */
493static int reserve_board(void)
494{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800495 if (!gd->bd) {
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900496 gd->start_addr_sp = reserve_stack_aligned(sizeof(struct bd_info));
497 gd->bd = (struct bd_info *)map_sysmem(gd->start_addr_sp,
498 sizeof(struct bd_info));
499 memset(gd->bd, '\0', sizeof(struct bd_info));
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800500 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900501 sizeof(struct bd_info), gd->start_addr_sp);
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800502 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000503 return 0;
504}
505
506static int setup_machine(void)
507{
508#ifdef CONFIG_MACH_TYPE
509 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
510#endif
511 return 0;
512}
513
514static int reserve_global_data(void)
515{
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100516 gd->start_addr_sp = reserve_stack_aligned(sizeof(gd_t));
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000517 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000518 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100519 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000520 return 0;
521}
522
523static int reserve_fdt(void)
524{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100525#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000526 /*
Simon Glass4c509342015-04-28 20:25:03 -0600527 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000528 * must relocate it. If it is embedded in the data section, then it
529 * will be relocated with other data.
530 */
531 if (gd->fdt_blob) {
Ashok Reddy Somab8fd54d2020-04-06 07:58:30 -0600532 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob), 32);
Simon Glass1938f4a2013-03-11 06:49:53 +0000533
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100534 gd->start_addr_sp = reserve_stack_aligned(gd->fdt_size);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000535 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000536 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000537 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000538 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100539#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000540
541 return 0;
542}
543
Simon Glass25e7dc62017-05-22 05:05:30 -0600544static int reserve_bootstage(void)
545{
546#ifdef CONFIG_BOOTSTAGE
547 int size = bootstage_get_size();
548
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100549 gd->start_addr_sp = reserve_stack_aligned(size);
Simon Glass25e7dc62017-05-22 05:05:30 -0600550 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
551 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
552 gd->start_addr_sp);
553#endif
554
555 return 0;
556}
557
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100558__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100559{
560 return 0;
561}
562
Simon Glass1938f4a2013-03-11 06:49:53 +0000563static int reserve_stacks(void)
564{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100565 /* make stack pointer 16-byte aligned */
Patrick Delaunay65c141e2020-03-10 10:15:05 +0100566 gd->start_addr_sp = reserve_stack_aligned(16);
Simon Glass1938f4a2013-03-11 06:49:53 +0000567
568 /*
Simon Glass4c509342015-04-28 20:25:03 -0600569 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100570 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000571 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100572 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000573}
574
Simon Glassf0293d32018-11-15 18:43:52 -0700575static int reserve_bloblist(void)
576{
577#ifdef CONFIG_BLOBLIST
Simon Glass4a08fae2020-09-27 18:46:18 -0600578 /* Align to a 4KB boundary for easier reading of addresses */
579 gd->start_addr_sp = ALIGN_DOWN(gd->start_addr_sp - CONFIG_BLOBLIST_SIZE,
580 0x1000);
Simon Glassf0293d32018-11-15 18:43:52 -0700581 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
582#endif
583
584 return 0;
585}
586
Simon Glass1938f4a2013-03-11 06:49:53 +0000587static int display_new_sp(void)
588{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000589 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000590
591 return 0;
592}
593
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300594__weak int arch_setup_bdinfo(void)
Ovidiu Panaitba743102020-07-24 14:12:14 +0300595{
596 return 0;
597}
598
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300599int setup_bdinfo(void)
600{
Ovidiu Panaita4aa1882020-07-24 14:12:16 +0300601 struct bd_info *bd = gd->bd;
602
Ovidiu Panait49122242020-07-24 14:12:17 +0300603 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
604 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
605 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
606 }
607
Ovidiu Panait81e7cb12020-07-24 14:12:15 +0300608 return arch_setup_bdinfo();
609}
610
Simon Glass1938f4a2013-03-11 06:49:53 +0000611#ifdef CONFIG_POST
612static int init_post(void)
613{
614 post_bootmode_init();
615 post_run(NULL, POST_ROM | post_bootmode_get(0));
616
617 return 0;
618}
619#endif
620
Simon Glass1938f4a2013-03-11 06:49:53 +0000621static int reloc_fdt(void)
622{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100623#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600624 if (gd->flags & GD_FLG_SKIP_RELOC)
625 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000626 if (gd->new_fdt) {
Oleksandr Andrushchenko53007fc2020-06-19 11:22:18 +0300627 memcpy(gd->new_fdt, gd->fdt_blob, fdt_totalsize(gd->fdt_blob));
Simon Glass1938f4a2013-03-11 06:49:53 +0000628 gd->fdt_blob = gd->new_fdt;
629 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100630#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000631
632 return 0;
633}
634
Simon Glass25e7dc62017-05-22 05:05:30 -0600635static int reloc_bootstage(void)
636{
637#ifdef CONFIG_BOOTSTAGE
638 if (gd->flags & GD_FLG_SKIP_RELOC)
639 return 0;
640 if (gd->new_bootstage) {
641 int size = bootstage_get_size();
642
643 debug("Copying bootstage from %p to %p, size %x\n",
644 gd->bootstage, gd->new_bootstage, size);
645 memcpy(gd->new_bootstage, gd->bootstage, size);
646 gd->bootstage = gd->new_bootstage;
Simon Glassac9cd482019-10-21 17:26:50 -0600647 bootstage_relocate();
Simon Glass25e7dc62017-05-22 05:05:30 -0600648 }
649#endif
650
651 return 0;
652}
653
Simon Glassf0293d32018-11-15 18:43:52 -0700654static int reloc_bloblist(void)
655{
656#ifdef CONFIG_BLOBLIST
657 if (gd->flags & GD_FLG_SKIP_RELOC)
658 return 0;
659 if (gd->new_bloblist) {
660 int size = CONFIG_BLOBLIST_SIZE;
661
662 debug("Copying bloblist from %p to %p, size %x\n",
663 gd->bloblist, gd->new_bloblist, size);
664 memcpy(gd->new_bloblist, gd->bloblist, size);
665 gd->bloblist = gd->new_bloblist;
666 }
667#endif
668
669 return 0;
670}
671
Simon Glass1938f4a2013-03-11 06:49:53 +0000672static int setup_reloc(void)
673{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600674 if (gd->flags & GD_FLG_SKIP_RELOC) {
675 debug("Skipping relocation due to flag\n");
676 return 0;
677 }
678
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800679#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200680#ifdef ARM
681 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
682#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100683 /*
684 * On all ColdFire arch cpu, monitor code starts always
685 * just after the default vector table location, so at 0x400
686 */
687 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600688#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200689 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100690#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800691#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000692 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
693
694 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000695 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000696 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
697 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000698
699 return 0;
700}
701
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100702#ifdef CONFIG_OF_BOARD_FIXUP
703static int fix_fdt(void)
704{
705 return board_fix_fdt((void *)gd->fdt_blob);
706}
707#endif
708
Simon Glass1938f4a2013-03-11 06:49:53 +0000709/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700710#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
711 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000712
713static int jump_to_copy(void)
714{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600715 if (gd->flags & GD_FLG_SKIP_RELOC)
716 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000717 /*
718 * x86 is special, but in a nice way. It uses a trampoline which
719 * enables the dcache if possible.
720 *
721 * For now, other archs use relocate_code(), which is implemented
722 * similarly for all archs. When we do generic relocation, hopefully
723 * we can make all archs enable the dcache prior to relocation.
724 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300725#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000726 /*
727 * SDRAM and console are now initialised. The final stack can now
728 * be setup in SDRAM. Code execution will continue in Flash, but
729 * with the stack in SDRAM and Global Data in temporary memory
730 * (CPU cache)
731 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600732 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000733 board_init_f_r_trampoline(gd->start_addr_sp);
734#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000735 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000736#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000737
738 return 0;
739}
740#endif
741
742/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600743static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000744{
Simon Glassbaa7d342017-06-07 10:28:46 -0600745 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
746 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600747 int ret;
748
Simon Glass824bb1b2017-05-22 05:05:35 -0600749 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600750 if (ret)
751 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600752 if (from_spl) {
753 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
754 CONFIG_BOOTSTAGE_STASH_SIZE);
755
756 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
757 if (ret && ret != -ENOENT) {
758 debug("Failed to unstash bootstage: err=%d\n", ret);
759 return ret;
760 }
761 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600762
Simon Glass1938f4a2013-03-11 06:49:53 +0000763 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
764
765 return 0;
766}
767
Simon Glass9854a872015-11-08 23:47:48 -0700768static int initf_console_record(void)
769{
Andy Yanf1896c42017-07-24 17:43:34 +0800770#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700771 return console_record_init();
772#else
773 return 0;
774#endif
775}
776
Simon Glassab7cd622014-07-23 06:55:04 -0600777static int initf_dm(void)
778{
Andy Yanf1896c42017-07-24 17:43:34 +0800779#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600780 int ret;
781
Simon Glassb67eefd2020-05-10 11:39:59 -0600782 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600783 ret = dm_init_and_scan(true);
Simon Glassb67eefd2020-05-10 11:39:59 -0600784 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600785 if (ret)
786 return ret;
787#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700788#ifdef CONFIG_TIMER_EARLY
789 ret = dm_timer_init();
790 if (ret)
791 return ret;
792#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600793
794 return 0;
795}
796
Simon Glass146251f2015-01-19 22:16:12 -0700797/* Architecture-specific memory reservation */
798__weak int reserve_arch(void)
799{
800 return 0;
801}
802
Simon Glassd4c671c2015-03-05 12:25:16 -0700803__weak int arch_cpu_init_dm(void)
804{
805 return 0;
806}
807
Ovidiu Panait016e4ae2020-01-22 22:28:25 +0200808__weak int checkcpu(void)
809{
810 return 0;
811}
812
Ovidiu Panaitfbf9c152020-02-05 08:54:42 +0200813__weak int clear_bss(void)
814{
815 return 0;
816}
817
Simon Glass4acff452017-01-16 07:03:50 -0700818static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000819 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700820#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700821 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700822#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200823#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700824 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800825#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700826 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700827 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600828 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassf0293d32018-11-15 18:43:52 -0700829#ifdef CONFIG_BLOBLIST
830 bloblist_init,
831#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700832 setup_spl_handoff,
Simon Glass9854a872015-11-08 23:47:48 -0700833 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600834#if defined(CONFIG_HAVE_FSP)
835 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700836#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000837 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100838 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600839 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700840 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000841#if defined(CONFIG_BOARD_EARLY_INIT_F)
842 board_early_init_f,
843#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600844#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600845 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000846 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600847#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200848#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000849 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200850#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000851#if defined(CONFIG_BOARD_POSTCLK_INIT)
852 board_postclk_init,
853#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000854 env_init, /* initialize environment */
855 init_baud_rate, /* initialze baudrate settings */
856 serial_init, /* serial communications setup */
857 console_init_f, /* stage 1 init of console */
858 display_options, /* say that we are here */
859 display_text_info, /* show debugging info if required */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860 checkcpu,
Mario Six23471ae2018-08-06 10:23:34 +0200861#if defined(CONFIG_SYSRESET)
862 print_resetinfo,
863#endif
Simon Glasscc664002017-01-23 13:31:25 -0700864#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000865 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700866#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500867#if defined(CONFIG_DTB_RESELECT)
868 embedded_dtb_select,
869#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000870#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900871 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000872#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000873 INIT_FUNC_WATCHDOG_INIT
874#if defined(CONFIG_MISC_INIT_F)
875 misc_init_f,
876#endif
877 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600878#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000879 init_func_i2c,
880#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530881#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
882 init_func_vid,
883#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000884 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000885 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000886#ifdef CONFIG_POST
887 post_init_f,
888#endif
889 INIT_FUNC_WATCHDOG_RESET
890#if defined(CONFIG_SYS_DRAM_TEST)
891 testdram,
892#endif /* CONFIG_SYS_DRAM_TEST */
893 INIT_FUNC_WATCHDOG_RESET
894
Simon Glass1938f4a2013-03-11 06:49:53 +0000895#ifdef CONFIG_POST
896 init_post,
897#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000898 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000899 /*
900 * Now that we have DRAM mapped and working, we can
901 * relocate the code and continue running from DRAM.
902 *
903 * Reserve memory at end of RAM for (top down in that order):
904 * - area that won't get touched by U-Boot and Linux (optional)
905 * - kernel log buffer
906 * - protected RAM
907 * - LCD framebuffer
908 * - monitor code
909 * - board info struct
910 */
911 setup_dest_addr,
Pragnesh Patel313981c2020-08-13 10:12:26 +0530912#ifdef CONFIG_OF_BOARD_FIXUP
913 fix_fdt,
914#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000915#ifdef CONFIG_PRAM
916 reserve_pram,
917#endif
918 reserve_round_4k,
Ovidiu Panait79926e42020-03-29 20:57:41 +0300919 arch_reserve_mmu,
Simon Glass5a541942016-01-18 19:52:21 -0700920 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700921 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000922 reserve_uboot,
923 reserve_malloc,
924 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000925 setup_machine,
926 reserve_global_data,
927 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600928 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700929 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700930 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000931 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600932 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000933 show_dram_config,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000934 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait15328852020-07-24 14:12:20 +0300935 setup_bdinfo,
Simon Glass1938f4a2013-03-11 06:49:53 +0000936 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000937 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000938 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600939 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700940 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000941 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300942#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700943 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700944 do_elf_reloc_fixups,
945#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300946 clear_bss,
Simon Glass530f27e2017-01-16 07:03:49 -0700947#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
948 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000949 jump_to_copy,
950#endif
951 NULL,
952};
953
954void board_init_f(ulong boot_flags)
955{
Simon Glass1938f4a2013-03-11 06:49:53 +0000956 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400957 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000958
959 if (initcall_run_list(init_sequence_f))
960 hang();
961
Ben Stoltz9b217492015-07-31 09:31:37 -0600962#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300963 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
964 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000965 /* NOTREACHED - jump_to_copy() does not return */
966 hang();
967#endif
968}
969
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300970#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000971/*
972 * For now this code is only used on x86.
973 *
974 * init_sequence_f_r is the list of init functions which are run when
975 * U-Boot is executing from Flash with a semi-limited 'C' environment.
976 * The following limitations must be considered when implementing an
977 * '_f_r' function:
978 * - 'static' variables are read-only
979 * - Global Data (gd->xxx) is read/write
980 *
981 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
982 * supported). It _should_, if possible, copy global data to RAM and
983 * initialise the CPU caches (to speed up the relocation process)
984 *
985 * NOTE: At present only x86 uses this route, but it is intended that
986 * all archs will move to this when generic relocation is implemented.
987 */
Simon Glass4acff452017-01-16 07:03:50 -0700988static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -0700989#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +0000990 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -0700991#endif
Simon Glass48a33802013-03-05 14:39:52 +0000992
993 NULL,
994};
995
996void board_init_f_r(void)
997{
998 if (initcall_run_list(init_sequence_f_r))
999 hang();
1000
1001 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001002 * The pre-relocation drivers may be using memory that has now gone
1003 * away. Mark serial as unavailable - this will fall back to the debug
1004 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001005 *
1006 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001007 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001008 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001009#ifdef CONFIG_TIMER
1010 gd->timer = NULL;
1011#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001012
1013 /*
Simon Glass48a33802013-03-05 14:39:52 +00001014 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1015 * Transfer execution from Flash to RAM by calculating the address
1016 * of the in-RAM copy of board_init_r() and calling it
1017 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001018 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001019
1020 /* NOTREACHED - board_init_r() does not return */
1021 hang();
1022}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001023#endif /* CONFIG_X86 */