2 * (C) Copyright 2008-2011
3 * Graeme Russ, <graeme.russ@gmail.com>
6 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
9 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Marius Groeger <mgroeger@sysgo.de>
15 * See file CREDITS for list of people who contributed to this
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.
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.
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,
37 #include <stdio_dev.h>
43 #include <asm/u-boot-x86.h>
46 #ifdef CONFIG_BITBANGMII
51 * Pointer to initial global data area
53 * Here we initialize it.
55 #undef XTRN_DECLARE_GLOBAL_DATA_PTR
56 #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */
57 DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR);
59 /************************************************************************
61 ************************************************************************
62 * Some of this code should be moved into the core functions,
63 * or dropped completely,
64 * but let's get it working (again) first...
66 static int init_baudrate(void)
68 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
72 static int display_banner(void)
75 printf("\n\n%s\n\n", version_string);
80 static int display_dram_config(void)
84 puts("DRAM Configuration:\n");
86 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
87 printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
88 print_size(gd->bd->bi_dram[i].size, "\n");
94 #ifndef CONFIG_SYS_NO_FLASH
95 static void display_flash_config(ulong size)
98 print_size(size, "\n");
103 * Breath some life into the board...
105 * Initialize an SMC for serial comms, and carry out some hardware
108 * The first part of initialization is running from Flash memory;
109 * its main purpose is to initialize the RAM so that we
110 * can relocate the monitor code to RAM.
114 * All attempts to come up with a "common" initialization sequence
115 * that works for all boards and architectures failed: some of the
116 * requirements are just _too_ different. To get rid of the resulting
117 * mess of board dependend #ifdef'ed code we now make the whole
118 * initialization sequence configurable to the user.
120 * The requirements for any new initalization function is simple: it
121 * receives a pointer to the "global data" structure as it's only
122 * argument, and returns an integer return code, where 0 means
123 * "continue" and != 0 means "fatal error, hang the system".
125 typedef int (init_fnc_t) (void);
127 static int calculate_relocation_address(void);
128 static int copy_uboot_to_ram(void);
129 static int clear_bss(void);
130 static int do_elf_reloc_fixups(void);
132 init_fnc_t *init_sequence_f[] = {
140 calculate_relocation_address,
148 init_fnc_t *init_sequence_r[] = {
149 cpu_init_r, /* basic cpu dependent setup */
150 board_early_init_r, /* basic board dependent setup */
151 dram_init, /* configure available RAM banks */
152 interrupt_init, /* set up exceptions */
162 static int calculate_relocation_address(void)
164 ulong text_start = (ulong)&__text_start;
165 ulong bss_end = (ulong)&__bss_end;
169 /* Calculate destination RAM Address and relocation offset */
170 dest_addr = gd->ram_size;
171 dest_addr -= CONFIG_SYS_STACK_SIZE;
172 dest_addr -= (bss_end - text_start);
175 * Round destination address down to 16-byte boundary to keep
176 * IDT and GDT 16-byte aligned
180 rel_offset = dest_addr - text_start;
182 gd->start_addr_sp = gd->ram_size;
183 gd->relocaddr = dest_addr;
184 gd->reloc_off = rel_offset;
189 static int copy_uboot_to_ram(void)
191 size_t len = (size_t)&__data_end - (size_t)&__text_start;
193 memcpy((void *)gd->relocaddr, (void *)&__text_start, len);
198 static int clear_bss(void)
200 ulong dst_addr = (ulong)&__bss_start + gd->reloc_off;
201 size_t len = (size_t)&__bss_end - (size_t)&__bss_start;
203 memset((void *)dst_addr, 0x00, len);
208 static int do_elf_reloc_fixups(void)
210 Elf32_Rel *re_src = (Elf32_Rel *)(&__rel_dyn_start);
211 Elf32_Rel *re_end = (Elf32_Rel *)(&__rel_dyn_end);
213 Elf32_Addr *offset_ptr_rom;
214 Elf32_Addr *offset_ptr_ram;
216 /* The size of the region of u-boot that runs out of RAM. */
217 uintptr_t size = (uintptr_t)&__bss_end - (uintptr_t)&__text_start;
220 /* Get the location from the relocation entry */
221 offset_ptr_rom = (Elf32_Addr *)re_src->r_offset;
223 /* Check that the location of the relocation is in .text */
224 if (offset_ptr_rom >= (Elf32_Addr *)CONFIG_SYS_TEXT_BASE) {
226 /* Switch to the in-RAM version */
227 offset_ptr_ram = (Elf32_Addr *)((ulong)offset_ptr_rom +
230 /* Check that the target points into .text */
231 if (*offset_ptr_ram >= CONFIG_SYS_TEXT_BASE &&
233 (CONFIG_SYS_TEXT_BASE + size)) {
234 *offset_ptr_ram += gd->reloc_off;
237 } while (re_src++ < re_end);
242 /* Load U-Boot into RAM, initialize BSS, perform relocation adjustments */
243 void board_init_f(ulong boot_flags)
245 init_fnc_t **init_fnc_ptr;
247 gd->flags = boot_flags;
249 for (init_fnc_ptr = init_sequence_f; *init_fnc_ptr; ++init_fnc_ptr) {
250 if ((*init_fnc_ptr)() != 0)
254 gd->flags |= GD_FLG_RELOC;
256 /* Enter the relocated U-Boot! */
257 relocate_code(gd->start_addr_sp, gd, gd->relocaddr);
259 /* NOTREACHED - relocate_code() does not return */
264 void board_init_r(gd_t *id, ulong dest_addr)
266 #if defined(CONFIG_CMD_NET)
269 #ifndef CONFIG_SYS_NO_FLASH
274 init_fnc_t **init_fnc_ptr;
276 show_boot_progress(0x21);
278 /* Global data pointer is now writable */
280 memcpy(gd, id, sizeof(gd_t));
282 /* compiler optimization barrier needed for GCC >= 3.4 */
283 __asm__ __volatile__("" : : : "memory");
286 memset(gd->bd, 0, sizeof(bd_t));
287 show_boot_progress(0x22);
289 gd->baudrate = CONFIG_BAUDRATE;
291 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
292 CONFIG_SYS_MALLOC_LEN);
294 for (init_fnc_ptr = init_sequence_r; *init_fnc_ptr; ++init_fnc_ptr) {
295 if ((*init_fnc_ptr)() != 0)
298 show_boot_progress(0x23);
300 #ifdef CONFIG_SERIAL_MULTI
304 #ifndef CONFIG_SYS_NO_FLASH
305 /* configure available FLASH banks */
307 display_flash_config(size);
308 show_boot_progress(0x24);
311 show_boot_progress(0x25);
313 /* initialize environment */
315 show_boot_progress(0x26);
318 #ifdef CONFIG_CMD_NET
320 bd_data.bi_ip_addr = getenv_IPaddr("ipaddr");
323 #if defined(CONFIG_PCI)
325 * Do pci configuration
330 show_boot_progress(0x27);
337 /* Initialize the console (after the relocation and devices init) */
340 #ifdef CONFIG_MISC_INIT_R
341 /* miscellaneous platform dependent initialisations */
345 #if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
351 #if defined(CONFIG_CMD_KGDB)
357 /* enable exceptions */
359 show_boot_progress(0x28);
361 #ifdef CONFIG_STATUS_LED
362 status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
367 /* Initialize from environment */
368 load_addr = getenv_ulong("loadaddr", 16, load_addr);
369 #if defined(CONFIG_CMD_NET)
370 s = getenv("bootfile");
373 copy_filename(BootFile, s, sizeof(BootFile));
378 #if defined(CONFIG_CMD_IDE)
384 #if defined(CONFIG_CMD_SCSI)
390 #if defined(CONFIG_CMD_DOC)
396 #ifdef CONFIG_BITBANGMII
399 #if defined(CONFIG_CMD_NET)
402 eth_initialize(gd->bd);
405 #if (defined(CONFIG_CMD_NET)) && (0)
408 puts("Reset Ethernet PHY\n");
413 #ifdef CONFIG_LAST_STAGE_INIT
416 * Some parts can be only initialized if all others (like
417 * Interrupts) are up and running (i.e. the PC-style ISA
425 post_run(NULL, POST_RAM | post_bootmode_get(0));
428 show_boot_progress(0x29);
430 /* main_loop() can return to retry autoboot, if so just run it again. */
434 /* NOTREACHED - no way out of command loop except booting */
439 puts("### ERROR ### Please RESET the board ###\n");
444 unsigned long do_go_exec(ulong (*entry)(int, char * const []),
445 int argc, char * const argv[])
447 unsigned long ret = 0;
451 * x86 does not use a dedicated register to pass the pointer to
452 * the global_data, so it is instead passed as argv[-1]. By using
453 * argv[-1], the called 'Application' can use the contents of
454 * argv natively. However, to safely use argv[-1] a new copy of
455 * argv is needed with the extra element
457 argv_tmp = malloc(sizeof(char *) * (argc + 1));
460 argv_tmp[0] = (char *)gd;
462 memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
464 ret = (entry) (argc, &argv_tmp[1]);
471 void setup_pcat_compatibility(void)
472 __attribute__((weak, alias("__setup_pcat_compatibility")));
474 void __setup_pcat_compatibility(void)