blob: 8963580808650c2334a4c03e480908dade98bad2 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10002 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
wdenk591dda52002-11-18 00:14:45 +00005 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk57b2d802003-06-27 21:31:46 +00007 *
wdenk591dda52002-11-18 00:14:45 +00008 * (C) Copyright 2002
Graeme Russ45fc1d82011-04-13 19:43:26 +10009 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
wdenk57b2d802003-06-27 21:31:46 +000010 *
wdenk591dda52002-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-VILLARD2a7a0312009-05-16 12:14:54 +020037#include <stdio_dev.h>
wdenk591dda52002-11-18 00:14:45 +000038#include <version.h>
39#include <malloc.h>
wdenk591dda52002-11-18 00:14:45 +000040#include <net.h>
41#include <ide.h>
Graeme Russ06dfe372010-04-24 00:05:47 +100042#include <serial.h>
Graeme Russcbfce1d2011-04-13 19:43:28 +100043#include <asm/u-boot-x86.h>
Graeme Russ078395c2009-11-24 20:04:21 +110044#include <elf.h>
wdenk591dda52002-11-18 00:14:45 +000045
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020046#ifdef CONFIG_BITBANGMII
47#include <miiphy.h>
48#endif
49
Graeme Russ4e0f55f2011-02-12 15:11:50 +110050/*
51 * Pointer to initial global data area
52 *
53 * Here we initialize it.
54 */
55#undef XTRN_DECLARE_GLOBAL_DATA_PTR
56#define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
57DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
58
Wolfgang Denk6405a152006-03-31 18:32:53 +020059
Graeme Russ078395c2009-11-24 20:04:21 +110060/* Exports from the Linker Script */
Graeme Russae428db2010-10-07 20:03:31 +110061extern ulong __text_start;
Graeme Russfb4e2be2010-10-07 20:03:32 +110062extern ulong __data_end;
Graeme Russae428db2010-10-07 20:03:31 +110063extern ulong __rel_dyn_start;
64extern ulong __rel_dyn_end;
65extern ulong __bss_start;
Graeme Russ99052852010-10-07 20:03:33 +110066extern ulong __bss_end;
Graeme Russe07da072010-04-24 00:05:44 +100067
wdenk591dda52002-11-18 00:14:45 +000068/************************************************************************
69 * Init Utilities *
70 ************************************************************************
71 * Some of this code should be moved into the core functions,
72 * or dropped completely,
73 * but let's get it working (again) first...
74 */
wdenk591dda52002-11-18 00:14:45 +000075static int init_baudrate (void)
76{
Simon Glass32ef00a2011-10-13 14:43:14 +000077 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
78 return 0;
wdenk591dda52002-11-18 00:14:45 +000079}
80
81static int display_banner (void)
82{
83
84 printf ("\n\n%s\n\n", version_string);
Graeme Russ078395c2009-11-24 20:04:21 +110085/*
wdenk591dda52002-11-18 00:14:45 +000086 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
87 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
88 i386boot_start, i386boot_romdata_start-1,
89 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
90 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
wdenk57b2d802003-06-27 21:31:46 +000091 i386boot_bss_start+i386boot_bss_size,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020092 i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1);
wdenk57b2d802003-06-27 21:31:46 +000093
Graeme Russ078395c2009-11-24 20:04:21 +110094*/
wdenk591dda52002-11-18 00:14:45 +000095
96 return (0);
97}
98
wdenk591dda52002-11-18 00:14:45 +000099static int display_dram_config (void)
100{
wdenk591dda52002-11-18 00:14:45 +0000101 int i;
102
103 puts ("DRAM Configuration:\n");
104
105 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
106 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
107 print_size (gd->bd->bi_dram[i].size, "\n");
108 }
wdenk57b2d802003-06-27 21:31:46 +0000109
wdenk591dda52002-11-18 00:14:45 +0000110 return (0);
111}
112
113static void display_flash_config (ulong size)
114{
115 puts ("Flash: ");
116 print_size (size, "\n");
117}
118
wdenk591dda52002-11-18 00:14:45 +0000119/*
120 * Breath some life into the board...
121 *
122 * Initialize an SMC for serial comms, and carry out some hardware
123 * tests.
124 *
125 * The first part of initialization is running from Flash memory;
126 * its main purpose is to initialize the RAM so that we
127 * can relocate the monitor code to RAM.
128 */
129
130/*
131 * All attempts to come up with a "common" initialization sequence
132 * that works for all boards and architectures failed: some of the
133 * requirements are just _too_ different. To get rid of the resulting
134 * mess of board dependend #ifdef'ed code we now make the whole
135 * initialization sequence configurable to the user.
136 *
137 * The requirements for any new initalization function is simple: it
138 * receives a pointer to the "global data" structure as it's only
139 * argument, and returns an integer return code, where 0 means
140 * "continue" and != 0 means "fatal error, hang the system".
141 */
142typedef int (init_fnc_t) (void);
143
Graeme Russ6ec93c32011-02-12 15:12:10 +1100144static int calculate_relocation_address(void);
145static int copy_uboot_to_ram(void);
146static int clear_bss(void);
147static int do_elf_reloc_fixups(void);
148
149init_fnc_t *init_sequence_f[] = {
150 cpu_init_f,
151 board_early_init_f,
152 env_init,
153 init_baudrate,
154 serial_init,
155 console_init_f,
156 dram_init_f,
157 calculate_relocation_address,
158 copy_uboot_to_ram,
159 clear_bss,
160 do_elf_reloc_fixups,
161
162 NULL,
163};
164
165init_fnc_t *init_sequence_r[] = {
Graeme Russ078395c2009-11-24 20:04:21 +1100166 cpu_init_r, /* basic cpu dependent setup */
167 board_early_init_r, /* basic board dependent setup */
wdenk591dda52002-11-18 00:14:45 +0000168 dram_init, /* configure available RAM banks */
wdenk591dda52002-11-18 00:14:45 +0000169 interrupt_init, /* set up exceptions */
wdenk57b2d802003-06-27 21:31:46 +0000170 timer_init,
wdenk591dda52002-11-18 00:14:45 +0000171 display_banner,
172 display_dram_config,
173
174 NULL,
175};
176
Graeme Russ2fe2a972008-09-07 07:08:42 +1000177gd_t *gd;
wdenk591dda52002-11-18 00:14:45 +0000178
Graeme Russ4b259822011-02-12 15:12:06 +1100179static int calculate_relocation_address(void)
Graeme Russ078395c2009-11-24 20:04:21 +1100180{
Graeme Russae428db2010-10-07 20:03:31 +1100181 void *text_start = &__text_start;
Graeme Russ4b259822011-02-12 15:12:06 +1100182 void *bss_end = &__bss_end;
183 void *dest_addr;
184 ulong rel_offset;
185
186 /* Calculate destination RAM Address and relocation offset */
187 dest_addr = (void *)gd->ram_size;
188 dest_addr -= CONFIG_SYS_STACK_SIZE;
189 dest_addr -= (bss_end - text_start);
190 rel_offset = dest_addr - text_start;
191
192 gd->start_addr_sp = gd->ram_size;
193 gd->relocaddr = (ulong)dest_addr;
194 gd->reloc_off = rel_offset;
195
196 return 0;
197}
198
199static int copy_uboot_to_ram(void)
200{
201 ulong *dst_addr = (ulong *)gd->relocaddr;
202 ulong *src_addr = (ulong *)&__text_start;
203 ulong *end_addr = (ulong *)&__data_end;
204
205 while (src_addr < end_addr)
206 *dst_addr++ = *src_addr++;
207
208 return 0;
209}
210
211static int clear_bss(void)
212{
Graeme Russae428db2010-10-07 20:03:31 +1100213 void *bss_start = &__bss_start;
Graeme Russ99052852010-10-07 20:03:33 +1100214 void *bss_end = &__bss_end;
Graeme Russ078395c2009-11-24 20:04:21 +1100215
Graeme Russ4b259822011-02-12 15:12:06 +1100216 ulong *dst_addr = (ulong *)(bss_start + gd->reloc_off);
217 ulong *end_addr = (ulong *)(bss_end + gd->reloc_off);;
Graeme Russ99052852010-10-07 20:03:33 +1100218
Graeme Russ4b259822011-02-12 15:12:06 +1100219 while (dst_addr < end_addr)
220 *dst_addr++ = 0x00000000;
221
222 return 0;
223}
224
225static int do_elf_reloc_fixups(void)
226{
227 Elf32_Rel *re_src = (Elf32_Rel *)(&__rel_dyn_start);
228 Elf32_Rel *re_end = (Elf32_Rel *)(&__rel_dyn_end);
229
230 do {
231 if (re_src->r_offset >= CONFIG_SYS_TEXT_BASE)
232 if (*(Elf32_Addr *)(re_src->r_offset + gd->reloc_off) >= CONFIG_SYS_TEXT_BASE)
233 *(Elf32_Addr *)(re_src->r_offset + gd->reloc_off) += gd->reloc_off;
234 } while (re_src++ < re_end);
Graeme Russ078395c2009-11-24 20:04:21 +1100235
Graeme Russ4b259822011-02-12 15:12:06 +1100236 return 0;
237}
Graeme Russ38183932011-02-12 15:11:54 +1100238
Graeme Russ45fc1d82011-04-13 19:43:26 +1000239/* Load U-Boot into RAM, initialize BSS, perform relocation adjustments */
Graeme Russ4b259822011-02-12 15:12:06 +1100240void board_init_f(ulong boot_flags)
241{
Graeme Russ6ec93c32011-02-12 15:12:10 +1100242 init_fnc_t **init_fnc_ptr;
Graeme Russ99052852010-10-07 20:03:33 +1100243
Graeme Russ45fc1d82011-04-13 19:43:26 +1000244 gd->flags = boot_flags;
245
Graeme Russ6ec93c32011-02-12 15:12:10 +1100246 for (init_fnc_ptr = init_sequence_f; *init_fnc_ptr; ++init_fnc_ptr) {
247 if ((*init_fnc_ptr)() != 0)
248 hang();
249 }
Graeme Russ078395c2009-11-24 20:04:21 +1100250
Graeme Russ4e0f55f2011-02-12 15:11:50 +1100251 gd->flags |= GD_FLG_RELOC;
Graeme Russ5fb91cc2010-10-07 20:03:29 +1100252
Graeme Russe07da072010-04-24 00:05:44 +1000253 /* Enter the relocated U-Boot! */
Graeme Russ4b259822011-02-12 15:12:06 +1100254 relocate_code(gd->start_addr_sp, gd, gd->relocaddr);
Graeme Russ5fb91cc2010-10-07 20:03:29 +1100255
Graeme Russ9c44afc2011-02-12 15:11:58 +1100256 /* NOTREACHED - relocate_code() does not return */
Graeme Russ078395c2009-11-24 20:04:21 +1100257 while(1);
258}
259
Graeme Russe07da072010-04-24 00:05:44 +1000260void board_init_r(gd_t *id, ulong dest_addr)
wdenk591dda52002-11-18 00:14:45 +0000261{
wdenk591dda52002-11-18 00:14:45 +0000262 char *s;
wdenk591dda52002-11-18 00:14:45 +0000263 ulong size;
wdenk591dda52002-11-18 00:14:45 +0000264 static bd_t bd_data;
Graeme Russ4e0f55f2011-02-12 15:11:50 +1100265 static gd_t gd_data;
wdenk591dda52002-11-18 00:14:45 +0000266 init_fnc_t **init_fnc_ptr;
wdenk57b2d802003-06-27 21:31:46 +0000267
wdenk591dda52002-11-18 00:14:45 +0000268 show_boot_progress(0x21);
269
Graeme Russ4e0f55f2011-02-12 15:11:50 +1100270 /* Global data pointer is now writable */
271 gd = &gd_data;
272 memcpy(gd, id, sizeof(gd_t));
273
wdenk3337af42004-07-01 20:28:03 +0000274 /* compiler optimization barrier needed for GCC >= 3.4 */
275 __asm__ __volatile__("": : :"memory");
wdenk57b2d802003-06-27 21:31:46 +0000276
wdenk591dda52002-11-18 00:14:45 +0000277 gd->bd = &bd_data;
278 memset (gd->bd, 0, sizeof (bd_t));
279 show_boot_progress(0x22);
280
wdenkabda5ca2003-05-31 18:35:21 +0000281 gd->baudrate = CONFIG_BAUDRATE;
wdenk57b2d802003-06-27 21:31:46 +0000282
Graeme Russe07da072010-04-24 00:05:44 +1000283 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
Graeme Russ078395c2009-11-24 20:04:21 +1100284 CONFIG_SYS_MALLOC_LEN);
285
Graeme Russ6ec93c32011-02-12 15:12:10 +1100286 for (init_fnc_ptr = init_sequence_r; *init_fnc_ptr; ++init_fnc_ptr) {
287 if ((*init_fnc_ptr)() != 0)
wdenk591dda52002-11-18 00:14:45 +0000288 hang ();
wdenk591dda52002-11-18 00:14:45 +0000289 }
290 show_boot_progress(0x23);
291
Graeme Russ06dfe372010-04-24 00:05:47 +1000292#ifdef CONFIG_SERIAL_MULTI
293 serial_initialize();
294#endif
wdenk591dda52002-11-18 00:14:45 +0000295 /* configure available FLASH banks */
296 size = flash_init();
297 display_flash_config(size);
298 show_boot_progress(0x24);
299
300 show_boot_progress(0x25);
301
302 /* initialize environment */
303 env_relocate ();
304 show_boot_progress(0x26);
305
306
Graeme Russd520c0e2010-04-24 00:05:36 +1000307#ifdef CONFIG_CMD_NET
wdenk591dda52002-11-18 00:14:45 +0000308 /* IP Address */
309 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
Graeme Russd520c0e2010-04-24 00:05:36 +1000310#endif
wdenk591dda52002-11-18 00:14:45 +0000311
wdenk591dda52002-11-18 00:14:45 +0000312#if defined(CONFIG_PCI)
313 /*
314 * Do pci configuration
315 */
316 pci_init();
317#endif
318
319 show_boot_progress(0x27);
320
321
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200322 stdio_init ();
wdenk591dda52002-11-18 00:14:45 +0000323
wdenk874ac262003-07-24 23:38:38 +0000324 jumptable_init ();
wdenk57b2d802003-06-27 21:31:46 +0000325
wdenk591dda52002-11-18 00:14:45 +0000326 /* Initialize the console (after the relocation and devices init) */
327 console_init_r();
wdenk591dda52002-11-18 00:14:45 +0000328
329#ifdef CONFIG_MISC_INIT_R
330 /* miscellaneous platform dependent initialisations */
331 misc_init_r();
332#endif
333
Jon Loeliger12077972007-07-09 18:05:38 -0500334#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk591dda52002-11-18 00:14:45 +0000335 WATCHDOG_RESET();
336 puts ("PCMCIA:");
337 pcmcia_init();
338#endif
339
Jon Loeliger12077972007-07-09 18:05:38 -0500340#if defined(CONFIG_CMD_KGDB)
wdenk591dda52002-11-18 00:14:45 +0000341 WATCHDOG_RESET();
342 puts("KGDB: ");
343 kgdb_init();
344#endif
345
346 /* enable exceptions */
wdenkabda5ca2003-05-31 18:35:21 +0000347 enable_interrupts();
wdenk591dda52002-11-18 00:14:45 +0000348 show_boot_progress(0x28);
349
wdenk591dda52002-11-18 00:14:45 +0000350#ifdef CONFIG_STATUS_LED
351 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
352#endif
353
wdenkabda5ca2003-05-31 18:35:21 +0000354 udelay(20);
wdenk591dda52002-11-18 00:14:45 +0000355
wdenk591dda52002-11-18 00:14:45 +0000356 /* Initialize from environment */
Simon Glass32ef00a2011-10-13 14:43:14 +0000357 load_addr = getenv_ulong("loadaddr", 16, load_addr);
Jon Loeliger12077972007-07-09 18:05:38 -0500358#if defined(CONFIG_CMD_NET)
wdenk591dda52002-11-18 00:14:45 +0000359 if ((s = getenv ("bootfile")) != NULL) {
360 copy_filename (BootFile, s, sizeof (BootFile));
361 }
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500362#endif
wdenk591dda52002-11-18 00:14:45 +0000363
364 WATCHDOG_RESET();
365
Jon Loeliger12077972007-07-09 18:05:38 -0500366#if defined(CONFIG_CMD_IDE)
wdenk591dda52002-11-18 00:14:45 +0000367 WATCHDOG_RESET();
368 puts("IDE: ");
369 ide_init();
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500370#endif
wdenk591dda52002-11-18 00:14:45 +0000371
Jon Loeliger12077972007-07-09 18:05:38 -0500372#if defined(CONFIG_CMD_SCSI)
wdenk591dda52002-11-18 00:14:45 +0000373 WATCHDOG_RESET();
374 puts("SCSI: ");
375 scsi_init();
376#endif
377
Jon Loeliger12077972007-07-09 18:05:38 -0500378#if defined(CONFIG_CMD_DOC)
wdenk591dda52002-11-18 00:14:45 +0000379 WATCHDOG_RESET();
wdenkabda5ca2003-05-31 18:35:21 +0000380 puts("DOC: ");
wdenk591dda52002-11-18 00:14:45 +0000381 doc_init();
382#endif
383
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200384#ifdef CONFIG_BITBANGMII
385 bb_miiphy_init();
386#endif
Jon Loeliger12077972007-07-09 18:05:38 -0500387#if defined(CONFIG_CMD_NET)
wdenk591dda52002-11-18 00:14:45 +0000388 WATCHDOG_RESET();
389 puts("Net: ");
390 eth_initialize(gd->bd);
391#endif
392
Jon Loeliger12077972007-07-09 18:05:38 -0500393#if ( defined(CONFIG_CMD_NET)) && (0)
Marian Balakowiczaab8c492005-10-28 22:30:33 +0200394 WATCHDOG_RESET();
395# ifdef DEBUG
396 puts ("Reset Ethernet PHY\n");
397# endif
398 reset_phy();
399#endif
400
wdenk591dda52002-11-18 00:14:45 +0000401#ifdef CONFIG_LAST_STAGE_INIT
402 WATCHDOG_RESET();
403 /*
404 * Some parts can be only initialized if all others (like
405 * Interrupts) are up and running (i.e. the PC-style ISA
406 * keyboard).
407 */
408 last_stage_init();
409#endif
410
411
wdenk591dda52002-11-18 00:14:45 +0000412#ifdef CONFIG_POST
413 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk591dda52002-11-18 00:14:45 +0000414#endif
wdenk57b2d802003-06-27 21:31:46 +0000415
416
wdenk591dda52002-11-18 00:14:45 +0000417 show_boot_progress(0x29);
wdenk57b2d802003-06-27 21:31:46 +0000418
wdenk591dda52002-11-18 00:14:45 +0000419 /* main_loop() can return to retry autoboot, if so just run it again. */
420 for (;;) {
wdenkabda5ca2003-05-31 18:35:21 +0000421 main_loop();
wdenk591dda52002-11-18 00:14:45 +0000422 }
423
424 /* NOTREACHED - no way out of command loop except booting */
425}
426
427void hang (void)
428{
429 puts ("### ERROR ### Please RESET the board ###\n");
430 for (;;);
431}
Mike Frysinger0870e472008-04-13 19:42:19 -0400432
Graeme Russ757660f2010-08-22 16:25:58 +1000433unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[])
Mike Frysinger0870e472008-04-13 19:42:19 -0400434{
Graeme Russ757660f2010-08-22 16:25:58 +1000435 unsigned long ret = 0;
436 char **argv_tmp;
437
Mike Frysinger0870e472008-04-13 19:42:19 -0400438 /*
Graeme Russ757660f2010-08-22 16:25:58 +1000439 * x86 does not use a dedicated register to pass the pointer to
440 * the global_data, so it is instead passed as argv[-1]. By using
441 * argv[-1], the called 'Application' can use the contents of
442 * argv natively. However, to safely use argv[-1] a new copy of
443 * argv is needed with the extra element
Mike Frysinger0870e472008-04-13 19:42:19 -0400444 */
Graeme Russ757660f2010-08-22 16:25:58 +1000445 argv_tmp = malloc(sizeof(char *) * (argc + 1));
446
447 if (argv_tmp) {
448 argv_tmp[0] = (char *)gd;
449
450 memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
451
452 ret = (entry) (argc, &argv_tmp[1]);
453 free(argv_tmp);
454 }
Graeme Russ0b9fe9d2010-04-24 00:05:39 +1000455
Graeme Russ757660f2010-08-22 16:25:58 +1000456 return ret;
Mike Frysinger0870e472008-04-13 19:42:19 -0400457}
Graeme Russa8d06b42010-04-24 00:05:48 +1000458
459void setup_pcat_compatibility(void)
460 __attribute__((weak, alias("__setup_pcat_compatibility")));
461
462void __setup_pcat_compatibility(void)
463{
464}