blob: 4760d728f374dd07df9978931b74a57e63278d20 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1938f4a2013-03-11 06:49:53 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2002-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
Simon Glass1938f4a2013-03-11 06:49:53 +000010 */
11
12#include <common.h>
Simon Glassf0293d32018-11-15 18:43:52 -070013#include <bloblist.h>
Simon Glass24b852a2015-11-08 23:47:45 -070014#include <console.h>
Mario Six5d6c61a2018-08-06 10:23:41 +020015#include <cpu.h>
Simon Glassab7cd622014-07-23 06:55:04 -060016#include <dm.h>
Mario Six138181a2018-08-06 10:23:39 +020017#include <environment.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000018#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000019#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000020#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000021#include <initcall.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070022#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050023#include <mapmem.h>
Simon Glassa733b062013-04-26 02:53:43 +000024#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <post.h>
Simon Glasse47b2d62017-03-31 08:40:38 -060026#include <relocate.h>
Simon Glassb0edea32018-11-15 18:44:09 -070027#ifdef CONFIG_SPL
28#include <spl.h>
29#endif
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020030#include <status_led.h>
Mario Six23471ae2018-08-06 10:23:34 +020031#include <sysreset.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070032#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070033#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070034#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000035#include <watchdog.h>
Simon Glassb885d022017-05-17 08:23:01 -060036#ifdef CONFIG_MACH_TYPE
37#include <asm/mach-types.h>
38#endif
Simon Glass1fbf97d2017-03-31 08:40:39 -060039#if defined(CONFIG_MP) && defined(CONFIG_PPC)
40#include <asm/mp.h>
41#endif
Simon Glass1938f4a2013-03-11 06:49:53 +000042#include <asm/io.h>
43#include <asm/sections.h>
Simon Glassab7cd622014-07-23 06:55:04 -060044#include <dm/root.h>
Simon Glass056285f2017-03-31 08:40:35 -060045#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000046
47/*
48 * Pointer to initial global data area
49 *
50 * Here we initialize it if needed.
51 */
52#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
53#undef XTRN_DECLARE_GLOBAL_DATA_PTR
54#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
Mario Six16ef1472018-01-15 11:10:02 +010055DECLARE_GLOBAL_DATA_PTR = (gd_t *)(CONFIG_SYS_INIT_GD_ADDR);
Simon Glass1938f4a2013-03-11 06:49:53 +000056#else
57DECLARE_GLOBAL_DATA_PTR;
58#endif
59
60/*
Simon Glass4c509342015-04-28 20:25:03 -060061 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000062 * refactored to a single function, something like:
63 *
64 * void led_set_state(enum led_colour_t colour, int on);
65 */
66/************************************************************************
67 * Coloured LED functionality
68 ************************************************************************
69 * May be supplied by boards if desired
70 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020071__weak void coloured_LED_init(void) {}
72__weak void red_led_on(void) {}
73__weak void red_led_off(void) {}
74__weak void green_led_on(void) {}
75__weak void green_led_off(void) {}
76__weak void yellow_led_on(void) {}
77__weak void yellow_led_off(void) {}
78__weak void blue_led_on(void) {}
79__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000080
81/*
82 * Why is gd allocated a register? Prior to reloc it might be better to
83 * just pass it around to each function in this file?
84 *
85 * After reloc one could argue that it is hardly used and doesn't need
86 * to be in a register. Or if it is it should perhaps hold pointers to all
87 * global data for all modules, so that post-reloc we can avoid the massive
88 * literal pool we get on ARM. Or perhaps just encourage each module to use
89 * a structure...
90 */
91
Sonic Zhangd54d7eb2014-07-17 19:01:34 +080092#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +000093static int init_func_watchdog_init(void)
94{
Tom Riniea3310e2017-03-14 11:08:10 -040095# if defined(CONFIG_HW_WATCHDOG) && \
96 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Prasanthi Chellakumar1473f6a2018-10-09 11:46:40 -070097 defined(CONFIG_SH) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +020098 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +010099 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800100 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000101 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200102# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000103 WATCHDOG_RESET();
104
105 return 0;
106}
107
108int init_func_watchdog_reset(void)
109{
110 WATCHDOG_RESET();
111
112 return 0;
113}
114#endif /* CONFIG_WATCHDOG */
115
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200116__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000117{
118 /* please define platform specific board_add_ram_info() */
119}
120
Simon Glass1938f4a2013-03-11 06:49:53 +0000121static int init_baud_rate(void)
122{
Simon Glassbfebc8c2017-08-03 12:22:13 -0600123 gd->baudrate = env_get_ulong("baudrate", 10, CONFIG_BAUDRATE);
Simon Glass1938f4a2013-03-11 06:49:53 +0000124 return 0;
125}
126
127static int display_text_info(void)
128{
Ben Stoltz9b217492015-07-31 09:31:37 -0600129#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100130 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000131
Simon Glass632efa72013-03-11 07:06:48 +0000132 bss_start = (ulong)&__bss_start;
133 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100134
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800135#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100136 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800137#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100138 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800139#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100140
141 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
Mario Six16ef1472018-01-15 11:10:02 +0100142 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000143#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000144
Simon Glass1938f4a2013-03-11 06:49:53 +0000145 return 0;
146}
147
Mario Six23471ae2018-08-06 10:23:34 +0200148#ifdef CONFIG_SYSRESET
149static int print_resetinfo(void)
150{
151 struct udevice *dev;
152 char status[256];
153 int ret;
154
155 ret = uclass_first_device_err(UCLASS_SYSRESET, &dev);
156 if (ret) {
157 debug("%s: No sysreset device found (error: %d)\n",
158 __func__, ret);
159 /* Not all boards have sysreset drivers available during early
160 * boot, so don't fail if one can't be found.
161 */
162 return 0;
163 }
164
165 if (!sysreset_get_status(dev, status, sizeof(status)))
166 printf("%s", status);
167
168 return 0;
169}
170#endif
171
Mario Six5d6c61a2018-08-06 10:23:41 +0200172#if defined(CONFIG_DISPLAY_CPUINFO) && CONFIG_IS_ENABLED(CPU)
173static int print_cpuinfo(void)
174{
175 struct udevice *dev;
176 char desc[512];
177 int ret;
178
179 ret = uclass_first_device_err(UCLASS_CPU, &dev);
180 if (ret) {
181 debug("%s: Could not get CPU device (err = %d)\n",
182 __func__, ret);
183 return ret;
184 }
185
186 ret = cpu_get_desc(dev, desc, sizeof(desc));
187 if (ret) {
188 debug("%s: Could not get CPU description (err = %d)\n",
189 dev->name, ret);
190 return ret;
191 }
192
Bin Mengecfe6632018-10-10 22:06:55 -0700193 printf("CPU: %s\n", desc);
Mario Six5d6c61a2018-08-06 10:23:41 +0200194
195 return 0;
196}
197#endif
198
Simon Glass1938f4a2013-03-11 06:49:53 +0000199static int announce_dram_init(void)
200{
201 puts("DRAM: ");
202 return 0;
203}
204
205static int show_dram_config(void)
206{
York Sunfa39ffe2014-05-02 17:28:05 -0700207 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000208
209#ifdef CONFIG_NR_DRAM_BANKS
210 int i;
211
212 debug("\nRAM Configuration:\n");
213 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
214 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700215 debug("Bank #%d: %llx ", i,
216 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000217#ifdef DEBUG
218 print_size(gd->bd->bi_dram[i].size, "\n");
219#endif
220 }
221 debug("\nDRAM: ");
222#else
223 size = gd->ram_size;
224#endif
225
Simon Glasse4fef6c2013-03-11 14:30:42 +0000226 print_size(size, "");
227 board_add_ram_info(0);
228 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000229
230 return 0;
231}
232
Simon Glass76b00ac2017-03-31 08:40:32 -0600233__weak int dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000234{
235#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
236 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
237 gd->bd->bi_dram[0].size = get_effective_memsize();
238#endif
Simon Glass76b00ac2017-03-31 08:40:32 -0600239
240 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000241}
242
Simon Glass69153982017-05-12 21:09:56 -0600243#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000244static int init_func_i2c(void)
245{
246 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200247#ifdef CONFIG_SYS_I2C
248 i2c_init_all();
249#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000250 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200251#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000252 puts("ready\n");
253 return 0;
254}
255#endif
256
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530257#if defined(CONFIG_VID)
258__weak int init_func_vid(void)
259{
260 return 0;
261}
262#endif
263
Simon Glass1938f4a2013-03-11 06:49:53 +0000264static int setup_mon_len(void)
265{
Michal Simeke945f6d2014-05-08 16:08:44 +0200266#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100267 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600268#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000269 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400270#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800271 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Rick Chen068feb92017-12-26 13:55:58 +0800272#elif defined(CONFIG_NDS32) || defined(CONFIG_SH) || defined(CONFIG_RISCV)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800273 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600274#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000275 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
276 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000277#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000278 return 0;
279}
280
Simon Glassb0edea32018-11-15 18:44:09 -0700281static int setup_spl_handoff(void)
282{
283#if CONFIG_IS_ENABLED(HANDOFF)
284 gd->spl_handoff = bloblist_find(BLOBLISTT_SPL_HANDOFF,
285 sizeof(struct spl_handoff));
286 debug("Found SPL hand-off info %p\n", gd->spl_handoff);
287#endif
288
289 return 0;
290}
291
Simon Glass1938f4a2013-03-11 06:49:53 +0000292__weak int arch_cpu_init(void)
293{
294 return 0;
295}
296
Paul Burton8ebf5062016-09-21 11:18:46 +0100297__weak int mach_cpu_init(void)
298{
299 return 0;
300}
301
Simon Glass1938f4a2013-03-11 06:49:53 +0000302/* Get the top of usable RAM */
303__weak ulong board_get_usable_ram_top(ulong total_size)
304{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700305#ifdef CONFIG_SYS_SDRAM_BASE
306 /*
Simon Glass4c509342015-04-28 20:25:03 -0600307 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700308 * 32-bit address space. If so, clip the usable RAM so it doesn't.
309 */
310 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
311 /*
312 * Will wrap back to top of 32-bit space when reservations
313 * are made.
314 */
315 return 0;
316#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000317 return gd->ram_top;
318}
319
320static int setup_dest_addr(void)
321{
322 debug("Monitor len: %08lX\n", gd->mon_len);
323 /*
324 * Ram is setup, size stored in gd !!
325 */
326 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800327#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000328 /*
329 * Subtract specified amount of memory to hide so that it won't
330 * get "touched" at all by U-Boot. By fixing up gd->ram_size
331 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800332 * memory size and won't touch it either. This should work
333 * for arch/ppc and arch/powerpc. Only Linux board ports in
334 * arch/powerpc with bootwrapper support, that recalculate the
335 * memory size from the SDRAM controller setup will have to
336 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000337 */
York Sun36cc0de2017-03-06 09:02:28 -0800338 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
339#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000340#ifdef CONFIG_SYS_SDRAM_BASE
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530341 gd->ram_base = CONFIG_SYS_SDRAM_BASE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000342#endif
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +0530343 gd->ram_top = gd->ram_base + get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000344 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000345 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000346 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700347#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000348 /*
349 * We need to make sure the location we intend to put secondary core
350 * boot code is reserved and not used by any part of u-boot
351 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000352 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
353 gd->relocaddr = determine_mp_bootpg(NULL);
354 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000355 }
356#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000357 return 0;
358}
359
Simon Glass1938f4a2013-03-11 06:49:53 +0000360#ifdef CONFIG_PRAM
361/* reserve protected RAM */
362static int reserve_pram(void)
363{
364 ulong reg;
365
Simon Glassbfebc8c2017-08-03 12:22:13 -0600366 reg = env_get_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000367 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000368 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000369 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000370 return 0;
371}
372#endif /* CONFIG_PRAM */
373
374/* Round memory pointer down to next 4 kB limit */
375static int reserve_round_4k(void)
376{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000377 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000378 return 0;
379}
380
Simon Glass80d4bcd2017-03-31 08:40:29 -0600381#ifdef CONFIG_ARM
Siva Durga Prasad Paladugu60873f72017-07-13 19:01:08 +0530382__weak int reserve_mmu(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000383{
Trevor Woerner10015022019-05-03 09:41:00 -0400384#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
Simon Glass1938f4a2013-03-11 06:49:53 +0000385 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800386 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000387 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000388
389 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000390 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000391
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000392 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000393 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
394 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700395
396#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
397 /*
398 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
399 * with location within secure ram.
400 */
401 gd->arch.tlb_allocated = gd->arch.tlb_addr;
402#endif
Simon Glass80d4bcd2017-03-31 08:40:29 -0600403#endif
York Sun50e93b92016-06-24 16:46:19 -0700404
Simon Glass1938f4a2013-03-11 06:49:53 +0000405 return 0;
406}
407#endif
408
Simon Glass5a541942016-01-18 19:52:21 -0700409static int reserve_video(void)
410{
Simon Glass0f079eb2017-03-31 08:40:30 -0600411#ifdef CONFIG_DM_VIDEO
Simon Glass5a541942016-01-18 19:52:21 -0700412 ulong addr;
413 int ret;
414
415 addr = gd->relocaddr;
416 ret = video_reserve(&addr);
417 if (ret)
418 return ret;
419 gd->relocaddr = addr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600420#elif defined(CONFIG_LCD)
Simon Glass5a541942016-01-18 19:52:21 -0700421# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000422 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700423# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000424 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000425 gd->relocaddr = lcd_setmem(gd->relocaddr);
426 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700427# endif /* CONFIG_FB_ADDR */
Simon Glass0f079eb2017-03-31 08:40:30 -0600428#elif defined(CONFIG_VIDEO) && \
Heiko Schocher5b8e76c2017-06-07 17:33:09 +0200429 (!defined(CONFIG_PPC)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700430 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400431 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700432 /* reserve memory for video display (always full pages) */
433 gd->relocaddr = video_setmem(gd->relocaddr);
434 gd->fb_base = gd->relocaddr;
Simon Glass0f079eb2017-03-31 08:40:30 -0600435#endif
Simon Glass8703ef32016-01-18 19:52:20 -0700436
437 return 0;
438}
Simon Glass8703ef32016-01-18 19:52:20 -0700439
Simon Glass71c52db2013-06-11 11:14:42 -0700440static int reserve_trace(void)
441{
442#ifdef CONFIG_TRACE
443 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
444 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
Heinrich Schuchardt7ea33572019-06-14 21:52:22 +0200445 debug("Reserving %luk for trace data at: %08lx\n",
446 (unsigned long)CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
Simon Glass71c52db2013-06-11 11:14:42 -0700447#endif
448
449 return 0;
450}
451
Simon Glass1938f4a2013-03-11 06:49:53 +0000452static int reserve_uboot(void)
453{
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300454 if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
455 /*
456 * reserve memory for U-Boot code, data & bss
457 * round down to next 4 kB limit
458 */
459 gd->relocaddr -= gd->mon_len;
460 gd->relocaddr &= ~(4096 - 1);
461 #if defined(CONFIG_E500) || defined(CONFIG_MIPS)
462 /* round down to next 64 kB limit so that IVPR stays aligned */
463 gd->relocaddr &= ~(65536 - 1);
464 #endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000465
Alexey Brodkinff2b2ba2018-05-25 16:08:14 +0300466 debug("Reserving %ldk for U-Boot at: %08lx\n",
467 gd->mon_len >> 10, gd->relocaddr);
468 }
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000469
470 gd->start_addr_sp = gd->relocaddr;
471
Simon Glass1938f4a2013-03-11 06:49:53 +0000472 return 0;
473}
474
475/* reserve memory for malloc() area */
476static int reserve_malloc(void)
477{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000478 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000479 debug("Reserving %dk for malloc() at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100480 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000481 return 0;
482}
483
484/* (permanently) allocate a Board Info struct */
485static int reserve_board(void)
486{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800487 if (!gd->bd) {
488 gd->start_addr_sp -= sizeof(bd_t);
489 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
490 memset(gd->bd, '\0', sizeof(bd_t));
491 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
492 sizeof(bd_t), gd->start_addr_sp);
493 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000494 return 0;
495}
496
497static int setup_machine(void)
498{
499#ifdef CONFIG_MACH_TYPE
500 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
501#endif
502 return 0;
503}
504
505static int reserve_global_data(void)
506{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000507 gd->start_addr_sp -= sizeof(gd_t);
508 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000509 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Mario Six16ef1472018-01-15 11:10:02 +0100510 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000511 return 0;
512}
513
514static int reserve_fdt(void)
515{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100516#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000517 /*
Simon Glass4c509342015-04-28 20:25:03 -0600518 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000519 * must relocate it. If it is embedded in the data section, then it
520 * will be relocated with other data.
521 */
522 if (gd->fdt_blob) {
523 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
524
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000525 gd->start_addr_sp -= gd->fdt_size;
526 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000527 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000528 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000529 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100530#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000531
532 return 0;
533}
534
Simon Glass25e7dc62017-05-22 05:05:30 -0600535static int reserve_bootstage(void)
536{
537#ifdef CONFIG_BOOTSTAGE
538 int size = bootstage_get_size();
539
540 gd->start_addr_sp -= size;
541 gd->new_bootstage = map_sysmem(gd->start_addr_sp, size);
542 debug("Reserving %#x Bytes for bootstage at: %08lx\n", size,
543 gd->start_addr_sp);
544#endif
545
546 return 0;
547}
548
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100549__weak int arch_reserve_stacks(void)
Andreas Bießmann68145d42015-02-06 23:06:45 +0100550{
551 return 0;
552}
553
Simon Glass1938f4a2013-03-11 06:49:53 +0000554static int reserve_stacks(void)
555{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100556 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000557 gd->start_addr_sp -= 16;
558 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000559
560 /*
Simon Glass4c509342015-04-28 20:25:03 -0600561 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100562 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000563 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100564 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000565}
566
Simon Glassf0293d32018-11-15 18:43:52 -0700567static int reserve_bloblist(void)
568{
569#ifdef CONFIG_BLOBLIST
570 gd->start_addr_sp -= CONFIG_BLOBLIST_SIZE;
571 gd->new_bloblist = map_sysmem(gd->start_addr_sp, CONFIG_BLOBLIST_SIZE);
572#endif
573
574 return 0;
575}
576
Simon Glass1938f4a2013-03-11 06:49:53 +0000577static int display_new_sp(void)
578{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000579 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000580
581 return 0;
582}
583
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200584#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
585 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000586static int setup_board_part1(void)
587{
588 bd_t *bd = gd->bd;
589
590 /*
591 * Save local variables to board info struct
592 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000593 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
594 bd->bi_memsize = gd->ram_size; /* size in bytes */
595
596#ifdef CONFIG_SYS_SRAM_BASE
597 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
598 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
599#endif
600
Heiko Schocher50258972017-06-07 17:33:11 +0200601#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000602 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
603#endif
Heiko Schocher064b55c2017-06-14 05:49:40 +0200604#if defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000605 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
606#endif
607#if defined(CONFIG_MPC83xx)
608 bd->bi_immrbar = CONFIG_SYS_IMMR;
609#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000610
611 return 0;
612}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100613#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000614
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100615#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000616static int setup_board_part2(void)
617{
618 bd_t *bd = gd->bd;
619
620 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
621 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
622#if defined(CONFIG_CPM2)
623 bd->bi_cpmfreq = gd->arch.cpm_clk;
624 bd->bi_brgfreq = gd->arch.brg_clk;
625 bd->bi_sccfreq = gd->arch.scc_clk;
626 bd->bi_vco = gd->arch.vco_out;
627#endif /* CONFIG_CPM2 */
Alison Wang1313db42015-02-12 18:33:15 +0800628#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
629 bd->bi_pcifreq = gd->pci_clk;
630#endif
631#if defined(CONFIG_EXTRA_CLOCK)
632 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
633 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
634 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
635#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000636
637 return 0;
638}
639#endif
640
Simon Glass1938f4a2013-03-11 06:49:53 +0000641#ifdef CONFIG_POST
642static int init_post(void)
643{
644 post_bootmode_init();
645 post_run(NULL, POST_ROM | post_bootmode_get(0));
646
647 return 0;
648}
649#endif
650
Simon Glass1938f4a2013-03-11 06:49:53 +0000651static int reloc_fdt(void)
652{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100653#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600654 if (gd->flags & GD_FLG_SKIP_RELOC)
655 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000656 if (gd->new_fdt) {
657 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
658 gd->fdt_blob = gd->new_fdt;
659 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100660#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000661
662 return 0;
663}
664
Simon Glass25e7dc62017-05-22 05:05:30 -0600665static int reloc_bootstage(void)
666{
667#ifdef CONFIG_BOOTSTAGE
668 if (gd->flags & GD_FLG_SKIP_RELOC)
669 return 0;
670 if (gd->new_bootstage) {
671 int size = bootstage_get_size();
672
673 debug("Copying bootstage from %p to %p, size %x\n",
674 gd->bootstage, gd->new_bootstage, size);
675 memcpy(gd->new_bootstage, gd->bootstage, size);
676 gd->bootstage = gd->new_bootstage;
677 }
678#endif
679
680 return 0;
681}
682
Simon Glassf0293d32018-11-15 18:43:52 -0700683static int reloc_bloblist(void)
684{
685#ifdef CONFIG_BLOBLIST
686 if (gd->flags & GD_FLG_SKIP_RELOC)
687 return 0;
688 if (gd->new_bloblist) {
689 int size = CONFIG_BLOBLIST_SIZE;
690
691 debug("Copying bloblist from %p to %p, size %x\n",
692 gd->bloblist, gd->new_bloblist, size);
693 memcpy(gd->new_bloblist, gd->bloblist, size);
694 gd->bloblist = gd->new_bloblist;
695 }
696#endif
697
698 return 0;
699}
700
Simon Glass1938f4a2013-03-11 06:49:53 +0000701static int setup_reloc(void)
702{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600703 if (gd->flags & GD_FLG_SKIP_RELOC) {
704 debug("Skipping relocation due to flag\n");
705 return 0;
706 }
707
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800708#ifdef CONFIG_SYS_TEXT_BASE
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200709#ifdef ARM
710 gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
711#elif defined(CONFIG_M68K)
angelo@sysam.ite310b932015-02-12 01:40:17 +0100712 /*
713 * On all ColdFire arch cpu, monitor code starts always
714 * just after the default vector table location, so at 0x400
715 */
716 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
Simon Glass001d1882019-04-08 13:20:41 -0600717#elif !defined(CONFIG_SANDBOX)
Lothar Waßmann53207bf2017-06-08 10:18:25 +0200718 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100719#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800720#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000721 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
722
723 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000724 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000725 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
726 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000727
728 return 0;
729}
730
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100731#ifdef CONFIG_OF_BOARD_FIXUP
732static int fix_fdt(void)
733{
734 return board_fix_fdt((void *)gd->fdt_blob);
735}
736#endif
737
Simon Glass1938f4a2013-03-11 06:49:53 +0000738/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700739#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
740 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000741
742static int jump_to_copy(void)
743{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600744 if (gd->flags & GD_FLG_SKIP_RELOC)
745 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000746 /*
747 * x86 is special, but in a nice way. It uses a trampoline which
748 * enables the dcache if possible.
749 *
750 * For now, other archs use relocate_code(), which is implemented
751 * similarly for all archs. When we do generic relocation, hopefully
752 * we can make all archs enable the dcache prior to relocation.
753 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300754#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000755 /*
756 * SDRAM and console are now initialised. The final stack can now
757 * be setup in SDRAM. Code execution will continue in Flash, but
758 * with the stack in SDRAM and Global Data in temporary memory
759 * (CPU cache)
760 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600761 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000762 board_init_f_r_trampoline(gd->start_addr_sp);
763#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000764 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000765#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000766
767 return 0;
768}
769#endif
770
771/* Record the board_init_f() bootstage (after arch_cpu_init()) */
Simon Glassb383d6c2017-05-22 05:05:25 -0600772static int initf_bootstage(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000773{
Simon Glassbaa7d342017-06-07 10:28:46 -0600774 bool from_spl = IS_ENABLED(CONFIG_SPL_BOOTSTAGE) &&
775 IS_ENABLED(CONFIG_BOOTSTAGE_STASH);
Simon Glassb383d6c2017-05-22 05:05:25 -0600776 int ret;
777
Simon Glass824bb1b2017-05-22 05:05:35 -0600778 ret = bootstage_init(!from_spl);
Simon Glassb383d6c2017-05-22 05:05:25 -0600779 if (ret)
780 return ret;
Simon Glass824bb1b2017-05-22 05:05:35 -0600781 if (from_spl) {
782 const void *stash = map_sysmem(CONFIG_BOOTSTAGE_STASH_ADDR,
783 CONFIG_BOOTSTAGE_STASH_SIZE);
784
785 ret = bootstage_unstash(stash, CONFIG_BOOTSTAGE_STASH_SIZE);
786 if (ret && ret != -ENOENT) {
787 debug("Failed to unstash bootstage: err=%d\n", ret);
788 return ret;
789 }
790 }
Simon Glassb383d6c2017-05-22 05:05:25 -0600791
Simon Glass1938f4a2013-03-11 06:49:53 +0000792 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
793
794 return 0;
795}
796
Simon Glass9854a872015-11-08 23:47:48 -0700797static int initf_console_record(void)
798{
Andy Yanf1896c42017-07-24 17:43:34 +0800799#if defined(CONFIG_CONSOLE_RECORD) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass9854a872015-11-08 23:47:48 -0700800 return console_record_init();
801#else
802 return 0;
803#endif
804}
805
Simon Glassab7cd622014-07-23 06:55:04 -0600806static int initf_dm(void)
807{
Andy Yanf1896c42017-07-24 17:43:34 +0800808#if defined(CONFIG_DM) && CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassab7cd622014-07-23 06:55:04 -0600809 int ret;
810
Simon Glass63c5bf42017-05-22 05:05:32 -0600811 bootstage_start(BOOTSTATE_ID_ACCUM_DM_F, "dm_f");
Simon Glassab7cd622014-07-23 06:55:04 -0600812 ret = dm_init_and_scan(true);
Simon Glass63c5bf42017-05-22 05:05:32 -0600813 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_F);
Simon Glassab7cd622014-07-23 06:55:04 -0600814 if (ret)
815 return ret;
816#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700817#ifdef CONFIG_TIMER_EARLY
818 ret = dm_timer_init();
819 if (ret)
820 return ret;
821#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600822
823 return 0;
824}
825
Simon Glass146251f2015-01-19 22:16:12 -0700826/* Architecture-specific memory reservation */
827__weak int reserve_arch(void)
828{
829 return 0;
830}
831
Simon Glassd4c671c2015-03-05 12:25:16 -0700832__weak int arch_cpu_init_dm(void)
833{
834 return 0;
835}
836
Simon Glass4acff452017-01-16 07:03:50 -0700837static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000838 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700839#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700840 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700841#endif
Heinrich Schuchardt7ef8e9b2019-06-02 00:53:24 +0200842#ifdef CONFIG_TRACE_EARLY
Simon Glass71c52db2013-06-11 11:14:42 -0700843 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800844#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700845 initf_malloc,
Simon Glassaf1bc0c2017-12-04 13:48:28 -0700846 log_init,
Simon Glass5ac44a52017-05-22 05:05:31 -0600847 initf_bootstage, /* uses its own timer, so does not need DM */
Simon Glassf0293d32018-11-15 18:43:52 -0700848#ifdef CONFIG_BLOBLIST
849 bloblist_init,
850#endif
Simon Glassb0edea32018-11-15 18:44:09 -0700851 setup_spl_handoff,
Simon Glass9854a872015-11-08 23:47:48 -0700852 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600853#if defined(CONFIG_HAVE_FSP)
854 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700855#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000856 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100857 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600858 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700859 arch_cpu_init_dm,
Simon Glass1938f4a2013-03-11 06:49:53 +0000860#if defined(CONFIG_BOARD_EARLY_INIT_F)
861 board_early_init_f,
862#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600863#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600864 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000865 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600866#endif
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200867#if !defined(CONFIG_M68K)
Simon Glass1938f4a2013-03-11 06:49:53 +0000868 timer_init, /* initialize timer */
Angelo Dureghello0ce45282017-05-10 23:58:06 +0200869#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000870#if defined(CONFIG_BOARD_POSTCLK_INIT)
871 board_postclk_init,
872#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000873 env_init, /* initialize environment */
874 init_baud_rate, /* initialze baudrate settings */
875 serial_init, /* serial communications setup */
876 console_init_f, /* stage 1 init of console */
877 display_options, /* say that we are here */
878 display_text_info, /* show debugging info if required */
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200879#if defined(CONFIG_PPC) || defined(CONFIG_SH) || defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000880 checkcpu,
881#endif
Mario Six23471ae2018-08-06 10:23:34 +0200882#if defined(CONFIG_SYSRESET)
883 print_resetinfo,
884#endif
Simon Glasscc664002017-01-23 13:31:25 -0700885#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000886 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700887#endif
Cooper Jr., Franklinaf9e6ad2017-06-16 17:25:12 -0500888#if defined(CONFIG_DTB_RESELECT)
889 embedded_dtb_select,
890#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000891#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900892 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000893#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000894 INIT_FUNC_WATCHDOG_INIT
895#if defined(CONFIG_MISC_INIT_F)
896 misc_init_f,
897#endif
898 INIT_FUNC_WATCHDOG_RESET
Simon Glass69153982017-05-12 21:09:56 -0600899#if defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000900 init_func_i2c,
901#endif
Rajesh Bhagat1fab98f2018-01-17 16:13:08 +0530902#if defined(CONFIG_VID) && !defined(CONFIG_SPL)
903 init_func_vid,
904#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000905 announce_dram_init,
Simon Glass1938f4a2013-03-11 06:49:53 +0000906 dram_init, /* configure available RAM banks */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000907#ifdef CONFIG_POST
908 post_init_f,
909#endif
910 INIT_FUNC_WATCHDOG_RESET
911#if defined(CONFIG_SYS_DRAM_TEST)
912 testdram,
913#endif /* CONFIG_SYS_DRAM_TEST */
914 INIT_FUNC_WATCHDOG_RESET
915
Simon Glass1938f4a2013-03-11 06:49:53 +0000916#ifdef CONFIG_POST
917 init_post,
918#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000919 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000920 /*
921 * Now that we have DRAM mapped and working, we can
922 * relocate the code and continue running from DRAM.
923 *
924 * Reserve memory at end of RAM for (top down in that order):
925 * - area that won't get touched by U-Boot and Linux (optional)
926 * - kernel log buffer
927 * - protected RAM
928 * - LCD framebuffer
929 * - monitor code
930 * - board info struct
931 */
932 setup_dest_addr,
Simon Glass1938f4a2013-03-11 06:49:53 +0000933#ifdef CONFIG_PRAM
934 reserve_pram,
935#endif
936 reserve_round_4k,
Simon Glass80d4bcd2017-03-31 08:40:29 -0600937#ifdef CONFIG_ARM
Simon Glass1938f4a2013-03-11 06:49:53 +0000938 reserve_mmu,
939#endif
Simon Glass5a541942016-01-18 19:52:21 -0700940 reserve_video,
Simon Glass8703ef32016-01-18 19:52:20 -0700941 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000942 reserve_uboot,
943 reserve_malloc,
944 reserve_board,
Simon Glass1938f4a2013-03-11 06:49:53 +0000945 setup_machine,
946 reserve_global_data,
947 reserve_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600948 reserve_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700949 reserve_bloblist,
Simon Glass146251f2015-01-19 22:16:12 -0700950 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000951 reserve_stacks,
Simon Glass76b00ac2017-03-31 08:40:32 -0600952 dram_init_banksize,
Simon Glass1938f4a2013-03-11 06:49:53 +0000953 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200954#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
955 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000956 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100957#endif
958#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000959 INIT_FUNC_WATCHDOG_RESET
960 setup_board_part2,
961#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000962 display_new_sp,
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100963#ifdef CONFIG_OF_BOARD_FIXUP
964 fix_fdt,
965#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000966 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000967 reloc_fdt,
Simon Glass25e7dc62017-05-22 05:05:30 -0600968 reloc_bootstage,
Simon Glassf0293d32018-11-15 18:43:52 -0700969 reloc_bloblist,
Simon Glass1938f4a2013-03-11 06:49:53 +0000970 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300971#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700972 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700973 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700974 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700975#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300976#if defined(CONFIG_XTENSA)
977 clear_bss,
978#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700979#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
980 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000981 jump_to_copy,
982#endif
983 NULL,
984};
985
986void board_init_f(ulong boot_flags)
987{
Simon Glass1938f4a2013-03-11 06:49:53 +0000988 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400989 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000990
991 if (initcall_run_list(init_sequence_f))
992 hang();
993
Ben Stoltz9b217492015-07-31 09:31:37 -0600994#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Alexey Brodkin264d2982015-12-16 19:24:10 +0300995 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64) && \
996 !defined(CONFIG_ARC)
Simon Glass1938f4a2013-03-11 06:49:53 +0000997 /* NOTREACHED - jump_to_copy() does not return */
998 hang();
999#endif
1000}
1001
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001002#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001003/*
1004 * For now this code is only used on x86.
1005 *
1006 * init_sequence_f_r is the list of init functions which are run when
1007 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1008 * The following limitations must be considered when implementing an
1009 * '_f_r' function:
1010 * - 'static' variables are read-only
1011 * - Global Data (gd->xxx) is read/write
1012 *
1013 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1014 * supported). It _should_, if possible, copy global data to RAM and
1015 * initialise the CPU caches (to speed up the relocation process)
1016 *
1017 * NOTE: At present only x86 uses this route, but it is intended that
1018 * all archs will move to this when generic relocation is implemented.
1019 */
Simon Glass4acff452017-01-16 07:03:50 -07001020static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001021#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001022 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001023#endif
Simon Glass48a33802013-03-05 14:39:52 +00001024
1025 NULL,
1026};
1027
1028void board_init_f_r(void)
1029{
1030 if (initcall_run_list(init_sequence_f_r))
1031 hang();
1032
1033 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001034 * The pre-relocation drivers may be using memory that has now gone
1035 * away. Mark serial as unavailable - this will fall back to the debug
1036 * UART if available.
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001037 *
1038 * Do the same with log drivers since the memory may not be available.
Simon Glasse4d6ab02016-03-11 22:06:51 -07001039 */
Simon Glassaf1bc0c2017-12-04 13:48:28 -07001040 gd->flags &= ~(GD_FLG_SERIAL_READY | GD_FLG_LOG_READY);
Simon Glass5ee94b42017-09-05 19:49:45 -06001041#ifdef CONFIG_TIMER
1042 gd->timer = NULL;
1043#endif
Simon Glasse4d6ab02016-03-11 22:06:51 -07001044
1045 /*
Simon Glass48a33802013-03-05 14:39:52 +00001046 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1047 * Transfer execution from Flash to RAM by calculating the address
1048 * of the in-RAM copy of board_init_r() and calling it
1049 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001050 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001051
1052 /* NOTREACHED - board_init_r() does not return */
1053 hang();
1054}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001055#endif /* CONFIG_X86 */