blob: 3c6877da33337e616965ce06eeb3645ba6977da3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc45e3592013-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 Glassc45e3592013-03-11 06:49:53 +000010 */
11
12#include <common.h>
Simon Glassa815dab2018-11-15 18:43:52 -070013#include <bloblist.h>
Simon Glass85d65312019-12-28 10:44:58 -070014#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -070015#include <console.h>
Mario Six97bbb602018-08-06 10:23:41 +020016#include <cpu.h>
Simon Glass1fa70f82019-11-14 12:57:34 -070017#include <cpu_func.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060018#include <dm.h>
Simon Glass79fd2142019-08-01 09:46:43 -060019#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060020#include <env_internal.h>
Simon Glassc45e3592013-03-11 06:49:53 +000021#include <fdtdec.h>
Simon Glass15393432013-04-20 08:42:41 +000022#include <fs.h>
Simon Glass50250b52013-03-11 14:30:42 +000023#include <i2c.h>
Simon Glass6980b6b2019-11-14 12:57:45 -070024#include <init.h>
Simon Glassc45e3592013-03-11 06:49:53 +000025#include <initcall.h>
Simon Glass42cf22f2019-08-01 09:46:38 -060026#include <lcd.h>
Simon Glassd1d087d2015-02-27 22:06:36 -070027#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050028#include <mapmem.h>
Simon Glass62cf9122013-04-26 02:53:43 +000029#include <os.h>
Simon Glassc45e3592013-03-11 06:49:53 +000030#include <post.h>
Simon Glass6ab91072017-03-31 08:40:38 -060031#include <relocate.h>
Simon Glass36736182019-11-14 12:57:24 -070032#include <serial.h>
Simon Glasse14f1a22018-11-15 18:44:09 -070033#ifdef CONFIG_SPL
34#include <spl.h>
35#endif
Jeroen Hofsteea802b982014-06-23 23:20:19 +020036#include <status_led.h>
Mario Six4481a5d2018-08-06 10:23:34 +020037#include <sysreset.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070038#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070039#include <trace.h>
Simon Glassfce58f52016-01-18 19:52:21 -070040#include <video.h>
Simon Glass50250b52013-03-11 14:30:42 +000041#include <watchdog.h>
Simon Glassf004e8a2017-05-17 08:23:01 -060042#ifdef CONFIG_MACH_TYPE
43#include <asm/mach-types.h>
44#endif
Simon Glasse7706032017-03-31 08:40:39 -060045#if defined(CONFIG_MP) && defined(CONFIG_PPC)
46#include <asm/mp.h>
47#endif
Simon Glassc45e3592013-03-11 06:49:53 +000048#include <asm/io.h>
49#include <asm/sections.h>
Simon Glassa730c5d2014-07-23 06:55:04 -060050#include <dm/root.h>
Simon Glassb3c12562017-03-31 08:40:35 -060051#include <linux/errno.h>
Simon Glassc45e3592013-03-11 06:49:53 +000052
53/*
54 * Pointer to initial global data area
55 *
56 * Here we initialize it if needed.
57 */
58#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
59#undef XTRN_DECLARE_GLOBAL_DATA_PTR
60#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six80b66dd2018-01-15 11:10:02 +010061DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glassc45e3592013-03-11 06:49:53 +000062#else
63DECLARE_GLOBAL_DATA_PTR;
64#endif
65
66/*
Simon Glass839855c2015-04-28 20:25:03 -060067 * TODO(sjg@chromium.org): IMO this code should be
Simon Glassc45e3592013-03-11 06:49:53 +000068 * refactored to a single function, something like:
69 *
70 * void led_set_state(enum led_colour_t colour, int on);
71 */
72/************************************************************************
73 * Coloured LED functionality
74 ************************************************************************
75 * May be supplied by boards if desired
76 */
Jeroen Hofsteea802b982014-06-23 23:20:19 +020077__weak void coloured_LED_init(void) {}
78__weak void red_led_on(void) {}
79__weak void red_led_off(void) {}
80__weak void green_led_on(void) {}
81__weak void green_led_off(void) {}
82__weak void yellow_led_on(void) {}
83__weak void yellow_led_off(void) {}
84__weak void blue_led_on(void) {}
85__weak void blue_led_off(void) {}
Simon Glassc45e3592013-03-11 06:49:53 +000086
87/*
88 * Why is gd allocated a register? Prior to reloc it might be better to
89 * just pass it around to each function in this file?
90 *
91 * After reloc one could argue that it is hardly used and doesn't need
92 * to be in a register. Or if it is it should perhaps hold pointers to all
93 * global data for all modules, so that post-reloc we can avoid the massive
94 * literal pool we get on ARM. Or perhaps just encourage each module to use
95 * a structure...
96 */
97
Sonic Zhangf503a522014-07-17 19:01:34 +080098#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glass50250b52013-03-11 14:30:42 +000099static int init_func_watchdog_init(void)
100{
Tom Rini210ebce2017-03-14 11:08:10 -0400101# if defined(CONFIG_HW_WATCHDOG) && \
102 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700103 defined(CONFIG_SH) || \
Anatolij Gustschin87db2942016-06-13 14:24:23 +0200104 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roeseee86af22015-03-10 08:04:36 +0100105 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangf503a522014-07-17 19:01:34 +0800106 hw_watchdog_init();
Simon Glass50250b52013-03-11 14:30:42 +0000107 puts(" Watchdog enabled\n");
Anatolij Gustschind3aa98a2016-06-13 14:24:24 +0200108# endif
Simon Glass50250b52013-03-11 14:30:42 +0000109 WATCHDOG_RESET();
110
111 return 0;
112}
113
114int init_func_watchdog_reset(void)
115{
116 WATCHDOG_RESET();
117
118 return 0;
119}
120#endif /* CONFIG_WATCHDOG */
121
Jeroen Hofstee45846052014-10-08 22:57:22 +0200122__weak void board_add_ram_info(int use_default)
Simon Glass50250b52013-03-11 14:30:42 +0000123{
124 /* please define platform specific board_add_ram_info() */
125}
126
Simon Glassc45e3592013-03-11 06:49:53 +0000127static int init_baud_rate(void)
128{
Simon Glass22c34c22017-08-03 12:22:13 -0600129 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glassc45e3592013-03-11 06:49:53 +0000130 return 0;
131}
132
133static int display_text_info(void)
134{
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600135#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100136 ulong bss_start, bss_end, text_base;
Simon Glassc45e3592013-03-11 06:49:53 +0000137
Simon Glass9c9f44a2013-03-11 07:06:48 +0000138 bss_start = (ulong)&__bss_start;
139 bss_end = (ulong)&__bss_end;
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100140
Sonic Zhangf503a522014-07-17 19:01:34 +0800141#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100142 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800143#else
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100144 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangf503a522014-07-17 19:01:34 +0800145#endif
Daniel Schwierzeck17c2af62014-11-15 23:46:53 +0100146
147 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100148 text_base, bss_start, bss_end);
Simon Glass62cf9122013-04-26 02:53:43 +0000149#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000150
Simon Glassc45e3592013-03-11 06:49:53 +0000151 return 0;
152}
153
Mario Six4481a5d2018-08-06 10:23:34 +0200154#ifdef CONFIG_SYSRESET
155static int print_resetinfo(void)
156{
157 struct udevice *dev;
158 char status[256];
159 int ret;
160
161 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
162 if (ret) {
163 debug("%s: No sysreset device found (error: %d)\n",
164 __func__, ret);
165 /* Not all boards have sysreset drivers available during early
166 * boot, so don't fail if one can't be found.
167 */
168 return 0;
169 }
170
171 if (!sysreset_get_status(dev, status, sizeof(status)))
172 printf("%s", status);
173
174 return 0;
175}
176#endif
177
Mario Six97bbb602018-08-06 10:23:41 +0200178#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
179static int print_cpuinfo(void)
180{
181 struct udevice *dev;
182 char desc[512];
183 int ret;
184
185 ret = uclass_first_device_err(UCLASS_CPU, &dev);
186 if (ret) {
187 debug("%s: Could not get CPU device (err = %d)\n",
188 __func__, ret);
189 return ret;
190 }
191
192 ret = cpu_get_desc(dev, desc, sizeof(desc));
193 if (ret) {
194 debug("%s: Could not get CPU description (err = %d)\n",
195 dev->name, ret);
196 return ret;
197 }
198
Bin Mengbe2269f2018-10-10 22:06:55 -0700199 printf("CPU: %s\n", desc);
Mario Six97bbb602018-08-06 10:23:41 +0200200
201 return 0;
202}
203#endif
204
Simon Glassc45e3592013-03-11 06:49:53 +0000205static int announce_dram_init(void)
206{
207 puts("DRAM: ");
208 return 0;
209}
210
211static int show_dram_config(void)
212{
York Sun60ac15a2014-05-02 17:28:05 -0700213 unsigned long long size;
Simon Glassc45e3592013-03-11 06:49:53 +0000214
215#ifdef CONFIG_NR_DRAM_BANKS
216 int i;
217
218 debug("\nRAM Configuration:\n");
219 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
220 size += gd->bd->bi_dram[i].size;
Bin Mengc8964482015-08-06 01:31:20 -0700221 debug("Bank #%d: %llx ", i,
222 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glassc45e3592013-03-11 06:49:53 +0000223#ifdef DEBUG
224 print_size(gd->bd->bi_dram[i].size, "\n");
225#endif
226 }
227 debug("\nDRAM: ");
228#else
229 size = gd->ram_size;
230#endif
231
Simon Glass50250b52013-03-11 14:30:42 +0000232 print_size(size, "");
233 board_add_ram_info(0);
234 putc('\n');
Simon Glassc45e3592013-03-11 06:49:53 +0000235
236 return 0;
237}
238
Simon Glass2f949c32017-03-31 08:40:32 -0600239__weak int dram_init_banksize(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000240{
241#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
242 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
243 gd->bd->bi_dram[0].size = get_effective_memsize();
244#endif
Simon Glass2f949c32017-03-31 08:40:32 -0600245
246 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000247}
248
Simon Glass1a46a722017-05-12 21:09:56 -0600249#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000250static int init_func_i2c(void)
251{
252 puts("I2C: ");
trema6612902013-09-21 18:13:34 +0200253#ifdef CONFIG_SYS_I2C
254 i2c_init_all();
255#else
Simon Glass50250b52013-03-11 14:30:42 +0000256 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trema6612902013-09-21 18:13:34 +0200257#endif
Simon Glass50250b52013-03-11 14:30:42 +0000258 puts("ready\n");
259 return 0;
260}
261#endif
262
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530263#if defined(CONFIG_VID)
264__weak int init_func_vid(void)
265{
266 return 0;
267}
268#endif
269
Simon Glassc45e3592013-03-11 06:49:53 +0000270static int setup_mon_len(void)
271{
Michal Simek65e915c2014-05-08 16:08:44 +0200272#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100273 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz1930e8d2015-07-31 09:31:37 -0600274#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glass62cf9122013-04-26 02:53:43 +0000275 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Rini210ebce2017-03-14 11:08:10 -0400276#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangf503a522014-07-17 19:01:34 +0800277 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen3301bfc2017-12-26 13:55:58 +0800278#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800279 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glass90632bd2016-05-14 18:49:28 -0600280#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glass50250b52013-03-11 14:30:42 +0000281 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
282 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass9c9f44a2013-03-11 07:06:48 +0000283#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000284 return 0;
285}
286
Simon Glasse14f1a22018-11-15 18:44:09 -0700287static int setup_spl_handoff(void)
288{
289#if CONFIG_IS_ENABLED(HANDOFF)
290 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
291 sizeof(struct spl_handoff));
292 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
293#endif
294
295 return 0;
296}
297
Simon Glassc45e3592013-03-11 06:49:53 +0000298__weak int arch_cpu_init(void)
299{
300 return 0;
301}
302
Paul Burton1f508dd2016-09-21 11:18:46 +0100303__weak int mach_cpu_init(void)
304{
305 return 0;
306}
307
Simon Glassc45e3592013-03-11 06:49:53 +0000308/* Get the top of usable RAM */
309__weak ulong board_get_usable_ram_top(ulong total_size)
310{
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700311#ifdef CONFIG_SYS_SDRAM_BASE
312 /*
Simon Glass839855c2015-04-28 20:25:03 -0600313 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren0ba4a8a2014-12-23 10:34:49 -0700314 * 32-bit address space. If so, clip the usable RAM so it doesn't.
315 */
316 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
317 /*
318 * Will wrap back to top of 32-bit space when reservations
319 * are made.
320 */
321 return 0;
322#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000323 return gd->ram_top;
324}
325
326static int setup_dest_addr(void)
327{
328 debug("Monitor len: %08lX\n", gd->mon_len);
329 /*
330 * Ram is setup, size stored in gd !!
331 */
332 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun4de24ef2017-03-06 09:02:28 -0800333#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glassc45e3592013-03-11 06:49:53 +0000334 /*
335 * Subtract specified amount of memory to hide so that it won't
336 * get "touched" at all by U-Boot. By fixing up gd->ram_size
337 * the Linux kernel should now get passed the now "corrected"
York Sun4de24ef2017-03-06 09:02:28 -0800338 * memory size and won't touch it either. This should work
339 * for arch/ppc and arch/powerpc. Only Linux board ports in
340 * arch/powerpc with bootwrapper support, that recalculate the
341 * memory size from the SDRAM controller setup will have to
342 * get fixed.
Simon Glassc45e3592013-03-11 06:49:53 +0000343 */
York Sun4de24ef2017-03-06 09:02:28 -0800344 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
345#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000346#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530347 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glassc45e3592013-03-11 06:49:53 +0000348#endif
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +0530349 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glassc45e3592013-03-11 06:49:53 +0000350 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000351 gd->relocaddr = gd->ram_top;
Simon Glassc45e3592013-03-11 06:49:53 +0000352 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauda0afc22014-09-03 13:57:54 -0700353#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glass50250b52013-03-11 14:30:42 +0000354 /*
355 * We need to make sure the location we intend to put secondary core
356 * boot code is reserved and not used by any part of u-boot
357 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000358 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
359 gd->relocaddr = determine_mp_bootpg(NULL);
360 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glass50250b52013-03-11 14:30:42 +0000361 }
362#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000363 return 0;
364}
365
Simon Glassc45e3592013-03-11 06:49:53 +0000366#ifdef CONFIG_PRAM
367/* reserve protected RAM */
368static int reserve_pram(void)
369{
370 ulong reg;
371
Simon Glass22c34c22017-08-03 12:22:13 -0600372 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadad1589242013-05-27 00:37:30 +0000373 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glassc45e3592013-03-11 06:49:53 +0000374 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadad1589242013-05-27 00:37:30 +0000375 gd->relocaddr);
Simon Glassc45e3592013-03-11 06:49:53 +0000376 return 0;
377}
378#endif /* CONFIG_PRAM */
379
380/* Round memory pointer down to next 4 kB limit */
381static int reserve_round_4k(void)
382{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000383 gd->relocaddr &= ~(4096 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000384 return 0;
385}
386
Simon Glasse3cb4492017-03-31 08:40:29 -0600387#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu05223532017-07-13 19:01:08 +0530388__weak int reserve_mmu(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000389{
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400390#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
Simon Glassc45e3592013-03-11 06:49:53 +0000391 /* reserve TLB table */
David Feng1735de82013-12-14 11:47:36 +0800392 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadad1589242013-05-27 00:37:30 +0000393 gd->relocaddr -= gd->arch.tlb_size;
Simon Glassc45e3592013-03-11 06:49:53 +0000394
395 /* round down to next 64 kB limit */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000396 gd->relocaddr &= ~(0x10000 - 1);
Simon Glassc45e3592013-03-11 06:49:53 +0000397
Masahiro Yamadad1589242013-05-27 00:37:30 +0000398 gd->arch.tlb_addr = gd->relocaddr;
Simon Glassc45e3592013-03-11 06:49:53 +0000399 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
400 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sunf84f81e2016-06-24 16:46:19 -0700401
402#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
403 /*
404 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
405 * with location within secure ram.
406 */
407 gd->arch.tlb_allocated = gd->arch.tlb_addr;
408#endif
Simon Glasse3cb4492017-03-31 08:40:29 -0600409#endif
York Sunf84f81e2016-06-24 16:46:19 -0700410
Simon Glassc45e3592013-03-11 06:49:53 +0000411 return 0;
412}
413#endif
414
Simon Glassfce58f52016-01-18 19:52:21 -0700415static int reserve_video(void)
416{
Simon Glass70ac86c2017-03-31 08:40:30 -0600417#ifdef CONFIG_DM_VIDEO
Simon Glassfce58f52016-01-18 19:52:21 -0700418 ulong addr;
419 int ret;
420
421 addr = gd->relocaddr;
422 ret = video_reserve(&addr);
423 if (ret)
424 return ret;
425 gd->relocaddr = addr;
Simon Glass70ac86c2017-03-31 08:40:30 -0600426#elif defined(CONFIG_LCD)
Simon Glassfce58f52016-01-18 19:52:21 -0700427# ifdef CONFIG_FB_ADDR
Simon Glassc45e3592013-03-11 06:49:53 +0000428 gd->fb_base = CONFIG_FB_ADDR;
Simon Glassfce58f52016-01-18 19:52:21 -0700429# else
Simon Glassc45e3592013-03-11 06:49:53 +0000430 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000431 gd->relocaddr = lcd_setmem(gd->relocaddr);
432 gd->fb_base = gd->relocaddr;
Simon Glassfce58f52016-01-18 19:52:21 -0700433# endif /* CONFIG_FB_ADDR */
Simon Glass70ac86c2017-03-31 08:40:30 -0600434#endif
Simon Glass50250b52013-03-11 14:30:42 +0000435
436 return 0;
437}
Simon Glass50250b52013-03-11 14:30:42 +0000438
Simon Glass1008da02016-01-18 19:52:20 -0700439static int reserve_trace(void)
440{
441#ifdef CONFIG_TRACE
442 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
443 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardtc960b142019-06-14 21:52:22 +0200444 debug("Reserving %luk for trace data at: %08lx\n",
445 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass1008da02016-01-18 19:52:20 -0700446#endif
447
448 return 0;
449}
450
Simon Glassc45e3592013-03-11 06:49:53 +0000451static int reserve_uboot(void)
452{
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300453 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
454 /*
455 * reserve memory for U-Boot code, data & bss
456 * round down to next 4 kB limit
457 */
458 gd->relocaddr -= gd->mon_len;
459 gd->relocaddr &= ~(4096 - 1);
460 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
461 /* round down to next 64 kB limit so that IVPR stays aligned */
462 gd->relocaddr &= ~(65536 - 1);
463 #endif
Simon Glassc45e3592013-03-11 06:49:53 +0000464
Alexey Brodkinc76af2a2018-05-25 16:08:14 +0300465 debug("Reserving %ldk for U-Boot at: %08lx\n",
466 gd->mon_len >> 10, gd->relocaddr);
467 }
Masahiro Yamadad1589242013-05-27 00:37:30 +0000468
469 gd->start_addr_sp = gd->relocaddr;
470
Simon Glassc45e3592013-03-11 06:49:53 +0000471 return 0;
472}
473
Vikas Manocha4d49e102019-08-16 09:57:44 -0700474#ifdef CONFIG_SYS_NONCACHED_MEMORY
475static int reserve_noncached(void)
476{
Stephen Warren9b496432019-08-27 11:54:31 -0600477 /*
478 * The value of gd->start_addr_sp must match the value of malloc_start
479 * calculated in boatrd_f.c:initr_malloc(), which is passed to
480 * board_r.c:mem_malloc_init() and then used by
481 * cache.c:noncached_init()
482 *
483 * These calculations must match the code in cache.c:noncached_init()
484 */
485 gd->start_addr_sp = ALIGN(gd->start_addr_sp, MMU_SECTION_SIZE) -
486 MMU_SECTION_SIZE;
487 gd->start_addr_sp -= ALIGN(CONFIG_SYS_NONCACHED_MEMORY,
488 MMU_SECTION_SIZE);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700489 debug("Reserving %dM for noncached_alloc() at: %08lx\n",
490 CONFIG_SYS_NONCACHED_MEMORY >> 20, gd->start_addr_sp);
491
492 return 0;
493}
494#endif
495
Simon Glassc45e3592013-03-11 06:49:53 +0000496/* reserve memory for malloc() area */
497static int reserve_malloc(void)
498{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000499 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glassc45e3592013-03-11 06:49:53 +0000500 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100501 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Vikas Manocha4d49e102019-08-16 09:57:44 -0700502#ifdef CONFIG_SYS_NONCACHED_MEMORY
503 reserve_noncached();
504#endif
505
Simon Glassc45e3592013-03-11 06:49:53 +0000506 return 0;
507}
508
509/* (permanently) allocate a Board Info struct */
510static int reserve_board(void)
511{
Sonic Zhangf503a522014-07-17 19:01:34 +0800512 if (!gd->bd) {
513 gd->start_addr_sp -= sizeof(bd_t);
514 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
515 memset(gd->bd, '\0', sizeof(bd_t));
516 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
517 sizeof(bd_t), gd->start_addr_sp);
518 }
Simon Glassc45e3592013-03-11 06:49:53 +0000519 return 0;
520}
521
522static int setup_machine(void)
523{
524#ifdef CONFIG_MACH_TYPE
525 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
526#endif
527 return 0;
528}
529
530static int reserve_global_data(void)
531{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000532 gd->start_addr_sp -= sizeof(gd_t);
533 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glassc45e3592013-03-11 06:49:53 +0000534 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six80b66dd2018-01-15 11:10:02 +0100535 sizeof(gd_t), gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000536 return 0;
537}
538
539static int reserve_fdt(void)
540{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100541#ifndef CONFIG_OF_EMBED
Simon Glassc45e3592013-03-11 06:49:53 +0000542 /*
Simon Glass839855c2015-04-28 20:25:03 -0600543 * If the device tree is sitting immediately above our image then we
Simon Glassc45e3592013-03-11 06:49:53 +0000544 * must relocate it. If it is embedded in the data section, then it
545 * will be relocated with other data.
546 */
547 if (gd->fdt_blob) {
548 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
549
Masahiro Yamadad1589242013-05-27 00:37:30 +0000550 gd->start_addr_sp -= gd->fdt_size;
551 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glass62cf9122013-04-26 02:53:43 +0000552 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000553 gd->fdt_size, gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000554 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100555#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000556
557 return 0;
558}
559
Simon Glassb9aff922017-05-22 05:05:30 -0600560static int reserve_bootstage(void)
561{
562#ifdef CONFIG_BOOTSTAGE
563 int size = bootstage_get_size();
564
565 gd->start_addr_sp -= size;
566 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
567 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
568 gd->start_addr_sp);
569#endif
570
571 return 0;
572}
573
Patrick Delaunaya0a2b212018-03-13 13:57:00 +0100574__weak int arch_reserve_stacks(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000575{
Andreas Bießmann25429862015-02-06 23:06:45 +0100576 return 0;
577}
Simon Glass4d2aee82013-03-05 14:39:45 +0000578
Andreas Bießmann25429862015-02-06 23:06:45 +0100579static int reserve_stacks(void)
580{
581 /* make stack pointer 16-byte aligned */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000582 gd->start_addr_sp -= 16;
583 gd->start_addr_sp &= ~0xf;
Simon Glassc45e3592013-03-11 06:49:53 +0000584
585 /*
Simon Glass839855c2015-04-28 20:25:03 -0600586 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann25429862015-02-06 23:06:45 +0100587 * gd->irq_sp
Simon Glassc45e3592013-03-11 06:49:53 +0000588 */
Andreas Bießmann25429862015-02-06 23:06:45 +0100589 return arch_reserve_stacks();
Simon Glassc45e3592013-03-11 06:49:53 +0000590}
591
Simon Glassa815dab2018-11-15 18:43:52 -0700592static int reserve_bloblist(void)
593{
594#ifdef CONFIG_BLOBLIST
Simon Glass96a5b7e2019-10-21 17:26:46 -0600595 gd->start_addr_sp &= ~0xf;
Simon Glassa815dab2018-11-15 18:43:52 -0700596 gd->start_addr_sp -= CONFIG_BLOBLIST_SIZE;
597 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
598#endif
599
600 return 0;
601}
602
Simon Glassc45e3592013-03-11 06:49:53 +0000603static int display_new_sp(void)
604{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000605 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000606
607 return 0;
608}
609
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200610#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
611 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000612static int setup_board_part1(void)
613{
614 bd_t *bd = gd->bd;
615
616 /*
617 * Save local variables to board info struct
618 */
Simon Glass50250b52013-03-11 14:30:42 +0000619 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
620 bd->bi_memsize = gd->ram_size; /* size in bytes */
621
622#ifdef CONFIG_SYS_SRAM_BASE
623 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
624 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
625#endif
626
Heiko Schocherd4def9b2017-06-07 17:33:11 +0200627#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glass50250b52013-03-11 14:30:42 +0000628 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
629#endif
Heiko Schocher6f90e582017-06-14 05:49:40 +0200630#if defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000631 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
632#endif
633#if defined(CONFIG_MPC83xx)
634 bd->bi_immrbar = CONFIG_SYS_IMMR;
635#endif
Simon Glass50250b52013-03-11 14:30:42 +0000636
637 return 0;
638}
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100639#endif
Simon Glass50250b52013-03-11 14:30:42 +0000640
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100641#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000642static int setup_board_part2(void)
643{
644 bd_t *bd = gd->bd;
645
646 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
647 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
648#if defined(CONFIG_CPM2)
649 bd->bi_cpmfreq = gd->arch.cpm_clk;
650 bd->bi_brgfreq = gd->arch.brg_clk;
651 bd->bi_sccfreq = gd->arch.scc_clk;
652 bd->bi_vco = gd->arch.vco_out;
653#endif /* CONFIG_CPM2 */
Alison Wang8f6d8f32015-02-12 18:33:15 +0800654#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
655 bd->bi_pcifreq = gd->pci_clk;
656#endif
657#if defined(CONFIG_EXTRA_CLOCK)
658 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
659 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
660 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
661#endif
Simon Glass50250b52013-03-11 14:30:42 +0000662
663 return 0;
664}
665#endif
666
Simon Glassc45e3592013-03-11 06:49:53 +0000667#ifdef CONFIG_POST
668static int init_post(void)
669{
670 post_bootmode_init();
671 post_run(NULL, POST_ROM | post_bootmode_get(0));
672
673 return 0;
674}
675#endif
676
Simon Glassc45e3592013-03-11 06:49:53 +0000677static int reloc_fdt(void)
678{
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100679#ifndef CONFIG_OF_EMBED
Simon Glass00dd17a2015-08-04 12:33:39 -0600680 if (gd->flags & GD_FLG_SKIP_RELOC)
681 return 0;
Simon Glassc45e3592013-03-11 06:49:53 +0000682 if (gd->new_fdt) {
683 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
684 gd->fdt_blob = gd->new_fdt;
685 }
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100686#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000687
688 return 0;
689}
690
Simon Glassb9aff922017-05-22 05:05:30 -0600691static int reloc_bootstage(void)
692{
693#ifdef CONFIG_BOOTSTAGE
694 if (gd->flags & GD_FLG_SKIP_RELOC)
695 return 0;
696 if (gd->new_bootstage) {
697 int size = bootstage_get_size();
698
699 debug("Copying bootstage from %p to %p, size %x\n",
700 gd->bootstage, gd->new_bootstage, size);
701 memcpy(gd->new_bootstage, gd->bootstage, size);
702 gd->bootstage = gd->new_bootstage;
Simon Glass39d58522019-10-21 17:26:50 -0600703 bootstage_relocate();
Simon Glassb9aff922017-05-22 05:05:30 -0600704 }
705#endif
706
707 return 0;
708}
709
Simon Glassa815dab2018-11-15 18:43:52 -0700710static int reloc_bloblist(void)
711{
712#ifdef CONFIG_BLOBLIST
713 if (gd->flags & GD_FLG_SKIP_RELOC)
714 return 0;
715 if (gd->new_bloblist) {
716 int size = CONFIG_BLOBLIST_SIZE;
717
718 debug("Copying bloblist from %p to %p, size %x\n",
719 gd->bloblist, gd->new_bloblist, size);
720 memcpy(gd->new_bloblist, gd->bloblist, size);
721 gd->bloblist = gd->new_bloblist;
722 }
723#endif
724
725 return 0;
726}
727
Simon Glassc45e3592013-03-11 06:49:53 +0000728static int setup_reloc(void)
729{
Simon Glass00dd17a2015-08-04 12:33:39 -0600730 if (gd->flags & GD_FLG_SKIP_RELOC) {
731 debug("Skipping relocation due to flag\n");
732 return 0;
733 }
734
Sonic Zhangf503a522014-07-17 19:01:34 +0800735#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann160583b2017-06-08 10:18:25 +0200736#ifdef ARM
737 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
738#elif defined(CONFIG_M68K)
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100739 /*
740 * On all ColdFire arch cpu, monitor code starts always
741 * just after the default vector table location, so at 0x400
742 */
743 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass752707a2019-04-08 13:20:41 -0600744#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann160583b2017-06-08 10:18:25 +0200745 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100746#endif
Sonic Zhangf503a522014-07-17 19:01:34 +0800747#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000748 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
749
750 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glass62cf9122013-04-26 02:53:43 +0000751 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadad1589242013-05-27 00:37:30 +0000752 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
753 gd->start_addr_sp);
Simon Glassc45e3592013-03-11 06:49:53 +0000754
755 return 0;
756}
757
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100758#ifdef CONFIG_OF_BOARD_FIXUP
759static int fix_fdt(void)
760{
761 return board_fix_fdt((void *)gd->fdt_blob);
762}
763#endif
764
Simon Glassc45e3592013-03-11 06:49:53 +0000765/* ARM calls relocate_code from its crt0.S */
Simon Glass6e1a81a2017-01-16 07:03:49 -0700766#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
767 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +0000768
769static int jump_to_copy(void)
770{
Simon Glass00dd17a2015-08-04 12:33:39 -0600771 if (gd->flags & GD_FLG_SKIP_RELOC)
772 return 0;
Simon Glass6d179872013-03-05 14:39:52 +0000773 /*
774 * x86 is special, but in a nice way. It uses a trampoline which
775 * enables the dcache if possible.
776 *
777 * For now, other archs use relocate_code(), which is implemented
778 * similarly for all archs. When we do generic relocation, hopefully
779 * we can make all archs enable the dcache prior to relocation.
780 */
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300781#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +0000782 /*
783 * SDRAM and console are now initialised. The final stack can now
784 * be setup in SDRAM. Code execution will continue in Flash, but
785 * with the stack in SDRAM and Global Data in temporary memory
786 * (CPU cache)
787 */
Simon Glass0e27b872015-08-10 20:44:32 -0600788 arch_setup_gd(gd->new_gd);
Simon Glass6d179872013-03-05 14:39:52 +0000789 board_init_f_r_trampoline(gd->start_addr_sp);
790#else
Masahiro Yamadad1589242013-05-27 00:37:30 +0000791 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +0000792#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000793
794 return 0;
795}
796#endif
797
798/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glass88200332017-05-22 05:05:25 -0600799static int initf_bootstage(void)
Simon Glassc45e3592013-03-11 06:49:53 +0000800{
Simon Glassc55d5c32017-06-07 10:28:46 -0600801 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
802 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glass88200332017-05-22 05:05:25 -0600803 int ret;
804
Simon Glass01154cb2017-05-22 05:05:35 -0600805 ret = bootstage_init(!from_spl);
Simon Glass88200332017-05-22 05:05:25 -0600806 if (ret)
807 return ret;
Simon Glass01154cb2017-05-22 05:05:35 -0600808 if (from_spl) {
809 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
810 CONFIG_BOOTSTAGE_STASH_SIZE);
811
812 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
813 if (ret && ret != -ENOENT) {
814 debug("Failed to unstash bootstage: err=%d\n", ret);
815 return ret;
816 }
817 }
Simon Glass88200332017-05-22 05:05:25 -0600818
Simon Glassc45e3592013-03-11 06:49:53 +0000819 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
820
821 return 0;
822}
823
Simon Glass1bb49232015-11-08 23:47:48 -0700824static int initf_console_record(void)
825{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800826#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass1bb49232015-11-08 23:47:48 -0700827 return console_record_init();
828#else
829 return 0;
830#endif
831}
832
Simon Glassa730c5d2014-07-23 06:55:04 -0600833static int initf_dm(void)
834{
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800835#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassa730c5d2014-07-23 06:55:04 -0600836 int ret;
837
Simon Glass405e2b02017-05-22 05:05:32 -0600838 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassa730c5d2014-07-23 06:55:04 -0600839 ret = dm_init_and_scan(true);
Simon Glass405e2b02017-05-22 05:05:32 -0600840 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassa730c5d2014-07-23 06:55:04 -0600841 if (ret)
842 return ret;
843#endif
Simon Glass8e4f80f2016-02-24 09:14:50 -0700844#ifdef CONFIG_TIMER_EARLY
845 ret = dm_timer_init();
846 if (ret)
847 return ret;
848#endif
Simon Glassa730c5d2014-07-23 06:55:04 -0600849
850 return 0;
851}
852
Simon Glass5ded7e52015-01-19 22:16:12 -0700853/* Architecture-specific memory reservation */
854__weak int reserve_arch(void)
855{
856 return 0;
857}
858
Simon Glass7af8d052015-03-05 12:25:16 -0700859__weak int arch_cpu_init_dm(void)
860{
861 return 0;
862}
863
Simon Glass2031fad2017-01-16 07:03:50 -0700864static const init_fnc_t init_sequence_f[] = {
Simon Glassc45e3592013-03-11 06:49:53 +0000865 setup_mon_len,
Simon Glass26b78b22015-02-27 22:06:34 -0700866#ifdef CONFIG_OF_CONTROL
Simon Glassa0877672015-02-27 22:06:35 -0700867 fdtdec_setup,
Simon Glass26b78b22015-02-27 22:06:34 -0700868#endif
Heinrich Schuchardt2aecfc52019-06-02 00:53:24 +0200869#ifdef CONFIG_TRACE_EARLY
Simon Glass209a1a62013-06-11 11:14:42 -0700870 trace_early_init,
Kevin Hilman676f0192014-12-09 15:03:58 -0800871#endif
Simon Glasscfcb8862014-11-10 18:00:18 -0700872 initf_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700873 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600874 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassa815dab2018-11-15 18:43:52 -0700875#ifdef CONFIG_BLOBLIST
876 bloblist_init,
877#endif
Simon Glasse14f1a22018-11-15 18:44:09 -0700878 setup_spl_handoff,
Simon Glass1bb49232015-11-08 23:47:48 -0700879 initf_console_record,
Simon Glass295c4232017-03-28 10:27:18 -0600880#if defined(CONFIG_HAVE_FSP)
881 arch_fsp_init,
Bin Meng178f8972015-08-20 06:40:18 -0700882#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000883 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton1f508dd2016-09-21 11:18:46 +0100884 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass6df5de22014-09-03 17:36:59 -0600885 initf_dm,
Simon Glass7af8d052015-03-05 12:25:16 -0700886 arch_cpu_init_dm,
Simon Glassc45e3592013-03-11 06:49:53 +0000887#if defined(CONFIG_BOARD_EARLY_INIT_F)
888 board_early_init_f,
889#endif
Simon Glass6829d8c2017-03-28 10:27:26 -0600890#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glass70064a72017-03-28 10:27:19 -0600891 /* get CPU and bus clocks according to the environment variable */
Simon Glass50250b52013-03-11 14:30:42 +0000892 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glasse8d20d42017-03-28 10:27:23 -0600893#endif
Angelo Dureghellocd226852017-05-10 23:58:06 +0200894#if !defined(CONFIG_M68K)
Simon Glassc45e3592013-03-11 06:49:53 +0000895 timer_init, /* initialize timer */
Angelo Dureghellocd226852017-05-10 23:58:06 +0200896#endif
Simon Glass50250b52013-03-11 14:30:42 +0000897#if defined(CONFIG_BOARD_POSTCLK_INIT)
898 board_postclk_init,
899#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000900 env_init, /* initialize environment */
901 init_baud_rate, /* initialze baudrate settings */
902 serial_init, /* serial communications setup */
903 console_init_f, /* stage 1 init of console */
904 display_options, /* say that we are here */
905 display_text_info, /* show debugging info if required */
Angelo Dureghello3146b4d2017-08-20 00:01:55 +0200906#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glass50250b52013-03-11 14:30:42 +0000907 checkcpu,
908#endif
Mario Six4481a5d2018-08-06 10:23:34 +0200909#if defined(CONFIG_SYSRESET)
910 print_resetinfo,
911#endif
Simon Glass68c1d012017-01-23 13:31:25 -0700912#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glassc45e3592013-03-11 06:49:53 +0000913 print_cpuinfo, /* display cpu info (and speed) */
Simon Glass68c1d012017-01-23 13:31:25 -0700914#endif
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500915#if defined(CONFIG_DTB_RESELECT)
916 embedded_dtb_select,
917#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000918#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900919 show_board_info,
Simon Glassc45e3592013-03-11 06:49:53 +0000920#endif
Simon Glass50250b52013-03-11 14:30:42 +0000921 INIT_FUNC_WATCHDOG_INIT
922#if defined(CONFIG_MISC_INIT_F)
923 misc_init_f,
924#endif
925 INIT_FUNC_WATCHDOG_RESET
Simon Glass1a46a722017-05-12 21:09:56 -0600926#if defined(CONFIG_SYS_I2C)
Simon Glass50250b52013-03-11 14:30:42 +0000927 init_func_i2c,
928#endif
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530929#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
930 init_func_vid,
931#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000932 announce_dram_init,
Simon Glassc45e3592013-03-11 06:49:53 +0000933 dram_init, /* configure available RAM banks */
Simon Glass50250b52013-03-11 14:30:42 +0000934#ifdef CONFIG_POST
935 post_init_f,
936#endif
937 INIT_FUNC_WATCHDOG_RESET
938#if defined(CONFIG_SYS_DRAM_TEST)
939 testdram,
940#endif /* CONFIG_SYS_DRAM_TEST */
941 INIT_FUNC_WATCHDOG_RESET
942
Simon Glassc45e3592013-03-11 06:49:53 +0000943#ifdef CONFIG_POST
944 init_post,
945#endif
Simon Glass50250b52013-03-11 14:30:42 +0000946 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000947 /*
948 * Now that we have DRAM mapped and working, we can
949 * relocate the code and continue running from DRAM.
950 *
951 * Reserve memory at end of RAM for (top down in that order):
952 * - area that won't get touched by U-Boot and Linux (optional)
953 * - kernel log buffer
954 * - protected RAM
955 * - LCD framebuffer
956 * - monitor code
957 * - board info struct
958 */
959 setup_dest_addr,
Simon Glassc45e3592013-03-11 06:49:53 +0000960#ifdef CONFIG_PRAM
961 reserve_pram,
962#endif
963 reserve_round_4k,
Simon Glasse3cb4492017-03-31 08:40:29 -0600964#ifdef CONFIG_ARM
Simon Glassc45e3592013-03-11 06:49:53 +0000965 reserve_mmu,
966#endif
Simon Glassfce58f52016-01-18 19:52:21 -0700967 reserve_video,
Simon Glass1008da02016-01-18 19:52:20 -0700968 reserve_trace,
Simon Glassc45e3592013-03-11 06:49:53 +0000969 reserve_uboot,
970 reserve_malloc,
971 reserve_board,
Simon Glassc45e3592013-03-11 06:49:53 +0000972 setup_machine,
973 reserve_global_data,
974 reserve_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600975 reserve_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700976 reserve_bloblist,
Simon Glass5ded7e52015-01-19 22:16:12 -0700977 reserve_arch,
Simon Glassc45e3592013-03-11 06:49:53 +0000978 reserve_stacks,
Simon Glass2f949c32017-03-31 08:40:32 -0600979 dram_init_banksize,
Simon Glassc45e3592013-03-11 06:49:53 +0000980 show_dram_config,
Vladimir Zapolskiy67fa10d2016-11-28 00:15:24 +0200981#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
982 defined(CONFIG_SH)
Simon Glass50250b52013-03-11 14:30:42 +0000983 setup_board_part1,
Daniel Schwierzeckbb08b0b2015-11-01 17:36:13 +0100984#endif
985#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glass50250b52013-03-11 14:30:42 +0000986 INIT_FUNC_WATCHDOG_RESET
987 setup_board_part2,
988#endif
Simon Glassc45e3592013-03-11 06:49:53 +0000989 display_new_sp,
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100990#ifdef CONFIG_OF_BOARD_FIXUP
991 fix_fdt,
992#endif
Simon Glass50250b52013-03-11 14:30:42 +0000993 INIT_FUNC_WATCHDOG_RESET
Simon Glassc45e3592013-03-11 06:49:53 +0000994 reloc_fdt,
Simon Glassb9aff922017-05-22 05:05:30 -0600995 reloc_bootstage,
Simon Glassa815dab2018-11-15 18:43:52 -0700996 reloc_bloblist,
Simon Glassc45e3592013-03-11 06:49:53 +0000997 setup_reloc,
Alexey Brodkin913e9f02015-02-24 19:40:36 +0300998#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glassd50b2f42015-01-01 16:18:09 -0700999 copy_uboot_to_ram,
Simon Glassd50b2f42015-01-01 16:18:09 -07001000 do_elf_reloc_fixups,
Simon Glass2a7bf772017-01-16 07:03:52 -07001001 clear_bss,
Simon Glassd50b2f42015-01-01 16:18:09 -07001002#endif
Chris Zankel41e37372016-08-10 18:36:43 +03001003#if defined(CONFIG_XTENSA)
1004 clear_bss,
1005#endif
Simon Glass6e1a81a2017-01-16 07:03:49 -07001006#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
1007 !CONFIG_IS_ENABLED(X86_64)
Simon Glassc45e3592013-03-11 06:49:53 +00001008 jump_to_copy,
1009#endif
1010 NULL,
1011};
1012
1013void board_init_f(ulong boot_flags)
1014{
Simon Glassc45e3592013-03-11 06:49:53 +00001015 gd->flags = boot_flags;
Alexey Brodkin07236912013-11-27 22:32:40 +04001016 gd->have_console = 0;
Simon Glassc45e3592013-03-11 06:49:53 +00001017
1018 if (initcall_run_list(init_sequence_f))
1019 hang();
1020
Ben Stoltz1930e8d2015-07-31 09:31:37 -06001021#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkinc157ab92015-12-16 19:24:10 +03001022 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
1023 !defined(CONFIG_ARC)
Simon Glassc45e3592013-03-11 06:49:53 +00001024 /* NOTREACHED - jump_to_copy() does not return */
1025 hang();
1026#endif
1027}
Simon Glass6d179872013-03-05 14:39:52 +00001028
Alexey Brodkin913e9f02015-02-24 19:40:36 +03001029#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass6d179872013-03-05 14:39:52 +00001030/*
1031 * For now this code is only used on x86.
1032 *
1033 * init_sequence_f_r is the list of init functions which are run when
1034 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1035 * The following limitations must be considered when implementing an
1036 * '_f_r' function:
1037 * - 'static' variables are read-only
1038 * - Global Data (gd->xxx) is read/write
1039 *
1040 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1041 * supported). It _should_, if possible, copy global data to RAM and
1042 * initialise the CPU caches (to speed up the relocation process)
1043 *
1044 * NOTE: At present only x86 uses this route, but it is intended that
1045 * all archs will move to this when generic relocation is implemented.
1046 */
Simon Glass2031fad2017-01-16 07:03:50 -07001047static const init_fnc_t init_sequence_f_r[] = {
Simon Glass6e1a81a2017-01-16 07:03:49 -07001048#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass6d179872013-03-05 14:39:52 +00001049 init_cache_f_r,
Simon Glass6e1a81a2017-01-16 07:03:49 -07001050#endif
Simon Glass6d179872013-03-05 14:39:52 +00001051
1052 NULL,
1053};
1054
1055void board_init_f_r(void)
1056{
1057 if (initcall_run_list(init_sequence_f_r))
1058 hang();
1059
1060 /*
Simon Glass51f73f12016-03-11 22:06:51 -07001061 * The pre-relocation drivers may be using memory that has now gone
1062 * away. Mark serial as unavailable - this will fall back to the debug
1063 * UART if available.
Simon Glass55e32ba2017-12-04 13:48:28 -07001064 *
1065 * Do the same with log drivers since the memory may not be available.
Simon Glass51f73f12016-03-11 22:06:51 -07001066 */
Simon Glass55e32ba2017-12-04 13:48:28 -07001067 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glassb77fe1f2017-09-05 19:49:45 -06001068#ifdef CONFIG_TIMER
1069 gd->timer = NULL;
1070#endif
Simon Glass51f73f12016-03-11 22:06:51 -07001071
1072 /*
Simon Glass6d179872013-03-05 14:39:52 +00001073 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1074 * Transfer execution from Flash to RAM by calculating the address
1075 * of the in-RAM copy of board_init_r() and calling it
1076 */
Alexey Brodkin9c832f12015-02-25 17:59:02 +03001077 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass6d179872013-03-05 14:39:52 +00001078
1079 /* NOTREACHED - board_init_r() does not return */
1080 hang();
1081}
Alexey Brodkin73503182015-03-24 11:12:47 +03001082#endif /* CONFIG_X86 */