blob: bebb3472080bb697bc3473d0c75c7c4556533705 [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>
35#include <watchdog.h>
36#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020037#include <stdio_dev.h>
wdenk2262cfe2002-11-18 00:14:45 +000038#include <version.h>
39#include <malloc.h>
wdenk2262cfe2002-11-18 00:14:45 +000040#include <net.h>
41#include <ide.h>
Graeme Russbf165002010-04-24 00:05:47 +100042#include <serial.h>
Graeme Russfea25722011-04-13 19:43:28 +100043#include <asm/u-boot-x86.h>
Graeme Russ9e6c5722011-12-31 22:58:15 +110044#include <asm/processor.h>
wdenk2262cfe2002-11-18 00:14:45 +000045
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020046#ifdef CONFIG_BITBANGMII
47#include <miiphy.h>
48#endif
49
wdenk2262cfe2002-11-18 00:14:45 +000050/************************************************************************
51 * Init Utilities *
52 ************************************************************************
53 * Some of this code should be moved into the core functions,
54 * or dropped completely,
55 * but let's get it working (again) first...
56 */
Graeme Russ83088af2011-11-08 02:33:15 +000057static int init_baudrate(void)
wdenk2262cfe2002-11-18 00:14:45 +000058{
Simon Glassf5ca20c2011-10-13 14:43:14 +000059 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
60 return 0;
wdenk2262cfe2002-11-18 00:14:45 +000061}
62
Graeme Russ83088af2011-11-08 02:33:15 +000063static int display_banner(void)
wdenk2262cfe2002-11-18 00:14:45 +000064{
65
Graeme Russ83088af2011-11-08 02:33:15 +000066 printf("\n\n%s\n\n", version_string);
wdenk8bde7f72003-06-27 21:31:46 +000067
Graeme Russ83088af2011-11-08 02:33:15 +000068 return 0;
wdenk2262cfe2002-11-18 00:14:45 +000069}
70
Graeme Russ83088af2011-11-08 02:33:15 +000071static int display_dram_config(void)
wdenk2262cfe2002-11-18 00:14:45 +000072{
wdenk2262cfe2002-11-18 00:14:45 +000073 int i;
74
Graeme Russ83088af2011-11-08 02:33:15 +000075 puts("DRAM Configuration:\n");
wdenk2262cfe2002-11-18 00:14:45 +000076
Graeme Russ83088af2011-11-08 02:33:15 +000077 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
78 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
79 print_size(gd->bd->bi_dram[i].size, "\n");
wdenk2262cfe2002-11-18 00:14:45 +000080 }
wdenk8bde7f72003-06-27 21:31:46 +000081
Graeme Russ83088af2011-11-08 02:33:15 +000082 return 0;
wdenk2262cfe2002-11-18 00:14:45 +000083}
84
Graeme Russa76fc702011-11-08 02:33:20 +000085#ifndef CONFIG_SYS_NO_FLASH
Graeme Russ83088af2011-11-08 02:33:15 +000086static void display_flash_config(ulong size)
wdenk2262cfe2002-11-18 00:14:45 +000087{
Graeme Russ83088af2011-11-08 02:33:15 +000088 puts("Flash: ");
89 print_size(size, "\n");
wdenk2262cfe2002-11-18 00:14:45 +000090}
Graeme Russa76fc702011-11-08 02:33:20 +000091#endif
wdenk2262cfe2002-11-18 00:14:45 +000092
wdenk2262cfe2002-11-18 00:14:45 +000093/*
94 * Breath some life into the board...
95 *
96 * Initialize an SMC for serial comms, and carry out some hardware
97 * tests.
98 *
99 * The first part of initialization is running from Flash memory;
100 * its main purpose is to initialize the RAM so that we
101 * can relocate the monitor code to RAM.
102 */
103
104/*
105 * All attempts to come up with a "common" initialization sequence
106 * that works for all boards and architectures failed: some of the
107 * requirements are just _too_ different. To get rid of the resulting
108 * mess of board dependend #ifdef'ed code we now make the whole
109 * initialization sequence configurable to the user.
110 *
111 * The requirements for any new initalization function is simple: it
112 * receives a pointer to the "global data" structure as it's only
113 * argument, and returns an integer return code, where 0 means
114 * "continue" and != 0 means "fatal error, hang the system".
115 */
116typedef int (init_fnc_t) (void);
117
Graeme Russe4f78d72011-02-12 15:12:10 +1100118static int calculate_relocation_address(void);
Graeme Russ9e6c5722011-12-31 22:58:15 +1100119static int copy_gd_to_ram(void);
Graeme Russe4f78d72011-02-12 15:12:10 +1100120
121init_fnc_t *init_sequence_f[] = {
122 cpu_init_f,
123 board_early_init_f,
124 env_init,
125 init_baudrate,
126 serial_init,
127 console_init_f,
128 dram_init_f,
129 calculate_relocation_address,
Graeme Russe4f78d72011-02-12 15:12:10 +1100130
131 NULL,
132};
133
134init_fnc_t *init_sequence_r[] = {
Graeme Russ1c409bc2009-11-24 20:04:21 +1100135 cpu_init_r, /* basic cpu dependent setup */
136 board_early_init_r, /* basic board dependent setup */
wdenk2262cfe2002-11-18 00:14:45 +0000137 dram_init, /* configure available RAM banks */
wdenk2262cfe2002-11-18 00:14:45 +0000138 interrupt_init, /* set up exceptions */
wdenk8bde7f72003-06-27 21:31:46 +0000139 timer_init,
wdenk2262cfe2002-11-18 00:14:45 +0000140 display_banner,
141 display_dram_config,
142
143 NULL,
144};
145
Graeme Russ71a54042011-02-12 15:12:06 +1100146static int calculate_relocation_address(void)
147{
Graeme Russ303418c2011-11-08 02:33:21 +0000148 ulong text_start = (ulong)&__text_start;
149 ulong bss_end = (ulong)&__bss_end;
150 ulong dest_addr;
Graeme Russ303418c2011-11-08 02:33:21 +0000151
152 /*
Graeme Russ240ab5a2012-01-01 15:57:02 +1100153 * NOTE: All destination address are rounded down to 16-byte
154 * boundary to satisfy various worst-case alignment
155 * requirements
Graeme Russ303418c2011-11-08 02:33:21 +0000156 */
Graeme Russ240ab5a2012-01-01 15:57:02 +1100157
Graeme Russ9e6c5722011-12-31 22:58:15 +1100158 /* Global Data is at top of available memory */
Graeme Russ240ab5a2012-01-01 15:57:02 +1100159 dest_addr = gd->ram_size;
Graeme Russ9e6c5722011-12-31 22:58:15 +1100160 dest_addr -= GENERATED_GBL_DATA_SIZE;
161 dest_addr &= ~15;
162 gd->new_gd_addr = dest_addr;
163
164 /* GDT is below Global Data */
165 dest_addr -= X86_GDT_SIZE;
166 dest_addr &= ~15;
167 gd->gdt_addr = dest_addr;
168
169 /* Stack is below GDT */
Graeme Russ240ab5a2012-01-01 15:57:02 +1100170 gd->start_addr_sp = dest_addr;
171
172 /* U-Boot is below the stack */
173 dest_addr -= CONFIG_SYS_STACK_SIZE;
174 dest_addr -= (bss_end - text_start);
Graeme Russ303418c2011-11-08 02:33:21 +0000175 dest_addr &= ~15;
Graeme Russ303418c2011-11-08 02:33:21 +0000176 gd->relocaddr = dest_addr;
Graeme Russ240ab5a2012-01-01 15:57:02 +1100177 gd->reloc_off = (dest_addr - text_start);
Graeme Russ71a54042011-02-12 15:12:06 +1100178
179 return 0;
180}
181
Graeme Russdbf71152011-04-13 19:43:26 +1000182/* Load U-Boot into RAM, initialize BSS, perform relocation adjustments */
Graeme Russ96cd6642011-02-12 15:11:54 +1100183void board_init_f(ulong boot_flags)
Graeme Russ1c409bc2009-11-24 20:04:21 +1100184{
Graeme Russe4f78d72011-02-12 15:12:10 +1100185 init_fnc_t **init_fnc_ptr;
Graeme Russa3824142011-02-12 15:12:08 +1100186
Graeme Russdbf71152011-04-13 19:43:26 +1000187 gd->flags = boot_flags;
188
Graeme Russe4f78d72011-02-12 15:12:10 +1100189 for (init_fnc_ptr = init_sequence_f; *init_fnc_ptr; ++init_fnc_ptr) {
190 if ((*init_fnc_ptr)() != 0)
191 hang();
192 }
Graeme Russf2ff75c2010-10-07 20:03:33 +1100193
Graeme Russf48dd6f2012-01-01 15:06:39 +1100194 /*
195 * SDRAM is now initialised, U-Boot has been copied into SDRAM,
196 * the BSS has been cleared etc. The final stack can now be setup
197 * in SDRAM. Code execution will continue (momentarily) in Flash,
198 * but with the stack in SDRAM and Global Data in temporary memory
199 * (CPU cache)
200 */
201 board_init_f_r_trampoline(gd->start_addr_sp);
Graeme Russ161b3582010-10-07 20:03:29 +1100202
Graeme Russf48dd6f2012-01-01 15:06:39 +1100203 /* NOTREACHED - board_init_f_r_trampoline() does not return */
204 while (1)
205 ;
206}
207
208void board_init_f_r(void)
209{
Graeme Russ98f1fa92011-12-27 22:46:42 +1100210 if (copy_gd_to_ram() != 0)
211 hang();
212
213 if (init_cache() != 0)
214 hang();
215
Graeme Russb156ff02011-12-23 15:57:58 +1100216 relocate_code(0, gd, 0);
Graeme Russ98f1fa92011-12-27 22:46:42 +1100217
Graeme Russb156ff02011-12-23 15:57:58 +1100218 /* NOTREACHED - relocate_code() does not return */
Graeme Russ83088af2011-11-08 02:33:15 +0000219 while (1)
220 ;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100221}
222
Graeme Russ9e6c5722011-12-31 22:58:15 +1100223static int copy_gd_to_ram(void)
224{
225 gd_t *ram_gd;
226
227 /*
228 * Global data is still in temporary memory (the CPU cache).
229 * calculate_relocation_address() has set gd->new_gd_addr to
230 * where the global data lives in RAM but getting it there
231 * safely is a bit tricky due to the 'F-Segment Hack' that
232 * we need to use for x86
233 */
234 ram_gd = (gd_t *)gd->new_gd_addr;
235 memcpy((void *)ram_gd, gd, sizeof(gd_t));
236
237 /*
238 * Reload the Global Descriptor Table so FS points to the
239 * in-RAM copy of Global Data (calculate_relocation_address()
240 * has already calculated the in-RAM location of the GDT)
241 */
242 ram_gd->gd_addr = (ulong)ram_gd;
243 init_gd(ram_gd, (u64 *)gd->gdt_addr);
244
245 return 0;
246}
247
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000248void board_init_r(gd_t *id, ulong dest_addr)
wdenk2262cfe2002-11-18 00:14:45 +0000249{
Graeme Russa76fc702011-11-08 02:33:20 +0000250#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000251 char *s;
Graeme Russa76fc702011-11-08 02:33:20 +0000252#endif
253#ifndef CONFIG_SYS_NO_FLASH
wdenk2262cfe2002-11-18 00:14:45 +0000254 ulong size;
Graeme Russa76fc702011-11-08 02:33:20 +0000255#endif
wdenk2262cfe2002-11-18 00:14:45 +0000256 static bd_t bd_data;
257 init_fnc_t **init_fnc_ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000258
wdenk2262cfe2002-11-18 00:14:45 +0000259 show_boot_progress(0x21);
260
wdenk93f6a672004-07-01 20:28:03 +0000261 /* compiler optimization barrier needed for GCC >= 3.4 */
Graeme Russ83088af2011-11-08 02:33:15 +0000262 __asm__ __volatile__("" : : : "memory");
wdenk8bde7f72003-06-27 21:31:46 +0000263
Graeme Russ3766bb32012-01-01 15:49:43 +1100264 gd->flags |= GD_FLG_RELOC;
265
wdenk2262cfe2002-11-18 00:14:45 +0000266 gd->bd = &bd_data;
Graeme Russ83088af2011-11-08 02:33:15 +0000267 memset(gd->bd, 0, sizeof(bd_t));
wdenk2262cfe2002-11-18 00:14:45 +0000268 show_boot_progress(0x22);
269
wdenk7a8e9bed2003-05-31 18:35:21 +0000270 gd->baudrate = CONFIG_BAUDRATE;
wdenk8bde7f72003-06-27 21:31:46 +0000271
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000272 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
Graeme Russ1c409bc2009-11-24 20:04:21 +1100273 CONFIG_SYS_MALLOC_LEN);
274
Graeme Russe4f78d72011-02-12 15:12:10 +1100275 for (init_fnc_ptr = init_sequence_r; *init_fnc_ptr; ++init_fnc_ptr) {
276 if ((*init_fnc_ptr)() != 0)
Graeme Russ83088af2011-11-08 02:33:15 +0000277 hang();
wdenk2262cfe2002-11-18 00:14:45 +0000278 }
279 show_boot_progress(0x23);
280
Graeme Russbf165002010-04-24 00:05:47 +1000281#ifdef CONFIG_SERIAL_MULTI
282 serial_initialize();
283#endif
Graeme Russa76fc702011-11-08 02:33:20 +0000284
285#ifndef CONFIG_SYS_NO_FLASH
wdenk2262cfe2002-11-18 00:14:45 +0000286 /* configure available FLASH banks */
287 size = flash_init();
288 display_flash_config(size);
289 show_boot_progress(0x24);
Graeme Russa76fc702011-11-08 02:33:20 +0000290#endif
wdenk2262cfe2002-11-18 00:14:45 +0000291
292 show_boot_progress(0x25);
293
294 /* initialize environment */
Graeme Russ83088af2011-11-08 02:33:15 +0000295 env_relocate();
wdenk2262cfe2002-11-18 00:14:45 +0000296 show_boot_progress(0x26);
297
298
Graeme Russ535ad2d2010-04-24 00:05:36 +1000299#ifdef CONFIG_CMD_NET
wdenk2262cfe2002-11-18 00:14:45 +0000300 /* IP Address */
Graeme Russ83088af2011-11-08 02:33:15 +0000301 bd_data.bi_ip_addr = getenv_IPaddr("ipaddr");
Graeme Russ535ad2d2010-04-24 00:05:36 +1000302#endif
wdenk2262cfe2002-11-18 00:14:45 +0000303
wdenk2262cfe2002-11-18 00:14:45 +0000304#if defined(CONFIG_PCI)
305 /*
306 * Do pci configuration
307 */
308 pci_init();
309#endif
310
311 show_boot_progress(0x27);
312
313
Graeme Russ83088af2011-11-08 02:33:15 +0000314 stdio_init();
wdenk2262cfe2002-11-18 00:14:45 +0000315
Graeme Russ83088af2011-11-08 02:33:15 +0000316 jumptable_init();
wdenk8bde7f72003-06-27 21:31:46 +0000317
wdenk2262cfe2002-11-18 00:14:45 +0000318 /* Initialize the console (after the relocation and devices init) */
319 console_init_r();
wdenk2262cfe2002-11-18 00:14:45 +0000320
321#ifdef CONFIG_MISC_INIT_R
322 /* miscellaneous platform dependent initialisations */
323 misc_init_r();
324#endif
325
Jon Loeliger67350562007-07-09 18:05:38 -0500326#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000327 WATCHDOG_RESET();
Graeme Russ83088af2011-11-08 02:33:15 +0000328 puts("PCMCIA:");
wdenk2262cfe2002-11-18 00:14:45 +0000329 pcmcia_init();
330#endif
331
Jon Loeliger67350562007-07-09 18:05:38 -0500332#if defined(CONFIG_CMD_KGDB)
wdenk2262cfe2002-11-18 00:14:45 +0000333 WATCHDOG_RESET();
334 puts("KGDB: ");
335 kgdb_init();
336#endif
337
338 /* enable exceptions */
wdenk7a8e9bed2003-05-31 18:35:21 +0000339 enable_interrupts();
wdenk2262cfe2002-11-18 00:14:45 +0000340 show_boot_progress(0x28);
341
wdenk2262cfe2002-11-18 00:14:45 +0000342#ifdef CONFIG_STATUS_LED
Graeme Russ83088af2011-11-08 02:33:15 +0000343 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
wdenk2262cfe2002-11-18 00:14:45 +0000344#endif
345
wdenk7a8e9bed2003-05-31 18:35:21 +0000346 udelay(20);
wdenk2262cfe2002-11-18 00:14:45 +0000347
wdenk2262cfe2002-11-18 00:14:45 +0000348 /* Initialize from environment */
Simon Glassf5ca20c2011-10-13 14:43:14 +0000349 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Jon Loeliger67350562007-07-09 18:05:38 -0500350#if defined(CONFIG_CMD_NET)
Graeme Russ83088af2011-11-08 02:33:15 +0000351 s = getenv("bootfile");
352
353 if (s != NULL)
354 copy_filename(BootFile, s, sizeof(BootFile));
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500355#endif
wdenk2262cfe2002-11-18 00:14:45 +0000356
357 WATCHDOG_RESET();
358
Jon Loeliger67350562007-07-09 18:05:38 -0500359#if defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000360 WATCHDOG_RESET();
361 puts("IDE: ");
362 ide_init();
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500363#endif
wdenk2262cfe2002-11-18 00:14:45 +0000364
Jon Loeliger67350562007-07-09 18:05:38 -0500365#if defined(CONFIG_CMD_SCSI)
wdenk2262cfe2002-11-18 00:14:45 +0000366 WATCHDOG_RESET();
367 puts("SCSI: ");
368 scsi_init();
369#endif
370
Jon Loeliger67350562007-07-09 18:05:38 -0500371#if defined(CONFIG_CMD_DOC)
wdenk2262cfe2002-11-18 00:14:45 +0000372 WATCHDOG_RESET();
wdenk7a8e9bed2003-05-31 18:35:21 +0000373 puts("DOC: ");
wdenk2262cfe2002-11-18 00:14:45 +0000374 doc_init();
375#endif
376
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200377#ifdef CONFIG_BITBANGMII
378 bb_miiphy_init();
379#endif
Jon Loeliger67350562007-07-09 18:05:38 -0500380#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000381 WATCHDOG_RESET();
382 puts("Net: ");
383 eth_initialize(gd->bd);
384#endif
385
Graeme Russ83088af2011-11-08 02:33:15 +0000386#if (defined(CONFIG_CMD_NET)) && (0)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200387 WATCHDOG_RESET();
388# ifdef DEBUG
Graeme Russ83088af2011-11-08 02:33:15 +0000389 puts("Reset Ethernet PHY\n");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200390# endif
391 reset_phy();
392#endif
393
wdenk2262cfe2002-11-18 00:14:45 +0000394#ifdef CONFIG_LAST_STAGE_INIT
395 WATCHDOG_RESET();
396 /*
397 * Some parts can be only initialized if all others (like
398 * Interrupts) are up and running (i.e. the PC-style ISA
399 * keyboard).
400 */
401 last_stage_init();
402#endif
403
404
wdenk2262cfe2002-11-18 00:14:45 +0000405#ifdef CONFIG_POST
Graeme Russ83088af2011-11-08 02:33:15 +0000406 post_run(NULL, POST_RAM | post_bootmode_get(0));
wdenk2262cfe2002-11-18 00:14:45 +0000407#endif
wdenk8bde7f72003-06-27 21:31:46 +0000408
wdenk2262cfe2002-11-18 00:14:45 +0000409 show_boot_progress(0x29);
wdenk8bde7f72003-06-27 21:31:46 +0000410
wdenk2262cfe2002-11-18 00:14:45 +0000411 /* main_loop() can return to retry autoboot, if so just run it again. */
Graeme Russ83088af2011-11-08 02:33:15 +0000412 for (;;)
wdenk7a8e9bed2003-05-31 18:35:21 +0000413 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000414
415 /* NOTREACHED - no way out of command loop except booting */
416}
417
Graeme Russ83088af2011-11-08 02:33:15 +0000418void hang(void)
wdenk2262cfe2002-11-18 00:14:45 +0000419{
Graeme Russ83088af2011-11-08 02:33:15 +0000420 puts("### ERROR ### Please RESET the board ###\n");
421 for (;;)
422 ;
wdenk2262cfe2002-11-18 00:14:45 +0000423}