blob: 00976a5d49c9f938ab7ae666746e17f79fdec831 [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 */
51extern ulong _i386boot_text_start;
52extern ulong _i386boot_rel_dyn_start;
53extern ulong _i386boot_rel_dyn_end;
54extern ulong _i386boot_bss_start;
55extern ulong _i386boot_bss_size;
Graeme Russ2fb1bc42010-04-24 00:05:44 +100056
wdenk2262cfe2002-11-18 00:14:45 +000057const char version_string[] =
Peter Tyser561858e2008-11-03 09:30:59 -060058 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenk2262cfe2002-11-18 00:14:45 +000059
wdenk2262cfe2002-11-18 00:14:45 +000060/************************************************************************
61 * Init Utilities *
62 ************************************************************************
63 * Some of this code should be moved into the core functions,
64 * or dropped completely,
65 * but let's get it working (again) first...
66 */
wdenk2262cfe2002-11-18 00:14:45 +000067static int init_baudrate (void)
68{
wdenk7a8e9bed2003-05-31 18:35:21 +000069 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +020070 int i = getenv_f("baudrate", tmp, 64);
wdenk2262cfe2002-11-18 00:14:45 +000071
wdenk7a8e9bed2003-05-31 18:35:21 +000072 gd->baudrate = (i != 0)
wdenk2262cfe2002-11-18 00:14:45 +000073 ? (int) simple_strtoul (tmp, NULL, 10)
74 : CONFIG_BAUDRATE;
75
76 return (0);
77}
78
79static int display_banner (void)
80{
81
82 printf ("\n\n%s\n\n", version_string);
Graeme Russ1c409bc2009-11-24 20:04:21 +110083/*
wdenk2262cfe2002-11-18 00:14:45 +000084 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
85 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
86 i386boot_start, i386boot_romdata_start-1,
87 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
88 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
wdenk8bde7f72003-06-27 21:31:46 +000089 i386boot_bss_start+i386boot_bss_size,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090 i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1);
wdenk8bde7f72003-06-27 21:31:46 +000091
Graeme Russ1c409bc2009-11-24 20:04:21 +110092*/
wdenk2262cfe2002-11-18 00:14:45 +000093
94 return (0);
95}
96
97/*
98 * WARNING: this code looks "cleaner" than the PowerPC version, but
99 * has the disadvantage that you either get nothing, or everything.
100 * On PowerPC, you might see "DRAM: " before the system hangs - which
101 * gives a simple yet clear indication which part of the
102 * initialization if failing.
103 */
104static int display_dram_config (void)
105{
wdenk2262cfe2002-11-18 00:14:45 +0000106 int i;
107
108 puts ("DRAM Configuration:\n");
109
110 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
111 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
112 print_size (gd->bd->bi_dram[i].size, "\n");
113 }
wdenk8bde7f72003-06-27 21:31:46 +0000114
wdenk2262cfe2002-11-18 00:14:45 +0000115 return (0);
116}
117
118static void display_flash_config (ulong size)
119{
120 puts ("Flash: ");
121 print_size (size, "\n");
122}
123
wdenk2262cfe2002-11-18 00:14:45 +0000124/*
125 * Breath some life into the board...
126 *
127 * Initialize an SMC for serial comms, and carry out some hardware
128 * tests.
129 *
130 * The first part of initialization is running from Flash memory;
131 * its main purpose is to initialize the RAM so that we
132 * can relocate the monitor code to RAM.
133 */
134
Graeme Russ1c409bc2009-11-24 20:04:21 +1100135
wdenk2262cfe2002-11-18 00:14:45 +0000136/*
137 * All attempts to come up with a "common" initialization sequence
138 * that works for all boards and architectures failed: some of the
139 * requirements are just _too_ different. To get rid of the resulting
140 * mess of board dependend #ifdef'ed code we now make the whole
141 * initialization sequence configurable to the user.
142 *
143 * The requirements for any new initalization function is simple: it
144 * receives a pointer to the "global data" structure as it's only
145 * argument, and returns an integer return code, where 0 means
146 * "continue" and != 0 means "fatal error, hang the system".
147 */
148typedef int (init_fnc_t) (void);
149
150init_fnc_t *init_sequence[] = {
Graeme Russ1c409bc2009-11-24 20:04:21 +1100151 cpu_init_r, /* basic cpu dependent setup */
152 board_early_init_r, /* basic board dependent setup */
wdenk2262cfe2002-11-18 00:14:45 +0000153 dram_init, /* configure available RAM banks */
wdenk2262cfe2002-11-18 00:14:45 +0000154 interrupt_init, /* set up exceptions */
wdenk8bde7f72003-06-27 21:31:46 +0000155 timer_init,
wdenk2262cfe2002-11-18 00:14:45 +0000156 env_init, /* initialize environment */
157 init_baudrate, /* initialze baudrate settings */
158 serial_init, /* serial communications setup */
159 display_banner,
160 display_dram_config,
161
162 NULL,
163};
164
Graeme Russ3ef96de2008-09-07 07:08:42 +1000165gd_t *gd;
wdenk2262cfe2002-11-18 00:14:45 +0000166
Graeme Russ1c409bc2009-11-24 20:04:21 +1100167/*
168 * Load U-Boot into RAM, initialize BSS, perform relocation adjustments
169 */
Graeme Russ161b3582010-10-07 20:03:29 +1100170void board_init_f (ulong gdp)
Graeme Russ1c409bc2009-11-24 20:04:21 +1100171{
172 void *text_start = &_i386boot_text_start;
173 void *u_boot_cmd_end = &__u_boot_cmd_end;
174 Elf32_Rel *rel_dyn_start = (Elf32_Rel *)&_i386boot_rel_dyn_start;
175 Elf32_Rel *rel_dyn_end = (Elf32_Rel *)&_i386boot_rel_dyn_end;
176 void *bss_start = &_i386boot_bss_start;
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000177 ulong bss_size = (ulong)&_i386boot_bss_size;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100178
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000179 ulong uboot_size;
180 void *dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100181 ulong rel_offset;
182 Elf32_Rel *re;
183
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000184 uboot_size = (ulong)u_boot_cmd_end - (ulong)text_start;
Graeme Russ161b3582010-10-07 20:03:29 +1100185 dest_addr = (void *)gdp - (uboot_size + (ulong)bss_size);
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000186 rel_offset = text_start - dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100187
188 /* First stage CPU initialization */
189 if (cpu_init_f() != 0)
190 hang();
191
192 /* First stage Board initialization */
193 if (board_early_init_f() != 0)
194 hang();
195
196 /* Copy U-Boot into RAM */
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000197 memcpy(dest_addr, text_start, uboot_size);
Graeme Russ1c409bc2009-11-24 20:04:21 +1100198
199 /* Clear BSS */
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000200 memset(bss_start - rel_offset, 0, bss_size);
Graeme Russ1c409bc2009-11-24 20:04:21 +1100201
202 /* Perform relocation adjustments */
203 for (re = rel_dyn_start; re < rel_dyn_end; re++)
204 {
205 if (re->r_offset >= TEXT_BASE)
206 if (*(ulong *)re->r_offset >= TEXT_BASE)
207 *(ulong *)(re->r_offset - rel_offset) -= (Elf32_Addr)rel_offset;
208 }
209
Graeme Russ161b3582010-10-07 20:03:29 +1100210 ((gd_t *)gdp)->reloc_off = rel_offset;
211 ((gd_t *)gdp)->flags |= GD_FLG_RELOC;
212
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000213 /* Enter the relocated U-Boot! */
Graeme Russ161b3582010-10-07 20:03:29 +1100214 (board_init_r - rel_offset)((gd_t *)gdp, (ulong)dest_addr);
215
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000216 /* NOTREACHED - board_init_f() does not return */
Graeme Russ1c409bc2009-11-24 20:04:21 +1100217 while(1);
218}
219
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000220void board_init_r(gd_t *id, ulong dest_addr)
wdenk2262cfe2002-11-18 00:14:45 +0000221{
wdenk2262cfe2002-11-18 00:14:45 +0000222 char *s;
223 int i;
224 ulong size;
wdenk2262cfe2002-11-18 00:14:45 +0000225 static bd_t bd_data;
226 init_fnc_t **init_fnc_ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000227
wdenk2262cfe2002-11-18 00:14:45 +0000228 show_boot_progress(0x21);
229
Graeme Russ1c409bc2009-11-24 20:04:21 +1100230 gd = id;
wdenk93f6a672004-07-01 20:28:03 +0000231 /* compiler optimization barrier needed for GCC >= 3.4 */
232 __asm__ __volatile__("": : :"memory");
wdenk8bde7f72003-06-27 21:31:46 +0000233
wdenk2262cfe2002-11-18 00:14:45 +0000234 gd->bd = &bd_data;
235 memset (gd->bd, 0, sizeof (bd_t));
236 show_boot_progress(0x22);
237
wdenk7a8e9bed2003-05-31 18:35:21 +0000238 gd->baudrate = CONFIG_BAUDRATE;
wdenk8bde7f72003-06-27 21:31:46 +0000239
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000240 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
Graeme Russ1c409bc2009-11-24 20:04:21 +1100241 CONFIG_SYS_MALLOC_LEN);
242
wdenk2262cfe2002-11-18 00:14:45 +0000243 for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {
244 show_boot_progress(0xa130|i);
245
246 if ((*init_fnc_ptr)() != 0) {
247 hang ();
248 }
249 }
250 show_boot_progress(0x23);
251
Graeme Russbf165002010-04-24 00:05:47 +1000252#ifdef CONFIG_SERIAL_MULTI
253 serial_initialize();
254#endif
wdenk2262cfe2002-11-18 00:14:45 +0000255 /* configure available FLASH banks */
256 size = flash_init();
257 display_flash_config(size);
258 show_boot_progress(0x24);
259
260 show_boot_progress(0x25);
261
262 /* initialize environment */
263 env_relocate ();
264 show_boot_progress(0x26);
265
266
Graeme Russ535ad2d2010-04-24 00:05:36 +1000267#ifdef CONFIG_CMD_NET
wdenk2262cfe2002-11-18 00:14:45 +0000268 /* IP Address */
269 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
Graeme Russ535ad2d2010-04-24 00:05:36 +1000270#endif
wdenk2262cfe2002-11-18 00:14:45 +0000271
wdenk2262cfe2002-11-18 00:14:45 +0000272#if defined(CONFIG_PCI)
273 /*
274 * Do pci configuration
275 */
276 pci_init();
277#endif
278
279 show_boot_progress(0x27);
280
281
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200282 stdio_init ();
wdenk2262cfe2002-11-18 00:14:45 +0000283
wdenk27b207f2003-07-24 23:38:38 +0000284 jumptable_init ();
wdenk8bde7f72003-06-27 21:31:46 +0000285
wdenk2262cfe2002-11-18 00:14:45 +0000286 /* Initialize the console (after the relocation and devices init) */
287 console_init_r();
wdenk2262cfe2002-11-18 00:14:45 +0000288
289#ifdef CONFIG_MISC_INIT_R
290 /* miscellaneous platform dependent initialisations */
291 misc_init_r();
292#endif
293
Jon Loeliger67350562007-07-09 18:05:38 -0500294#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000295 WATCHDOG_RESET();
296 puts ("PCMCIA:");
297 pcmcia_init();
298#endif
299
Jon Loeliger67350562007-07-09 18:05:38 -0500300#if defined(CONFIG_CMD_KGDB)
wdenk2262cfe2002-11-18 00:14:45 +0000301 WATCHDOG_RESET();
302 puts("KGDB: ");
303 kgdb_init();
304#endif
305
306 /* enable exceptions */
wdenk7a8e9bed2003-05-31 18:35:21 +0000307 enable_interrupts();
wdenk2262cfe2002-11-18 00:14:45 +0000308 show_boot_progress(0x28);
309
wdenk2262cfe2002-11-18 00:14:45 +0000310#ifdef CONFIG_STATUS_LED
311 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
312#endif
313
wdenk7a8e9bed2003-05-31 18:35:21 +0000314 udelay(20);
wdenk2262cfe2002-11-18 00:14:45 +0000315
316 set_timer (0);
317
318 /* Initialize from environment */
319 if ((s = getenv ("loadaddr")) != NULL) {
320 load_addr = simple_strtoul (s, NULL, 16);
321 }
Jon Loeliger67350562007-07-09 18:05:38 -0500322#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000323 if ((s = getenv ("bootfile")) != NULL) {
324 copy_filename (BootFile, s, sizeof (BootFile));
325 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500326#endif
wdenk2262cfe2002-11-18 00:14:45 +0000327
328 WATCHDOG_RESET();
329
Jon Loeliger67350562007-07-09 18:05:38 -0500330#if defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000331 WATCHDOG_RESET();
332 puts("IDE: ");
333 ide_init();
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500334#endif
wdenk2262cfe2002-11-18 00:14:45 +0000335
Jon Loeliger67350562007-07-09 18:05:38 -0500336#if defined(CONFIG_CMD_SCSI)
wdenk2262cfe2002-11-18 00:14:45 +0000337 WATCHDOG_RESET();
338 puts("SCSI: ");
339 scsi_init();
340#endif
341
Jon Loeliger67350562007-07-09 18:05:38 -0500342#if defined(CONFIG_CMD_DOC)
wdenk2262cfe2002-11-18 00:14:45 +0000343 WATCHDOG_RESET();
wdenk7a8e9bed2003-05-31 18:35:21 +0000344 puts("DOC: ");
wdenk2262cfe2002-11-18 00:14:45 +0000345 doc_init();
346#endif
347
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200348#ifdef CONFIG_BITBANGMII
349 bb_miiphy_init();
350#endif
Jon Loeliger67350562007-07-09 18:05:38 -0500351#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200352#if defined(CONFIG_NET_MULTI)
wdenk2262cfe2002-11-18 00:14:45 +0000353 WATCHDOG_RESET();
354 puts("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200355#endif
wdenk2262cfe2002-11-18 00:14:45 +0000356 eth_initialize(gd->bd);
357#endif
358
Jon Loeliger67350562007-07-09 18:05:38 -0500359#if ( defined(CONFIG_CMD_NET)) && (0)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200360 WATCHDOG_RESET();
361# ifdef DEBUG
362 puts ("Reset Ethernet PHY\n");
363# endif
364 reset_phy();
365#endif
366
wdenk2262cfe2002-11-18 00:14:45 +0000367#ifdef CONFIG_LAST_STAGE_INIT
368 WATCHDOG_RESET();
369 /*
370 * Some parts can be only initialized if all others (like
371 * Interrupts) are up and running (i.e. the PC-style ISA
372 * keyboard).
373 */
374 last_stage_init();
375#endif
376
377
wdenk2262cfe2002-11-18 00:14:45 +0000378#ifdef CONFIG_POST
379 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk2262cfe2002-11-18 00:14:45 +0000380#endif
wdenk8bde7f72003-06-27 21:31:46 +0000381
382
wdenk2262cfe2002-11-18 00:14:45 +0000383 show_boot_progress(0x29);
wdenk8bde7f72003-06-27 21:31:46 +0000384
wdenk2262cfe2002-11-18 00:14:45 +0000385 /* main_loop() can return to retry autoboot, if so just run it again. */
386 for (;;) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000387 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000388 }
389
390 /* NOTREACHED - no way out of command loop except booting */
391}
392
393void hang (void)
394{
395 puts ("### ERROR ### Please RESET the board ###\n");
396 for (;;);
397}
Mike Frysingera4986452008-04-13 19:42:19 -0400398
Graeme Russe69c0cb2010-08-22 16:25:58 +1000399unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[])
Mike Frysingera4986452008-04-13 19:42:19 -0400400{
Graeme Russe69c0cb2010-08-22 16:25:58 +1000401 unsigned long ret = 0;
402 char **argv_tmp;
Graeme Russ9e08efc2010-04-24 00:05:39 +1000403
Graeme Russe69c0cb2010-08-22 16:25:58 +1000404 /*
405 * x86 does not use a dedicated register to pass the pointer to
406 * the global_data, so it is instead passed as argv[-1]. By using
407 * argv[-1], the called 'Application' can use the contents of
408 * argv natively. However, to safely use argv[-1] a new copy of
409 * argv is needed with the extra element
410 */
411 argv_tmp = malloc(sizeof(char *) * (argc + 1));
412
413 if (argv_tmp) {
414 argv_tmp[0] = (char *)gd;
415
416 memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
417
418 ret = (entry) (argc, &argv_tmp[1]);
419 free(argv_tmp);
420 }
421
422 return ret;
Mike Frysingera4986452008-04-13 19:42:19 -0400423}
Graeme Russ79ea6b82010-04-24 00:05:48 +1000424
425void setup_pcat_compatibility(void)
426 __attribute__((weak, alias("__setup_pcat_compatibility")));
427
428void __setup_pcat_compatibility(void)
429{
430}