blob: 52a9b262eb1ee415d21b0610da94612912ef7eb8 [file] [log] [blame]
Simon Glass6f6430d2013-03-11 14:30:37 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2002-2006
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Simon Glass6f6430d2013-03-11 14:30:37 +000011 */
12
13#include <common.h>
Simon Glassc2240d42013-03-14 07:20:12 +000014/* TODO: can we just include all these headers whether needed or not? */
15#if defined(CONFIG_CMD_BEDBUG)
16#include <bedbug/type.h>
17#endif
Tom Rinicbb2df22015-12-07 08:23:29 -050018#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070019#include <console.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000020#ifdef CONFIG_HAS_DATAFLASH
21#include <dataflash.h>
22#endif
Simon Glass1ce60172014-02-26 15:59:20 -070023#include <dm.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000024#include <environment.h>
25#include <fdtdec.h>
Simon Glassc2240d42013-03-14 07:20:12 +000026#if defined(CONFIG_CMD_IDE)
27#include <ide.h>
28#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000029#include <initcall.h>
Simon Glassc2240d42013-03-14 07:20:12 +000030#ifdef CONFIG_PS2KBD
31#include <keyboard.h>
32#endif
33#if defined(CONFIG_CMD_KGDB)
34#include <kgdb.h>
35#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000036#include <logbuff.h>
37#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050038#include <mapmem.h>
Simon Glassc2240d42013-03-14 07:20:12 +000039#ifdef CONFIG_BITBANGMII
40#include <miiphy.h>
41#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000042#include <mmc.h>
43#include <nand.h>
44#include <onenand_uboot.h>
Simon Glassc2240d42013-03-14 07:20:12 +000045#include <scsi.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000046#include <serial.h>
Simon Glassc2240d42013-03-14 07:20:12 +000047#include <spi.h>
Simon Glass6f6430d2013-03-11 14:30:37 +000048#include <stdio_dev.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070049#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070050#include <trace.h>
Simon Glassc2240d42013-03-14 07:20:12 +000051#include <watchdog.h>
Francois Retief3f33f6a2014-10-27 13:39:03 +020052#ifdef CONFIG_CMD_AMBAPP
53#include <ambapp.h>
54#endif
Simon Glassc2240d42013-03-14 07:20:12 +000055#ifdef CONFIG_ADDR_MAP
56#include <asm/mmu.h>
57#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000058#include <asm/sections.h>
Simon Glassbe274b92013-03-05 14:39:53 +000059#ifdef CONFIG_X86
60#include <asm/init_helpers.h>
61#endif
Simon Glass1ce60172014-02-26 15:59:20 -070062#include <dm/root.h>
Simon Glassc2240d42013-03-14 07:20:12 +000063#include <linux/compiler.h>
Simon Glass1ce60172014-02-26 15:59:20 -070064#include <linux/err.h>
Andreas Bießmanna752a8b2015-02-06 23:06:48 +010065#ifdef CONFIG_AVR32
66#include <asm/arch/mmu.h>
67#endif
Simon Glass6f6430d2013-03-11 14:30:37 +000068
69DECLARE_GLOBAL_DATA_PTR;
70
Francois Retief1e85cce2015-11-23 13:05:44 +020071#if defined(CONFIG_SPARC)
72extern int prom_init(void);
73#endif
74
Simon Glass6f6430d2013-03-11 14:30:37 +000075ulong monitor_flash_len;
76
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +020077__weak int board_flash_wp_on(void)
Simon Glassc2240d42013-03-14 07:20:12 +000078{
79 /*
80 * Most flashes can't be detected when write protection is enabled,
81 * so provide a way to let U-Boot gracefully ignore write protected
82 * devices.
83 */
84 return 0;
85}
86
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +020087__weak void cpu_secondary_init_r(void)
Simon Glassc2240d42013-03-14 07:20:12 +000088{
89}
90
Simon Glassc2240d42013-03-14 07:20:12 +000091static int initr_secondary_cpu(void)
92{
93 /*
94 * after non-volatile devices & environment is setup and cpu code have
95 * another round to deal with any initialization that might require
96 * full access to the environment or loading of some image (firmware)
97 * from a non-volatile device
98 */
99 /* TODO: maybe define this for all archs? */
100 cpu_secondary_init_r();
101
102 return 0;
103}
Simon Glass6f6430d2013-03-11 14:30:37 +0000104
Simon Glass71c52db2013-06-11 11:14:42 -0700105static int initr_trace(void)
106{
107#ifdef CONFIG_TRACE
108 trace_init(gd->trace_buff, CONFIG_TRACE_BUFFER_SIZE);
109#endif
110
111 return 0;
112}
113
Simon Glass6f6430d2013-03-11 14:30:37 +0000114static int initr_reloc(void)
115{
Simon Glassc9356be2014-11-10 17:16:43 -0700116 /* tell others: relocation done */
117 gd->flags |= GD_FLG_RELOC | GD_FLG_FULL_MALLOC_INIT;
Simon Glass6f6430d2013-03-11 14:30:37 +0000118
119 return 0;
120}
121
122#ifdef CONFIG_ARM
123/*
124 * Some of these functions are needed purely because the functions they
125 * call return void. If we change them to return 0, these stubs can go away.
126 */
127static int initr_caches(void)
128{
129 /* Enable caches */
130 enable_caches();
131 return 0;
132}
133#endif
134
Simon Glassc2240d42013-03-14 07:20:12 +0000135__weak int fixup_cpu(void)
136{
137 return 0;
138}
139
Simon Glass6f6430d2013-03-11 14:30:37 +0000140static int initr_reloc_global_data(void)
141{
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100142#ifdef __ARM__
143 monitor_flash_len = _end - __image_copy_start;
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800144#elif defined(CONFIG_NDS32)
145 monitor_flash_len = (ulong)&_end - (ulong)&_start;
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800146#elif !defined(CONFIG_SANDBOX) && !defined(CONFIG_NIOS2)
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000147 monitor_flash_len = (ulong)&__init_end - gd->relocaddr;
Simon Glass6f6430d2013-03-11 14:30:37 +0000148#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000149#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
150 /*
151 * The gd->cpu pointer is set to an address in flash before relocation.
152 * We need to update it to point to the same CPU entry in RAM.
153 * TODO: why not just add gd->reloc_ofs?
154 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000155 gd->arch.cpu += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
Simon Glassc2240d42013-03-14 07:20:12 +0000156
157 /*
158 * If we didn't know the cpu mask & # cores, we can save them of
159 * now rather than 'computing' them constantly
160 */
161 fixup_cpu();
162#endif
163#ifdef CONFIG_SYS_EXTRA_ENV_RELOC
164 /*
165 * Some systems need to relocate the env_addr pointer early because the
166 * location it points to will get invalidated before env_relocate is
167 * called. One example is on systems that might use a L2 or L3 cache
168 * in SRAM mode and initialize that cache from SRAM mode back to being
169 * a cache in cpu_init_r.
170 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000171 gd->env_addr += gd->relocaddr - CONFIG_SYS_MONITOR_BASE;
Simon Glassc2240d42013-03-14 07:20:12 +0000172#endif
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100173#ifdef CONFIG_OF_EMBED
174 /*
175 * The fdt_blob needs to be moved to new relocation address
176 * incase of FDT blob is embedded with in image
177 */
178 gd->fdt_blob += gd->reloc_off;
179#endif
180
Simon Glassc2240d42013-03-14 07:20:12 +0000181 return 0;
Simon Glass6f6430d2013-03-11 14:30:37 +0000182}
183
184static int initr_serial(void)
185{
186 serial_initialize();
187 return 0;
188}
189
angelo@sysam.ite310b932015-02-12 01:40:17 +0100190#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glassc2240d42013-03-14 07:20:12 +0000191static int initr_trap(void)
192{
193 /*
194 * Setup trap handlers
195 */
angelo@sysam.ite310b932015-02-12 01:40:17 +0100196#if defined(CONFIG_PPC)
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000197 trap_init(gd->relocaddr);
angelo@sysam.ite310b932015-02-12 01:40:17 +0100198#else
199 trap_init(CONFIG_SYS_SDRAM_BASE);
200#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000201 return 0;
202}
203#endif
204
205#ifdef CONFIG_ADDR_MAP
206static int initr_addr_map(void)
207{
208 init_addr_map();
209
210 return 0;
211}
212#endif
213
Simon Glass6f6430d2013-03-11 14:30:37 +0000214#ifdef CONFIG_LOGBUFFER
215unsigned long logbuffer_base(void)
216{
217 return gd->ram_top - LOGBUFF_LEN;
218}
219
220static int initr_logbuffer(void)
221{
222 logbuff_init_ptrs();
223 return 0;
224}
225#endif
226
227#ifdef CONFIG_POST
228static int initr_post_backlog(void)
229{
230 post_output_backlog();
231 return 0;
232}
233#endif
234
Simon Glassc2240d42013-03-14 07:20:12 +0000235#ifdef CONFIG_SYS_DELAYED_ICACHE
236static int initr_icache_enable(void)
237{
238 return 0;
239}
240#endif
241
242#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
243static int initr_unlock_ram_in_cache(void)
244{
245 unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */
246 return 0;
247}
248#endif
249
250#ifdef CONFIG_PCI
251static int initr_pci(void)
252{
Simon Glassff3e0772015-03-05 12:25:25 -0700253#ifndef CONFIG_DM_PCI
Simon Glassc2240d42013-03-14 07:20:12 +0000254 pci_init();
Simon Glassff3e0772015-03-05 12:25:25 -0700255#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000256
257 return 0;
258}
259#endif
260
261#ifdef CONFIG_WINBOND_83C553
262static int initr_w83c553f(void)
263{
264 /*
265 * Initialise the ISA bridge
266 */
267 initialise_w83c553f();
268 return 0;
269}
270#endif
271
272static int initr_barrier(void)
273{
274#ifdef CONFIG_PPC
275 /* TODO: Can we not use dmb() macros for this? */
276 asm("sync ; isync");
277#endif
278 return 0;
279}
280
Simon Glass6f6430d2013-03-11 14:30:37 +0000281static int initr_malloc(void)
282{
283 ulong malloc_start;
284
Simon Glassd59476b2014-07-10 22:23:28 -0600285#ifdef CONFIG_SYS_MALLOC_F_LEN
286 debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
287 gd->malloc_ptr / 1024);
288#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000289 /* The malloc area is immediately below the monitor copy in DRAM */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000290 malloc_start = gd->relocaddr - TOTAL_MALLOC_LEN;
Simon Glassa733b062013-04-26 02:53:43 +0000291 mem_malloc_init((ulong)map_sysmem(malloc_start, TOTAL_MALLOC_LEN),
292 TOTAL_MALLOC_LEN);
Simon Glass6f6430d2013-03-11 14:30:37 +0000293 return 0;
294}
295
Simon Glass9854a872015-11-08 23:47:48 -0700296static int initr_console_record(void)
297{
298#if defined(CONFIG_CONSOLE_RECORD)
299 return console_record_init();
300#else
301 return 0;
302#endif
303}
304
Jan Kiszka671fa632015-03-09 07:47:18 +0100305#ifdef CONFIG_SYS_NONCACHED_MEMORY
306static int initr_noncached(void)
307{
308 noncached_init();
309 return 0;
310}
311#endif
312
Simon Glass1ce60172014-02-26 15:59:20 -0700313#ifdef CONFIG_DM
314static int initr_dm(void)
315{
Simon Glass1057e6c2016-02-24 09:14:50 -0700316 int ret;
317
Simon Glassab7cd622014-07-23 06:55:04 -0600318 /* Save the pre-reloc driver model and start a new one */
319 gd->dm_root_f = gd->dm_root;
320 gd->dm_root = NULL;
Simon Glass1057e6c2016-02-24 09:14:50 -0700321 ret = dm_init_and_scan(false);
322 if (ret)
323 return ret;
324#ifdef CONFIG_TIMER_EARLY
Thomas Chou8f41b872015-10-09 13:48:56 +0800325 gd->timer = NULL;
Simon Glass1057e6c2016-02-24 09:14:50 -0700326 ret = dm_timer_init();
327 if (ret)
328 return ret;
Thomas Chou8f41b872015-10-09 13:48:56 +0800329#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700330
331 return 0;
Simon Glass1ce60172014-02-26 15:59:20 -0700332}
333#endif
334
Simon Glass881c1242015-11-28 22:16:35 -0700335static int initr_bootstage(void)
336{
337 /* We cannot do this before initr_dm() */
338 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r");
339
340 return 0;
341}
342
Simon Glass6f6430d2013-03-11 14:30:37 +0000343__weak int power_init_board(void)
344{
345 return 0;
346}
347
348static int initr_announce(void)
349{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000350 debug("Now running in RAM - U-Boot at: %08lx\n", gd->relocaddr);
Simon Glass6f6430d2013-03-11 14:30:37 +0000351 return 0;
352}
353
Andreas Bießmann61d7b1b2015-01-20 00:29:05 +0100354#ifdef CONFIG_NEEDS_MANUAL_RELOC
355static int initr_manual_reloc_cmdtable(void)
356{
357 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
358 ll_entry_count(cmd_tbl_t, cmd));
359 return 0;
360}
361#endif
362
Simon Glass6f6430d2013-03-11 14:30:37 +0000363#if !defined(CONFIG_SYS_NO_FLASH)
364static int initr_flash(void)
365{
Simon Glassc2240d42013-03-14 07:20:12 +0000366 ulong flash_size = 0;
367 bd_t *bd = gd->bd;
Simon Glass6f6430d2013-03-11 14:30:37 +0000368
369 puts("Flash: ");
370
Masahiro Yamada70879a92014-12-05 12:20:58 +0900371 if (board_flash_wp_on())
Simon Glassc2240d42013-03-14 07:20:12 +0000372 printf("Uninitialized - Write Protect On\n");
Masahiro Yamada70879a92014-12-05 12:20:58 +0900373 else
Simon Glassc2240d42013-03-14 07:20:12 +0000374 flash_size = flash_init();
Masahiro Yamada70879a92014-12-05 12:20:58 +0900375
Simon Glass6f6430d2013-03-11 14:30:37 +0000376 print_size(flash_size, "");
377#ifdef CONFIG_SYS_FLASH_CHECKSUM
378 /*
379 * Compute and print flash CRC if flashchecksum is set to 'y'
380 *
381 * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX
382 */
383 if (getenv_yesno("flashchecksum") == 1) {
384 printf(" CRC: %08X", crc32(0,
385 (const unsigned char *) CONFIG_SYS_FLASH_BASE,
386 flash_size));
387 }
388#endif /* CONFIG_SYS_FLASH_CHECKSUM */
389 putc('\n');
390
Simon Glassc2240d42013-03-14 07:20:12 +0000391 /* update start of FLASH memory */
392#ifdef CONFIG_SYS_FLASH_BASE
393 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
394#endif
395 /* size of FLASH memory (final value) */
396 bd->bi_flashsize = flash_size;
397
398#if defined(CONFIG_SYS_UPDATE_FLASH_SIZE)
399 /* Make a update of the Memctrl. */
400 update_flash_size(flash_size);
401#endif
402
403
404#if defined(CONFIG_OXC) || defined(CONFIG_RMU)
405 /* flash mapped at end of memory map */
406 bd->bi_flashoffset = CONFIG_SYS_TEXT_BASE + flash_size;
407#elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
408 bd->bi_flashoffset = monitor_flash_len; /* reserved area for monitor */
409#endif
410 return 0;
411}
412#endif
413
Simon Glassebe76a22014-10-13 23:41:54 -0600414#if defined(CONFIG_PPC) && !defined(CONFIG_DM_SPI)
Simon Glassc2240d42013-03-14 07:20:12 +0000415static int initr_spi(void)
416{
417 /* PPC does this here */
418#ifdef CONFIG_SPI
419#if !defined(CONFIG_ENV_IS_IN_EEPROM)
420 spi_init_f();
421#endif
422 spi_init_r();
423#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000424 return 0;
425}
426#endif
427
428#ifdef CONFIG_CMD_NAND
429/* go init the NAND */
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200430static int initr_nand(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000431{
432 puts("NAND: ");
433 nand_init();
434 return 0;
435}
436#endif
437
438#if defined(CONFIG_CMD_ONENAND)
439/* go init the NAND */
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200440static int initr_onenand(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000441{
442 puts("NAND: ");
443 onenand_init();
444 return 0;
445}
446#endif
447
448#ifdef CONFIG_GENERIC_MMC
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200449static int initr_mmc(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000450{
451 puts("MMC: ");
452 mmc_initialize(gd->bd);
453 return 0;
454}
455#endif
456
457#ifdef CONFIG_HAS_DATAFLASH
Jeroen Hofstee2588ba12014-10-08 22:57:32 +0200458static int initr_dataflash(void)
Simon Glass6f6430d2013-03-11 14:30:37 +0000459{
460 AT91F_DataflashInit();
461 dataflash_print_info();
462 return 0;
463}
464#endif
465
466/*
467 * Tell if it's OK to load the environment early in boot.
468 *
Masahiro Yamada776babd2016-02-05 20:49:39 +0900469 * If CONFIG_OF_CONTROL is defined, we'll check with the FDT to see
Simon Glass6f6430d2013-03-11 14:30:37 +0000470 * if this is OK (defaulting to saying it's OK).
471 *
472 * NOTE: Loading the environment early can be a bad idea if security is
473 * important, since no verification is done on the environment.
474 *
475 * @return 0 if environment should not be loaded, !=0 if it is ok to load
476 */
477static int should_load_env(void)
478{
479#ifdef CONFIG_OF_CONTROL
480 return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);
481#elif defined CONFIG_DELAY_ENVIRONMENT
482 return 0;
483#else
484 return 1;
485#endif
486}
487
488static int initr_env(void)
489{
490 /* initialize environment */
491 if (should_load_env())
492 env_relocate();
493 else
494 set_default_env(NULL);
Thomas Chou545dfd12015-10-16 08:44:51 +0800495#ifdef CONFIG_OF_CONTROL
496 setenv_addr("fdtcontroladdr", gd->fdt_blob);
497#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000498
499 /* Initialize from environment */
500 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Simon Glassc2240d42013-03-14 07:20:12 +0000501#if defined(CONFIG_SYS_EXTBDINFO)
502#if defined(CONFIG_405GP) || defined(CONFIG_405EP)
503#if defined(CONFIG_I2CFAST)
504 /*
505 * set bi_iic_fast for linux taking environment variable
506 * "i2cfast" into account
507 */
508 {
509 char *s = getenv("i2cfast");
510
511 if (s && ((*s == 'y') || (*s == 'Y'))) {
512 gd->bd->bi_iic_fast[0] = 1;
513 gd->bd->bi_iic_fast[1] = 1;
514 }
515 }
516#endif /* CONFIG_I2CFAST */
517#endif /* CONFIG_405GP, CONFIG_405EP */
518#endif /* CONFIG_SYS_EXTBDINFO */
Simon Glass6f6430d2013-03-11 14:30:37 +0000519 return 0;
520}
521
Andreas Bießmannc722f0b2015-02-06 23:06:47 +0100522#ifdef CONFIG_SYS_BOOTPARAMS_LEN
523static int initr_malloc_bootparams(void)
524{
525 gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
526 if (!gd->bd->bi_boot_params) {
527 puts("WARNING: Cannot allocate space for boot parameters\n");
528 return -ENOMEM;
529 }
530 return 0;
531}
532#endif
533
Simon Glass6f6430d2013-03-11 14:30:37 +0000534static int initr_jumptable(void)
535{
536 jumptable_init();
537 return 0;
538}
539
540#if defined(CONFIG_API)
541static int initr_api(void)
542{
543 /* Initialize API */
544 api_init();
545 return 0;
546}
547#endif
548
Simon Glass6f6430d2013-03-11 14:30:37 +0000549/* enable exceptions */
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100550#if defined(CONFIG_ARM) || defined(CONFIG_AVR32)
Simon Glass6f6430d2013-03-11 14:30:37 +0000551static int initr_enable_interrupts(void)
552{
553 enable_interrupts();
554 return 0;
555}
Simon Glasse424c152013-03-11 07:40:13 +0000556#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000557
558#ifdef CONFIG_CMD_NET
559static int initr_ethaddr(void)
560{
Simon Glassc2240d42013-03-14 07:20:12 +0000561 bd_t *bd = gd->bd;
562
563 /* kept around for legacy kernels only ... ignore the next section */
564 eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);
565#ifdef CONFIG_HAS_ETH1
566 eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr);
567#endif
568#ifdef CONFIG_HAS_ETH2
569 eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr);
570#endif
571#ifdef CONFIG_HAS_ETH3
572 eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr);
573#endif
574#ifdef CONFIG_HAS_ETH4
575 eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr);
576#endif
577#ifdef CONFIG_HAS_ETH5
578 eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);
579#endif
580 return 0;
581}
582#endif /* CONFIG_CMD_NET */
583
584#ifdef CONFIG_CMD_KGDB
585static int initr_kgdb(void)
586{
587 puts("KGDB: ");
588 kgdb_init();
589 return 0;
590}
591#endif
592
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +0200593#if defined(CONFIG_STATUS_LED)
Simon Glassc2240d42013-03-14 07:20:12 +0000594static int initr_status_led(void)
595{
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +0200596#if defined(STATUS_LED_BOOT)
Simon Glassc2240d42013-03-14 07:20:12 +0000597 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +0200598#else
599 status_led_init();
600#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000601 return 0;
602}
603#endif
604
Francois Retief3f33f6a2014-10-27 13:39:03 +0200605#if defined(CONFIG_CMD_AMBAPP) && defined(CONFIG_SYS_AMBAPP_PRINT_ON_STARTUP)
606extern int do_ambapp_print(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
607
608static int initr_ambapp_print(void)
609{
610 puts("AMBA:\n");
611 do_ambapp_print(NULL, 0, 0, NULL);
612
613 return 0;
614}
615#endif
616
Simon Glassc2240d42013-03-14 07:20:12 +0000617#if defined(CONFIG_CMD_SCSI)
618static int initr_scsi(void)
619{
Simon Glassc2240d42013-03-14 07:20:12 +0000620 puts("SCSI: ");
621 scsi_init();
Simon Glass6f6430d2013-03-11 14:30:37 +0000622
623 return 0;
624}
Ian Campbell2c997e72014-07-21 19:23:18 +0100625#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000626
Simon Glassc2240d42013-03-14 07:20:12 +0000627#if defined(CONFIG_CMD_DOC)
628static int initr_doc(void)
629{
630 puts("DOC: ");
631 doc_init();
Ian Campbell19ad5272014-07-24 09:29:57 +0100632 return 0;
Simon Glassc2240d42013-03-14 07:20:12 +0000633}
634#endif
635
Simon Glass6f6430d2013-03-11 14:30:37 +0000636#ifdef CONFIG_BITBANGMII
637static int initr_bbmii(void)
638{
639 bb_miiphy_init();
640 return 0;
641}
642#endif
643
644#ifdef CONFIG_CMD_NET
645static int initr_net(void)
646{
647 puts("Net: ");
Joe Hershbergerd2eaec62015-03-22 17:09:06 -0500648 eth_initialize();
Simon Glass6f6430d2013-03-11 14:30:37 +0000649#if defined(CONFIG_RESET_PHY_R)
650 debug("Reset Ethernet PHY\n");
651 reset_phy();
652#endif
653 return 0;
654}
655#endif
656
657#ifdef CONFIG_POST
658static int initr_post(void)
659{
660 post_run(NULL, POST_RAM | post_bootmode_get(0));
661 return 0;
662}
663#endif
664
Simon Glassc2240d42013-03-14 07:20:12 +0000665#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
666static int initr_pcmcia(void)
667{
668 puts("PCMCIA:");
669 pcmcia_init();
670 return 0;
671}
672#endif
673
674#if defined(CONFIG_CMD_IDE)
675static int initr_ide(void)
676{
677#ifdef CONFIG_IDE_8xx_PCCARD
678 puts("PCMCIA:");
679#else
680 puts("IDE: ");
681#endif
682#if defined(CONFIG_START_IDE)
683 if (board_start_ide())
684 ide_init();
685#else
686 ide_init();
687#endif
688 return 0;
689}
690#endif
691
Simon Glass6f6430d2013-03-11 14:30:37 +0000692#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
693/*
694 * Export available size of memory for Linux, taking into account the
695 * protected RAM at top of memory
696 */
697int initr_mem(void)
698{
699 ulong pram = 0;
700 char memsz[32];
701
702# ifdef CONFIG_PRAM
703 pram = getenv_ulong("pram", 10, CONFIG_PRAM);
704# endif
705# if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
706 /* Also take the logbuffer into account (pram is in kB) */
707 pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024;
708# endif
Valentin Longchampae1a74e2014-10-03 11:16:19 +0200709 sprintf(memsz, "%ldk", (long int) ((gd->ram_size / 1024) - pram));
Simon Glass6f6430d2013-03-11 14:30:37 +0000710 setenv("mem", memsz);
Simon Glassc2240d42013-03-14 07:20:12 +0000711
712 return 0;
713}
714#endif
715
716#ifdef CONFIG_CMD_BEDBUG
717static int initr_bedbug(void)
718{
719 bedbug_init();
720
721 return 0;
722}
723#endif
724
725#ifdef CONFIG_PS2KBD
726static int initr_kbd(void)
727{
728 puts("PS/2: ");
729 kbd_init();
730 return 0;
731}
732#endif
733
Simon Glass6f6430d2013-03-11 14:30:37 +0000734static int run_main_loop(void)
735{
Simon Glassa733b062013-04-26 02:53:43 +0000736#ifdef CONFIG_SANDBOX
737 sandbox_main_loop_init();
738#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000739 /* main_loop() can return to retry autoboot, if so just run it again */
740 for (;;)
741 main_loop();
742 return 0;
743}
744
745/*
746 * Over time we hope to remove these functions with code fragments and
747 * stub funtcions, and instead call the relevant function directly.
748 *
749 * We also hope to remove most of the driver-related init and do it if/when
750 * the driver is later used.
Simon Glassc2240d42013-03-14 07:20:12 +0000751 *
752 * TODO: perhaps reset the watchdog in the initcall function after each call?
Simon Glass6f6430d2013-03-11 14:30:37 +0000753 */
754init_fnc_t init_sequence_r[] = {
Simon Glass71c52db2013-06-11 11:14:42 -0700755 initr_trace,
Simon Glass6f6430d2013-03-11 14:30:37 +0000756 initr_reloc,
Simon Glassc2240d42013-03-14 07:20:12 +0000757 /* TODO: could x86/PPC have this also perhaps? */
Simon Glass6f6430d2013-03-11 14:30:37 +0000758#ifdef CONFIG_ARM
759 initr_caches,
York Sun12eaf312015-03-20 19:28:11 -0700760 /* Note: For Freescale LS2 SoCs, new MMU table is created in DDR.
761 * A temporary mapping of IFC high region is since removed,
762 * so environmental variables in NOR flash is not availble
763 * until board_init() is called below to remap IFC to high
764 * region.
765 */
Simon Glass9fb02492014-09-03 17:37:01 -0600766#endif
767 initr_reloc_global_data,
York Sunfef3e252014-10-02 15:20:10 -0700768#if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500)
769 initr_unlock_ram_in_cache,
770#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600771 initr_barrier,
772 initr_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700773 initr_console_record,
Jan Kiszka671fa632015-03-09 07:47:18 +0100774#ifdef CONFIG_SYS_NONCACHED_MEMORY
775 initr_noncached,
776#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600777 bootstage_relocate,
778#ifdef CONFIG_DM
779 initr_dm,
780#endif
Simon Glass881c1242015-11-28 22:16:35 -0700781 initr_bootstage,
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800782#if defined(CONFIG_ARM) || defined(CONFIG_NDS32)
Simon Glass6f6430d2013-03-11 14:30:37 +0000783 board_init, /* Setup chipselects */
784#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000785 /*
786 * TODO: printing of the clock inforamtion of the board is now
787 * implemented as part of bdinfo command. Currently only support for
788 * davinci SOC's is added. Remove this check once all the board
789 * implement this.
790 */
791#ifdef CONFIG_CLOCKS
792 set_cpu_clk_info, /* Setup clock information */
793#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600794 stdio_init_tables,
Simon Glass6f6430d2013-03-11 14:30:37 +0000795 initr_serial,
796 initr_announce,
Simon Glassc2240d42013-03-14 07:20:12 +0000797 INIT_FUNC_WATCHDOG_RESET
Andreas Bießmann61d7b1b2015-01-20 00:29:05 +0100798#ifdef CONFIG_NEEDS_MANUAL_RELOC
799 initr_manual_reloc_cmdtable,
800#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100801#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glassc2240d42013-03-14 07:20:12 +0000802 initr_trap,
803#endif
804#ifdef CONFIG_ADDR_MAP
805 initr_addr_map,
806#endif
807#if defined(CONFIG_BOARD_EARLY_INIT_R)
808 board_early_init_r,
809#endif
810 INIT_FUNC_WATCHDOG_RESET
Simon Glass6f6430d2013-03-11 14:30:37 +0000811#ifdef CONFIG_LOGBUFFER
812 initr_logbuffer,
813#endif
814#ifdef CONFIG_POST
815 initr_post_backlog,
816#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000817 INIT_FUNC_WATCHDOG_RESET
818#ifdef CONFIG_SYS_DELAYED_ICACHE
819 initr_icache_enable,
820#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000821#if defined(CONFIG_PCI) && defined(CONFIG_SYS_EARLY_PCI_INIT)
822 /*
823 * Do early PCI configuration _before_ the flash gets initialised,
824 * because PCU ressources are crucial for flash access on some boards.
825 */
826 initr_pci,
827#endif
828#ifdef CONFIG_WINBOND_83C553
829 initr_w83c553f,
830#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000831#ifdef CONFIG_ARCH_EARLY_INIT_R
832 arch_early_init_r,
833#endif
834 power_init_board,
835#ifndef CONFIG_SYS_NO_FLASH
836 initr_flash,
837#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000838 INIT_FUNC_WATCHDOG_RESET
Francois Retiefe17c5202015-10-28 14:29:32 +0200839#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86) || \
840 defined(CONFIG_SPARC)
Simon Glassc2240d42013-03-14 07:20:12 +0000841 /* initialize higher level parts of CPU like time base and timers */
842 cpu_init_r,
Simon Glassbe274b92013-03-05 14:39:53 +0000843#endif
844#ifdef CONFIG_PPC
Simon Glassc2240d42013-03-14 07:20:12 +0000845 initr_spi,
846#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000847#ifdef CONFIG_CMD_NAND
848 initr_nand,
849#endif
850#ifdef CONFIG_CMD_ONENAND
851 initr_onenand,
852#endif
853#ifdef CONFIG_GENERIC_MMC
854 initr_mmc,
855#endif
856#ifdef CONFIG_HAS_DATAFLASH
857 initr_dataflash,
858#endif
859 initr_env,
Andreas Bießmannc722f0b2015-02-06 23:06:47 +0100860#ifdef CONFIG_SYS_BOOTPARAMS_LEN
861 initr_malloc_bootparams,
862#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000863 INIT_FUNC_WATCHDOG_RESET
864 initr_secondary_cpu,
Simon Glassc2240d42013-03-14 07:20:12 +0000865#if defined(CONFIG_ID_EEPROM) || defined(CONFIG_SYS_I2C_MAC_OFFSET)
866 mac_read_from_eeprom,
867#endif
868 INIT_FUNC_WATCHDOG_RESET
869#if defined(CONFIG_PCI) && !defined(CONFIG_SYS_EARLY_PCI_INIT)
870 /*
871 * Do pci configuration
872 */
873 initr_pci,
874#endif
Simon Glass9fb02492014-09-03 17:37:01 -0600875 stdio_add_devices,
Simon Glass6f6430d2013-03-11 14:30:37 +0000876 initr_jumptable,
877#ifdef CONFIG_API
878 initr_api,
879#endif
880 console_init_r, /* fully init console as a device */
881#ifdef CONFIG_DISPLAY_BOARDINFO_LATE
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900882 show_board_info,
Simon Glass6f6430d2013-03-11 14:30:37 +0000883#endif
884#ifdef CONFIG_ARCH_MISC_INIT
885 arch_misc_init, /* miscellaneous arch-dependent init */
886#endif
887#ifdef CONFIG_MISC_INIT_R
888 misc_init_r, /* miscellaneous platform-dependent init */
889#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000890 INIT_FUNC_WATCHDOG_RESET
891#ifdef CONFIG_CMD_KGDB
892 initr_kgdb,
893#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000894 interrupt_init,
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100895#if defined(CONFIG_ARM) || defined(CONFIG_AVR32)
Simon Glass6f6430d2013-03-11 14:30:37 +0000896 initr_enable_interrupts,
Simon Glassc2240d42013-03-14 07:20:12 +0000897#endif
Bin Meng643b0f72015-10-22 19:13:33 -0700898#if defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || defined(CONFIG_M68K)
Simon Glassbe274b92013-03-05 14:39:53 +0000899 timer_init, /* initialize timer */
900#endif
Bernhard Nortmann13cfbe52015-08-21 15:13:21 +0200901#if defined(CONFIG_STATUS_LED)
Simon Glassc2240d42013-03-14 07:20:12 +0000902 initr_status_led,
903#endif
904 /* PPC has a udelay(20) here dating from 2002. Why? */
Simon Glass6f6430d2013-03-11 14:30:37 +0000905#ifdef CONFIG_CMD_NET
906 initr_ethaddr,
907#endif
908#ifdef CONFIG_BOARD_LATE_INIT
909 board_late_init,
910#endif
Francois Retief3f33f6a2014-10-27 13:39:03 +0200911#if defined(CONFIG_CMD_AMBAPP)
912 ambapp_init_reloc,
913#if defined(CONFIG_SYS_AMBAPP_PRINT_ON_STARTUP)
914 initr_ambapp_print,
915#endif
916#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000917#ifdef CONFIG_CMD_SCSI
918 INIT_FUNC_WATCHDOG_RESET
919 initr_scsi,
920#endif
921#ifdef CONFIG_CMD_DOC
922 INIT_FUNC_WATCHDOG_RESET
923 initr_doc,
924#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000925#ifdef CONFIG_BITBANGMII
926 initr_bbmii,
927#endif
928#ifdef CONFIG_CMD_NET
Simon Glassc2240d42013-03-14 07:20:12 +0000929 INIT_FUNC_WATCHDOG_RESET
Simon Glass6f6430d2013-03-11 14:30:37 +0000930 initr_net,
931#endif
932#ifdef CONFIG_POST
933 initr_post,
934#endif
Simon Glassc2240d42013-03-14 07:20:12 +0000935#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
936 initr_pcmcia,
937#endif
938#if defined(CONFIG_CMD_IDE)
939 initr_ide,
940#endif
941#ifdef CONFIG_LAST_STAGE_INIT
942 INIT_FUNC_WATCHDOG_RESET
943 /*
944 * Some parts can be only initialized if all others (like
945 * Interrupts) are up and running (i.e. the PC-style ISA
946 * keyboard).
947 */
948 last_stage_init,
949#endif
950#ifdef CONFIG_CMD_BEDBUG
951 INIT_FUNC_WATCHDOG_RESET
952 initr_bedbug,
953#endif
954#if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER)
955 initr_mem,
956#endif
957#ifdef CONFIG_PS2KBD
958 initr_kbd,
959#endif
Francois Retief1e85cce2015-11-23 13:05:44 +0200960#if defined(CONFIG_SPARC)
961 prom_init,
962#endif
Simon Glass6f6430d2013-03-11 14:30:37 +0000963 run_main_loop,
964};
965
966void board_init_r(gd_t *new_gd, ulong dest_addr)
967{
Alexey Brodkin73953982014-01-20 14:30:39 +0400968#ifdef CONFIG_NEEDS_MANUAL_RELOC
969 int i;
970#endif
971
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100972#ifdef CONFIG_AVR32
973 mmu_init_r(dest_addr);
974#endif
975
Jeroen Hofstee47a602e2014-07-30 21:54:49 +0200976#if !defined(CONFIG_X86) && !defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
Simon Glass6f6430d2013-03-11 14:30:37 +0000977 gd = new_gd;
Simon Glassbe274b92013-03-05 14:39:53 +0000978#endif
Alexey Brodkin73953982014-01-20 14:30:39 +0400979
980#ifdef CONFIG_NEEDS_MANUAL_RELOC
981 for (i = 0; i < ARRAY_SIZE(init_sequence_r); i++)
982 init_sequence_r[i] += gd->reloc_off;
983#endif
984
Simon Glass6f6430d2013-03-11 14:30:37 +0000985 if (initcall_run_list(init_sequence_r))
986 hang();
987
988 /* NOTREACHED - run_main_loop() does not return */
989 hang();
990}