blob: 9c2f77fd5446bc4ff4444f861ef62254f3aac25b [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +02003 * Daniel Engstr�m, Omicron Ceti AB, daniel@omicron.se
wdenk8bde7f72003-06-27 21:31:46 +00004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk8bde7f72003-06-27 21:31:46 +00007 *
wdenk2262cfe2002-11-18 00:14:45 +00008 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
31#include <common.h>
32#include <watchdog.h>
33#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020034#include <stdio_dev.h>
Peter Tyser561858e2008-11-03 09:30:59 -060035#include <timestamp.h>
wdenk2262cfe2002-11-18 00:14:45 +000036#include <version.h>
37#include <malloc.h>
wdenk2262cfe2002-11-18 00:14:45 +000038#include <net.h>
39#include <ide.h>
Graeme Russbf165002010-04-24 00:05:47 +100040#include <serial.h>
wdenk7a8e9bed2003-05-31 18:35:21 +000041#include <asm/u-boot-i386.h>
Graeme Russ1c409bc2009-11-24 20:04:21 +110042#include <elf.h>
wdenk2262cfe2002-11-18 00:14:45 +000043
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020044#ifdef CONFIG_BITBANGMII
45#include <miiphy.h>
46#endif
47
Wolfgang Denkd87080b2006-03-31 18:32:53 +020048DECLARE_GLOBAL_DATA_PTR;
49
Graeme Russ1c409bc2009-11-24 20:04:21 +110050/* Exports from the Linker Script */
Graeme Russ067f9b12010-10-07 20:03:31 +110051extern ulong __text_start;
Graeme Russ22191422010-10-07 20:03:32 +110052extern ulong __data_end;
Graeme Russ067f9b12010-10-07 20:03:31 +110053extern ulong __rel_dyn_start;
54extern ulong __rel_dyn_end;
55extern ulong __bss_start;
Graeme Russf2ff75c2010-10-07 20:03:33 +110056extern ulong __bss_end;
Graeme Russ2fb1bc42010-04-24 00:05:44 +100057
wdenk2262cfe2002-11-18 00:14:45 +000058const char version_string[] =
Peter Tyser561858e2008-11-03 09:30:59 -060059 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenk2262cfe2002-11-18 00:14:45 +000060
wdenk2262cfe2002-11-18 00:14:45 +000061/************************************************************************
62 * Init Utilities *
63 ************************************************************************
64 * Some of this code should be moved into the core functions,
65 * or dropped completely,
66 * but let's get it working (again) first...
67 */
wdenk2262cfe2002-11-18 00:14:45 +000068static int init_baudrate (void)
69{
wdenk7a8e9bed2003-05-31 18:35:21 +000070 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +020071 int i = getenv_f("baudrate", tmp, 64);
wdenk2262cfe2002-11-18 00:14:45 +000072
wdenk7a8e9bed2003-05-31 18:35:21 +000073 gd->baudrate = (i != 0)
wdenk2262cfe2002-11-18 00:14:45 +000074 ? (int) simple_strtoul (tmp, NULL, 10)
75 : CONFIG_BAUDRATE;
76
77 return (0);
78}
79
80static int display_banner (void)
81{
82
83 printf ("\n\n%s\n\n", version_string);
Graeme Russ1c409bc2009-11-24 20:04:21 +110084/*
wdenk2262cfe2002-11-18 00:14:45 +000085 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
86 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
87 i386boot_start, i386boot_romdata_start-1,
88 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
89 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
wdenk8bde7f72003-06-27 21:31:46 +000090 i386boot_bss_start+i386boot_bss_size,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091 i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1);
wdenk8bde7f72003-06-27 21:31:46 +000092
Graeme Russ1c409bc2009-11-24 20:04:21 +110093*/
wdenk2262cfe2002-11-18 00:14:45 +000094
95 return (0);
96}
97
98/*
99 * WARNING: this code looks "cleaner" than the PowerPC version, but
100 * has the disadvantage that you either get nothing, or everything.
101 * On PowerPC, you might see "DRAM: " before the system hangs - which
102 * gives a simple yet clear indication which part of the
103 * initialization if failing.
104 */
105static int display_dram_config (void)
106{
wdenk2262cfe2002-11-18 00:14:45 +0000107 int i;
108
109 puts ("DRAM Configuration:\n");
110
111 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
112 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
113 print_size (gd->bd->bi_dram[i].size, "\n");
114 }
wdenk8bde7f72003-06-27 21:31:46 +0000115
wdenk2262cfe2002-11-18 00:14:45 +0000116 return (0);
117}
118
119static void display_flash_config (ulong size)
120{
121 puts ("Flash: ");
122 print_size (size, "\n");
123}
124
wdenk2262cfe2002-11-18 00:14:45 +0000125/*
126 * Breath some life into the board...
127 *
128 * Initialize an SMC for serial comms, and carry out some hardware
129 * tests.
130 *
131 * The first part of initialization is running from Flash memory;
132 * its main purpose is to initialize the RAM so that we
133 * can relocate the monitor code to RAM.
134 */
135
Graeme Russ1c409bc2009-11-24 20:04:21 +1100136
wdenk2262cfe2002-11-18 00:14:45 +0000137/*
138 * All attempts to come up with a "common" initialization sequence
139 * that works for all boards and architectures failed: some of the
140 * requirements are just _too_ different. To get rid of the resulting
141 * mess of board dependend #ifdef'ed code we now make the whole
142 * initialization sequence configurable to the user.
143 *
144 * The requirements for any new initalization function is simple: it
145 * receives a pointer to the "global data" structure as it's only
146 * argument, and returns an integer return code, where 0 means
147 * "continue" and != 0 means "fatal error, hang the system".
148 */
149typedef int (init_fnc_t) (void);
150
151init_fnc_t *init_sequence[] = {
Graeme Russ1c409bc2009-11-24 20:04:21 +1100152 cpu_init_r, /* basic cpu dependent setup */
153 board_early_init_r, /* basic board dependent setup */
wdenk2262cfe2002-11-18 00:14:45 +0000154 dram_init, /* configure available RAM banks */
wdenk2262cfe2002-11-18 00:14:45 +0000155 interrupt_init, /* set up exceptions */
wdenk8bde7f72003-06-27 21:31:46 +0000156 timer_init,
wdenk2262cfe2002-11-18 00:14:45 +0000157 env_init, /* initialize environment */
158 init_baudrate, /* initialze baudrate settings */
159 serial_init, /* serial communications setup */
160 display_banner,
161 display_dram_config,
162
163 NULL,
164};
165
Graeme Russ3ef96de2008-09-07 07:08:42 +1000166gd_t *gd;
wdenk2262cfe2002-11-18 00:14:45 +0000167
Graeme Russ1c409bc2009-11-24 20:04:21 +1100168/*
169 * Load U-Boot into RAM, initialize BSS, perform relocation adjustments
170 */
Graeme Russ161b3582010-10-07 20:03:29 +1100171void board_init_f (ulong gdp)
Graeme Russ1c409bc2009-11-24 20:04:21 +1100172{
Graeme Russ067f9b12010-10-07 20:03:31 +1100173 void *text_start = &__text_start;
Graeme Russ22191422010-10-07 20:03:32 +1100174 void *data_end = &__data_end;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100175 void *rel_dyn_start = &__rel_dyn_start;
176 void *rel_dyn_end = &__rel_dyn_end;
Graeme Russ067f9b12010-10-07 20:03:31 +1100177 void *bss_start = &__bss_start;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100178 void *bss_end = &__bss_end;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100179
Graeme Russf2ff75c2010-10-07 20:03:33 +1100180 ulong *dst_addr;
181 ulong *src_addr;
182 ulong *end_addr;
183
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000184 void *dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100185 ulong rel_offset;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100186 Elf32_Rel *re_src;
187 Elf32_Rel *re_end;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100188
Graeme Russf2ff75c2010-10-07 20:03:33 +1100189 /* Calculate destination RAM Address and relocation offset */
190 dest_addr = (void *)gdp - (bss_end - text_start);
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000191 rel_offset = text_start - dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100192
193 /* First stage CPU initialization */
194 if (cpu_init_f() != 0)
195 hang();
196
197 /* First stage Board initialization */
198 if (board_early_init_f() != 0)
199 hang();
200
201 /* Copy U-Boot into RAM */
Graeme Russf2ff75c2010-10-07 20:03:33 +1100202 dst_addr = (ulong *)dest_addr;
203 src_addr = (ulong *)text_start;
204 end_addr = (ulong *)data_end;
205
206 while (src_addr < end_addr)
207 *dst_addr++ = *src_addr++;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100208
209 /* Clear BSS */
Graeme Russf2ff75c2010-10-07 20:03:33 +1100210 dst_addr = (ulong *)(bss_start - rel_offset);
211 end_addr = (ulong *)(bss_end - rel_offset);
212
213 while (dst_addr < end_addr)
214 *dst_addr++ = 0x00000000;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100215
216 /* Perform relocation adjustments */
Graeme Russf2ff75c2010-10-07 20:03:33 +1100217 re_src = (Elf32_Rel *)rel_dyn_start;
218 re_end = (Elf32_Rel *)rel_dyn_end;
219
220 do {
221 if (re_src->r_offset >= TEXT_BASE)
222 if (*(Elf32_Addr *)(re_src->r_offset - rel_offset) >= TEXT_BASE)
223 *(Elf32_Addr *)(re_src->r_offset - rel_offset) -= rel_offset;
224 } while (re_src++ < re_end);
Graeme Russ1c409bc2009-11-24 20:04:21 +1100225
Graeme Russ161b3582010-10-07 20:03:29 +1100226 ((gd_t *)gdp)->reloc_off = rel_offset;
227 ((gd_t *)gdp)->flags |= GD_FLG_RELOC;
228
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000229 /* Enter the relocated U-Boot! */
Graeme Russ161b3582010-10-07 20:03:29 +1100230 (board_init_r - rel_offset)((gd_t *)gdp, (ulong)dest_addr);
231
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000232 /* NOTREACHED - board_init_f() does not return */
Graeme Russ1c409bc2009-11-24 20:04:21 +1100233 while(1);
234}
235
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000236void board_init_r(gd_t *id, ulong dest_addr)
wdenk2262cfe2002-11-18 00:14:45 +0000237{
wdenk2262cfe2002-11-18 00:14:45 +0000238 char *s;
239 int i;
240 ulong size;
wdenk2262cfe2002-11-18 00:14:45 +0000241 static bd_t bd_data;
242 init_fnc_t **init_fnc_ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000243
wdenk2262cfe2002-11-18 00:14:45 +0000244 show_boot_progress(0x21);
245
Graeme Russ1c409bc2009-11-24 20:04:21 +1100246 gd = id;
wdenk93f6a672004-07-01 20:28:03 +0000247 /* compiler optimization barrier needed for GCC >= 3.4 */
248 __asm__ __volatile__("": : :"memory");
wdenk8bde7f72003-06-27 21:31:46 +0000249
wdenk2262cfe2002-11-18 00:14:45 +0000250 gd->bd = &bd_data;
251 memset (gd->bd, 0, sizeof (bd_t));
252 show_boot_progress(0x22);
253
wdenk7a8e9bed2003-05-31 18:35:21 +0000254 gd->baudrate = CONFIG_BAUDRATE;
wdenk8bde7f72003-06-27 21:31:46 +0000255
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000256 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
Graeme Russ1c409bc2009-11-24 20:04:21 +1100257 CONFIG_SYS_MALLOC_LEN);
258
wdenk2262cfe2002-11-18 00:14:45 +0000259 for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {
260 show_boot_progress(0xa130|i);
261
262 if ((*init_fnc_ptr)() != 0) {
263 hang ();
264 }
265 }
266 show_boot_progress(0x23);
267
Graeme Russbf165002010-04-24 00:05:47 +1000268#ifdef CONFIG_SERIAL_MULTI
269 serial_initialize();
270#endif
wdenk2262cfe2002-11-18 00:14:45 +0000271 /* configure available FLASH banks */
272 size = flash_init();
273 display_flash_config(size);
274 show_boot_progress(0x24);
275
276 show_boot_progress(0x25);
277
278 /* initialize environment */
279 env_relocate ();
280 show_boot_progress(0x26);
281
282
Graeme Russ535ad2d2010-04-24 00:05:36 +1000283#ifdef CONFIG_CMD_NET
wdenk2262cfe2002-11-18 00:14:45 +0000284 /* IP Address */
285 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
Graeme Russ535ad2d2010-04-24 00:05:36 +1000286#endif
wdenk2262cfe2002-11-18 00:14:45 +0000287
wdenk2262cfe2002-11-18 00:14:45 +0000288#if defined(CONFIG_PCI)
289 /*
290 * Do pci configuration
291 */
292 pci_init();
293#endif
294
295 show_boot_progress(0x27);
296
297
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200298 stdio_init ();
wdenk2262cfe2002-11-18 00:14:45 +0000299
wdenk27b207f2003-07-24 23:38:38 +0000300 jumptable_init ();
wdenk8bde7f72003-06-27 21:31:46 +0000301
wdenk2262cfe2002-11-18 00:14:45 +0000302 /* Initialize the console (after the relocation and devices init) */
303 console_init_r();
wdenk2262cfe2002-11-18 00:14:45 +0000304
305#ifdef CONFIG_MISC_INIT_R
306 /* miscellaneous platform dependent initialisations */
307 misc_init_r();
308#endif
309
Jon Loeliger67350562007-07-09 18:05:38 -0500310#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000311 WATCHDOG_RESET();
312 puts ("PCMCIA:");
313 pcmcia_init();
314#endif
315
Jon Loeliger67350562007-07-09 18:05:38 -0500316#if defined(CONFIG_CMD_KGDB)
wdenk2262cfe2002-11-18 00:14:45 +0000317 WATCHDOG_RESET();
318 puts("KGDB: ");
319 kgdb_init();
320#endif
321
322 /* enable exceptions */
wdenk7a8e9bed2003-05-31 18:35:21 +0000323 enable_interrupts();
wdenk2262cfe2002-11-18 00:14:45 +0000324 show_boot_progress(0x28);
325
wdenk2262cfe2002-11-18 00:14:45 +0000326#ifdef CONFIG_STATUS_LED
327 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
328#endif
329
wdenk7a8e9bed2003-05-31 18:35:21 +0000330 udelay(20);
wdenk2262cfe2002-11-18 00:14:45 +0000331
332 set_timer (0);
333
334 /* Initialize from environment */
335 if ((s = getenv ("loadaddr")) != NULL) {
336 load_addr = simple_strtoul (s, NULL, 16);
337 }
Jon Loeliger67350562007-07-09 18:05:38 -0500338#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000339 if ((s = getenv ("bootfile")) != NULL) {
340 copy_filename (BootFile, s, sizeof (BootFile));
341 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500342#endif
wdenk2262cfe2002-11-18 00:14:45 +0000343
344 WATCHDOG_RESET();
345
Jon Loeliger67350562007-07-09 18:05:38 -0500346#if defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000347 WATCHDOG_RESET();
348 puts("IDE: ");
349 ide_init();
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500350#endif
wdenk2262cfe2002-11-18 00:14:45 +0000351
Jon Loeliger67350562007-07-09 18:05:38 -0500352#if defined(CONFIG_CMD_SCSI)
wdenk2262cfe2002-11-18 00:14:45 +0000353 WATCHDOG_RESET();
354 puts("SCSI: ");
355 scsi_init();
356#endif
357
Jon Loeliger67350562007-07-09 18:05:38 -0500358#if defined(CONFIG_CMD_DOC)
wdenk2262cfe2002-11-18 00:14:45 +0000359 WATCHDOG_RESET();
wdenk7a8e9bed2003-05-31 18:35:21 +0000360 puts("DOC: ");
wdenk2262cfe2002-11-18 00:14:45 +0000361 doc_init();
362#endif
363
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200364#ifdef CONFIG_BITBANGMII
365 bb_miiphy_init();
366#endif
Jon Loeliger67350562007-07-09 18:05:38 -0500367#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200368#if defined(CONFIG_NET_MULTI)
wdenk2262cfe2002-11-18 00:14:45 +0000369 WATCHDOG_RESET();
370 puts("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200371#endif
wdenk2262cfe2002-11-18 00:14:45 +0000372 eth_initialize(gd->bd);
373#endif
374
Jon Loeliger67350562007-07-09 18:05:38 -0500375#if ( defined(CONFIG_CMD_NET)) && (0)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200376 WATCHDOG_RESET();
377# ifdef DEBUG
378 puts ("Reset Ethernet PHY\n");
379# endif
380 reset_phy();
381#endif
382
wdenk2262cfe2002-11-18 00:14:45 +0000383#ifdef CONFIG_LAST_STAGE_INIT
384 WATCHDOG_RESET();
385 /*
386 * Some parts can be only initialized if all others (like
387 * Interrupts) are up and running (i.e. the PC-style ISA
388 * keyboard).
389 */
390 last_stage_init();
391#endif
392
393
wdenk2262cfe2002-11-18 00:14:45 +0000394#ifdef CONFIG_POST
395 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk2262cfe2002-11-18 00:14:45 +0000396#endif
wdenk8bde7f72003-06-27 21:31:46 +0000397
398
wdenk2262cfe2002-11-18 00:14:45 +0000399 show_boot_progress(0x29);
wdenk8bde7f72003-06-27 21:31:46 +0000400
wdenk2262cfe2002-11-18 00:14:45 +0000401 /* main_loop() can return to retry autoboot, if so just run it again. */
402 for (;;) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000403 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000404 }
405
406 /* NOTREACHED - no way out of command loop except booting */
407}
408
409void hang (void)
410{
411 puts ("### ERROR ### Please RESET the board ###\n");
412 for (;;);
413}
Mike Frysingera4986452008-04-13 19:42:19 -0400414
Graeme Russe69c0cb2010-08-22 16:25:58 +1000415unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[])
Mike Frysingera4986452008-04-13 19:42:19 -0400416{
Graeme Russe69c0cb2010-08-22 16:25:58 +1000417 unsigned long ret = 0;
418 char **argv_tmp;
Graeme Russ9e08efc2010-04-24 00:05:39 +1000419
Graeme Russe69c0cb2010-08-22 16:25:58 +1000420 /*
421 * x86 does not use a dedicated register to pass the pointer to
422 * the global_data, so it is instead passed as argv[-1]. By using
423 * argv[-1], the called 'Application' can use the contents of
424 * argv natively. However, to safely use argv[-1] a new copy of
425 * argv is needed with the extra element
426 */
427 argv_tmp = malloc(sizeof(char *) * (argc + 1));
428
429 if (argv_tmp) {
430 argv_tmp[0] = (char *)gd;
431
432 memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
433
434 ret = (entry) (argc, &argv_tmp[1]);
435 free(argv_tmp);
436 }
437
438 return ret;
Mike Frysingera4986452008-04-13 19:42:19 -0400439}
Graeme Russ79ea6b82010-04-24 00:05:48 +1000440
441void setup_pcat_compatibility(void)
442 __attribute__((weak, alias("__setup_pcat_compatibility")));
443
444void __setup_pcat_compatibility(void)
445{
446}