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