blob: 1400cc818c00e891e3be4e91c619f9198f23920b [file] [log] [blame]
Simon Glass1938f4a2013-03-11 06:49:53 +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 Glass1938f4a2013-03-11 06:49:53 +000011 */
12
13#include <common.h>
14#include <linux/compiler.h>
15#include <version.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000017#include <environment.h>
Simon Glassab7cd622014-07-23 06:55:04 -060018#include <dm.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000019#include <fdtdec.h>
Simon Glassf828bf22013-04-20 08:42:41 +000020#include <fs.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000021#if defined(CONFIG_CMD_IDE)
22#include <ide.h>
23#endif
24#include <i2c.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000025#include <initcall.h>
26#include <logbuff.h>
Simon Glassfb5cf7f2015-02-27 22:06:36 -070027#include <malloc.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050028#include <mapmem.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000029
30/* TODO: Can we move these into arch/ headers? */
31#ifdef CONFIG_8xx
32#include <mpc8xx.h>
33#endif
34#ifdef CONFIG_5xx
35#include <mpc5xx.h>
36#endif
37#ifdef CONFIG_MPC5xxx
38#include <mpc5xxx.h>
39#endif
Gabriel Huauec3b4822014-09-03 13:57:54 -070040#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Gabriel Huaua76df702014-07-26 11:35:43 -070041#include <asm/mp.h>
42#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +000043
Simon Glassa733b062013-04-26 02:53:43 +000044#include <os.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000045#include <post.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000046#include <spi.h>
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020047#include <status_led.h>
Simon Glass1057e6c2016-02-24 09:14:50 -070048#include <timer.h>
Simon Glass71c52db2013-06-11 11:14:42 -070049#include <trace.h>
Simon Glass5a541942016-01-18 19:52:21 -070050#include <video.h>
Simon Glasse4fef6c2013-03-11 14:30:42 +000051#include <watchdog.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090052#include <linux/errno.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000053#include <asm/io.h>
54#include <asm/sections.h>
Alexey Brodkin3fb80162015-02-24 19:40:36 +030055#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +000056#include <asm/init_helpers.h>
Chris Zankelde5e5ce2016-08-10 18:36:43 +030057#endif
58#if defined(CONFIG_X86) || defined(CONFIG_ARC) || defined(CONFIG_XTENSA)
Simon Glass48a33802013-03-05 14:39:52 +000059#include <asm/relocate.h>
60#endif
Simon Glassab7cd622014-07-23 06:55:04 -060061#include <dm/root.h>
Simon Glass1938f4a2013-03-11 06:49:53 +000062#include <linux/compiler.h>
63
64/*
65 * Pointer to initial global data area
66 *
67 * Here we initialize it if needed.
68 */
69#ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
70#undef XTRN_DECLARE_GLOBAL_DATA_PTR
71#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
72DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
73#else
74DECLARE_GLOBAL_DATA_PTR;
75#endif
76
77/*
Simon Glass4c509342015-04-28 20:25:03 -060078 * TODO(sjg@chromium.org): IMO this code should be
Simon Glass1938f4a2013-03-11 06:49:53 +000079 * refactored to a single function, something like:
80 *
81 * void led_set_state(enum led_colour_t colour, int on);
82 */
83/************************************************************************
84 * Coloured LED functionality
85 ************************************************************************
86 * May be supplied by boards if desired
87 */
Jeroen Hofsteec5d40012014-06-23 23:20:19 +020088__weak void coloured_LED_init(void) {}
89__weak void red_led_on(void) {}
90__weak void red_led_off(void) {}
91__weak void green_led_on(void) {}
92__weak void green_led_off(void) {}
93__weak void yellow_led_on(void) {}
94__weak void yellow_led_off(void) {}
95__weak void blue_led_on(void) {}
96__weak void blue_led_off(void) {}
Simon Glass1938f4a2013-03-11 06:49:53 +000097
98/*
99 * Why is gd allocated a register? Prior to reloc it might be better to
100 * just pass it around to each function in this file?
101 *
102 * After reloc one could argue that it is hardly used and doesn't need
103 * to be in a register. Or if it is it should perhaps hold pointers to all
104 * global data for all modules, so that post-reloc we can avoid the massive
105 * literal pool we get on ARM. Or perhaps just encourage each module to use
106 * a structure...
107 */
108
109/*
110 * Could the CONFIG_SPL_BUILD infection become a flag in gd?
111 */
112
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800113#if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000114static int init_func_watchdog_init(void)
115{
Tom Riniea3310e2017-03-14 11:08:10 -0400116# if defined(CONFIG_HW_WATCHDOG) && \
117 (defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100118 defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
Anatolij Gustschin46d7a3b2016-06-13 14:24:23 +0200119 defined(CONFIG_DESIGNWARE_WATCHDOG) || \
Stefan Roese14a380a2015-03-10 08:04:36 +0100120 defined(CONFIG_IMX_WATCHDOG))
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800121 hw_watchdog_init();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000122 puts(" Watchdog enabled\n");
Anatolij Gustschinba169d92016-06-13 14:24:24 +0200123# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000124 WATCHDOG_RESET();
125
126 return 0;
127}
128
129int init_func_watchdog_reset(void)
130{
131 WATCHDOG_RESET();
132
133 return 0;
134}
135#endif /* CONFIG_WATCHDOG */
136
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200137__weak void board_add_ram_info(int use_default)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000138{
139 /* please define platform specific board_add_ram_info() */
140}
141
Simon Glass1938f4a2013-03-11 06:49:53 +0000142static int init_baud_rate(void)
143{
144 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
145 return 0;
146}
147
148static int display_text_info(void)
149{
Ben Stoltz9b217492015-07-31 09:31:37 -0600150#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP)
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100151 ulong bss_start, bss_end, text_base;
Simon Glass1938f4a2013-03-11 06:49:53 +0000152
Simon Glass632efa72013-03-11 07:06:48 +0000153 bss_start = (ulong)&__bss_start;
154 bss_end = (ulong)&__bss_end;
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100155
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800156#ifdef CONFIG_SYS_TEXT_BASE
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100157 text_base = CONFIG_SYS_TEXT_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800158#else
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100159 text_base = CONFIG_SYS_MONITOR_BASE;
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800160#endif
Daniel Schwierzeck9fdee7d2014-11-15 23:46:53 +0100161
162 debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
163 text_base, bss_start, bss_end);
Simon Glassa733b062013-04-26 02:53:43 +0000164#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000165
Simon Glass1938f4a2013-03-11 06:49:53 +0000166#ifdef CONFIG_USE_IRQ
167 debug("IRQ Stack: %08lx\n", IRQ_STACK_START);
168 debug("FIQ Stack: %08lx\n", FIQ_STACK_START);
169#endif
170
171 return 0;
172}
173
174static int announce_dram_init(void)
175{
176 puts("DRAM: ");
177 return 0;
178}
179
angelo@sysam.ite310b932015-02-12 01:40:17 +0100180#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000181static int init_func_ram(void)
182{
Simon Glass088454c2017-03-31 08:40:25 -0600183 return initdram();
Simon Glasse4fef6c2013-03-11 14:30:42 +0000184}
185#endif
186
Simon Glass1938f4a2013-03-11 06:49:53 +0000187static int show_dram_config(void)
188{
York Sunfa39ffe2014-05-02 17:28:05 -0700189 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000190
191#ifdef CONFIG_NR_DRAM_BANKS
192 int i;
193
194 debug("\nRAM Configuration:\n");
195 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
196 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700197 debug("Bank #%d: %llx ", i,
198 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000199#ifdef DEBUG
200 print_size(gd->bd->bi_dram[i].size, "\n");
201#endif
202 }
203 debug("\nDRAM: ");
204#else
205 size = gd->ram_size;
206#endif
207
Simon Glasse4fef6c2013-03-11 14:30:42 +0000208 print_size(size, "");
209 board_add_ram_info(0);
210 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000211
212 return 0;
213}
214
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200215__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000216{
217#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
218 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
219 gd->bd->bi_dram[0].size = get_effective_memsize();
220#endif
221}
222
Heiko Schocherea818db2013-01-29 08:53:15 +0100223#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000224static int init_func_i2c(void)
225{
226 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200227#ifdef CONFIG_SYS_I2C
228 i2c_init_all();
229#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000230 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200231#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000232 puts("ready\n");
233 return 0;
234}
235#endif
236
237#if defined(CONFIG_HARD_SPI)
238static int init_func_spi(void)
239{
240 puts("SPI: ");
241 spi_init();
242 puts("ready\n");
243 return 0;
244}
245#endif
246
247__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000248static int zero_global_data(void)
249{
250 memset((void *)gd, '\0', sizeof(gd_t));
251
252 return 0;
253}
254
255static int setup_mon_len(void)
256{
Michal Simeke945f6d2014-05-08 16:08:44 +0200257#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100258 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600259#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000260 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400261#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800262 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200263#elif defined(CONFIG_NDS32) || defined(CONFIG_SH)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800264 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600265#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000266 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
267 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000268#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000269 return 0;
270}
271
272__weak int arch_cpu_init(void)
273{
274 return 0;
275}
276
Paul Burton8ebf5062016-09-21 11:18:46 +0100277__weak int mach_cpu_init(void)
278{
279 return 0;
280}
281
Simon Glass1938f4a2013-03-11 06:49:53 +0000282/* Get the top of usable RAM */
283__weak ulong board_get_usable_ram_top(ulong total_size)
284{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700285#ifdef CONFIG_SYS_SDRAM_BASE
286 /*
Simon Glass4c509342015-04-28 20:25:03 -0600287 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700288 * 32-bit address space. If so, clip the usable RAM so it doesn't.
289 */
290 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
291 /*
292 * Will wrap back to top of 32-bit space when reservations
293 * are made.
294 */
295 return 0;
296#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000297 return gd->ram_top;
298}
299
300static int setup_dest_addr(void)
301{
302 debug("Monitor len: %08lX\n", gd->mon_len);
303 /*
304 * Ram is setup, size stored in gd !!
305 */
306 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800307#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000308 /*
309 * Subtract specified amount of memory to hide so that it won't
310 * get "touched" at all by U-Boot. By fixing up gd->ram_size
311 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800312 * memory size and won't touch it either. This should work
313 * for arch/ppc and arch/powerpc. Only Linux board ports in
314 * arch/powerpc with bootwrapper support, that recalculate the
315 * memory size from the SDRAM controller setup will have to
316 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000317 */
York Sun36cc0de2017-03-06 09:02:28 -0800318 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
319#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000320#ifdef CONFIG_SYS_SDRAM_BASE
321 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
322#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000323 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000324 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000325 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000326 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700327#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000328 /*
329 * We need to make sure the location we intend to put secondary core
330 * boot code is reserved and not used by any part of u-boot
331 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000332 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
333 gd->relocaddr = determine_mp_bootpg(NULL);
334 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000335 }
336#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000337 return 0;
338}
339
340#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
341static int reserve_logbuffer(void)
342{
343 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000344 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000345 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000346 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000347 return 0;
348}
349#endif
350
351#ifdef CONFIG_PRAM
352/* reserve protected RAM */
353static int reserve_pram(void)
354{
355 ulong reg;
356
357 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000358 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000359 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000360 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000361 return 0;
362}
363#endif /* CONFIG_PRAM */
364
365/* Round memory pointer down to next 4 kB limit */
366static int reserve_round_4k(void)
367{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000368 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000369 return 0;
370}
371
372#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
373 defined(CONFIG_ARM)
374static int reserve_mmu(void)
375{
376 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800377 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000378 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000379
380 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000381 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000382
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000383 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000384 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
385 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700386
387#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
388 /*
389 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
390 * with location within secure ram.
391 */
392 gd->arch.tlb_allocated = gd->arch.tlb_addr;
393#endif
394
Simon Glass1938f4a2013-03-11 06:49:53 +0000395 return 0;
396}
397#endif
398
Simon Glass5a541942016-01-18 19:52:21 -0700399#ifdef CONFIG_DM_VIDEO
400static int reserve_video(void)
401{
402 ulong addr;
403 int ret;
404
405 addr = gd->relocaddr;
406 ret = video_reserve(&addr);
407 if (ret)
408 return ret;
409 gd->relocaddr = addr;
410
411 return 0;
412}
413#else
414
415# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000416static int reserve_lcd(void)
417{
Simon Glass5a541942016-01-18 19:52:21 -0700418# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000419 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700420# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000421 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000422 gd->relocaddr = lcd_setmem(gd->relocaddr);
423 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700424# endif /* CONFIG_FB_ADDR */
425
Simon Glass1938f4a2013-03-11 06:49:53 +0000426 return 0;
427}
Simon Glass5a541942016-01-18 19:52:21 -0700428# endif /* CONFIG_LCD */
Simon Glass1938f4a2013-03-11 06:49:53 +0000429
Simon Glass5a541942016-01-18 19:52:21 -0700430# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700431 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400432 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700433static int reserve_legacy_video(void)
434{
435 /* reserve memory for video display (always full pages) */
436 gd->relocaddr = video_setmem(gd->relocaddr);
437 gd->fb_base = gd->relocaddr;
438
439 return 0;
440}
Simon Glass5a541942016-01-18 19:52:21 -0700441# endif
442#endif /* !CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700443
Simon Glass71c52db2013-06-11 11:14:42 -0700444static int reserve_trace(void)
445{
446#ifdef CONFIG_TRACE
447 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
448 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
449 debug("Reserving %dk for trace data at: %08lx\n",
450 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
451#endif
452
453 return 0;
454}
455
Simon Glass1938f4a2013-03-11 06:49:53 +0000456static int reserve_uboot(void)
457{
458 /*
459 * reserve memory for U-Boot code, data & bss
460 * round down to next 4 kB limit
461 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000462 gd->relocaddr -= gd->mon_len;
463 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000464#ifdef CONFIG_E500
465 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000466 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000467#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000468
469 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000470 gd->relocaddr);
471
472 gd->start_addr_sp = gd->relocaddr;
473
Simon Glass1938f4a2013-03-11 06:49:53 +0000474 return 0;
475}
476
Simon Glass8cae8a62013-03-05 14:39:45 +0000477#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000478/* reserve memory for malloc() area */
479static int reserve_malloc(void)
480{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000481 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000482 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000483 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000484 return 0;
485}
486
487/* (permanently) allocate a Board Info struct */
488static int reserve_board(void)
489{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800490 if (!gd->bd) {
491 gd->start_addr_sp -= sizeof(bd_t);
492 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
493 memset(gd->bd, '\0', sizeof(bd_t));
494 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
495 sizeof(bd_t), gd->start_addr_sp);
496 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000497 return 0;
498}
Simon Glass8cae8a62013-03-05 14:39:45 +0000499#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000500
501static int setup_machine(void)
502{
503#ifdef CONFIG_MACH_TYPE
504 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
505#endif
506 return 0;
507}
508
509static int reserve_global_data(void)
510{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000511 gd->start_addr_sp -= sizeof(gd_t);
512 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000513 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000514 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000515 return 0;
516}
517
518static int reserve_fdt(void)
519{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100520#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000521 /*
Simon Glass4c509342015-04-28 20:25:03 -0600522 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000523 * must relocate it. If it is embedded in the data section, then it
524 * will be relocated with other data.
525 */
526 if (gd->fdt_blob) {
527 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
528
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000529 gd->start_addr_sp -= gd->fdt_size;
530 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000531 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000532 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000533 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100534#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000535
536 return 0;
537}
538
Andreas Bießmann68145d42015-02-06 23:06:45 +0100539int arch_reserve_stacks(void)
540{
541 return 0;
542}
543
Simon Glass1938f4a2013-03-11 06:49:53 +0000544static int reserve_stacks(void)
545{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100546 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000547 gd->start_addr_sp -= 16;
548 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000549
550 /*
Simon Glass4c509342015-04-28 20:25:03 -0600551 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100552 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000553 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100554 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000555}
556
557static int display_new_sp(void)
558{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000559 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000560
561 return 0;
562}
563
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200564#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
565 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000566static int setup_board_part1(void)
567{
568 bd_t *bd = gd->bd;
569
570 /*
571 * Save local variables to board info struct
572 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000573 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
574 bd->bi_memsize = gd->ram_size; /* size in bytes */
575
576#ifdef CONFIG_SYS_SRAM_BASE
577 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
578 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
579#endif
580
Masahiro Yamada58dac322014-03-05 17:40:10 +0900581#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000582 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
583 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
584#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100585#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000586 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
587#endif
588#if defined(CONFIG_MPC83xx)
589 bd->bi_immrbar = CONFIG_SYS_IMMR;
590#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000591
592 return 0;
593}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100594#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000595
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100596#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000597static int setup_board_part2(void)
598{
599 bd_t *bd = gd->bd;
600
601 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
602 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
603#if defined(CONFIG_CPM2)
604 bd->bi_cpmfreq = gd->arch.cpm_clk;
605 bd->bi_brgfreq = gd->arch.brg_clk;
606 bd->bi_sccfreq = gd->arch.scc_clk;
607 bd->bi_vco = gd->arch.vco_out;
608#endif /* CONFIG_CPM2 */
609#if defined(CONFIG_MPC512X)
610 bd->bi_ipsfreq = gd->arch.ips_clk;
611#endif /* CONFIG_MPC512X */
612#if defined(CONFIG_MPC5xxx)
613 bd->bi_ipbfreq = gd->arch.ipb_clk;
614 bd->bi_pcifreq = gd->pci_clk;
615#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800616#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
617 bd->bi_pcifreq = gd->pci_clk;
618#endif
619#if defined(CONFIG_EXTRA_CLOCK)
620 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
621 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
622 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
623#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000624
625 return 0;
626}
627#endif
628
629#ifdef CONFIG_SYS_EXTBDINFO
630static int setup_board_extra(void)
631{
632 bd_t *bd = gd->bd;
633
634 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
635 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
636 sizeof(bd->bi_r_version));
637
638 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
639 bd->bi_plb_busfreq = gd->bus_clk;
640#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
641 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
642 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
643 bd->bi_pci_busfreq = get_PCI_freq();
644 bd->bi_opbfreq = get_OPB_freq();
645#elif defined(CONFIG_XILINX_405)
646 bd->bi_pci_busfreq = get_PCI_freq();
647#endif
648
649 return 0;
650}
651#endif
652
Simon Glass1938f4a2013-03-11 06:49:53 +0000653#ifdef CONFIG_POST
654static int init_post(void)
655{
656 post_bootmode_init();
657 post_run(NULL, POST_ROM | post_bootmode_get(0));
658
659 return 0;
660}
661#endif
662
Simon Glass1938f4a2013-03-11 06:49:53 +0000663static int setup_dram_config(void)
664{
665 /* Ram is board specific, so move it to board code ... */
666 dram_init_banksize();
667
668 return 0;
669}
670
671static int reloc_fdt(void)
672{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100673#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600674 if (gd->flags & GD_FLG_SKIP_RELOC)
675 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000676 if (gd->new_fdt) {
677 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
678 gd->fdt_blob = gd->new_fdt;
679 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100680#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000681
682 return 0;
683}
684
685static int setup_reloc(void)
686{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600687 if (gd->flags & GD_FLG_SKIP_RELOC) {
688 debug("Skipping relocation due to flag\n");
689 return 0;
690 }
691
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800692#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000693 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100694#ifdef CONFIG_M68K
695 /*
696 * On all ColdFire arch cpu, monitor code starts always
697 * just after the default vector table location, so at 0x400
698 */
699 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
700#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800701#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000702 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
703
704 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000705 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000706 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
707 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000708
709 return 0;
710}
711
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100712#ifdef CONFIG_OF_BOARD_FIXUP
713static int fix_fdt(void)
714{
715 return board_fix_fdt((void *)gd->fdt_blob);
716}
717#endif
718
Simon Glass1938f4a2013-03-11 06:49:53 +0000719/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700720#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
721 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000722
723static int jump_to_copy(void)
724{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600725 if (gd->flags & GD_FLG_SKIP_RELOC)
726 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000727 /*
728 * x86 is special, but in a nice way. It uses a trampoline which
729 * enables the dcache if possible.
730 *
731 * For now, other archs use relocate_code(), which is implemented
732 * similarly for all archs. When we do generic relocation, hopefully
733 * we can make all archs enable the dcache prior to relocation.
734 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300735#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000736 /*
737 * SDRAM and console are now initialised. The final stack can now
738 * be setup in SDRAM. Code execution will continue in Flash, but
739 * with the stack in SDRAM and Global Data in temporary memory
740 * (CPU cache)
741 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600742 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000743 board_init_f_r_trampoline(gd->start_addr_sp);
744#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000745 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000746#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000747
748 return 0;
749}
750#endif
751
752/* Record the board_init_f() bootstage (after arch_cpu_init()) */
753static int mark_bootstage(void)
754{
755 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
756
757 return 0;
758}
759
Simon Glass9854a872015-11-08 23:47:48 -0700760static int initf_console_record(void)
761{
762#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
763 return console_record_init();
764#else
765 return 0;
766#endif
767}
768
Simon Glassab7cd622014-07-23 06:55:04 -0600769static int initf_dm(void)
770{
771#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
772 int ret;
773
774 ret = dm_init_and_scan(true);
775 if (ret)
776 return ret;
777#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700778#ifdef CONFIG_TIMER_EARLY
779 ret = dm_timer_init();
780 if (ret)
781 return ret;
782#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600783
784 return 0;
785}
786
Simon Glass146251f2015-01-19 22:16:12 -0700787/* Architecture-specific memory reservation */
788__weak int reserve_arch(void)
789{
790 return 0;
791}
792
Simon Glassd4c671c2015-03-05 12:25:16 -0700793__weak int arch_cpu_init_dm(void)
794{
795 return 0;
796}
797
Simon Glass4acff452017-01-16 07:03:50 -0700798static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000799 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700800#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700801 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700802#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800803#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700804 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800805#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700806 initf_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700807 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600808#if defined(CONFIG_HAVE_FSP)
809 arch_fsp_init,
Bin Menga52a0682015-08-20 06:40:18 -0700810#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000811 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100812 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600813 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700814 arch_cpu_init_dm,
Thomas Chou67521952015-10-30 15:35:51 +0800815 mark_bootstage, /* need timer, go after init dm */
Simon Glass1938f4a2013-03-11 06:49:53 +0000816#if defined(CONFIG_BOARD_EARLY_INIT_F)
817 board_early_init_f,
818#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600819#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600820 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000821 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600822#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000823 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000824#if defined(CONFIG_BOARD_POSTCLK_INIT)
825 board_postclk_init,
826#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000827 env_init, /* initialize environment */
828 init_baud_rate, /* initialze baudrate settings */
829 serial_init, /* serial communications setup */
830 console_init_f, /* stage 1 init of console */
831 display_options, /* say that we are here */
832 display_text_info, /* show debugging info if required */
Simon Glass76d1d022017-03-28 10:27:30 -0600833#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH) || \
834 defined(CONFIG_X86)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000835 checkcpu,
836#endif
Simon Glasscc664002017-01-23 13:31:25 -0700837#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000838 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700839#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000840#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900841 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000842#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000843 INIT_FUNC_WATCHDOG_INIT
844#if defined(CONFIG_MISC_INIT_F)
845 misc_init_f,
846#endif
847 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100848#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000849 init_func_i2c,
850#endif
851#if defined(CONFIG_HARD_SPI)
852 init_func_spi,
853#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000854 announce_dram_init,
855 /* TODO: unify all these dram functions? */
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800856#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200857 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || \
858 defined(CONFIG_SH)
Simon Glass1938f4a2013-03-11 06:49:53 +0000859 dram_init, /* configure available RAM banks */
860#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100861#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000862 init_func_ram,
863#endif
864#ifdef CONFIG_POST
865 post_init_f,
866#endif
867 INIT_FUNC_WATCHDOG_RESET
868#if defined(CONFIG_SYS_DRAM_TEST)
869 testdram,
870#endif /* CONFIG_SYS_DRAM_TEST */
871 INIT_FUNC_WATCHDOG_RESET
872
Simon Glass1938f4a2013-03-11 06:49:53 +0000873#ifdef CONFIG_POST
874 init_post,
875#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000876 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000877 /*
878 * Now that we have DRAM mapped and working, we can
879 * relocate the code and continue running from DRAM.
880 *
881 * Reserve memory at end of RAM for (top down in that order):
882 * - area that won't get touched by U-Boot and Linux (optional)
883 * - kernel log buffer
884 * - protected RAM
885 * - LCD framebuffer
886 * - monitor code
887 * - board info struct
888 */
889 setup_dest_addr,
890#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
891 reserve_logbuffer,
892#endif
893#ifdef CONFIG_PRAM
894 reserve_pram,
895#endif
896 reserve_round_4k,
897#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
898 defined(CONFIG_ARM)
899 reserve_mmu,
900#endif
Simon Glass5a541942016-01-18 19:52:21 -0700901#ifdef CONFIG_DM_VIDEO
902 reserve_video,
903#else
904# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000905 reserve_lcd,
Simon Glass5a541942016-01-18 19:52:21 -0700906# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000907 /* TODO: Why the dependency on CONFIG_8xx? */
Simon Glass5a541942016-01-18 19:52:21 -0700908# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800909 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400910 !defined(CONFIG_M68K)
Simon Glass5a541942016-01-18 19:52:21 -0700911 reserve_legacy_video,
912# endif
913#endif /* CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700914 reserve_trace,
Simon Glass1938f4a2013-03-11 06:49:53 +0000915 reserve_uboot,
Simon Glass8cae8a62013-03-05 14:39:45 +0000916#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000917 reserve_malloc,
918 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000919#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000920 setup_machine,
921 reserve_global_data,
922 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700923 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000924 reserve_stacks,
925 setup_dram_config,
926 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200927#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
928 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000929 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100930#endif
931#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000932 INIT_FUNC_WATCHDOG_RESET
933 setup_board_part2,
934#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000935 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000936#ifdef CONFIG_SYS_EXTBDINFO
937 setup_board_extra,
938#endif
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100939#ifdef CONFIG_OF_BOARD_FIXUP
940 fix_fdt,
941#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000942 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000943 reloc_fdt,
944 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300945#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700946 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700947 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700948 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700949#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300950#if defined(CONFIG_XTENSA)
951 clear_bss,
952#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700953#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
954 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000955 jump_to_copy,
956#endif
957 NULL,
958};
959
960void board_init_f(ulong boot_flags)
961{
York Sun2a1680e2014-05-02 17:28:04 -0700962#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
963 /*
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400964 * For some architectures, global data is initialized and used before
York Sun2a1680e2014-05-02 17:28:04 -0700965 * calling this function. The data should be preserved. For others,
966 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
967 * here to host global data until relocation.
968 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000969 gd_t data;
970
971 gd = &data;
972
David Fengcce6be72013-12-14 11:47:36 +0800973 /*
974 * Clear global data before it is accessed at debug print
975 * in initcall_run_list. Otherwise the debug print probably
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400976 * get the wrong value of gd->have_console.
David Fengcce6be72013-12-14 11:47:36 +0800977 */
David Fengcce6be72013-12-14 11:47:36 +0800978 zero_global_data();
979#endif
980
Simon Glass1938f4a2013-03-11 06:49:53 +0000981 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400982 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000983
984 if (initcall_run_list(init_sequence_f))
985 hang();
986
Ben Stoltz9b217492015-07-31 09:31:37 -0600987#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass530f27e2017-01-16 07:03:49 -0700988 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000989 /* NOTREACHED - jump_to_copy() does not return */
990 hang();
991#endif
992}
993
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300994#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000995/*
996 * For now this code is only used on x86.
997 *
998 * init_sequence_f_r is the list of init functions which are run when
999 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1000 * The following limitations must be considered when implementing an
1001 * '_f_r' function:
1002 * - 'static' variables are read-only
1003 * - Global Data (gd->xxx) is read/write
1004 *
1005 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1006 * supported). It _should_, if possible, copy global data to RAM and
1007 * initialise the CPU caches (to speed up the relocation process)
1008 *
1009 * NOTE: At present only x86 uses this route, but it is intended that
1010 * all archs will move to this when generic relocation is implemented.
1011 */
Simon Glass4acff452017-01-16 07:03:50 -07001012static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001013#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001014 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001015#endif
Simon Glass48a33802013-03-05 14:39:52 +00001016
1017 NULL,
1018};
1019
1020void board_init_f_r(void)
1021{
1022 if (initcall_run_list(init_sequence_f_r))
1023 hang();
1024
1025 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001026 * The pre-relocation drivers may be using memory that has now gone
1027 * away. Mark serial as unavailable - this will fall back to the debug
1028 * UART if available.
1029 */
1030 gd->flags &= ~GD_FLG_SERIAL_READY;
1031
1032 /*
Simon Glass48a33802013-03-05 14:39:52 +00001033 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1034 * Transfer execution from Flash to RAM by calculating the address
1035 * of the in-RAM copy of board_init_r() and calling it
1036 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001037 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001038
1039 /* NOTREACHED - board_init_r() does not return */
1040 hang();
1041}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001042#endif /* CONFIG_X86 */