wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 3 | * Daniel Engstr�m, Omicron Ceti AB, daniel@omicron.se |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * (C) Copyright 2002 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 7 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 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> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 34 | #include <stdio_dev.h> |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 35 | #include <timestamp.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 36 | #include <version.h> |
| 37 | #include <malloc.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 38 | #include <net.h> |
| 39 | #include <ide.h> |
Graeme Russ | bf16500 | 2010-04-24 00:05:47 +1000 | [diff] [blame] | 40 | #include <serial.h> |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 41 | #include <asm/u-boot-i386.h> |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 42 | #include <elf.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 43 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 44 | #ifdef CONFIG_BITBANGMII |
| 45 | #include <miiphy.h> |
| 46 | #endif |
| 47 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 48 | DECLARE_GLOBAL_DATA_PTR; |
| 49 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 50 | /* Exports from the Linker Script */ |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 51 | extern ulong __text_start; |
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame^] | 52 | extern ulong __data_end; |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 53 | extern ulong __rel_dyn_start; |
| 54 | extern ulong __rel_dyn_end; |
| 55 | extern ulong __bss_start; |
| 56 | extern ulong __bss_size; |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 57 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 58 | const char version_string[] = |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 59 | U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 60 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 61 | /************************************************************************ |
| 62 | * Init Utilities * |
| 63 | ************************************************************************ |
| 64 | * Some of this code should be moved into the core functions, |
| 65 | * or dropped completely, |
| 66 | * but let's get it working (again) first... |
| 67 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 68 | static int init_baudrate (void) |
| 69 | { |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 70 | char tmp[64]; /* long enough for environment variables */ |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 71 | int i = getenv_f("baudrate", tmp, 64); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 72 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 73 | gd->baudrate = (i != 0) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 74 | ? (int) simple_strtoul (tmp, NULL, 10) |
| 75 | : CONFIG_BAUDRATE; |
| 76 | |
| 77 | return (0); |
| 78 | } |
| 79 | |
| 80 | static int display_banner (void) |
| 81 | { |
| 82 | |
| 83 | printf ("\n\n%s\n\n", version_string); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 84 | /* |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 85 | printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n" |
| 86 | " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n", |
| 87 | i386boot_start, i386boot_romdata_start-1, |
| 88 | i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1, |
| 89 | i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1, |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 90 | i386boot_bss_start+i386boot_bss_size, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 92 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 93 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 94 | |
| 95 | return (0); |
| 96 | } |
| 97 | |
| 98 | /* |
| 99 | * WARNING: this code looks "cleaner" than the PowerPC version, but |
| 100 | * has the disadvantage that you either get nothing, or everything. |
| 101 | * On PowerPC, you might see "DRAM: " before the system hangs - which |
| 102 | * gives a simple yet clear indication which part of the |
| 103 | * initialization if failing. |
| 104 | */ |
| 105 | static int display_dram_config (void) |
| 106 | { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 107 | int i; |
| 108 | |
| 109 | puts ("DRAM Configuration:\n"); |
| 110 | |
| 111 | for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) { |
| 112 | printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start); |
| 113 | print_size (gd->bd->bi_dram[i].size, "\n"); |
| 114 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 115 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 116 | return (0); |
| 117 | } |
| 118 | |
| 119 | static void display_flash_config (ulong size) |
| 120 | { |
| 121 | puts ("Flash: "); |
| 122 | print_size (size, "\n"); |
| 123 | } |
| 124 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 125 | /* |
| 126 | * Breath some life into the board... |
| 127 | * |
| 128 | * Initialize an SMC for serial comms, and carry out some hardware |
| 129 | * tests. |
| 130 | * |
| 131 | * The first part of initialization is running from Flash memory; |
| 132 | * its main purpose is to initialize the RAM so that we |
| 133 | * can relocate the monitor code to RAM. |
| 134 | */ |
| 135 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 136 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 137 | /* |
| 138 | * All attempts to come up with a "common" initialization sequence |
| 139 | * that works for all boards and architectures failed: some of the |
| 140 | * requirements are just _too_ different. To get rid of the resulting |
| 141 | * mess of board dependend #ifdef'ed code we now make the whole |
| 142 | * initialization sequence configurable to the user. |
| 143 | * |
| 144 | * The requirements for any new initalization function is simple: it |
| 145 | * receives a pointer to the "global data" structure as it's only |
| 146 | * argument, and returns an integer return code, where 0 means |
| 147 | * "continue" and != 0 means "fatal error, hang the system". |
| 148 | */ |
| 149 | typedef int (init_fnc_t) (void); |
| 150 | |
| 151 | init_fnc_t *init_sequence[] = { |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 152 | cpu_init_r, /* basic cpu dependent setup */ |
| 153 | board_early_init_r, /* basic board dependent setup */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 154 | dram_init, /* configure available RAM banks */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 155 | interrupt_init, /* set up exceptions */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 156 | timer_init, |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 157 | env_init, /* initialize environment */ |
| 158 | init_baudrate, /* initialze baudrate settings */ |
| 159 | serial_init, /* serial communications setup */ |
| 160 | display_banner, |
| 161 | display_dram_config, |
| 162 | |
| 163 | NULL, |
| 164 | }; |
| 165 | |
Graeme Russ | 3ef96de | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 166 | gd_t *gd; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 167 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 168 | /* |
| 169 | * Load U-Boot into RAM, initialize BSS, perform relocation adjustments |
| 170 | */ |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 171 | void board_init_f (ulong gdp) |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 172 | { |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 173 | void *text_start = &__text_start; |
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame^] | 174 | void *data_end = &__data_end; |
Graeme Russ | 067f9b1 | 2010-10-07 20:03:31 +1100 | [diff] [blame] | 175 | Elf32_Rel *rel_dyn_start = (Elf32_Rel *)&__rel_dyn_start; |
| 176 | Elf32_Rel *rel_dyn_end = (Elf32_Rel *)&__rel_dyn_end; |
| 177 | void *bss_start = &__bss_start; |
| 178 | ulong bss_size = (ulong)&__bss_size; |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 179 | |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 180 | ulong uboot_size; |
| 181 | void *dest_addr; |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 182 | ulong rel_offset; |
| 183 | Elf32_Rel *re; |
| 184 | |
Graeme Russ | 2219142 | 2010-10-07 20:03:32 +1100 | [diff] [blame^] | 185 | uboot_size = (ulong)data_end - (ulong)text_start; |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 186 | dest_addr = (void *)gdp - (uboot_size + (ulong)bss_size); |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 187 | rel_offset = text_start - dest_addr; |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 188 | |
| 189 | /* First stage CPU initialization */ |
| 190 | if (cpu_init_f() != 0) |
| 191 | hang(); |
| 192 | |
| 193 | /* First stage Board initialization */ |
| 194 | if (board_early_init_f() != 0) |
| 195 | hang(); |
| 196 | |
| 197 | /* Copy U-Boot into RAM */ |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 198 | memcpy(dest_addr, text_start, uboot_size); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 199 | |
| 200 | /* Clear BSS */ |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 201 | memset(bss_start - rel_offset, 0, bss_size); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 202 | |
| 203 | /* Perform relocation adjustments */ |
| 204 | for (re = rel_dyn_start; re < rel_dyn_end; re++) |
| 205 | { |
| 206 | if (re->r_offset >= TEXT_BASE) |
| 207 | if (*(ulong *)re->r_offset >= TEXT_BASE) |
| 208 | *(ulong *)(re->r_offset - rel_offset) -= (Elf32_Addr)rel_offset; |
| 209 | } |
| 210 | |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 211 | ((gd_t *)gdp)->reloc_off = rel_offset; |
| 212 | ((gd_t *)gdp)->flags |= GD_FLG_RELOC; |
| 213 | |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 214 | /* Enter the relocated U-Boot! */ |
Graeme Russ | 161b358 | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 215 | (board_init_r - rel_offset)((gd_t *)gdp, (ulong)dest_addr); |
| 216 | |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 217 | /* NOTREACHED - board_init_f() does not return */ |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 218 | while(1); |
| 219 | } |
| 220 | |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 221 | void board_init_r(gd_t *id, ulong dest_addr) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 222 | { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 223 | char *s; |
| 224 | int i; |
| 225 | ulong size; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 226 | static bd_t bd_data; |
| 227 | init_fnc_t **init_fnc_ptr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 228 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 229 | show_boot_progress(0x21); |
| 230 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 231 | gd = id; |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 232 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
| 233 | __asm__ __volatile__("": : :"memory"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 234 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 235 | gd->bd = &bd_data; |
| 236 | memset (gd->bd, 0, sizeof (bd_t)); |
| 237 | show_boot_progress(0x22); |
| 238 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 239 | gd->baudrate = CONFIG_BAUDRATE; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 240 | |
Graeme Russ | 2fb1bc4 | 2010-04-24 00:05:44 +1000 | [diff] [blame] | 241 | mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3, |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 242 | CONFIG_SYS_MALLOC_LEN); |
| 243 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 244 | for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) { |
| 245 | show_boot_progress(0xa130|i); |
| 246 | |
| 247 | if ((*init_fnc_ptr)() != 0) { |
| 248 | hang (); |
| 249 | } |
| 250 | } |
| 251 | show_boot_progress(0x23); |
| 252 | |
Graeme Russ | bf16500 | 2010-04-24 00:05:47 +1000 | [diff] [blame] | 253 | #ifdef CONFIG_SERIAL_MULTI |
| 254 | serial_initialize(); |
| 255 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 256 | /* 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 | |
Graeme Russ | 535ad2d | 2010-04-24 00:05:36 +1000 | [diff] [blame] | 268 | #ifdef CONFIG_CMD_NET |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 269 | /* IP Address */ |
| 270 | bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr"); |
Graeme Russ | 535ad2d | 2010-04-24 00:05:36 +1000 | [diff] [blame] | 271 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 272 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 273 | #if defined(CONFIG_PCI) |
| 274 | /* |
| 275 | * Do pci configuration |
| 276 | */ |
| 277 | pci_init(); |
| 278 | #endif |
| 279 | |
| 280 | show_boot_progress(0x27); |
| 281 | |
| 282 | |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 283 | stdio_init (); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 284 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 285 | jumptable_init (); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 286 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 287 | /* Initialize the console (after the relocation and devices init) */ |
| 288 | console_init_r(); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 289 | |
| 290 | #ifdef CONFIG_MISC_INIT_R |
| 291 | /* miscellaneous platform dependent initialisations */ |
| 292 | misc_init_r(); |
| 293 | #endif |
| 294 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 295 | #if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 296 | WATCHDOG_RESET(); |
| 297 | puts ("PCMCIA:"); |
| 298 | pcmcia_init(); |
| 299 | #endif |
| 300 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 301 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 302 | WATCHDOG_RESET(); |
| 303 | puts("KGDB: "); |
| 304 | kgdb_init(); |
| 305 | #endif |
| 306 | |
| 307 | /* enable exceptions */ |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 308 | enable_interrupts(); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 309 | show_boot_progress(0x28); |
| 310 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 311 | #ifdef CONFIG_STATUS_LED |
| 312 | status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING); |
| 313 | #endif |
| 314 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 315 | udelay(20); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 316 | |
| 317 | set_timer (0); |
| 318 | |
| 319 | /* Initialize from environment */ |
| 320 | if ((s = getenv ("loadaddr")) != NULL) { |
| 321 | load_addr = simple_strtoul (s, NULL, 16); |
| 322 | } |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 323 | #if defined(CONFIG_CMD_NET) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 324 | if ((s = getenv ("bootfile")) != NULL) { |
| 325 | copy_filename (BootFile, s, sizeof (BootFile)); |
| 326 | } |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 327 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 328 | |
| 329 | WATCHDOG_RESET(); |
| 330 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 331 | #if defined(CONFIG_CMD_IDE) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 332 | WATCHDOG_RESET(); |
| 333 | puts("IDE: "); |
| 334 | ide_init(); |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 335 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 336 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 337 | #if defined(CONFIG_CMD_SCSI) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 338 | WATCHDOG_RESET(); |
| 339 | puts("SCSI: "); |
| 340 | scsi_init(); |
| 341 | #endif |
| 342 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 343 | #if defined(CONFIG_CMD_DOC) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 344 | WATCHDOG_RESET(); |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 345 | puts("DOC: "); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 346 | doc_init(); |
| 347 | #endif |
| 348 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 349 | #ifdef CONFIG_BITBANGMII |
| 350 | bb_miiphy_init(); |
| 351 | #endif |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 352 | #if defined(CONFIG_CMD_NET) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 353 | #if defined(CONFIG_NET_MULTI) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 354 | WATCHDOG_RESET(); |
| 355 | puts("Net: "); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 356 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 357 | eth_initialize(gd->bd); |
| 358 | #endif |
| 359 | |
Jon Loeliger | 6735056 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 360 | #if ( defined(CONFIG_CMD_NET)) && (0) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 361 | WATCHDOG_RESET(); |
| 362 | # ifdef DEBUG |
| 363 | puts ("Reset Ethernet PHY\n"); |
| 364 | # endif |
| 365 | reset_phy(); |
| 366 | #endif |
| 367 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 368 | #ifdef CONFIG_LAST_STAGE_INIT |
| 369 | WATCHDOG_RESET(); |
| 370 | /* |
| 371 | * Some parts can be only initialized if all others (like |
| 372 | * Interrupts) are up and running (i.e. the PC-style ISA |
| 373 | * keyboard). |
| 374 | */ |
| 375 | last_stage_init(); |
| 376 | #endif |
| 377 | |
| 378 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 379 | #ifdef CONFIG_POST |
| 380 | post_run (NULL, POST_RAM | post_bootmode_get(0)); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 381 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 382 | |
| 383 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 384 | show_boot_progress(0x29); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 385 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 386 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 387 | for (;;) { |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 388 | main_loop(); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | /* NOTREACHED - no way out of command loop except booting */ |
| 392 | } |
| 393 | |
| 394 | void hang (void) |
| 395 | { |
| 396 | puts ("### ERROR ### Please RESET the board ###\n"); |
| 397 | for (;;); |
| 398 | } |
Mike Frysinger | a498645 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 399 | |
Graeme Russ | e69c0cb | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 400 | unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[]) |
Mike Frysinger | a498645 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 401 | { |
Graeme Russ | e69c0cb | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 402 | unsigned long ret = 0; |
| 403 | char **argv_tmp; |
Graeme Russ | 9e08efc | 2010-04-24 00:05:39 +1000 | [diff] [blame] | 404 | |
Graeme Russ | e69c0cb | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 405 | /* |
| 406 | * x86 does not use a dedicated register to pass the pointer to |
| 407 | * the global_data, so it is instead passed as argv[-1]. By using |
| 408 | * argv[-1], the called 'Application' can use the contents of |
| 409 | * argv natively. However, to safely use argv[-1] a new copy of |
| 410 | * argv is needed with the extra element |
| 411 | */ |
| 412 | argv_tmp = malloc(sizeof(char *) * (argc + 1)); |
| 413 | |
| 414 | if (argv_tmp) { |
| 415 | argv_tmp[0] = (char *)gd; |
| 416 | |
| 417 | memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc)); |
| 418 | |
| 419 | ret = (entry) (argc, &argv_tmp[1]); |
| 420 | free(argv_tmp); |
| 421 | } |
| 422 | |
| 423 | return ret; |
Mike Frysinger | a498645 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 424 | } |
Graeme Russ | 79ea6b8 | 2010-04-24 00:05:48 +1000 | [diff] [blame] | 425 | |
| 426 | void setup_pcat_compatibility(void) |
| 427 | __attribute__((weak, alias("__setup_pcat_compatibility"))); |
| 428 | |
| 429 | void __setup_pcat_compatibility(void) |
| 430 | { |
| 431 | } |