blob: d9307f02e06cbbce9adc687484d67a48ec645817 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassdb397fa2013-03-11 14:30:37 +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 Glassdb397fa2013-03-11 14:30:37 +000010 */
11
12#include <common.h>
Simon Glassac53a5c2017-05-17 08:22:40 -060013#include <api.h>
Simon Glass1ea97892020-05-10 11:40:00 -060014#include <bootstage.h>
Simon Glass63334482019-11-14 12:57:39 -070015#include <cpu_func.h>
Simon Glass6ba03922019-12-28 10:44:46 -070016#include <exports.h>
Simon Glass8e201882020-05-10 11:39:54 -060017#include <flash.h>
Simon Glassf11478f2019-12-28 10:45:07 -070018#include <hang.h>
Simon Glass85f13782019-12-28 10:45:03 -070019#include <image.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070020#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060021#include <log.h>
Simon Glass0c364412019-12-28 10:44:48 -070022#include <net.h>
Simon Glass274e0b02020-05-10 11:39:56 -060023#include <asm/cache.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070024#include <u-boot/crc.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000025/* TODO: can we just include all these headers whether needed or not? */
26#if defined(CONFIG_CMD_BEDBUG)
27#include <bedbug/type.h>
28#endif
Simon Glassdd7fb9b2019-12-06 21:41:34 -070029#include <binman.h>
Tom Rini23415e52015-12-07 08:23:29 -050030#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070031#include <console.h>
Simon Glasseea87102014-02-26 15:59:20 -070032#include <dm.h>
Simon Glass8fe40932019-08-01 09:46:44 -060033#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060034#include <env_internal.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000035#include <fdtdec.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000036#include <ide.h>
Simon Glassa5037e22019-12-28 10:44:39 -070037#include <init.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000038#include <initcall.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000039#if defined(CONFIG_CMD_KGDB)
40#include <kgdb.h>
41#endif
Simon Glass9b61c7c2019-11-14 12:57:41 -070042#include <irq_func.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000043#include <malloc.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050044#include <mapmem.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000045#ifdef CONFIG_BITBANGMII
46#include <miiphy.h>
47#endif
Simon Glassdb397fa2013-03-11 14:30:37 +000048#include <mmc.h>
49#include <nand.h>
Simon Glass46e09772017-05-18 20:08:56 -060050#include <of_live.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000051#include <onenand_uboot.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000052#include <scsi.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000053#include <serial.h>
Simon Glasse7872cb2019-11-14 12:57:11 -070054#include <status_led.h>
Simon Glassdb397fa2013-03-11 14:30:37 +000055#include <stdio_dev.h>
Simon Glass8e4f80f2016-02-24 09:14:50 -070056#include <timer.h>
Simon Glass209a1a62013-06-11 11:14:42 -070057#include <trace.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000058#include <watchdog.h>
59#ifdef CONFIG_ADDR_MAP
60#include <asm/mmu.h>
61#endif
Simon Glassdb397fa2013-03-11 14:30:37 +000062#include <asm/sections.h>
Simon Glasseea87102014-02-26 15:59:20 -070063#include <dm/root.h>
Simon Glass5af29bd2013-03-14 07:20:12 +000064#include <linux/compiler.h>
Simon Glasseea87102014-02-26 15:59:20 -070065#include <linux/err.h>
Alexander Graf0bd425a2016-03-04 01:10:01 +010066#include <efi_loader.h>
Stefan Roese502acb02019-04-11 15:58:44 +020067#include <wdt.h>
Heiko Schocher58e4c382019-07-17 06:59:51 +020068#if defined(CONFIG_GPIO_HOG)
Heiko Schocher39cb3402019-06-12 06:11:46 +020069#include <asm/gpio.h>
70#endif
Simon Glassdb397fa2013-03-11 14:30:37 +000071
72DECLARE_GLOBAL_DATA_PTR;
73
74ulong monitor_flash_len;
75
Jeroen Hofstee45846052014-10-08 22:57:22 +020076__weak int board_flash_wp_on(void)
Simon Glass5af29bd2013-03-14 07:20:12 +000077{
78 /*
79 * Most flashes can't be detected when write protection is enabled,
80 * so provide a way to let U-Boot gracefully ignore write protected
81 * devices.
82 */
83 return 0;
84}
85
Jeroen Hofstee45846052014-10-08 22:57:22 +020086__weak void cpu_secondary_init_r(void)
Simon Glass5af29bd2013-03-14 07:20:12 +000087{
88}
89
Simon Glass5af29bd2013-03-14 07:20:12 +000090static int initr_secondary_cpu(void)
91{
92 /*
93 * after non-volatile devices & environment is setup and cpu code have
94 * another round to deal with any initialization that might require
95 * full access to the environment or loading of some image (firmware)
96 * from a non-volatile device
97 */
98 /* TODO: maybe define this for all archs? */
99 cpu_secondary_init_r();
100
101 return 0;
102}
Simon Glassdb397fa2013-03-11 14:30:37 +0000103
Simon Glass209a1a62013-06-11 11:14:42 -0700104static int initr_trace(void)
105{
106#ifdef CONFIG_TRACE
107 trace_init(gd->trace_buff, CONFIG_TRACE_BUFFER_SIZE);
108#endif
109
110 return 0;
111}
112
Simon Glassdb397fa2013-03-11 14:30:37 +0000113static int initr_reloc(void)
114{
Simon Glass94890462014-11-10 17:16:43 -0700115 /* tell others: relocation done */
116 gd->flags |= GD_FLG_RELOC | GD_FLG_FULL_MALLOC_INIT;
Simon Glassdb397fa2013-03-11 14:30:37 +0000117
118 return 0;
119}
120
121#ifdef CONFIG_ARM
122/*
123 * Some of these functions are needed purely because the functions they
124 * call return void. If we change them to return 0, these stubs can go away.
125 */
126static int initr_caches(void)
127{
128 /* Enable caches */
129 enable_caches();
130 return 0;
131}
132#endif
133
Simon Glass5af29bd2013-03-14 07:20:12 +0000134__weak int fixup_cpu(void)
135{
136 return 0;
137}
138
Simon Glassdb397fa2013-03-11 14:30:37 +0000139static int initr_reloc_global_data(void)
140{
Albert ARIBAUD6e294722014-02-22 17:53:43 +0100141#ifdef __ARM__
142 monitor_flash_len = _end - __image_copy_start;
Rick Chen3301bfc2017-12-26 13:55:58 +0800143#elif defined(CONFIG_NDS32) || defined(CONFIG_RISCV)
Kun-Hua Huang89299e22015-08-24 14:52:35 +0800144 monitor_flash_len = (ulong)&_end - (ulong)&_start;
Thomas Choucce3e752014-08-22 11:36:47 +0800145#elif !defined(CONFIG_SANDBOX) && !defined(CONFIG_NIOS2)
Masahiro Yamadad1589242013-05-27 00:37:30 +0000146 monitor_flash_len = (ulong)&__init_end - gd->relocaddr;
Simon Glassdb397fa2013-03-11 14:30:37 +0000147#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000148#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
149 /*
150 * The gd->cpu pointer is set to an address in flash before relocation.
151 * We need to update it to point to the same CPU entry in RAM.
152 * TODO: why not just add gd->reloc_ofs?
153 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000154 gd->arch.cpu += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
Simon Glass5af29bd2013-03-14 07:20:12 +0000155
156 /*
157 * If we didn't know the cpu mask & # cores, we can save them of
158 * now rather than 'computing' them constantly
159 */
160 fixup_cpu();
161#endif
Tom Rinica63e712019-11-12 22:46:36 -0500162#ifdef CONFIG_SYS_RELOC_GD_ENV_ADDR
Simon Glass5af29bd2013-03-14 07:20:12 +0000163 /*
Simon Goldschmidt77a29332018-09-27 12:38:34 +0200164 * Relocate the early env_addr pointer unless we know it is not inside
165 * the binary. Some systems need this and for the rest, it doesn't hurt.
Simon Glass5af29bd2013-03-14 07:20:12 +0000166 */
Simon Goldschmidt77a29332018-09-27 12:38:34 +0200167 gd->env_addr += gd->reloc_off;
Simon Glass5af29bd2013-03-14 07:20:12 +0000168#endif
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100169#ifdef CONFIG_OF_EMBED
170 /*
Mario Sixee9b75b2018-01-15 11:10:30 +0100171 * The fdt_blob needs to be moved to new relocation address
172 * incase of FDT blob is embedded with in image
173 */
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100174 gd->fdt_blob += gd->reloc_off;
175#endif
Alexander Graf0bd425a2016-03-04 01:10:01 +0100176#ifdef CONFIG_EFI_LOADER
Heinrich Schuchardt3f2860f2019-04-10 00:32:07 +0200177 /*
178 * On the ARM architecture gd is mapped to a fixed register (r9 or x18).
179 * As this register may be overwritten by an EFI payload we save it here
180 * and restore it on every callback entered.
181 */
182 efi_save_gd();
183
Alexander Graf0bd425a2016-03-04 01:10:01 +0100184 efi_runtime_relocate(gd->relocaddr, NULL);
185#endif
Siva Durga Prasad Paladuguabffd312015-12-03 15:46:03 +0100186
Simon Glass5af29bd2013-03-14 07:20:12 +0000187 return 0;
Simon Glassdb397fa2013-03-11 14:30:37 +0000188}
189
190static int initr_serial(void)
191{
192 serial_initialize();
193 return 0;
194}
195
Daniel Schwierzeckb9da7da2016-01-09 18:34:15 +0100196#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glass5af29bd2013-03-14 07:20:12 +0000197static int initr_trap(void)
198{
199 /*
200 * Setup trap handlers
201 */
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100202#if defined(CONFIG_PPC)
Masahiro Yamadad1589242013-05-27 00:37:30 +0000203 trap_init(gd->relocaddr);
angelo@sysam.itf245ae92015-02-12 01:40:17 +0100204#else
205 trap_init(CONFIG_SYS_SDRAM_BASE);
206#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000207 return 0;
208}
209#endif
210
211#ifdef CONFIG_ADDR_MAP
212static int initr_addr_map(void)
213{
214 init_addr_map();
215
216 return 0;
217}
218#endif
219
Simon Glassdb397fa2013-03-11 14:30:37 +0000220#ifdef CONFIG_POST
221static int initr_post_backlog(void)
222{
223 post_output_backlog();
224 return 0;
225}
226#endif
227
Simon Glass5af29bd2013-03-14 07:20:12 +0000228#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
229static int initr_unlock_ram_in_cache(void)
230{
231 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
232 return 0;
233}
234#endif
235
Xiaowei Bao97434b42020-07-09 23:31:34 +0800236#ifdef CONFIG_PCI_ENDPOINT
237static int initr_pci_ep(void)
238{
239 pci_ep_init();
240
241 return 0;
242}
243#endif
244
Simon Glass5af29bd2013-03-14 07:20:12 +0000245#ifdef CONFIG_PCI
246static int initr_pci(void)
247{
Ovidiu Panait6746c672020-05-06 20:38:44 +0300248 if (IS_ENABLED(CONFIG_PCI_INIT_R))
249 pci_init();
Simon Glass5af29bd2013-03-14 07:20:12 +0000250
251 return 0;
252}
253#endif
254
Simon Glass5af29bd2013-03-14 07:20:12 +0000255static int initr_barrier(void)
256{
257#ifdef CONFIG_PPC
258 /* TODO: Can we not use dmb() macros for this? */
259 asm("sync ; isync");
260#endif
261 return 0;
262}
263
Simon Glassdb397fa2013-03-11 14:30:37 +0000264static int initr_malloc(void)
265{
266 ulong malloc_start;
267
Andy Yan1fa20e4d2017-07-24 17:43:34 +0800268#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass863e4042014-07-10 22:23:28 -0600269 debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
270 gd->malloc_ptr / 1024);
271#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000272 /* The malloc area is immediately below the monitor copy in DRAM */
Stephen Warren9b496432019-08-27 11:54:31 -0600273 /*
274 * This value MUST match the value of gd->start_addr_sp in board_f.c:
275 * reserve_noncached().
276 */
Masahiro Yamadad1589242013-05-27 00:37:30 +0000277 malloc_start = gd->relocaddr - TOTAL_MALLOC_LEN;
Simon Glass62cf9122013-04-26 02:53:43 +0000278 mem_malloc_init((ulong)map_sysmem(malloc_start, TOTAL_MALLOC_LEN),
279 TOTAL_MALLOC_LEN);
Simon Glassdb397fa2013-03-11 14:30:37 +0000280 return 0;
281}
Thierry Redingc97d9742014-12-09 22:25:22 -0700282
Simon Glass1bb49232015-11-08 23:47:48 -0700283static int initr_console_record(void)
284{
285#if defined(CONFIG_CONSOLE_RECORD)
286 return console_record_init();
287#else
288 return 0;
289#endif
290}
291
Jan Kiszkaa714a6b92015-03-09 07:47:18 +0100292#ifdef CONFIG_SYS_NONCACHED_MEMORY
293static int initr_noncached(void)
294{
295 noncached_init();
296 return 0;
297}
298#endif
299
Simon Glass46e09772017-05-18 20:08:56 -0600300#ifdef CONFIG_OF_LIVE
301static int initr_of_live(void)
302{
Simon Glassfda60522017-05-22 05:05:36 -0600303 int ret;
304
305 bootstage_start(BOOTSTAGE_ID_ACCUM_OF_LIVE, "of_live");
306 ret = of_live_build(gd->fdt_blob, (struct device_node **)&gd->of_root);
307 bootstage_accum(BOOTSTAGE_ID_ACCUM_OF_LIVE);
308 if (ret)
309 return ret;
310
311 return 0;
Simon Glass46e09772017-05-18 20:08:56 -0600312}
313#endif
314
Simon Glasseea87102014-02-26 15:59:20 -0700315#ifdef CONFIG_DM
316static int initr_dm(void)
317{
Simon Glass8e4f80f2016-02-24 09:14:50 -0700318 int ret;
319
Simon Glassa730c5d2014-07-23 06:55:04 -0600320 /* Save the pre-reloc driver model and start a new one */
321 gd->dm_root_f = gd->dm_root;
322 gd->dm_root = NULL;
Simon Glassb0fb7bd2016-03-11 22:06:46 -0700323#ifdef CONFIG_TIMER
324 gd->timer = NULL;
325#endif
Simon Glassea6a6092020-05-10 11:39:59 -0600326 bootstage_start(BOOTSTAGE_ID_ACCUM_DM_R, "dm_r");
Simon Glass8e4f80f2016-02-24 09:14:50 -0700327 ret = dm_init_and_scan(false);
Simon Glassea6a6092020-05-10 11:39:59 -0600328 bootstage_accum(BOOTSTAGE_ID_ACCUM_DM_R);
Simon Glass8e4f80f2016-02-24 09:14:50 -0700329 if (ret)
330 return ret;
Simon Glass8e4f80f2016-02-24 09:14:50 -0700331
332 return 0;
Simon Glasseea87102014-02-26 15:59:20 -0700333}
334#endif
335
Simon Glass3199afb2019-12-06 21:41:46 -0700336static int initr_dm_devices(void)
337{
338 int ret;
339
340 if (IS_ENABLED(CONFIG_TIMER_EARLY)) {
341 ret = dm_timer_init();
342 if (ret)
343 return ret;
344 }
345
346 return 0;
347}
348
Simon Glass7edd07d2015-11-28 22:16:35 -0700349static int initr_bootstage(void)
350{
Simon Glass7edd07d2015-11-28 22:16:35 -0700351 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
352
353 return 0;
354}
355
Simon Glassdb397fa2013-03-11 14:30:37 +0000356__weak int power_init_board(void)
357{
358 return 0;
359}
360
361static int initr_announce(void)
362{
Masahiro Yamadad1589242013-05-27 00:37:30 +0000363 debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
Simon Glassdb397fa2013-03-11 14:30:37 +0000364 return 0;
365}
366
Andreas Bießmann9e4f3962015-01-20 00:29:05 +0100367#ifdef CONFIG_NEEDS_MANUAL_RELOC
368static int initr_manual_reloc_cmdtable(void)
369{
Simon Glassed38aef2020-05-10 11:40:03 -0600370 fixup_cmdtable(ll_entry_start(struct cmd_tbl, cmd),
371 ll_entry_count(struct cmd_tbl, cmd));
Andreas Bießmann9e4f3962015-01-20 00:29:05 +0100372 return 0;
373}
374#endif
375
Simon Glassdd7fb9b2019-12-06 21:41:34 -0700376static int initr_binman(void)
377{
378 if (!CONFIG_IS_ENABLED(BINMAN_FDT))
379 return 0;
380
381 return binman_init();
382}
383
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900384#if defined(CONFIG_MTD_NOR_FLASH)
Pankit Gargd766ddd2020-04-30 15:54:05 +0530385__weak int is_flash_available(void)
386{
387 return 1;
388}
389
Simon Glassdb397fa2013-03-11 14:30:37 +0000390static int initr_flash(void)
391{
Simon Glass5af29bd2013-03-14 07:20:12 +0000392 ulong flash_size = 0;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900393 struct bd_info *bd = gd->bd;
Simon Glassdb397fa2013-03-11 14:30:37 +0000394
Pankit Gargd766ddd2020-04-30 15:54:05 +0530395 if (!is_flash_available())
396 return 0;
397
Simon Glassdb397fa2013-03-11 14:30:37 +0000398 puts("Flash: ");
399
Masahiro Yamadaeb0e02b2014-12-05 12:20:58 +0900400 if (board_flash_wp_on())
Simon Glass5af29bd2013-03-14 07:20:12 +0000401 printf("Uninitialized - Write Protect On\n");
Masahiro Yamadaeb0e02b2014-12-05 12:20:58 +0900402 else
Simon Glass5af29bd2013-03-14 07:20:12 +0000403 flash_size = flash_init();
Masahiro Yamadaeb0e02b2014-12-05 12:20:58 +0900404
Simon Glassdb397fa2013-03-11 14:30:37 +0000405 print_size(flash_size, "");
406#ifdef CONFIG_SYS_FLASH_CHECKSUM
407 /*
Mario Sixee9b75b2018-01-15 11:10:30 +0100408 * Compute and print flash CRC if flashchecksum is set to 'y'
409 *
410 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
411 */
Simon Glass22c34c22017-08-03 12:22:13 -0600412 if (env_get_yesno("flashchecksum") == 1) {
Mario Sixee9b75b2018-01-15 11:10:30 +0100413 const uchar *flash_base = (const uchar *)CONFIG_SYS_FLASH_BASE;
414
Simon Glassdb397fa2013-03-11 14:30:37 +0000415 printf(" CRC: %08X", crc32(0,
Mario Sixee9b75b2018-01-15 11:10:30 +0100416 flash_base,
417 flash_size));
Simon Glassdb397fa2013-03-11 14:30:37 +0000418 }
419#endif /* CONFIG_SYS_FLASH_CHECKSUM */
420 putc('\n');
421
Simon Glass5af29bd2013-03-14 07:20:12 +0000422 /* update start of FLASH memory */
423#ifdef CONFIG_SYS_FLASH_BASE
424 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
425#endif
426 /* size of FLASH memory (final value) */
427 bd->bi_flashsize = flash_size;
428
429#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
430 /* Make a update of the Memctrl. */
431 update_flash_size(flash_size);
432#endif
433
Simon Glass5af29bd2013-03-14 07:20:12 +0000434#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
435 /* flash mapped at end of memory map */
436 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
437#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
438 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
439#endif
440 return 0;
441}
442#endif
443
Simon Glassdb397fa2013-03-11 14:30:37 +0000444#ifdef CONFIG_CMD_NAND
445/* go init the NAND */
Jeroen Hofsteed9e87622014-10-08 22:57:32 +0200446static int initr_nand(void)
Simon Glassdb397fa2013-03-11 14:30:37 +0000447{
448 puts("NAND: ");
449 nand_init();
Hou Zhiqiang9c8b3c72017-03-17 16:12:31 +0800450 printf("%lu MiB\n", nand_size() / 1024);
Simon Glassdb397fa2013-03-11 14:30:37 +0000451 return 0;
452}
453#endif
454
455#if defined(CONFIG_CMD_ONENAND)
456/* go init the NAND */
Jeroen Hofsteed9e87622014-10-08 22:57:32 +0200457static int initr_onenand(void)
Simon Glassdb397fa2013-03-11 14:30:37 +0000458{
459 puts("NAND: ");
460 onenand_init();
461 return 0;
462}
463#endif
464
Masahiro Yamada0a780172017-05-09 20:31:39 +0900465#ifdef CONFIG_MMC
Jeroen Hofsteed9e87622014-10-08 22:57:32 +0200466static int initr_mmc(void)
Simon Glassdb397fa2013-03-11 14:30:37 +0000467{
468 puts("MMC: ");
469 mmc_initialize(gd->bd);
470 return 0;
471}
472#endif
473
Simon Glassdb397fa2013-03-11 14:30:37 +0000474/*
475 * Tell if it's OK to load the environment early in boot.
476 *
Masahiro Yamadab970a892016-02-05 20:49:39 +0900477 * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
Simon Glassdb397fa2013-03-11 14:30:37 +0000478 * if this is OK (defaulting to saying it's OK).
479 *
480 * NOTE: Loading the environment early can be a bad idea if security is
481 * important, since no verification is done on the environment.
482 *
483 * @return 0 if environment should not be loaded, !=0 if it is ok to load
484 */
485static int should_load_env(void)
486{
Ovidiu Panaitd7145f22020-05-06 20:38:43 +0300487 if (IS_ENABLED(CONFIG_OF_CONTROL))
488 return fdtdec_get_config_int(gd->fdt_blob,
489 "load-environment", 1);
490
491 if (IS_ENABLED(CONFIG_DELAY_ENVIRONMENT))
492 return 0;
493
Simon Glassdb397fa2013-03-11 14:30:37 +0000494 return 1;
Simon Glassdb397fa2013-03-11 14:30:37 +0000495}
496
497static int initr_env(void)
498{
499 /* initialize environment */
500 if (should_load_env())
501 env_relocate();
502 else
Simon Glass97385862019-08-01 09:47:00 -0600503 env_set_default(NULL, 0);
Ovidiu Panaitd7145f22020-05-06 20:38:43 +0300504
505 if (IS_ENABLED(CONFIG_OF_CONTROL))
506 env_set_hex("fdtcontroladdr",
507 (unsigned long)map_to_sysmem(gd->fdt_blob));
Simon Glassdb397fa2013-03-11 14:30:37 +0000508
509 /* Initialize from environment */
Simon Glass892265d2019-12-28 10:45:02 -0700510 image_load_addr = env_get_ulong("loadaddr", 16, image_load_addr);
Simon Glass5af29bd2013-03-14 07:20:12 +0000511
Simon Glass5af29bd2013-03-14 07:20:12 +0000512 return 0;
513}
514
Andreas Bießmann111bbf52015-02-06 23:06:47 +0100515#ifdef CONFIG_SYS_BOOTPARAMS_LEN
516static int initr_malloc_bootparams(void)
517{
518 gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
519 if (!gd->bd->bi_boot_params) {
520 puts("WARNING: Cannot allocate space for boot parameters\n");
521 return -ENOMEM;
522 }
523 return 0;
524}
525#endif
526
Simon Glassdb397fa2013-03-11 14:30:37 +0000527static int initr_jumptable(void)
528{
529 jumptable_init();
530 return 0;
531}
532
533#if defined(CONFIG_API)
534static int initr_api(void)
535{
536 /* Initialize API */
537 api_init();
538 return 0;
539}
540#endif
541
Simon Glassdb397fa2013-03-11 14:30:37 +0000542#ifdef CONFIG_CMD_NET
543static int initr_ethaddr(void)
544{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900545 struct bd_info *bd = gd->bd;
Simon Glass5af29bd2013-03-14 07:20:12 +0000546
547 /* kept around for legacy kernels only ... ignore the next section */
Simon Glass399a9ce2017-08-03 12:22:14 -0600548 eth_env_get_enetaddr("ethaddr", bd->bi_enetaddr);
Simon Glassf7cc66e2020-05-10 14:16:51 -0600549
Simon Glass5af29bd2013-03-14 07:20:12 +0000550 return 0;
551}
552#endif /* CONFIG_CMD_NET */
553
554#ifdef CONFIG_CMD_KGDB
555static int initr_kgdb(void)
556{
557 puts("KGDB: ");
558 kgdb_init();
559 return 0;
560}
561#endif
562
Uri Mashiach4892d392017-01-19 10:51:45 +0200563#if defined(CONFIG_LED_STATUS)
Simon Glass5af29bd2013-03-14 07:20:12 +0000564static int initr_status_led(void)
565{
Uri Mashiach4892d392017-01-19 10:51:45 +0200566#if defined(CONFIG_LED_STATUS_BOOT)
567 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_BLINKING);
Bernhard Nortmannc5dcb4a2015-08-21 15:13:21 +0200568#else
569 status_led_init();
570#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000571 return 0;
572}
573#endif
574
Michal Simekc886f352016-09-08 15:06:45 +0200575#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
Simon Glass5af29bd2013-03-14 07:20:12 +0000576static int initr_scsi(void)
577{
Simon Glass5af29bd2013-03-14 07:20:12 +0000578 puts("SCSI: ");
579 scsi_init();
Heinrich Schuchardt34cef302018-06-15 07:01:26 +0200580 puts("\n");
Simon Glassdb397fa2013-03-11 14:30:37 +0000581
582 return 0;
583}
Ian Campbell63d424b2014-07-21 19:23:18 +0100584#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000585
586#ifdef CONFIG_BITBANGMII
587static int initr_bbmii(void)
588{
589 bb_miiphy_init();
590 return 0;
591}
592#endif
593
594#ifdef CONFIG_CMD_NET
595static int initr_net(void)
596{
597 puts("Net: ");
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500598 eth_initialize();
Simon Glassdb397fa2013-03-11 14:30:37 +0000599#if defined(CONFIG_RESET_PHY_R)
600 debug("Reset Ethernet PHY\n");
601 reset_phy();
602#endif
603 return 0;
604}
605#endif
606
607#ifdef CONFIG_POST
608static int initr_post(void)
609{
610 post_run(NULL, POST_RAM | post_bootmode_get(0));
611 return 0;
612}
613#endif
614
Bin Mengf05614e2018-06-17 05:57:50 -0700615#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
Simon Glass5af29bd2013-03-14 07:20:12 +0000616static int initr_ide(void)
617{
Simon Glass5af29bd2013-03-14 07:20:12 +0000618 puts("IDE: ");
Simon Glass5af29bd2013-03-14 07:20:12 +0000619#if defined(CONFIG_START_IDE)
620 if (board_start_ide())
621 ide_init();
622#else
623 ide_init();
624#endif
625 return 0;
626}
627#endif
628
Simon Glass49badb92017-12-04 13:48:23 -0700629#if defined(CONFIG_PRAM)
Simon Glassdb397fa2013-03-11 14:30:37 +0000630/*
631 * Export available size of memory for Linux, taking into account the
632 * protected RAM at top of memory
633 */
634int initr_mem(void)
635{
636 ulong pram = 0;
637 char memsz[32];
638
Simon Glass22c34c22017-08-03 12:22:13 -0600639 pram = env_get_ulong("pram", 10, CONFIG_PRAM);
Mario Sixee9b75b2018-01-15 11:10:30 +0100640 sprintf(memsz, "%ldk", (long int)((gd->ram_size / 1024) - pram));
Simon Glass6a38e412017-08-03 12:22:09 -0600641 env_set("mem", memsz);
Simon Glass5af29bd2013-03-14 07:20:12 +0000642
643 return 0;
Simon Glassdb397fa2013-03-11 14:30:37 +0000644}
645#endif
646
647static int run_main_loop(void)
648{
Simon Glass62cf9122013-04-26 02:53:43 +0000649#ifdef CONFIG_SANDBOX
650 sandbox_main_loop_init();
651#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000652 /* main_loop() can return to retry autoboot, if so just run it again */
653 for (;;)
654 main_loop();
655 return 0;
656}
657
658/*
Alexander Graff204f012019-01-31 16:06:23 +0100659 * We hope to remove most of the driver-related init and do it if/when
Simon Glassdb397fa2013-03-11 14:30:37 +0000660 * the driver is later used.
Simon Glass5af29bd2013-03-14 07:20:12 +0000661 *
662 * TODO: perhaps reset the watchdog in the initcall function after each call?
Simon Glassdb397fa2013-03-11 14:30:37 +0000663 */
Simon Glass2031fad2017-01-16 07:03:50 -0700664static init_fnc_t init_sequence_r[] = {
Simon Glass209a1a62013-06-11 11:14:42 -0700665 initr_trace,
Simon Glassdb397fa2013-03-11 14:30:37 +0000666 initr_reloc,
Simon Glass5af29bd2013-03-14 07:20:12 +0000667 /* TODO: could x86/PPC have this also perhaps? */
Simon Glassdb397fa2013-03-11 14:30:37 +0000668#ifdef CONFIG_ARM
669 initr_caches,
York Sun820a18f2015-03-20 19:28:11 -0700670 /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
671 * A temporary mapping of IFC high region is since removed,
Mario Sixee9b75b2018-01-15 11:10:30 +0100672 * so environmental variables in NOR flash is not available
York Sun820a18f2015-03-20 19:28:11 -0700673 * until board_init() is called below to remap IFC to high
674 * region.
675 */
Simon Glass712da5e2014-09-03 17:37:01 -0600676#endif
677 initr_reloc_global_data,
York Sun6e78b3b2014-10-02 15:20:10 -0700678#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
679 initr_unlock_ram_in_cache,
680#endif
Simon Glass712da5e2014-09-03 17:37:01 -0600681 initr_barrier,
682 initr_malloc,
Simon Glass55e32ba2017-12-04 13:48:28 -0700683 log_init,
Simon Glasse635af12017-05-22 05:05:31 -0600684 initr_bootstage, /* Needs malloc() but has its own timer */
Simon Glass1bb49232015-11-08 23:47:48 -0700685 initr_console_record,
Jan Kiszkaa714a6b92015-03-09 07:47:18 +0100686#ifdef CONFIG_SYS_NONCACHED_MEMORY
687 initr_noncached,
688#endif
Simon Glass46e09772017-05-18 20:08:56 -0600689#ifdef CONFIG_OF_LIVE
690 initr_of_live,
691#endif
Simon Glass712da5e2014-09-03 17:37:01 -0600692#ifdef CONFIG_DM
693 initr_dm,
694#endif
Patrick Delaunay29bf6032018-07-27 16:37:09 +0200695#if defined(CONFIG_ARM) || defined(CONFIG_NDS32) || defined(CONFIG_RISCV) || \
696 defined(CONFIG_SANDBOX)
Simon Glassdb397fa2013-03-11 14:30:37 +0000697 board_init, /* Setup chipselects */
698#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000699 /*
700 * TODO: printing of the clock inforamtion of the board is now
701 * implemented as part of bdinfo command. Currently only support for
702 * davinci SOC's is added. Remove this check once all the board
703 * implement this.
704 */
705#ifdef CONFIG_CLOCKS
706 set_cpu_clk_info, /* Setup clock information */
707#endif
Alexander Graf8623f922016-03-04 01:10:04 +0100708#ifdef CONFIG_EFI_LOADER
709 efi_memory_init,
710#endif
Simon Glassdd7fb9b2019-12-06 21:41:34 -0700711 initr_binman,
Simon Glass564a4a02019-12-06 21:42:20 -0700712#ifdef CONFIG_FSP_VERSION2
713 arch_fsp_init_r,
714#endif
Simon Glass3199afb2019-12-06 21:41:46 -0700715 initr_dm_devices,
Simon Glass712da5e2014-09-03 17:37:01 -0600716 stdio_init_tables,
Simon Glassdb397fa2013-03-11 14:30:37 +0000717 initr_serial,
718 initr_announce,
Marek Vasut55ec91b2019-06-09 03:46:21 +0200719#if CONFIG_IS_ENABLED(WDT)
developere49871c2019-05-16 17:19:13 +0800720 initr_watchdog,
721#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000722 INIT_FUNC_WATCHDOG_RESET
Andreas Bießmann9e4f3962015-01-20 00:29:05 +0100723#ifdef CONFIG_NEEDS_MANUAL_RELOC
724 initr_manual_reloc_cmdtable,
725#endif
Daniel Schwierzeckb9da7da2016-01-09 18:34:15 +0100726#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS)
Simon Glass5af29bd2013-03-14 07:20:12 +0000727 initr_trap,
728#endif
729#ifdef CONFIG_ADDR_MAP
730 initr_addr_map,
731#endif
732#if defined(CONFIG_BOARD_EARLY_INIT_R)
733 board_early_init_r,
734#endif
735 INIT_FUNC_WATCHDOG_RESET
Simon Glassdb397fa2013-03-11 14:30:37 +0000736#ifdef CONFIG_POST
737 initr_post_backlog,
738#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000739 INIT_FUNC_WATCHDOG_RESET
Simon Glass5af29bd2013-03-14 07:20:12 +0000740#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
741 /*
742 * Do early PCI configuration _before_ the flash gets initialised,
Mario Sixee9b75b2018-01-15 11:10:30 +0100743 * because PCU resources are crucial for flash access on some boards.
Simon Glass5af29bd2013-03-14 07:20:12 +0000744 */
745 initr_pci,
746#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000747#ifdef CONFIG_ARCH_EARLY_INIT_R
748 arch_early_init_r,
749#endif
750 power_init_board,
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900751#ifdef CONFIG_MTD_NOR_FLASH
Simon Glassdb397fa2013-03-11 14:30:37 +0000752 initr_flash,
753#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000754 INIT_FUNC_WATCHDOG_RESET
Tom Rinifef2bd12017-03-14 11:08:11 -0400755#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86)
Simon Glass5af29bd2013-03-14 07:20:12 +0000756 /* initialize higher level parts of CPU like time base and timers */
757 cpu_init_r,
Simon Glass6f5567d2013-03-05 14:39:53 +0000758#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000759#ifdef CONFIG_CMD_NAND
760 initr_nand,
761#endif
762#ifdef CONFIG_CMD_ONENAND
763 initr_onenand,
764#endif
Masahiro Yamada0a780172017-05-09 20:31:39 +0900765#ifdef CONFIG_MMC
Simon Glassdb397fa2013-03-11 14:30:37 +0000766 initr_mmc,
767#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000768 initr_env,
Andreas Bießmann111bbf52015-02-06 23:06:47 +0100769#ifdef CONFIG_SYS_BOOTPARAMS_LEN
770 initr_malloc_bootparams,
771#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000772 INIT_FUNC_WATCHDOG_RESET
773 initr_secondary_cpu,
Simon Glass5af29bd2013-03-14 07:20:12 +0000774#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
775 mac_read_from_eeprom,
776#endif
777 INIT_FUNC_WATCHDOG_RESET
778#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
779 /*
780 * Do pci configuration
781 */
782 initr_pci,
783#endif
Simon Glass712da5e2014-09-03 17:37:01 -0600784 stdio_add_devices,
Simon Glassdb397fa2013-03-11 14:30:37 +0000785 initr_jumptable,
786#ifdef CONFIG_API
787 initr_api,
788#endif
789 console_init_r, /* fully init console as a device */
790#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
Simon Glassc9c5c9f2017-06-15 21:37:50 -0600791 console_announce_r,
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900792 show_board_info,
Simon Glassdb397fa2013-03-11 14:30:37 +0000793#endif
794#ifdef CONFIG_ARCH_MISC_INIT
795 arch_misc_init, /* miscellaneous arch-dependent init */
796#endif
797#ifdef CONFIG_MISC_INIT_R
798 misc_init_r, /* miscellaneous platform-dependent init */
799#endif
Simon Glass5af29bd2013-03-14 07:20:12 +0000800 INIT_FUNC_WATCHDOG_RESET
801#ifdef CONFIG_CMD_KGDB
802 initr_kgdb,
803#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000804 interrupt_init,
Andy Shevchenko8cb5cdd2017-07-05 16:25:22 +0300805#if defined(CONFIG_MICROBLAZE) || defined(CONFIG_M68K)
Simon Glass6f5567d2013-03-05 14:39:53 +0000806 timer_init, /* initialize timer */
807#endif
Uri Mashiach4892d392017-01-19 10:51:45 +0200808#if defined(CONFIG_LED_STATUS)
Simon Glass5af29bd2013-03-14 07:20:12 +0000809 initr_status_led,
810#endif
811 /* PPC has a udelay(20) here dating from 2002. Why? */
Simon Glassdb397fa2013-03-11 14:30:37 +0000812#ifdef CONFIG_CMD_NET
813 initr_ethaddr,
814#endif
Heiko Schocher58e4c382019-07-17 06:59:51 +0200815#if defined(CONFIG_GPIO_HOG)
Heiko Schocher39cb3402019-06-12 06:11:46 +0200816 gpio_hog_probe_all,
817#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000818#ifdef CONFIG_BOARD_LATE_INIT
819 board_late_init,
820#endif
Michal Simekc886f352016-09-08 15:06:45 +0200821#if defined(CONFIG_SCSI) && !defined(CONFIG_DM_SCSI)
Simon Glass5af29bd2013-03-14 07:20:12 +0000822 INIT_FUNC_WATCHDOG_RESET
823 initr_scsi,
824#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000825#ifdef CONFIG_BITBANGMII
826 initr_bbmii,
827#endif
Xiaowei Bao97434b42020-07-09 23:31:34 +0800828#ifdef CONFIG_PCI_ENDPOINT
829 initr_pci_ep,
830#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000831#ifdef CONFIG_CMD_NET
Simon Glass5af29bd2013-03-14 07:20:12 +0000832 INIT_FUNC_WATCHDOG_RESET
Simon Glassdb397fa2013-03-11 14:30:37 +0000833 initr_net,
834#endif
835#ifdef CONFIG_POST
836 initr_post,
837#endif
Bin Mengf05614e2018-06-17 05:57:50 -0700838#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
Simon Glass5af29bd2013-03-14 07:20:12 +0000839 initr_ide,
840#endif
841#ifdef CONFIG_LAST_STAGE_INIT
842 INIT_FUNC_WATCHDOG_RESET
843 /*
844 * Some parts can be only initialized if all others (like
845 * Interrupts) are up and running (i.e. the PC-style ISA
846 * keyboard).
847 */
848 last_stage_init,
849#endif
850#ifdef CONFIG_CMD_BEDBUG
851 INIT_FUNC_WATCHDOG_RESET
Ovidiu Panait8637bec2020-04-20 10:31:46 +0300852 bedbug_init,
Simon Glass5af29bd2013-03-14 07:20:12 +0000853#endif
Simon Glass49badb92017-12-04 13:48:23 -0700854#if defined(CONFIG_PRAM)
Simon Glass5af29bd2013-03-14 07:20:12 +0000855 initr_mem,
856#endif
Angelo Durgehello2c54cf52020-01-26 19:31:22 +0100857#if defined(CONFIG_M68K) && defined(CONFIG_BLOCK_CACHE)
Angelo Durgehello3d8e4c12020-01-21 10:37:27 +0100858 blkcache_init,
859#endif
Simon Glassdb397fa2013-03-11 14:30:37 +0000860 run_main_loop,
861};
862
863void board_init_r(gd_t *new_gd, ulong dest_addr)
864{
Simon Glass96c867d2017-01-16 07:03:51 -0700865 /*
866 * Set up the new global data pointer. So far only x86 does this
867 * here.
868 * TODO(sjg@chromium.org): Consider doing this for all archs, or
869 * dropping the new_gd parameter.
870 */
871#if CONFIG_IS_ENABLED(X86_64)
872 arch_setup_gd(new_gd);
873#endif
874
Alexey Brodkin3f0516f2014-01-20 14:30:39 +0400875#ifdef CONFIG_NEEDS_MANUAL_RELOC
876 int i;
877#endif
878
Jeroen Hofstee498f97f2014-07-30 21:54:49 +0200879#if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
Simon Glassdb397fa2013-03-11 14:30:37 +0000880 gd = new_gd;
Simon Glass6f5567d2013-03-05 14:39:53 +0000881#endif
Simon Glass55e32ba2017-12-04 13:48:28 -0700882 gd->flags &= ~GD_FLG_LOG_READY;
Alexey Brodkin3f0516f2014-01-20 14:30:39 +0400883
884#ifdef CONFIG_NEEDS_MANUAL_RELOC
885 for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
886 init_sequence_r[i] += gd->reloc_off;
887#endif
888
Simon Glassdb397fa2013-03-11 14:30:37 +0000889 if (initcall_run_list(init_sequence_r))
890 hang();
891
892 /* NOTREACHED - run_main_loop() does not return */
893 hang();
894}