blob: 5f0b62cea6eede15baa0f9ea6a9c0dbdd7dc0cc7 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
wdenk591dda52002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk57b2d802003-06-27 21:31:46 +00007 *
wdenk591dda52002-11-18 00:14:45 +00008 * (C) Copyright 2002
Graeme Russ45fc1d82011-04-13 19:43:26 +10009 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
wdenk57b2d802003-06-27 21:31:46 +000010 *
wdenk591dda52002-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>
35#include <watchdog.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020036#include <stdio_dev.h>
Graeme Russcbfce1d2011-04-13 19:43:28 +100037#include <asm/u-boot-x86.h>
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110038#include <asm/relocate.h>
wdenk591dda52002-11-18 00:14:45 +000039
Graeme Russa875dda2011-12-23 16:51:29 +110040#include <asm/init_helpers.h>
41#include <asm/init_wrappers.h>
wdenk591dda52002-11-18 00:14:45 +000042
wdenk591dda52002-11-18 00:14:45 +000043/*
44 * Breath some life into the board...
45 *
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110046 * Getting the board up and running is a three-stage process:
47 * 1) Execute from Flash, SDRAM Uninitialised
48 * At this point, there is a limited amount of non-SDRAM memory
49 * (typically the CPU cache, but can also be SRAM or even a buffer of
50 * of some peripheral). This limited memory is used to hold:
51 * - The initial copy of the Global Data Structure
52 * - A temporary stack
53 * - A temporary x86 Global Descriptor Table
54 * - The pre-console buffer (if enabled)
wdenk591dda52002-11-18 00:14:45 +000055 *
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110056 * The following is performed during this phase of execution:
57 * - Core low-level CPU initialisation
58 * - Console initialisation
59 * - SDRAM initialisation
60 *
61 * 2) Execute from Flash, SDRAM Initialised
62 * At this point we copy Global Data from the initial non-SDRAM
63 * memory and set up the permanent stack in SDRAM. The CPU cache is no
64 * longer being used as temporary memory, so we can now fully enable
65 * it.
66 *
67 * The following is performed during this phase of execution:
68 * - Create final stack in SDRAM
69 * - Copy Global Data from temporary memory to SDRAM
70 * - Enabling of CPU cache(s),
71 * - Copying of U-Boot code and data from Flash to RAM
72 * - Clearing of the BSS
73 * - ELF relocation adjustments
74 *
75 * 3) Execute from SDRAM
76 * The following is performed during this phase of execution:
77 * - All remaining initialisation
wdenk591dda52002-11-18 00:14:45 +000078 */
79
80/*
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110081 * The requirements for any new initalization function is simple: it is
82 * a function with no parameters which returns an integer return code,
83 * where 0 means "continue" and != 0 means "fatal error, hang the system"
wdenk591dda52002-11-18 00:14:45 +000084 */
85typedef int (init_fnc_t) (void);
86
Graeme Russ3fb4f9e2011-12-23 21:14:22 +110087/*
88 * init_sequence_f is the list of init functions which are run when U-Boot
89 * is executing from Flash with a limited 'C' environment. The following
90 * limitations must be considered when implementing an '_f' function:
91 * - 'static' variables are read-only
92 * - Global Data (gd->xxx) is read/write
93 * - Stack space is limited
94 *
95 * The '_f' sequence must, as a minimum, initialise SDRAM. It _should_
96 * also initialise the console (to provide early debug output)
97 */
Graeme Russ6ec93c32011-02-12 15:12:10 +110098init_fnc_t *init_sequence_f[] = {
99 cpu_init_f,
100 board_early_init_f,
101 env_init,
Graeme Russa875dda2011-12-23 16:51:29 +1100102 init_baudrate_f,
Graeme Russ6ec93c32011-02-12 15:12:10 +1100103 serial_init,
104 console_init_f,
105 dram_init_f,
106 calculate_relocation_address,
Graeme Russ6ec93c32011-02-12 15:12:10 +1100107
108 NULL,
109};
110
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100111/*
112 * init_sequence_f_r is the list of init functions which are run when
113 * U-Boot is executing from Flash with a semi-limited 'C' environment.
114 * The following limitations must be considered when implementing an
115 * '_f_r' function:
116 * - 'static' variables are read-only
117 * - Global Data (gd->xxx) is read/write
118 *
119 * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if
120 * supported). It _should_, if possible, copy global data to RAM and
121 * initialise the CPU caches (to speed up the relocation process)
122 */
123init_fnc_t *init_sequence_f_r[] = {
124 copy_gd_to_ram_f_r,
125 init_cache_f_r,
126 copy_uboot_to_ram,
127 clear_bss,
128 do_elf_reloc_fixups,
129
130 NULL,
131};
132
133/*
134 * init_sequence_r is the list of init functions which are run when U-Boot
135 * is executing from RAM with a full 'C' environment. There are no longer
136 * any limitations which must be considered when implementing an '_r'
137 * function, (i.e.'static' variables are read/write)
138 *
139 * If not already done, the '_r' sequence must copy global data to RAM and
140 * (should) initialise the CPU caches.
141 */
Graeme Russ6ec93c32011-02-12 15:12:10 +1100142init_fnc_t *init_sequence_r[] = {
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100143 set_reloc_flag_r,
Graeme Russa875dda2011-12-23 16:51:29 +1100144 init_bd_struct_r,
145 mem_malloc_init_r,
146 cpu_init_r,
147 board_early_init_r,
148 dram_init,
149 interrupt_init,
wdenk57b2d802003-06-27 21:31:46 +0000150 timer_init,
wdenk591dda52002-11-18 00:14:45 +0000151 display_banner,
152 display_dram_config,
Graeme Russa875dda2011-12-23 16:51:29 +1100153#ifdef CONFIG_SERIAL_MULTI
154 serial_initialize_r,
155#endif
156#ifndef CONFIG_SYS_NO_FLASH
157 flash_init_r,
158#endif
159 env_relocate_r,
160#ifdef CONFIG_CMD_NET
161 init_ip_address_r,
162#endif
163#ifdef CONFIG_PCI
164 pci_init_r,
165#endif
166 stdio_init,
167 jumptable_init_r,
168 console_init_r,
169#ifdef CONFIG_MISC_INIT_R
170 misc_init_r,
171#endif
172#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
173 pci_init_r,
174#endif
175#if defined(CONFIG_CMD_KGDB)
176 kgdb_init_r,
177#endif
178 enable_interrupts_r,
179#ifdef CONFIG_STATUS_LED
180 status_led_set_r,
181#endif
182 set_load_addr_r,
183#if defined(CONFIG_CMD_NET)
184 set_bootfile_r,
185#endif
186#if defined(CONFIG_CMD_IDE)
187 ide_init_r,
188#endif
189#if defined(CONFIG_CMD_SCSI)
190 scsi_init_r,
191#endif
192#if defined(CONFIG_CMD_DOC)
193 doc_init_r,
194#endif
195#ifdef CONFIG_BITBANGMII
196 bb_miiphy_init_r,
197#endif
198#if defined(CONFIG_CMD_NET)
199 eth_initialize_r,
200#ifdef CONFIG_RESET_PHY_R
201 reset_phy_r,
202#endif
203#endif
204#ifdef CONFIG_LAST_STAGE_INIT
205 last_stage_init,
206#endif
wdenk591dda52002-11-18 00:14:45 +0000207 NULL,
208};
209
Graeme Russa875dda2011-12-23 16:51:29 +1100210static void do_init_loop(init_fnc_t **init_fnc_ptr)
211{
212 for (; *init_fnc_ptr; ++init_fnc_ptr) {
213 WATCHDOG_RESET();
214 if ((*init_fnc_ptr)() != 0)
215 hang();
216 }
217}
218
Graeme Russ4b259822011-02-12 15:12:06 +1100219void board_init_f(ulong boot_flags)
220{
Graeme Russ45fc1d82011-04-13 19:43:26 +1000221 gd->flags = boot_flags;
222
Graeme Russa875dda2011-12-23 16:51:29 +1100223 do_init_loop(init_sequence_f);
Graeme Russ078395c2009-11-24 20:04:21 +1100224
Graeme Russd7755b42012-01-01 15:06:39 +1100225 /*
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100226 * SDRAM and console are now initialised. The final stack can now
227 * be setup in SDRAM. Code execution will continue in Flash, but
228 * with the stack in SDRAM and Global Data in temporary memory
Graeme Russd7755b42012-01-01 15:06:39 +1100229 * (CPU cache)
230 */
231 board_init_f_r_trampoline(gd->start_addr_sp);
232
233 /* NOTREACHED - board_init_f_r_trampoline() does not return */
234 while (1)
235 ;
236}
237
238void board_init_f_r(void)
239{
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100240 do_init_loop(init_sequence_f_r);
Graeme Russ35368962011-12-31 22:58:15 +1100241
242 /*
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100243 * U-Boot has been copied into SDRAM, the BSS has been cleared etc.
244 * Transfer execution from Flash to RAM by calculating the address
245 * of the in-RAM copy of board_init_r() and calling it
Graeme Russ35368962011-12-31 22:58:15 +1100246 */
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100247 (board_init_r + gd->reloc_off)(gd, gd->relocaddr);
Graeme Russ35368962011-12-31 22:58:15 +1100248
Graeme Russ3fb4f9e2011-12-23 21:14:22 +1100249 /* NOTREACHED - board_init_r() does not return */
250 while (1)
251 ;
Graeme Russ35368962011-12-31 22:58:15 +1100252}
253
Graeme Russe07da072010-04-24 00:05:44 +1000254void board_init_r(gd_t *id, ulong dest_addr)
wdenk591dda52002-11-18 00:14:45 +0000255{
Graeme Russa875dda2011-12-23 16:51:29 +1100256 do_init_loop(init_sequence_r);
wdenk57b2d802003-06-27 21:31:46 +0000257
wdenk591dda52002-11-18 00:14:45 +0000258 /* main_loop() can return to retry autoboot, if so just run it again. */
Graeme Russ883c6032011-11-08 02:33:15 +0000259 for (;;)
wdenkabda5ca2003-05-31 18:35:21 +0000260 main_loop();
wdenk591dda52002-11-18 00:14:45 +0000261
262 /* NOTREACHED - no way out of command loop except booting */
263}
264
Graeme Russ883c6032011-11-08 02:33:15 +0000265void hang(void)
wdenk591dda52002-11-18 00:14:45 +0000266{
Graeme Russ883c6032011-11-08 02:33:15 +0000267 puts("### ERROR ### Please RESET the board ###\n");
268 for (;;)
269 ;
wdenk591dda52002-11-18 00:14:45 +0000270}