blob: 0262b5e2cb8d77a220d6503b17126c06ac51b94f [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * 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>
wdenk7a8e9bed2003-05-31 18:35:21 +000040#include <asm/u-boot-i386.h>
wdenk2262cfe2002-11-18 00:14:45 +000041
Wolfgang Denkd87080b2006-03-31 18:32:53 +020042DECLARE_GLOBAL_DATA_PTR;
43
wdenk8bde7f72003-06-27 21:31:46 +000044extern long _i386boot_start;
45extern long _i386boot_end;
wdenk2262cfe2002-11-18 00:14:45 +000046extern long _i386boot_romdata_start;
wdenk8bde7f72003-06-27 21:31:46 +000047extern long _i386boot_romdata_dest;
48extern long _i386boot_romdata_size;
49extern long _i386boot_bss_start;
50extern long _i386boot_bss_size;
wdenk2262cfe2002-11-18 00:14:45 +000051
wdenk8bde7f72003-06-27 21:31:46 +000052extern long _i386boot_realmode;
wdenk2262cfe2002-11-18 00:14:45 +000053extern long _i386boot_realmode_size;
wdenk8bde7f72003-06-27 21:31:46 +000054extern long _i386boot_bios;
55extern long _i386boot_bios_size;
wdenk2262cfe2002-11-18 00:14:45 +000056
57/* The symbols defined by the linker script becomes pointers
58 * which is somewhat inconveient ... */
59ulong i386boot_start = (ulong)&_i386boot_start; /* code start (in flash) defined in start.S */
60ulong i386boot_end = (ulong)&_i386boot_end; /* code end (in flash) */
61ulong i386boot_romdata_start = (ulong)&_i386boot_romdata_start; /* datasegment in flash (also code+rodata end) */
62ulong i386boot_romdata_dest = (ulong)&_i386boot_romdata_dest; /* data location segment in ram */
63ulong i386boot_romdata_size = (ulong)&_i386boot_romdata_size; /* size of data segment */
64ulong i386boot_bss_start = (ulong)&_i386boot_bss_start; /* bss start */
65ulong i386boot_bss_size = (ulong)&_i386boot_bss_size; /* bss size */
66
67ulong i386boot_realmode = (ulong)&_i386boot_realmode; /* start of realmode entry code */
68ulong i386boot_realmode_size = (ulong)&_i386boot_realmode_size; /* size of realmode entry code */
69ulong i386boot_bios = (ulong)&_i386boot_bios; /* start of BIOS emulation code */
70ulong i386boot_bios_size = (ulong)&_i386boot_bios_size; /* size of BIOS emulation code */
71
72
73const char version_string[] =
Peter Tyser561858e2008-11-03 09:30:59 -060074 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenk2262cfe2002-11-18 00:14:45 +000075
wdenk2262cfe2002-11-18 00:14:45 +000076static int mem_malloc_init(void)
77{
wdenk2262cfe2002-11-18 00:14:45 +000078 /* start malloc area right after the stack */
wdenk8bde7f72003-06-27 21:31:46 +000079 mem_malloc_start = i386boot_bss_start +
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 i386boot_bss_size + CONFIG_SYS_STACK_SIZE;
wdenk2262cfe2002-11-18 00:14:45 +000081 mem_malloc_start = (mem_malloc_start+3)&~3;
wdenk8bde7f72003-06-27 21:31:46 +000082
wdenk2262cfe2002-11-18 00:14:45 +000083 /* Use all available RAM for malloc() */
84 mem_malloc_end = gd->ram_size;
wdenk8bde7f72003-06-27 21:31:46 +000085
wdenk2262cfe2002-11-18 00:14:45 +000086 mem_malloc_brk = mem_malloc_start;
87
88 return 0;
89}
90
wdenk2262cfe2002-11-18 00:14:45 +000091/************************************************************************
92 * Init Utilities *
93 ************************************************************************
94 * Some of this code should be moved into the core functions,
95 * or dropped completely,
96 * but let's get it working (again) first...
97 */
wdenk2262cfe2002-11-18 00:14:45 +000098static int init_baudrate (void)
99{
wdenk7a8e9bed2003-05-31 18:35:21 +0000100 char tmp[64]; /* long enough for environment variables */
101 int i = getenv_r("baudrate", tmp, 64);
wdenk2262cfe2002-11-18 00:14:45 +0000102
wdenk7a8e9bed2003-05-31 18:35:21 +0000103 gd->baudrate = (i != 0)
wdenk2262cfe2002-11-18 00:14:45 +0000104 ? (int) simple_strtoul (tmp, NULL, 10)
105 : CONFIG_BAUDRATE;
106
107 return (0);
108}
109
110static int display_banner (void)
111{
112
113 printf ("\n\n%s\n\n", version_string);
114 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
115 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
116 i386boot_start, i386boot_romdata_start-1,
117 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
118 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
wdenk8bde7f72003-06-27 21:31:46 +0000119 i386boot_bss_start+i386boot_bss_size,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120 i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1);
wdenk8bde7f72003-06-27 21:31:46 +0000121
wdenk2262cfe2002-11-18 00:14:45 +0000122
123 return (0);
124}
125
126/*
127 * WARNING: this code looks "cleaner" than the PowerPC version, but
128 * has the disadvantage that you either get nothing, or everything.
129 * On PowerPC, you might see "DRAM: " before the system hangs - which
130 * gives a simple yet clear indication which part of the
131 * initialization if failing.
132 */
133static int display_dram_config (void)
134{
wdenk2262cfe2002-11-18 00:14:45 +0000135 int i;
136
137 puts ("DRAM Configuration:\n");
138
139 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
140 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
141 print_size (gd->bd->bi_dram[i].size, "\n");
142 }
wdenk8bde7f72003-06-27 21:31:46 +0000143
wdenk2262cfe2002-11-18 00:14:45 +0000144 return (0);
145}
146
147static void display_flash_config (ulong size)
148{
149 puts ("Flash: ");
150 print_size (size, "\n");
151}
152
153
wdenk2262cfe2002-11-18 00:14:45 +0000154/*
155 * Breath some life into the board...
156 *
157 * Initialize an SMC for serial comms, and carry out some hardware
158 * tests.
159 *
160 * The first part of initialization is running from Flash memory;
161 * its main purpose is to initialize the RAM so that we
162 * can relocate the monitor code to RAM.
163 */
164
165/*
166 * All attempts to come up with a "common" initialization sequence
167 * that works for all boards and architectures failed: some of the
168 * requirements are just _too_ different. To get rid of the resulting
169 * mess of board dependend #ifdef'ed code we now make the whole
170 * initialization sequence configurable to the user.
171 *
172 * The requirements for any new initalization function is simple: it
173 * receives a pointer to the "global data" structure as it's only
174 * argument, and returns an integer return code, where 0 means
175 * "continue" and != 0 means "fatal error, hang the system".
176 */
177typedef int (init_fnc_t) (void);
178
179init_fnc_t *init_sequence[] = {
180 cpu_init, /* basic cpu dependent setup */
181 board_init, /* basic board dependent setup */
182 dram_init, /* configure available RAM banks */
183 mem_malloc_init, /* dependant on dram_init */
184 interrupt_init, /* set up exceptions */
wdenk8bde7f72003-06-27 21:31:46 +0000185 timer_init,
wdenk7a8e9bed2003-05-31 18:35:21 +0000186 serial_init,
wdenk2262cfe2002-11-18 00:14:45 +0000187 env_init, /* initialize environment */
188 init_baudrate, /* initialze baudrate settings */
189 serial_init, /* serial communications setup */
190 display_banner,
191 display_dram_config,
192
193 NULL,
194};
195
Graeme Russ3ef96de2008-09-07 07:08:42 +1000196gd_t *gd;
wdenk2262cfe2002-11-18 00:14:45 +0000197
198void start_i386boot (void)
199{
wdenk2262cfe2002-11-18 00:14:45 +0000200 char *s;
201 int i;
202 ulong size;
203 static gd_t gd_data;
204 static bd_t bd_data;
205 init_fnc_t **init_fnc_ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000206
Graeme Russe17ee152009-02-24 21:14:56 +1100207#ifndef CONFIG_SKIP_RELOCATE_UBOOT
208 cmd_tbl_t *p;
209#endif
wdenk2262cfe2002-11-18 00:14:45 +0000210 show_boot_progress(0x21);
211
Graeme Russ3ef96de2008-09-07 07:08:42 +1000212 gd = &gd_data;
wdenk93f6a672004-07-01 20:28:03 +0000213 /* compiler optimization barrier needed for GCC >= 3.4 */
214 __asm__ __volatile__("": : :"memory");
wdenk8bde7f72003-06-27 21:31:46 +0000215
wdenk2262cfe2002-11-18 00:14:45 +0000216 memset (gd, 0, sizeof (gd_t));
217 gd->bd = &bd_data;
218 memset (gd->bd, 0, sizeof (bd_t));
219 show_boot_progress(0x22);
220
wdenk7a8e9bed2003-05-31 18:35:21 +0000221 gd->baudrate = CONFIG_BAUDRATE;
wdenk8bde7f72003-06-27 21:31:46 +0000222
Graeme Russe17ee152009-02-24 21:14:56 +1100223#ifndef CONFIG_SKIP_RELOCATE_UBOOT
224 /* Need to set relocation offset here for interrupt initialization */
225 gd->reloc_off = CONFIG_SYS_BL_START_RAM - TEXT_BASE;
226#endif
wdenk2262cfe2002-11-18 00:14:45 +0000227 for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {
228 show_boot_progress(0xa130|i);
229
230 if ((*init_fnc_ptr)() != 0) {
231 hang ();
232 }
233 }
234 show_boot_progress(0x23);
235
Graeme Russe17ee152009-02-24 21:14:56 +1100236#ifndef CONFIG_SKIP_RELOCATE_UBOOT
237 for (p = &__u_boot_cmd_start; p != &__u_boot_cmd_end; p++) {
238 ulong addr;
239 addr = (ulong) (p->cmd) + gd->reloc_off;
240 p->cmd = (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr;
241 addr = (ulong)(p->name) + gd->reloc_off;
242 p->name = (char *)addr;
243
244 if (p->usage != NULL) {
245 addr = (ulong)(p->usage) + gd->reloc_off;
246 p->usage = (char *)addr;
247 }
248 #ifdef CONFIG_SYS_LONGHELP
249 if (p->help != NULL) {
250 addr = (ulong)(p->help) + gd->reloc_off;
251 p->help = (char *)addr;
252 }
253 #endif
254 }
255#endif
wdenk2262cfe2002-11-18 00:14:45 +0000256 /* configure available FLASH banks */
257 size = flash_init();
258 display_flash_config(size);
259 show_boot_progress(0x24);
260
261 show_boot_progress(0x25);
262
263 /* initialize environment */
264 env_relocate ();
265 show_boot_progress(0x26);
266
267
268 /* IP Address */
269 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
270
wdenk2262cfe2002-11-18 00:14:45 +0000271#if defined(CONFIG_PCI)
272 /*
273 * Do pci configuration
274 */
275 pci_init();
276#endif
277
278 show_boot_progress(0x27);
279
280
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200281 stdio_init ();
wdenk2262cfe2002-11-18 00:14:45 +0000282
wdenk27b207f2003-07-24 23:38:38 +0000283 jumptable_init ();
wdenk8bde7f72003-06-27 21:31:46 +0000284
wdenk2262cfe2002-11-18 00:14:45 +0000285 /* Initialize the console (after the relocation and devices init) */
286 console_init_r();
wdenk2262cfe2002-11-18 00:14:45 +0000287
288#ifdef CONFIG_MISC_INIT_R
289 /* miscellaneous platform dependent initialisations */
290 misc_init_r();
291#endif
292
Jon Loeliger67350562007-07-09 18:05:38 -0500293#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000294 WATCHDOG_RESET();
295 puts ("PCMCIA:");
296 pcmcia_init();
297#endif
298
Jon Loeliger67350562007-07-09 18:05:38 -0500299#if defined(CONFIG_CMD_KGDB)
wdenk2262cfe2002-11-18 00:14:45 +0000300 WATCHDOG_RESET();
301 puts("KGDB: ");
302 kgdb_init();
303#endif
304
305 /* enable exceptions */
wdenk7a8e9bed2003-05-31 18:35:21 +0000306 enable_interrupts();
wdenk2262cfe2002-11-18 00:14:45 +0000307 show_boot_progress(0x28);
308
309 /* Must happen after interrupts are initialized since
310 * an irq handler gets installed
311 */
wdenk42dfe7a2004-03-14 22:25:36 +0000312#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk2262cfe2002-11-18 00:14:45 +0000313 serial_buffered_init();
314#endif
wdenk8bde7f72003-06-27 21:31:46 +0000315
wdenk2262cfe2002-11-18 00:14:45 +0000316#ifdef CONFIG_STATUS_LED
317 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
318#endif
319
wdenk7a8e9bed2003-05-31 18:35:21 +0000320 udelay(20);
wdenk2262cfe2002-11-18 00:14:45 +0000321
322 set_timer (0);
323
324 /* Initialize from environment */
325 if ((s = getenv ("loadaddr")) != NULL) {
326 load_addr = simple_strtoul (s, NULL, 16);
327 }
Jon Loeliger67350562007-07-09 18:05:38 -0500328#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000329 if ((s = getenv ("bootfile")) != NULL) {
330 copy_filename (BootFile, s, sizeof (BootFile));
331 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500332#endif
wdenk2262cfe2002-11-18 00:14:45 +0000333
334 WATCHDOG_RESET();
335
Jon Loeliger67350562007-07-09 18:05:38 -0500336#if defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000337 WATCHDOG_RESET();
338 puts("IDE: ");
339 ide_init();
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500340#endif
wdenk2262cfe2002-11-18 00:14:45 +0000341
Jon Loeliger67350562007-07-09 18:05:38 -0500342#if defined(CONFIG_CMD_SCSI)
wdenk2262cfe2002-11-18 00:14:45 +0000343 WATCHDOG_RESET();
344 puts("SCSI: ");
345 scsi_init();
346#endif
347
Jon Loeliger67350562007-07-09 18:05:38 -0500348#if defined(CONFIG_CMD_DOC)
wdenk2262cfe2002-11-18 00:14:45 +0000349 WATCHDOG_RESET();
wdenk7a8e9bed2003-05-31 18:35:21 +0000350 puts("DOC: ");
wdenk2262cfe2002-11-18 00:14:45 +0000351 doc_init();
352#endif
353
Jon Loeliger67350562007-07-09 18:05:38 -0500354#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200355#if defined(CONFIG_NET_MULTI)
wdenk2262cfe2002-11-18 00:14:45 +0000356 WATCHDOG_RESET();
357 puts("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200358#endif
wdenk2262cfe2002-11-18 00:14:45 +0000359 eth_initialize(gd->bd);
360#endif
361
Jon Loeliger67350562007-07-09 18:05:38 -0500362#if ( defined(CONFIG_CMD_NET)) && (0)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200363 WATCHDOG_RESET();
364# ifdef DEBUG
365 puts ("Reset Ethernet PHY\n");
366# endif
367 reset_phy();
368#endif
369
wdenk2262cfe2002-11-18 00:14:45 +0000370#ifdef CONFIG_LAST_STAGE_INIT
371 WATCHDOG_RESET();
372 /*
373 * Some parts can be only initialized if all others (like
374 * Interrupts) are up and running (i.e. the PC-style ISA
375 * keyboard).
376 */
377 last_stage_init();
378#endif
379
380
wdenk2262cfe2002-11-18 00:14:45 +0000381#ifdef CONFIG_POST
382 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk2262cfe2002-11-18 00:14:45 +0000383#endif
wdenk8bde7f72003-06-27 21:31:46 +0000384
385
wdenk2262cfe2002-11-18 00:14:45 +0000386 show_boot_progress(0x29);
wdenk8bde7f72003-06-27 21:31:46 +0000387
wdenk2262cfe2002-11-18 00:14:45 +0000388 /* main_loop() can return to retry autoboot, if so just run it again. */
389 for (;;) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000390 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000391 }
392
393 /* NOTREACHED - no way out of command loop except booting */
394}
395
396void hang (void)
397{
398 puts ("### ERROR ### Please RESET the board ###\n");
399 for (;;);
400}
Mike Frysingera4986452008-04-13 19:42:19 -0400401
402unsigned long do_go_exec (ulong (*entry)(int, char *[]), int argc, char *argv[])
403{
404 /*
Graeme Russ3ef96de2008-09-07 07:08:42 +1000405 * TODO: Test this function - changed to fix compiler error.
406 * Original code was:
407 * return (entry >> 1) (argc, argv);
408 * with a comment about Nios function pointers are address >> 1
Mike Frysingera4986452008-04-13 19:42:19 -0400409 */
Graeme Russ3ef96de2008-09-07 07:08:42 +1000410 return (entry) (argc, argv);
Mike Frysingera4986452008-04-13 19:42:19 -0400411}