blob: 228c2c82261bafaa352d0e2d268048824fd5664d [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Graeme Russdbf71152011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
wdenk8bde7f72003-06-27 21:31:46 +00004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
Graeme Russdbf71152011-04-13 19:43:26 +10007 *
8 * (C) Copyright 2002
9 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
wdenk8bde7f72003-06-27 21:31:46 +000010 *
wdenk2262cfe2002-11-18 00:14:45 +000011 * (C) Copyright 2002
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Marius Groeger <mgroeger@sysgo.de>
14 *
15 * See file CREDITS for list of people who contributed to this
16 * project.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MA 02111-1307 USA
32 */
33
34#include <common.h>
Simon Glassf697d522013-02-28 19:26:15 +000035#include <fdtdec.h>
wdenk2262cfe2002-11-18 00:14:45 +000036#include <watchdog.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020037#include <stdio_dev.h>
Graeme Russfea25722011-04-13 19:43:28 +100038#include <asm/u-boot-x86.h>
Graeme Russa1d57b72011-12-23 21:14:22 +110039#include <asm/relocate.h>
Graeme Russ8d616252012-11-27 15:38:36 +000040#include <asm/processor.h>
Simon Glass86cfb6b2013-03-05 14:39:54 +000041#include <asm/sections.h>
wdenk2262cfe2002-11-18 00:14:45 +000042
Graeme Russd47ab0e2011-12-23 16:51:29 +110043#include <asm/init_helpers.h>
44#include <asm/init_wrappers.h>
wdenk2262cfe2002-11-18 00:14:45 +000045
wdenk2262cfe2002-11-18 00:14:45 +000046/*
47 * Breath some life into the board...
48 *
Graeme Russa1d57b72011-12-23 21:14:22 +110049 * Getting the board up and running is a three-stage process:
50 * 1) Execute from Flash, SDRAM Uninitialised
51 * At this point, there is a limited amount of non-SDRAM memory
52 * (typically the CPU cache, but can also be SRAM or even a buffer of
53 * of some peripheral). This limited memory is used to hold:
54 * - The initial copy of the Global Data Structure
55 * - A temporary stack
56 * - A temporary x86 Global Descriptor Table
57 * - The pre-console buffer (if enabled)
wdenk2262cfe2002-11-18 00:14:45 +000058 *
Graeme Russa1d57b72011-12-23 21:14:22 +110059 * The following is performed during this phase of execution:
60 * - Core low-level CPU initialisation
61 * - Console initialisation
62 * - SDRAM initialisation
63 *
64 * 2) Execute from Flash, SDRAM Initialised
65 * At this point we copy Global Data from the initial non-SDRAM
66 * memory and set up the permanent stack in SDRAM. The CPU cache is no
67 * longer being used as temporary memory, so we can now fully enable
68 * it.
69 *
70 * The following is performed during this phase of execution:
71 * - Create final stack in SDRAM
72 * - Copy Global Data from temporary memory to SDRAM
73 * - Enabling of CPU cache(s),
74 * - Copying of U-Boot code and data from Flash to RAM
75 * - Clearing of the BSS
76 * - ELF relocation adjustments
77 *
78 * 3) Execute from SDRAM
79 * The following is performed during this phase of execution:
80 * - All remaining initialisation
wdenk2262cfe2002-11-18 00:14:45 +000081 */
82
83/*
Graeme Russa1d57b72011-12-23 21:14:22 +110084 * The requirements for any new initalization function is simple: it is
85 * a function with no parameters which returns an integer return code,
86 * where 0 means "continue" and != 0 means "fatal error, hang the system"
wdenk2262cfe2002-11-18 00:14:45 +000087 */
88typedef int (init_fnc_t) (void);
89
Graeme Russa1d57b72011-12-23 21:14:22 +110090/*
91 * init_sequence_f is the list of init functions which are run when U-Boot
92 * is executing from Flash with a limited 'C' environment. The following
93 * limitations must be considered when implementing an '_f' function:
94 * - 'static' variables are read-only
95 * - Global Data (gd->xxx) is read/write
96 * - Stack space is limited
97 *
98 * The '_f' sequence must, as a minimum, initialise SDRAM. It _should_
99 * also initialise the console (to provide early debug output)
100 */
Graeme Russe4f78d72011-02-12 15:12:10 +1100101init_fnc_t *init_sequence_f[] = {
102 cpu_init_f,
103 board_early_init_f,
Gabe Blackb208c7f2012-11-03 11:41:30 +0000104#ifdef CONFIG_OF_CONTROL
105 find_fdt,
106 fdtdec_check_fdt,
107#endif
Graeme Russe4f78d72011-02-12 15:12:10 +1100108 env_init,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100109 init_baudrate_f,
Graeme Russe4f78d72011-02-12 15:12:10 +1100110 serial_init,
111 console_init_f,
Gabe Blackb208c7f2012-11-03 11:41:30 +0000112#ifdef CONFIG_OF_CONTROL
113 prepare_fdt,
114#endif
Graeme Russe4f78d72011-02-12 15:12:10 +1100115 dram_init_f,
116 calculate_relocation_address,
Graeme Russe4f78d72011-02-12 15:12:10 +1100117
118 NULL,
119};
120
Graeme Russa1d57b72011-12-23 21:14:22 +1100121/*
122 * init_sequence_f_r is the list of init functions which are run when
123 * U-Boot is executing from Flash with a semi-limited 'C' environment.
124 * The following limitations must be considered when implementing an
125 * '_f_r' function:
126 * - 'static' variables are read-only
127 * - Global Data (gd->xxx) is read/write
128 *
129 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
130 * supported). It _should_, if possible, copy global data to RAM and
131 * initialise the CPU caches (to speed up the relocation process)
132 */
133init_fnc_t *init_sequence_f_r[] = {
Graeme Russa1d57b72011-12-23 21:14:22 +1100134 init_cache_f_r,
135 copy_uboot_to_ram,
Simon Glassf697d522013-02-28 19:26:15 +0000136 copy_fdt_to_ram,
Graeme Russa1d57b72011-12-23 21:14:22 +1100137 clear_bss,
138 do_elf_reloc_fixups,
139
140 NULL,
141};
142
143/*
144 * init_sequence_r is the list of init functions which are run when U-Boot
145 * is executing from RAM with a full 'C' environment. There are no longer
146 * any limitations which must be considered when implementing an '_r'
147 * function, (i.e.'static' variables are read/write)
148 *
149 * If not already done, the '_r' sequence must copy global data to RAM and
150 * (should) initialise the CPU caches.
151 */
Graeme Russe4f78d72011-02-12 15:12:10 +1100152init_fnc_t *init_sequence_r[] = {
Graeme Russa1d57b72011-12-23 21:14:22 +1100153 set_reloc_flag_r,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100154 init_bd_struct_r,
155 mem_malloc_init_r,
156 cpu_init_r,
157 board_early_init_r,
158 dram_init,
159 interrupt_init,
wdenk8bde7f72003-06-27 21:31:46 +0000160 timer_init,
wdenk2262cfe2002-11-18 00:14:45 +0000161 display_banner,
162 display_dram_config,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100163 serial_initialize_r,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100164#ifndef CONFIG_SYS_NO_FLASH
165 flash_init_r,
166#endif
Graeme Russd47ab0e2011-12-23 16:51:29 +1100167#ifdef CONFIG_PCI
168 pci_init_r,
169#endif
Simon Glass192868b2013-03-11 06:08:09 +0000170#ifdef CONFIG_SPI
171 init_func_spi,
172#endif
173 env_relocate_r,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100174 stdio_init,
175 jumptable_init_r,
176 console_init_r,
177#ifdef CONFIG_MISC_INIT_R
178 misc_init_r,
179#endif
Graeme Russd47ab0e2011-12-23 16:51:29 +1100180#if defined(CONFIG_CMD_KGDB)
181 kgdb_init_r,
182#endif
183 enable_interrupts_r,
184#ifdef CONFIG_STATUS_LED
185 status_led_set_r,
186#endif
187 set_load_addr_r,
Graeme Russd47ab0e2011-12-23 16:51:29 +1100188#if defined(CONFIG_CMD_IDE)
189 ide_init_r,
190#endif
191#if defined(CONFIG_CMD_SCSI)
192 scsi_init_r,
193#endif
194#if defined(CONFIG_CMD_DOC)
195 doc_init_r,
196#endif
197#ifdef CONFIG_BITBANGMII
198 bb_miiphy_init_r,
199#endif
200#if defined(CONFIG_CMD_NET)
201 eth_initialize_r,
202#ifdef CONFIG_RESET_PHY_R
203 reset_phy_r,
204#endif
205#endif
206#ifdef CONFIG_LAST_STAGE_INIT
207 last_stage_init,
208#endif
wdenk2262cfe2002-11-18 00:14:45 +0000209 NULL,
210};
211
Graeme Russd47ab0e2011-12-23 16:51:29 +1100212static void do_init_loop(init_fnc_t **init_fnc_ptr)
213{
214 for (; *init_fnc_ptr; ++init_fnc_ptr) {
215 WATCHDOG_RESET();
216 if ((*init_fnc_ptr)() != 0)
217 hang();
218 }
219}
220
Graeme Russ96cd6642011-02-12 15:11:54 +1100221void board_init_f(ulong boot_flags)
Graeme Russ1c409bc2009-11-24 20:04:21 +1100222{
Simon Glass1938f4a2013-03-11 06:49:53 +0000223 gd->fdt_blob = gd->new_fdt = NULL;
Graeme Russdbf71152011-04-13 19:43:26 +1000224 gd->flags = boot_flags;
225
Graeme Russd47ab0e2011-12-23 16:51:29 +1100226 do_init_loop(init_sequence_f);
Graeme Russf2ff75c2010-10-07 20:03:33 +1100227
Graeme Russf48dd6f2012-01-01 15:06:39 +1100228 /*
Graeme Russa1d57b72011-12-23 21:14:22 +1100229 * SDRAM and console are now initialised. The final stack can now
230 * be setup in SDRAM. Code execution will continue in Flash, but
231 * with the stack in SDRAM and Global Data in temporary memory
Graeme Russf48dd6f2012-01-01 15:06:39 +1100232 * (CPU cache)
233 */
234 board_init_f_r_trampoline(gd->start_addr_sp);
Graeme Russ161b3582010-10-07 20:03:29 +1100235
Graeme Russf48dd6f2012-01-01 15:06:39 +1100236 /* NOTREACHED - board_init_f_r_trampoline() does not return */
237 while (1)
238 ;
239}
240
241void board_init_f_r(void)
242{
Graeme Russa1d57b72011-12-23 21:14:22 +1100243 do_init_loop(init_sequence_f_r);
Graeme Russ98f1fa92011-12-27 22:46:42 +1100244
Graeme Russa1d57b72011-12-23 21:14:22 +1100245 /*
246 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
247 * Transfer execution from Flash to RAM by calculating the address
248 * of the in-RAM copy of board_init_r() and calling it
249 */
250 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
Graeme Russ98f1fa92011-12-27 22:46:42 +1100251
Graeme Russa1d57b72011-12-23 21:14:22 +1100252 /* NOTREACHED - board_init_r() does not return */
Graeme Russ83088af2011-11-08 02:33:15 +0000253 while (1)
254 ;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100255}
256
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000257void board_init_r(gd_t *id, ulong dest_addr)
wdenk2262cfe2002-11-18 00:14:45 +0000258{
Graeme Russd47ab0e2011-12-23 16:51:29 +1100259 do_init_loop(init_sequence_r);
wdenk8bde7f72003-06-27 21:31:46 +0000260
wdenk2262cfe2002-11-18 00:14:45 +0000261 /* main_loop() can return to retry autoboot, if so just run it again. */
Graeme Russ83088af2011-11-08 02:33:15 +0000262 for (;;)
wdenk7a8e9bed2003-05-31 18:35:21 +0000263 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000264
265 /* NOTREACHED - no way out of command loop except booting */
266}