blob: 85d7d7fb8c6e23a36162467053252ab01ce7c6d5 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
4 *
5 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * (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>
34#include <devices.h>
35#include <version.h>
36#include <malloc.h>
37#include <syscall.h>
38#include <net.h>
39#include <ide.h>
wdenkabda5ca2003-05-31 18:35:21 +000040#include <asm/u-boot-i386.h>
wdenk591dda52002-11-18 00:14:45 +000041
42extern long _i386boot_start;
43extern long _i386boot_end;
44extern long _i386boot_romdata_start;
45extern long _i386boot_romdata_dest;
46extern long _i386boot_romdata_size;
47extern long _i386boot_bss_start;
48extern long _i386boot_bss_size;
49
50extern long _i386boot_realmode;
51extern long _i386boot_realmode_size;
52extern long _i386boot_bios;
53extern long _i386boot_bios_size;
54
55/* The symbols defined by the linker script becomes pointers
56 * which is somewhat inconveient ... */
57ulong i386boot_start = (ulong)&_i386boot_start; /* code start (in flash) defined in start.S */
58ulong i386boot_end = (ulong)&_i386boot_end; /* code end (in flash) */
59ulong i386boot_romdata_start = (ulong)&_i386boot_romdata_start; /* datasegment in flash (also code+rodata end) */
60ulong i386boot_romdata_dest = (ulong)&_i386boot_romdata_dest; /* data location segment in ram */
61ulong i386boot_romdata_size = (ulong)&_i386boot_romdata_size; /* size of data segment */
62ulong i386boot_bss_start = (ulong)&_i386boot_bss_start; /* bss start */
63ulong i386boot_bss_size = (ulong)&_i386boot_bss_size; /* bss size */
64
65ulong i386boot_realmode = (ulong)&_i386boot_realmode; /* start of realmode entry code */
66ulong i386boot_realmode_size = (ulong)&_i386boot_realmode_size; /* size of realmode entry code */
67ulong i386boot_bios = (ulong)&_i386boot_bios; /* start of BIOS emulation code */
68ulong i386boot_bios_size = (ulong)&_i386boot_bios_size; /* size of BIOS emulation code */
69
70
71const char version_string[] =
72 U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")";
73
74
75/*
76 * Begin and End of memory area for malloc(), and current "brk"
77 */
78static ulong mem_malloc_start = 0;
79static ulong mem_malloc_end = 0;
80static ulong mem_malloc_brk = 0;
81
82static int mem_malloc_init(void)
83{
84 DECLARE_GLOBAL_DATA_PTR;
85
wdenk591dda52002-11-18 00:14:45 +000086 /* start malloc area right after the stack */
87 mem_malloc_start = i386boot_bss_start +
88 i386boot_bss_size + CFG_STACK_SIZE;
89 mem_malloc_start = (mem_malloc_start+3)&~3;
wdenkabda5ca2003-05-31 18:35:21 +000090
wdenk591dda52002-11-18 00:14:45 +000091 /* Use all available RAM for malloc() */
92 mem_malloc_end = gd->ram_size;
wdenkabda5ca2003-05-31 18:35:21 +000093
wdenk591dda52002-11-18 00:14:45 +000094 mem_malloc_brk = mem_malloc_start;
95
96 return 0;
97}
98
99void *sbrk (ptrdiff_t increment)
100{
101 ulong old = mem_malloc_brk;
102 ulong new = old + increment;
103
104 if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
105 return (NULL);
106 }
107 mem_malloc_brk = new;
108
109 return ((void *) old);
110}
111
112char *strmhz (char *buf, long hz)
113{
114 long l, n;
115 long m;
116
117 n = hz / 1000000L;
118 l = sprintf (buf, "%ld", n);
119 m = (hz % 1000000L) / 1000L;
120 if (m != 0)
121 sprintf (buf + l, ".%03ld", m);
122 return (buf);
123}
124
125/************************************************************************
126 * Init Utilities *
127 ************************************************************************
128 * Some of this code should be moved into the core functions,
129 * or dropped completely,
130 * but let's get it working (again) first...
131 */
132static void syscalls_init (void)
133{
134 syscall_tbl[SYSCALL_MALLOC] = (void *) malloc;
135 syscall_tbl[SYSCALL_FREE] = (void *) free;
136
137 syscall_tbl[SYSCALL_INSTALL_HDLR] = (void *) irq_install_handler;
138 syscall_tbl[SYSCALL_FREE_HDLR] = (void *) irq_free_handler;
139
140}
141
142static int init_baudrate (void)
143{
144 DECLARE_GLOBAL_DATA_PTR;
145
wdenkabda5ca2003-05-31 18:35:21 +0000146 char tmp[64]; /* long enough for environment variables */
147 int i = getenv_r("baudrate", tmp, 64);
wdenk591dda52002-11-18 00:14:45 +0000148
wdenkabda5ca2003-05-31 18:35:21 +0000149 gd->baudrate = (i != 0)
wdenk591dda52002-11-18 00:14:45 +0000150 ? (int) simple_strtoul (tmp, NULL, 10)
151 : CONFIG_BAUDRATE;
152
153 return (0);
154}
155
156static int display_banner (void)
157{
158
159 printf ("\n\n%s\n\n", version_string);
160 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
161 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
162 i386boot_start, i386boot_romdata_start-1,
163 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
164 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
165 i386boot_bss_start+i386boot_bss_size,
166 i386boot_bss_start+i386boot_bss_size+CFG_STACK_SIZE-1);
167
168
169 return (0);
170}
171
172/*
173 * WARNING: this code looks "cleaner" than the PowerPC version, but
174 * has the disadvantage that you either get nothing, or everything.
175 * On PowerPC, you might see "DRAM: " before the system hangs - which
176 * gives a simple yet clear indication which part of the
177 * initialization if failing.
178 */
179static int display_dram_config (void)
180{
181 DECLARE_GLOBAL_DATA_PTR;
182 int i;
183
184 puts ("DRAM Configuration:\n");
185
186 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
187 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
188 print_size (gd->bd->bi_dram[i].size, "\n");
189 }
190
191 return (0);
192}
193
194static void display_flash_config (ulong size)
195{
196 puts ("Flash: ");
197 print_size (size, "\n");
198}
199
200
201
202/*
203 * Breath some life into the board...
204 *
205 * Initialize an SMC for serial comms, and carry out some hardware
206 * tests.
207 *
208 * The first part of initialization is running from Flash memory;
209 * its main purpose is to initialize the RAM so that we
210 * can relocate the monitor code to RAM.
211 */
212
213/*
214 * All attempts to come up with a "common" initialization sequence
215 * that works for all boards and architectures failed: some of the
216 * requirements are just _too_ different. To get rid of the resulting
217 * mess of board dependend #ifdef'ed code we now make the whole
218 * initialization sequence configurable to the user.
219 *
220 * The requirements for any new initalization function is simple: it
221 * receives a pointer to the "global data" structure as it's only
222 * argument, and returns an integer return code, where 0 means
223 * "continue" and != 0 means "fatal error, hang the system".
224 */
225typedef int (init_fnc_t) (void);
226
227init_fnc_t *init_sequence[] = {
228 cpu_init, /* basic cpu dependent setup */
229 board_init, /* basic board dependent setup */
230 dram_init, /* configure available RAM banks */
231 mem_malloc_init, /* dependant on dram_init */
232 interrupt_init, /* set up exceptions */
233 timer_init,
wdenkabda5ca2003-05-31 18:35:21 +0000234 serial_init,
wdenk591dda52002-11-18 00:14:45 +0000235 env_init, /* initialize environment */
236 init_baudrate, /* initialze baudrate settings */
237 serial_init, /* serial communications setup */
238 display_banner,
239 display_dram_config,
240
241 NULL,
242};
243
244gd_t *global_data;
245
246void start_i386boot (void)
247{
248 DECLARE_GLOBAL_DATA_PTR;
249 char *s;
250 int i;
251 ulong size;
252 static gd_t gd_data;
253 static bd_t bd_data;
254 init_fnc_t **init_fnc_ptr;
255
256 show_boot_progress(0x21);
257
258 gd = global_data = &gd_data;
259
260 memset (gd, 0, sizeof (gd_t));
261 gd->bd = &bd_data;
262 memset (gd->bd, 0, sizeof (bd_t));
263 show_boot_progress(0x22);
264
wdenkabda5ca2003-05-31 18:35:21 +0000265 gd->baudrate = CONFIG_BAUDRATE;
wdenk591dda52002-11-18 00:14:45 +0000266
267 for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {
268 show_boot_progress(0xa130|i);
269
270 if ((*init_fnc_ptr)() != 0) {
271 hang ();
272 }
273 }
274 show_boot_progress(0x23);
275
276 /* configure available FLASH banks */
277 size = flash_init();
278 display_flash_config(size);
279 show_boot_progress(0x24);
280
281 show_boot_progress(0x25);
282
283 /* initialize environment */
284 env_relocate ();
285 show_boot_progress(0x26);
286
287
288 /* IP Address */
289 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
290
291 /* MAC Address */
292 {
293 int i;
294 ulong reg;
295 char *s, *e;
296 uchar tmp[64];
297
298 i = getenv_r ("ethaddr", tmp, sizeof (tmp));
299 s = (i > 0) ? tmp : NULL;
300
301 for (reg = 0; reg < 6; ++reg) {
302 bd_data.bi_enetaddr[reg] = s ? simple_strtoul (s, &e, 16) : 0;
303 if (s)
304 s = (*e) ? e + 1 : e;
305 }
306 }
307
308#if defined(CONFIG_PCI)
309 /*
310 * Do pci configuration
311 */
312 pci_init();
313#endif
314
315 show_boot_progress(0x27);
316
317
318 devices_init ();
319
320 /* allocate syscalls table (console_init_r will fill it in */
321 syscall_tbl = (void **) malloc (NR_SYSCALLS * sizeof (void *));
wdenkabda5ca2003-05-31 18:35:21 +0000322 memset(syscall_tbl, 0, NR_SYSCALLS * sizeof (void *));
323
wdenk591dda52002-11-18 00:14:45 +0000324 /* Initialize the console (after the relocation and devices init) */
325 console_init_r();
326 syscalls_init();
327
328#ifdef CONFIG_MISC_INIT_R
329 /* miscellaneous platform dependent initialisations */
330 misc_init_r();
331#endif
332
333
334#if (CONFIG_COMMANDS & CFG_CMD_NET) && (0)
335 WATCHDOG_RESET();
336# ifdef DEBUG
337 puts ("Reset Ethernet PHY\n");
338# endif
339 reset_phy();
340#endif
341
342#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) && !(CONFIG_COMMANDS & CFG_CMD_IDE)
343 WATCHDOG_RESET();
344 puts ("PCMCIA:");
345 pcmcia_init();
346#endif
347
348#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
349 WATCHDOG_RESET();
350 puts("KGDB: ");
351 kgdb_init();
352#endif
353
354 /* enable exceptions */
wdenkabda5ca2003-05-31 18:35:21 +0000355 enable_interrupts();
wdenk591dda52002-11-18 00:14:45 +0000356 show_boot_progress(0x28);
357
358 /* Must happen after interrupts are initialized since
359 * an irq handler gets installed
360 */
361#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
362 serial_buffered_init();
363#endif
364
365#ifdef CONFIG_STATUS_LED
366 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
367#endif
368
wdenkabda5ca2003-05-31 18:35:21 +0000369 udelay(20);
wdenk591dda52002-11-18 00:14:45 +0000370
371 set_timer (0);
372
373 /* Initialize from environment */
374 if ((s = getenv ("loadaddr")) != NULL) {
375 load_addr = simple_strtoul (s, NULL, 16);
376 }
377#if (CONFIG_COMMANDS & CFG_CMD_NET)
378 if ((s = getenv ("bootfile")) != NULL) {
379 copy_filename (BootFile, s, sizeof (BootFile));
380 }
381#endif /* CFG_CMD_NET */
382
383 WATCHDOG_RESET();
384
385#if (CONFIG_COMMANDS & CFG_CMD_IDE)
386 WATCHDOG_RESET();
387 puts("IDE: ");
388 ide_init();
389#endif /* CFG_CMD_IDE */
390
391#if (CONFIG_COMMANDS & CFG_CMD_SCSI)
392 WATCHDOG_RESET();
393 puts("SCSI: ");
394 scsi_init();
395#endif
396
397#if (CONFIG_COMMANDS & CFG_CMD_DOC)
398 WATCHDOG_RESET();
wdenkabda5ca2003-05-31 18:35:21 +0000399 puts("DOC: ");
wdenk591dda52002-11-18 00:14:45 +0000400 doc_init();
401#endif
402
403#if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI)
404 WATCHDOG_RESET();
405 puts("Net: ");
406 eth_initialize(gd->bd);
407#endif
408
409#ifdef CONFIG_LAST_STAGE_INIT
410 WATCHDOG_RESET();
411 /*
412 * Some parts can be only initialized if all others (like
413 * Interrupts) are up and running (i.e. the PC-style ISA
414 * keyboard).
415 */
416 last_stage_init();
417#endif
418
419
420
421#ifdef CONFIG_POST
422 post_run (NULL, POST_RAM | post_bootmode_get(0));
423 if (post_bootmode_get(0) & POST_POWERFAIL) {
424 post_bootmode_clear();
425 board_poweroff();
426 }
427#endif
wdenkabda5ca2003-05-31 18:35:21 +0000428
429
wdenk591dda52002-11-18 00:14:45 +0000430 show_boot_progress(0x29);
431
432 /* main_loop() can return to retry autoboot, if so just run it again. */
433 for (;;) {
wdenkabda5ca2003-05-31 18:35:21 +0000434 main_loop();
wdenk591dda52002-11-18 00:14:45 +0000435 }
436
437 /* NOTREACHED - no way out of command loop except booting */
438}
439
440void hang (void)
441{
442 puts ("### ERROR ### Please RESET the board ###\n");
443 for (;;);
444}
445
446