blob: 91cb2a770d1d592de88736e2c4f48e788adcb92b [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{
183#ifdef CONFIG_BOARD_TYPES
184 int board_type = gd->board_type;
185#else
186 int board_type = 0; /* use dummy arg */
187#endif
188
189 gd->ram_size = initdram(board_type);
190
191 if (gd->ram_size > 0)
192 return 0;
193
194 puts("*** failed ***\n");
195 return 1;
196}
197#endif
198
Simon Glass1938f4a2013-03-11 06:49:53 +0000199static int show_dram_config(void)
200{
York Sunfa39ffe2014-05-02 17:28:05 -0700201 unsigned long long size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000202
203#ifdef CONFIG_NR_DRAM_BANKS
204 int i;
205
206 debug("\nRAM Configuration:\n");
207 for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
208 size += gd->bd->bi_dram[i].size;
Bin Meng715f5992015-08-06 01:31:20 -0700209 debug("Bank #%d: %llx ", i,
210 (unsigned long long)(gd->bd->bi_dram[i].start));
Simon Glass1938f4a2013-03-11 06:49:53 +0000211#ifdef DEBUG
212 print_size(gd->bd->bi_dram[i].size, "\n");
213#endif
214 }
215 debug("\nDRAM: ");
216#else
217 size = gd->ram_size;
218#endif
219
Simon Glasse4fef6c2013-03-11 14:30:42 +0000220 print_size(size, "");
221 board_add_ram_info(0);
222 putc('\n');
Simon Glass1938f4a2013-03-11 06:49:53 +0000223
224 return 0;
225}
226
Jeroen Hofsteedd2a6cd2014-10-08 22:57:22 +0200227__weak void dram_init_banksize(void)
Simon Glass1938f4a2013-03-11 06:49:53 +0000228{
229#if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE)
230 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
231 gd->bd->bi_dram[0].size = get_effective_memsize();
232#endif
233}
234
Heiko Schocherea818db2013-01-29 08:53:15 +0100235#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000236static int init_func_i2c(void)
237{
238 puts("I2C: ");
trem815a76f2013-09-21 18:13:34 +0200239#ifdef CONFIG_SYS_I2C
240 i2c_init_all();
241#else
Simon Glasse4fef6c2013-03-11 14:30:42 +0000242 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
trem815a76f2013-09-21 18:13:34 +0200243#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000244 puts("ready\n");
245 return 0;
246}
247#endif
248
249#if defined(CONFIG_HARD_SPI)
250static int init_func_spi(void)
251{
252 puts("SPI: ");
253 spi_init();
254 puts("ready\n");
255 return 0;
256}
257#endif
258
259__maybe_unused
Simon Glass1938f4a2013-03-11 06:49:53 +0000260static int zero_global_data(void)
261{
262 memset((void *)gd, '\0', sizeof(gd_t));
263
264 return 0;
265}
266
267static int setup_mon_len(void)
268{
Michal Simeke945f6d2014-05-08 16:08:44 +0200269#if defined(__ARM__) || defined(__MICROBLAZE__)
Albert ARIBAUDb60eff32014-02-22 17:53:43 +0100270 gd->mon_len = (ulong)&__bss_end - (ulong)_start;
Ben Stoltz9b217492015-07-31 09:31:37 -0600271#elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP)
Simon Glassa733b062013-04-26 02:53:43 +0000272 gd->mon_len = (ulong)&_end - (ulong)_init;
Tom Riniea3310e2017-03-14 11:08:10 -0400273#elif defined(CONFIG_NIOS2) || defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800274 gd->mon_len = CONFIG_SYS_MONITOR_LEN;
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200275#elif defined(CONFIG_NDS32) || defined(CONFIG_SH)
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800276 gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start);
Simon Glassb0b35952016-05-14 18:49:28 -0600277#elif defined(CONFIG_SYS_MONITOR_BASE)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000278 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
279 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
Simon Glass632efa72013-03-11 07:06:48 +0000280#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000281 return 0;
282}
283
284__weak int arch_cpu_init(void)
285{
286 return 0;
287}
288
Paul Burton8ebf5062016-09-21 11:18:46 +0100289__weak int mach_cpu_init(void)
290{
291 return 0;
292}
293
Simon Glass1938f4a2013-03-11 06:49:53 +0000294/* Get the top of usable RAM */
295__weak ulong board_get_usable_ram_top(ulong total_size)
296{
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700297#ifdef CONFIG_SYS_SDRAM_BASE
298 /*
Simon Glass4c509342015-04-28 20:25:03 -0600299 * Detect whether we have so much RAM that it goes past the end of our
Stephen Warren1e4d11a2014-12-23 10:34:49 -0700300 * 32-bit address space. If so, clip the usable RAM so it doesn't.
301 */
302 if (gd->ram_top < CONFIG_SYS_SDRAM_BASE)
303 /*
304 * Will wrap back to top of 32-bit space when reservations
305 * are made.
306 */
307 return 0;
308#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000309 return gd->ram_top;
310}
311
312static int setup_dest_addr(void)
313{
314 debug("Monitor len: %08lX\n", gd->mon_len);
315 /*
316 * Ram is setup, size stored in gd !!
317 */
318 debug("Ram size: %08lX\n", (ulong)gd->ram_size);
York Sun36cc0de2017-03-06 09:02:28 -0800319#if defined(CONFIG_SYS_MEM_TOP_HIDE)
Simon Glass1938f4a2013-03-11 06:49:53 +0000320 /*
321 * Subtract specified amount of memory to hide so that it won't
322 * get "touched" at all by U-Boot. By fixing up gd->ram_size
323 * the Linux kernel should now get passed the now "corrected"
York Sun36cc0de2017-03-06 09:02:28 -0800324 * memory size and won't touch it either. This should work
325 * for arch/ppc and arch/powerpc. Only Linux board ports in
326 * arch/powerpc with bootwrapper support, that recalculate the
327 * memory size from the SDRAM controller setup will have to
328 * get fixed.
Simon Glass1938f4a2013-03-11 06:49:53 +0000329 */
York Sun36cc0de2017-03-06 09:02:28 -0800330 gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE;
331#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000332#ifdef CONFIG_SYS_SDRAM_BASE
333 gd->ram_top = CONFIG_SYS_SDRAM_BASE;
334#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000335 gd->ram_top += get_effective_memsize();
Simon Glass1938f4a2013-03-11 06:49:53 +0000336 gd->ram_top = board_get_usable_ram_top(gd->mon_len);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000337 gd->relocaddr = gd->ram_top;
Simon Glass1938f4a2013-03-11 06:49:53 +0000338 debug("Ram top: %08lX\n", (ulong)gd->ram_top);
Gabriel Huauec3b4822014-09-03 13:57:54 -0700339#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
Simon Glasse4fef6c2013-03-11 14:30:42 +0000340 /*
341 * We need to make sure the location we intend to put secondary core
342 * boot code is reserved and not used by any part of u-boot
343 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000344 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
345 gd->relocaddr = determine_mp_bootpg(NULL);
346 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000347 }
348#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000349 return 0;
350}
351
352#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
353static int reserve_logbuffer(void)
354{
355 /* reserve kernel log buffer */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000356 gd->relocaddr -= LOGBUFF_RESERVE;
Simon Glass1938f4a2013-03-11 06:49:53 +0000357 debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000358 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000359 return 0;
360}
361#endif
362
363#ifdef CONFIG_PRAM
364/* reserve protected RAM */
365static int reserve_pram(void)
366{
367 ulong reg;
368
369 reg = getenv_ulong("pram", 10, CONFIG_PRAM);
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000370 gd->relocaddr -= (reg << 10); /* size is in kB */
Simon Glass1938f4a2013-03-11 06:49:53 +0000371 debug("Reserving %ldk for protected RAM at %08lx\n", reg,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000372 gd->relocaddr);
Simon Glass1938f4a2013-03-11 06:49:53 +0000373 return 0;
374}
375#endif /* CONFIG_PRAM */
376
377/* Round memory pointer down to next 4 kB limit */
378static int reserve_round_4k(void)
379{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000380 gd->relocaddr &= ~(4096 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000381 return 0;
382}
383
384#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
385 defined(CONFIG_ARM)
386static int reserve_mmu(void)
387{
388 /* reserve TLB table */
David Fengcce6be72013-12-14 11:47:36 +0800389 gd->arch.tlb_size = PGTABLE_SIZE;
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000390 gd->relocaddr -= gd->arch.tlb_size;
Simon Glass1938f4a2013-03-11 06:49:53 +0000391
392 /* round down to next 64 kB limit */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000393 gd->relocaddr &= ~(0x10000 - 1);
Simon Glass1938f4a2013-03-11 06:49:53 +0000394
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000395 gd->arch.tlb_addr = gd->relocaddr;
Simon Glass1938f4a2013-03-11 06:49:53 +0000396 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
397 gd->arch.tlb_addr + gd->arch.tlb_size);
York Sun50e93b92016-06-24 16:46:19 -0700398
399#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
400 /*
401 * Record allocated tlb_addr in case gd->tlb_addr to be overwritten
402 * with location within secure ram.
403 */
404 gd->arch.tlb_allocated = gd->arch.tlb_addr;
405#endif
406
Simon Glass1938f4a2013-03-11 06:49:53 +0000407 return 0;
408}
409#endif
410
Simon Glass5a541942016-01-18 19:52:21 -0700411#ifdef CONFIG_DM_VIDEO
412static int reserve_video(void)
413{
414 ulong addr;
415 int ret;
416
417 addr = gd->relocaddr;
418 ret = video_reserve(&addr);
419 if (ret)
420 return ret;
421 gd->relocaddr = addr;
422
423 return 0;
424}
425#else
426
427# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000428static int reserve_lcd(void)
429{
Simon Glass5a541942016-01-18 19:52:21 -0700430# ifdef CONFIG_FB_ADDR
Simon Glass1938f4a2013-03-11 06:49:53 +0000431 gd->fb_base = CONFIG_FB_ADDR;
Simon Glass5a541942016-01-18 19:52:21 -0700432# else
Simon Glass1938f4a2013-03-11 06:49:53 +0000433 /* reserve memory for LCD display (always full pages) */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000434 gd->relocaddr = lcd_setmem(gd->relocaddr);
435 gd->fb_base = gd->relocaddr;
Simon Glass5a541942016-01-18 19:52:21 -0700436# endif /* CONFIG_FB_ADDR */
437
Simon Glass1938f4a2013-03-11 06:49:53 +0000438 return 0;
439}
Simon Glass5a541942016-01-18 19:52:21 -0700440# endif /* CONFIG_LCD */
Simon Glass1938f4a2013-03-11 06:49:53 +0000441
Simon Glass5a541942016-01-18 19:52:21 -0700442# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Simon Glass8703ef32016-01-18 19:52:20 -0700443 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400444 !defined(CONFIG_M68K)
Simon Glass8703ef32016-01-18 19:52:20 -0700445static int reserve_legacy_video(void)
446{
447 /* reserve memory for video display (always full pages) */
448 gd->relocaddr = video_setmem(gd->relocaddr);
449 gd->fb_base = gd->relocaddr;
450
451 return 0;
452}
Simon Glass5a541942016-01-18 19:52:21 -0700453# endif
454#endif /* !CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700455
Simon Glass71c52db2013-06-11 11:14:42 -0700456static int reserve_trace(void)
457{
458#ifdef CONFIG_TRACE
459 gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE;
460 gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE);
461 debug("Reserving %dk for trace data at: %08lx\n",
462 CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr);
463#endif
464
465 return 0;
466}
467
Simon Glass1938f4a2013-03-11 06:49:53 +0000468static int reserve_uboot(void)
469{
470 /*
471 * reserve memory for U-Boot code, data & bss
472 * round down to next 4 kB limit
473 */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000474 gd->relocaddr -= gd->mon_len;
475 gd->relocaddr &= ~(4096 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000476#ifdef CONFIG_E500
477 /* round down to next 64 kB limit so that IVPR stays aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000478 gd->relocaddr &= ~(65536 - 1);
Simon Glasse4fef6c2013-03-11 14:30:42 +0000479#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000480
481 debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10,
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000482 gd->relocaddr);
483
484 gd->start_addr_sp = gd->relocaddr;
485
Simon Glass1938f4a2013-03-11 06:49:53 +0000486 return 0;
487}
488
Simon Glass8cae8a62013-03-05 14:39:45 +0000489#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000490/* reserve memory for malloc() area */
491static int reserve_malloc(void)
492{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000493 gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN;
Simon Glass1938f4a2013-03-11 06:49:53 +0000494 debug("Reserving %dk for malloc() at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000495 TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000496 return 0;
497}
498
499/* (permanently) allocate a Board Info struct */
500static int reserve_board(void)
501{
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800502 if (!gd->bd) {
503 gd->start_addr_sp -= sizeof(bd_t);
504 gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t));
505 memset(gd->bd, '\0', sizeof(bd_t));
506 debug("Reserving %zu Bytes for Board Info at: %08lx\n",
507 sizeof(bd_t), gd->start_addr_sp);
508 }
Simon Glass1938f4a2013-03-11 06:49:53 +0000509 return 0;
510}
Simon Glass8cae8a62013-03-05 14:39:45 +0000511#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000512
513static int setup_machine(void)
514{
515#ifdef CONFIG_MACH_TYPE
516 gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */
517#endif
518 return 0;
519}
520
521static int reserve_global_data(void)
522{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000523 gd->start_addr_sp -= sizeof(gd_t);
524 gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t));
Simon Glass1938f4a2013-03-11 06:49:53 +0000525 debug("Reserving %zu Bytes for Global Data at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000526 sizeof(gd_t), gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000527 return 0;
528}
529
530static int reserve_fdt(void)
531{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100532#ifndef CONFIG_OF_EMBED
Simon Glass1938f4a2013-03-11 06:49:53 +0000533 /*
Simon Glass4c509342015-04-28 20:25:03 -0600534 * If the device tree is sitting immediately above our image then we
Simon Glass1938f4a2013-03-11 06:49:53 +0000535 * must relocate it. If it is embedded in the data section, then it
536 * will be relocated with other data.
537 */
538 if (gd->fdt_blob) {
539 gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
540
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000541 gd->start_addr_sp -= gd->fdt_size;
542 gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size);
Simon Glassa733b062013-04-26 02:53:43 +0000543 debug("Reserving %lu Bytes for FDT at: %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000544 gd->fdt_size, gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000545 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100546#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000547
548 return 0;
549}
550
Andreas Bießmann68145d42015-02-06 23:06:45 +0100551int arch_reserve_stacks(void)
552{
553 return 0;
554}
555
Simon Glass1938f4a2013-03-11 06:49:53 +0000556static int reserve_stacks(void)
557{
Andreas Bießmann68145d42015-02-06 23:06:45 +0100558 /* make stack pointer 16-byte aligned */
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000559 gd->start_addr_sp -= 16;
560 gd->start_addr_sp &= ~0xf;
Simon Glass1938f4a2013-03-11 06:49:53 +0000561
562 /*
Simon Glass4c509342015-04-28 20:25:03 -0600563 * let the architecture-specific code tailor gd->start_addr_sp and
Andreas Bießmann68145d42015-02-06 23:06:45 +0100564 * gd->irq_sp
Simon Glass1938f4a2013-03-11 06:49:53 +0000565 */
Andreas Bießmann68145d42015-02-06 23:06:45 +0100566 return arch_reserve_stacks();
Simon Glass1938f4a2013-03-11 06:49:53 +0000567}
568
569static int display_new_sp(void)
570{
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000571 debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000572
573 return 0;
574}
575
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200576#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
577 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000578static int setup_board_part1(void)
579{
580 bd_t *bd = gd->bd;
581
582 /*
583 * Save local variables to board info struct
584 */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000585 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */
586 bd->bi_memsize = gd->ram_size; /* size in bytes */
587
588#ifdef CONFIG_SYS_SRAM_BASE
589 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */
590 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */
591#endif
592
Masahiro Yamada58dac322014-03-05 17:40:10 +0900593#if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \
Simon Glasse4fef6c2013-03-11 14:30:42 +0000594 defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
595 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
596#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100597#if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000598 bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */
599#endif
600#if defined(CONFIG_MPC83xx)
601 bd->bi_immrbar = CONFIG_SYS_IMMR;
602#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000603
604 return 0;
605}
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100606#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000607
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100608#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000609static int setup_board_part2(void)
610{
611 bd_t *bd = gd->bd;
612
613 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
614 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
615#if defined(CONFIG_CPM2)
616 bd->bi_cpmfreq = gd->arch.cpm_clk;
617 bd->bi_brgfreq = gd->arch.brg_clk;
618 bd->bi_sccfreq = gd->arch.scc_clk;
619 bd->bi_vco = gd->arch.vco_out;
620#endif /* CONFIG_CPM2 */
621#if defined(CONFIG_MPC512X)
622 bd->bi_ipsfreq = gd->arch.ips_clk;
623#endif /* CONFIG_MPC512X */
624#if defined(CONFIG_MPC5xxx)
625 bd->bi_ipbfreq = gd->arch.ipb_clk;
626 bd->bi_pcifreq = gd->pci_clk;
627#endif /* CONFIG_MPC5xxx */
Alison Wang1313db42015-02-12 18:33:15 +0800628#if defined(CONFIG_M68K) && defined(CONFIG_PCI)
629 bd->bi_pcifreq = gd->pci_clk;
630#endif
631#if defined(CONFIG_EXTRA_CLOCK)
632 bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */
633 bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */
634 bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */
635#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000636
637 return 0;
638}
639#endif
640
641#ifdef CONFIG_SYS_EXTBDINFO
642static int setup_board_extra(void)
643{
644 bd_t *bd = gd->bd;
645
646 strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version));
647 strncpy((char *) bd->bi_r_version, U_BOOT_VERSION,
648 sizeof(bd->bi_r_version));
649
650 bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */
651 bd->bi_plb_busfreq = gd->bus_clk;
652#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \
653 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
654 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
655 bd->bi_pci_busfreq = get_PCI_freq();
656 bd->bi_opbfreq = get_OPB_freq();
657#elif defined(CONFIG_XILINX_405)
658 bd->bi_pci_busfreq = get_PCI_freq();
659#endif
660
661 return 0;
662}
663#endif
664
Simon Glass1938f4a2013-03-11 06:49:53 +0000665#ifdef CONFIG_POST
666static int init_post(void)
667{
668 post_bootmode_init();
669 post_run(NULL, POST_ROM | post_bootmode_get(0));
670
671 return 0;
672}
673#endif
674
Simon Glass1938f4a2013-03-11 06:49:53 +0000675static int setup_dram_config(void)
676{
677 /* Ram is board specific, so move it to board code ... */
678 dram_init_banksize();
679
680 return 0;
681}
682
683static int reloc_fdt(void)
684{
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100685#ifndef CONFIG_OF_EMBED
Simon Glassf05ad9b2015-08-04 12:33:39 -0600686 if (gd->flags & GD_FLG_SKIP_RELOC)
687 return 0;
Simon Glass1938f4a2013-03-11 06:49:53 +0000688 if (gd->new_fdt) {
689 memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size);
690 gd->fdt_blob = gd->new_fdt;
691 }
Siva Durga Prasad Paladugue9acb9e2015-12-03 15:46:03 +0100692#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000693
694 return 0;
695}
696
697static int setup_reloc(void)
698{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600699 if (gd->flags & GD_FLG_SKIP_RELOC) {
700 debug("Skipping relocation due to flag\n");
701 return 0;
702 }
703
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800704#ifdef CONFIG_SYS_TEXT_BASE
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000705 gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
angelo@sysam.ite310b932015-02-12 01:40:17 +0100706#ifdef CONFIG_M68K
707 /*
708 * On all ColdFire arch cpu, monitor code starts always
709 * just after the default vector table location, so at 0x400
710 */
711 gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
712#endif
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800713#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000714 memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
715
716 debug("Relocation Offset is: %08lx\n", gd->reloc_off);
Simon Glassa733b062013-04-26 02:53:43 +0000717 debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000718 gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
719 gd->start_addr_sp);
Simon Glass1938f4a2013-03-11 06:49:53 +0000720
721 return 0;
722}
723
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100724#ifdef CONFIG_OF_BOARD_FIXUP
725static int fix_fdt(void)
726{
727 return board_fix_fdt((void *)gd->fdt_blob);
728}
729#endif
730
Simon Glass1938f4a2013-03-11 06:49:53 +0000731/* ARM calls relocate_code from its crt0.S */
Simon Glass530f27e2017-01-16 07:03:49 -0700732#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
733 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000734
735static int jump_to_copy(void)
736{
Simon Glassf05ad9b2015-08-04 12:33:39 -0600737 if (gd->flags & GD_FLG_SKIP_RELOC)
738 return 0;
Simon Glass48a33802013-03-05 14:39:52 +0000739 /*
740 * x86 is special, but in a nice way. It uses a trampoline which
741 * enables the dcache if possible.
742 *
743 * For now, other archs use relocate_code(), which is implemented
744 * similarly for all archs. When we do generic relocation, hopefully
745 * we can make all archs enable the dcache prior to relocation.
746 */
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300747#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +0000748 /*
749 * SDRAM and console are now initialised. The final stack can now
750 * be setup in SDRAM. Code execution will continue in Flash, but
751 * with the stack in SDRAM and Global Data in temporary memory
752 * (CPU cache)
753 */
Simon Glassf0c7d9c2015-08-10 20:44:32 -0600754 arch_setup_gd(gd->new_gd);
Simon Glass48a33802013-03-05 14:39:52 +0000755 board_init_f_r_trampoline(gd->start_addr_sp);
756#else
Masahiro Yamadaa0ba2792013-05-27 00:37:30 +0000757 relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +0000758#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000759
760 return 0;
761}
762#endif
763
764/* Record the board_init_f() bootstage (after arch_cpu_init()) */
765static int mark_bootstage(void)
766{
767 bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f");
768
769 return 0;
770}
771
Simon Glass9854a872015-11-08 23:47:48 -0700772static int initf_console_record(void)
773{
774#if defined(CONFIG_CONSOLE_RECORD) && defined(CONFIG_SYS_MALLOC_F_LEN)
775 return console_record_init();
776#else
777 return 0;
778#endif
779}
780
Simon Glassab7cd622014-07-23 06:55:04 -0600781static int initf_dm(void)
782{
783#if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN)
784 int ret;
785
786 ret = dm_init_and_scan(true);
787 if (ret)
788 return ret;
789#endif
Simon Glass1057e6c2016-02-24 09:14:50 -0700790#ifdef CONFIG_TIMER_EARLY
791 ret = dm_timer_init();
792 if (ret)
793 return ret;
794#endif
Simon Glassab7cd622014-07-23 06:55:04 -0600795
796 return 0;
797}
798
Simon Glass146251f2015-01-19 22:16:12 -0700799/* Architecture-specific memory reservation */
800__weak int reserve_arch(void)
801{
802 return 0;
803}
804
Simon Glassd4c671c2015-03-05 12:25:16 -0700805__weak int arch_cpu_init_dm(void)
806{
807 return 0;
808}
809
Simon Glass4acff452017-01-16 07:03:50 -0700810static const init_fnc_t init_sequence_f[] = {
Simon Glass1938f4a2013-03-11 06:49:53 +0000811 setup_mon_len,
Simon Glassb45122f2015-02-27 22:06:34 -0700812#ifdef CONFIG_OF_CONTROL
Simon Glass08793612015-02-27 22:06:35 -0700813 fdtdec_setup,
Simon Glassb45122f2015-02-27 22:06:34 -0700814#endif
Kevin Hilmand2107182014-12-09 15:03:58 -0800815#ifdef CONFIG_TRACE
Simon Glass71c52db2013-06-11 11:14:42 -0700816 trace_early_init,
Kevin Hilmand2107182014-12-09 15:03:58 -0800817#endif
Simon Glass768e0f52014-11-10 18:00:18 -0700818 initf_malloc,
Simon Glass9854a872015-11-08 23:47:48 -0700819 initf_console_record,
Simon Glass671549e2017-03-28 10:27:18 -0600820#if defined(CONFIG_HAVE_FSP)
821 arch_fsp_init,
Bin Menga52a068e2015-08-20 06:40:18 -0700822#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000823 arch_cpu_init, /* basic arch cpu dependent setup */
Paul Burton8ebf5062016-09-21 11:18:46 +0100824 mach_cpu_init, /* SoC/machine dependent CPU setup */
Simon Glass3ea09532014-09-03 17:36:59 -0600825 initf_dm,
Simon Glassd4c671c2015-03-05 12:25:16 -0700826 arch_cpu_init_dm,
Thomas Chou67521952015-10-30 15:35:51 +0800827 mark_bootstage, /* need timer, go after init dm */
Simon Glass1938f4a2013-03-11 06:49:53 +0000828#if defined(CONFIG_BOARD_EARLY_INIT_F)
829 board_early_init_f,
830#endif
Simon Glass727e94a2017-03-28 10:27:26 -0600831#if defined(CONFIG_PPC) || defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K)
Simon Glassc252c062017-03-28 10:27:19 -0600832 /* get CPU and bus clocks according to the environment variable */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000833 get_clocks, /* get CPU and bus clocks (etc.) */
Simon Glass1793e782017-03-28 10:27:23 -0600834#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000835 timer_init, /* initialize timer */
Simon Glasse4fef6c2013-03-11 14:30:42 +0000836#if defined(CONFIG_BOARD_POSTCLK_INIT)
837 board_postclk_init,
838#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000839 env_init, /* initialize environment */
840 init_baud_rate, /* initialze baudrate settings */
841 serial_init, /* serial communications setup */
842 console_init_f, /* stage 1 init of console */
843 display_options, /* say that we are here */
844 display_text_info, /* show debugging info if required */
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200845#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000846 checkcpu,
847#endif
Simon Glasscc664002017-01-23 13:31:25 -0700848#if defined(CONFIG_DISPLAY_CPUINFO)
Simon Glass1938f4a2013-03-11 06:49:53 +0000849 print_cpuinfo, /* display cpu info (and speed) */
Simon Glasscc664002017-01-23 13:31:25 -0700850#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000851#if defined(CONFIG_DISPLAY_BOARDINFO)
Masahiro Yamada0365ffc2015-01-14 17:07:05 +0900852 show_board_info,
Simon Glass1938f4a2013-03-11 06:49:53 +0000853#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000854 INIT_FUNC_WATCHDOG_INIT
855#if defined(CONFIG_MISC_INIT_F)
856 misc_init_f,
857#endif
858 INIT_FUNC_WATCHDOG_RESET
Heiko Schocherea818db2013-01-29 08:53:15 +0100859#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000860 init_func_i2c,
861#endif
862#if defined(CONFIG_HARD_SPI)
863 init_func_spi,
864#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000865 announce_dram_init,
866 /* TODO: unify all these dram functions? */
Kun-Hua Huang2e88bb22015-08-24 14:52:35 +0800867#if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200868 defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) || \
869 defined(CONFIG_SH)
Simon Glass1938f4a2013-03-11 06:49:53 +0000870 dram_init, /* configure available RAM banks */
871#endif
angelo@sysam.ite310b932015-02-12 01:40:17 +0100872#if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000873 init_func_ram,
874#endif
875#ifdef CONFIG_POST
876 post_init_f,
877#endif
878 INIT_FUNC_WATCHDOG_RESET
879#if defined(CONFIG_SYS_DRAM_TEST)
880 testdram,
881#endif /* CONFIG_SYS_DRAM_TEST */
882 INIT_FUNC_WATCHDOG_RESET
883
Simon Glass1938f4a2013-03-11 06:49:53 +0000884#ifdef CONFIG_POST
885 init_post,
886#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000887 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000888 /*
889 * Now that we have DRAM mapped and working, we can
890 * relocate the code and continue running from DRAM.
891 *
892 * Reserve memory at end of RAM for (top down in that order):
893 * - area that won't get touched by U-Boot and Linux (optional)
894 * - kernel log buffer
895 * - protected RAM
896 * - LCD framebuffer
897 * - monitor code
898 * - board info struct
899 */
900 setup_dest_addr,
Tom Riniea3310e2017-03-14 11:08:10 -0400901#if defined(CONFIG_XTENSA)
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800902 /* Blackfin u-boot monitor should be on top of the ram */
903 reserve_uboot,
904#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000905#if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR)
906 reserve_logbuffer,
907#endif
908#ifdef CONFIG_PRAM
909 reserve_pram,
910#endif
911 reserve_round_4k,
912#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \
913 defined(CONFIG_ARM)
914 reserve_mmu,
915#endif
Simon Glass5a541942016-01-18 19:52:21 -0700916#ifdef CONFIG_DM_VIDEO
917 reserve_video,
918#else
919# ifdef CONFIG_LCD
Simon Glass1938f4a2013-03-11 06:49:53 +0000920 reserve_lcd,
Simon Glass5a541942016-01-18 19:52:21 -0700921# endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000922 /* TODO: Why the dependency on CONFIG_8xx? */
Simon Glass5a541942016-01-18 19:52:21 -0700923# if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800924 !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \
Tom Riniea3310e2017-03-14 11:08:10 -0400925 !defined(CONFIG_M68K)
Simon Glass5a541942016-01-18 19:52:21 -0700926 reserve_legacy_video,
927# endif
928#endif /* CONFIG_DM_VIDEO */
Simon Glass8703ef32016-01-18 19:52:20 -0700929 reserve_trace,
Tom Riniea3310e2017-03-14 11:08:10 -0400930#if !defined(CONFIG_XTENSA)
Simon Glass1938f4a2013-03-11 06:49:53 +0000931 reserve_uboot,
Sonic Zhangd54d7eb2014-07-17 19:01:34 +0800932#endif
Simon Glass8cae8a62013-03-05 14:39:45 +0000933#ifndef CONFIG_SPL_BUILD
Simon Glass1938f4a2013-03-11 06:49:53 +0000934 reserve_malloc,
935 reserve_board,
Simon Glass8cae8a62013-03-05 14:39:45 +0000936#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000937 setup_machine,
938 reserve_global_data,
939 reserve_fdt,
Simon Glass146251f2015-01-19 22:16:12 -0700940 reserve_arch,
Simon Glass1938f4a2013-03-11 06:49:53 +0000941 reserve_stacks,
942 setup_dram_config,
943 show_dram_config,
Vladimir Zapolskiye2099d72016-11-28 00:15:24 +0200944#if defined(CONFIG_M68K) || defined(CONFIG_MIPS) || defined(CONFIG_PPC) || \
945 defined(CONFIG_SH)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000946 setup_board_part1,
Daniel Schwierzeckfb3db632015-11-01 17:36:13 +0100947#endif
948#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
Simon Glasse4fef6c2013-03-11 14:30:42 +0000949 INIT_FUNC_WATCHDOG_RESET
950 setup_board_part2,
951#endif
Simon Glass1938f4a2013-03-11 06:49:53 +0000952 display_new_sp,
Simon Glasse4fef6c2013-03-11 14:30:42 +0000953#ifdef CONFIG_SYS_EXTBDINFO
954 setup_board_extra,
955#endif
mario.six@gdsys.cc2a792752017-02-22 16:07:22 +0100956#ifdef CONFIG_OF_BOARD_FIXUP
957 fix_fdt,
958#endif
Simon Glasse4fef6c2013-03-11 14:30:42 +0000959 INIT_FUNC_WATCHDOG_RESET
Simon Glass1938f4a2013-03-11 06:49:53 +0000960 reloc_fdt,
961 setup_reloc,
Alexey Brodkin3fb80162015-02-24 19:40:36 +0300962#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass313aef32015-01-01 16:18:09 -0700963 copy_uboot_to_ram,
Simon Glass313aef32015-01-01 16:18:09 -0700964 do_elf_reloc_fixups,
Simon Glass6bda55a2017-01-16 07:03:52 -0700965 clear_bss,
Simon Glass313aef32015-01-01 16:18:09 -0700966#endif
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300967#if defined(CONFIG_XTENSA)
968 clear_bss,
969#endif
Simon Glass530f27e2017-01-16 07:03:49 -0700970#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
971 !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +0000972 jump_to_copy,
973#endif
974 NULL,
975};
976
977void board_init_f(ulong boot_flags)
978{
York Sun2a1680e2014-05-02 17:28:04 -0700979#ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA
980 /*
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400981 * For some architectures, global data is initialized and used before
York Sun2a1680e2014-05-02 17:28:04 -0700982 * calling this function. The data should be preserved. For others,
983 * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack
984 * here to host global data until relocation.
985 */
Simon Glass1938f4a2013-03-11 06:49:53 +0000986 gd_t data;
987
988 gd = &data;
989
David Fengcce6be72013-12-14 11:47:36 +0800990 /*
991 * Clear global data before it is accessed at debug print
992 * in initcall_run_list. Otherwise the debug print probably
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400993 * get the wrong value of gd->have_console.
David Fengcce6be72013-12-14 11:47:36 +0800994 */
David Fengcce6be72013-12-14 11:47:36 +0800995 zero_global_data();
996#endif
997
Simon Glass1938f4a2013-03-11 06:49:53 +0000998 gd->flags = boot_flags;
Alexey Brodkin9aed5a22013-11-27 22:32:40 +0400999 gd->have_console = 0;
Simon Glass1938f4a2013-03-11 06:49:53 +00001000
1001 if (initcall_run_list(init_sequence_f))
1002 hang();
1003
Ben Stoltz9b217492015-07-31 09:31:37 -06001004#if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
Simon Glass530f27e2017-01-16 07:03:49 -07001005 !defined(CONFIG_EFI_APP) && !CONFIG_IS_ENABLED(X86_64)
Simon Glass1938f4a2013-03-11 06:49:53 +00001006 /* NOTREACHED - jump_to_copy() does not return */
1007 hang();
1008#endif
1009}
1010
Alexey Brodkin3fb80162015-02-24 19:40:36 +03001011#if defined(CONFIG_X86) || defined(CONFIG_ARC)
Simon Glass48a33802013-03-05 14:39:52 +00001012/*
1013 * For now this code is only used on x86.
1014 *
1015 * init_sequence_f_r is the list of init functions which are run when
1016 * U-Boot is executing from Flash with a semi-limited 'C' environment.
1017 * The following limitations must be considered when implementing an
1018 * '_f_r' function:
1019 * - 'static' variables are read-only
1020 * - Global Data (gd->xxx) is read/write
1021 *
1022 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
1023 * supported). It _should_, if possible, copy global data to RAM and
1024 * initialise the CPU caches (to speed up the relocation process)
1025 *
1026 * NOTE: At present only x86 uses this route, but it is intended that
1027 * all archs will move to this when generic relocation is implemented.
1028 */
Simon Glass4acff452017-01-16 07:03:50 -07001029static const init_fnc_t init_sequence_f_r[] = {
Simon Glass530f27e2017-01-16 07:03:49 -07001030#if !CONFIG_IS_ENABLED(X86_64)
Simon Glass48a33802013-03-05 14:39:52 +00001031 init_cache_f_r,
Simon Glass530f27e2017-01-16 07:03:49 -07001032#endif
Simon Glass48a33802013-03-05 14:39:52 +00001033
1034 NULL,
1035};
1036
1037void board_init_f_r(void)
1038{
1039 if (initcall_run_list(init_sequence_f_r))
1040 hang();
1041
1042 /*
Simon Glasse4d6ab02016-03-11 22:06:51 -07001043 * The pre-relocation drivers may be using memory that has now gone
1044 * away. Mark serial as unavailable - this will fall back to the debug
1045 * UART if available.
1046 */
1047 gd->flags &= ~GD_FLG_SERIAL_READY;
1048
1049 /*
Simon Glass48a33802013-03-05 14:39:52 +00001050 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
1051 * Transfer execution from Flash to RAM by calculating the address
1052 * of the in-RAM copy of board_init_r() and calling it
1053 */
Alexey Brodkin7bf9f202015-02-25 17:59:02 +03001054 (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr);
Simon Glass48a33802013-03-05 14:39:52 +00001055
1056 /* NOTREACHED - board_init_r() does not return */
1057 hang();
1058}
Alexey Brodkin5bcd19a2015-03-24 11:12:47 +03001059#endif /* CONFIG_X86 */