wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Luigi 'Comio' Mantellini | 01db155 | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 3 | * Daniel Engstr�m, Omicron Ceti AB, daniel@omicron.se |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | * (C) Copyright 2002 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 7 | * |
wdenk | 591dda5 | 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 | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 34 | #include <stdio_dev.h> |
Peter Tyser | 6294850 | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 35 | #include <timestamp.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 36 | #include <version.h> |
| 37 | #include <malloc.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 38 | #include <net.h> |
| 39 | #include <ide.h> |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 40 | #include <asm/u-boot-i386.h> |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 41 | |
Luigi 'Comio' Mantellini | 01db155 | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 42 | #ifdef CONFIG_BITBANGMII |
| 43 | #include <miiphy.h> |
| 44 | #endif |
| 45 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 46 | DECLARE_GLOBAL_DATA_PTR; |
| 47 | |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 48 | extern long _i386boot_start; |
| 49 | extern long _i386boot_end; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 50 | extern long _i386boot_romdata_start; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 51 | extern long _i386boot_romdata_dest; |
| 52 | extern long _i386boot_romdata_size; |
| 53 | extern long _i386boot_bss_start; |
| 54 | extern long _i386boot_bss_size; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 55 | |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 56 | extern long _i386boot_realmode; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 57 | extern long _i386boot_realmode_size; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 58 | extern long _i386boot_bios; |
| 59 | extern long _i386boot_bios_size; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 60 | |
| 61 | /* The symbols defined by the linker script becomes pointers |
| 62 | * which is somewhat inconveient ... */ |
| 63 | ulong i386boot_start = (ulong)&_i386boot_start; /* code start (in flash) defined in start.S */ |
| 64 | ulong i386boot_end = (ulong)&_i386boot_end; /* code end (in flash) */ |
| 65 | ulong i386boot_romdata_start = (ulong)&_i386boot_romdata_start; /* datasegment in flash (also code+rodata end) */ |
| 66 | ulong i386boot_romdata_dest = (ulong)&_i386boot_romdata_dest; /* data location segment in ram */ |
| 67 | ulong i386boot_romdata_size = (ulong)&_i386boot_romdata_size; /* size of data segment */ |
| 68 | ulong i386boot_bss_start = (ulong)&_i386boot_bss_start; /* bss start */ |
| 69 | ulong i386boot_bss_size = (ulong)&_i386boot_bss_size; /* bss size */ |
| 70 | |
| 71 | ulong i386boot_realmode = (ulong)&_i386boot_realmode; /* start of realmode entry code */ |
| 72 | ulong i386boot_realmode_size = (ulong)&_i386boot_realmode_size; /* size of realmode entry code */ |
| 73 | ulong i386boot_bios = (ulong)&_i386boot_bios; /* start of BIOS emulation code */ |
| 74 | ulong i386boot_bios_size = (ulong)&_i386boot_bios_size; /* size of BIOS emulation code */ |
| 75 | |
| 76 | |
| 77 | const char version_string[] = |
Peter Tyser | 6294850 | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 78 | U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 79 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 80 | static int mem_malloc_init(void) |
| 81 | { |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 82 | /* start malloc area right after the stack */ |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 83 | mem_malloc_start = i386boot_bss_start + |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | i386boot_bss_size + CONFIG_SYS_STACK_SIZE; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 85 | mem_malloc_start = (mem_malloc_start+3)&~3; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 86 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 87 | /* Use all available RAM for malloc() */ |
| 88 | mem_malloc_end = gd->ram_size; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 89 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 90 | mem_malloc_brk = mem_malloc_start; |
| 91 | |
| 92 | return 0; |
| 93 | } |
| 94 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 95 | /************************************************************************ |
| 96 | * Init Utilities * |
| 97 | ************************************************************************ |
| 98 | * Some of this code should be moved into the core functions, |
| 99 | * or dropped completely, |
| 100 | * but let's get it working (again) first... |
| 101 | */ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 102 | static int init_baudrate (void) |
| 103 | { |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 104 | char tmp[64]; /* long enough for environment variables */ |
| 105 | int i = getenv_r("baudrate", tmp, 64); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 106 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 107 | gd->baudrate = (i != 0) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 108 | ? (int) simple_strtoul (tmp, NULL, 10) |
| 109 | : CONFIG_BAUDRATE; |
| 110 | |
| 111 | return (0); |
| 112 | } |
| 113 | |
| 114 | static int display_banner (void) |
| 115 | { |
| 116 | |
| 117 | printf ("\n\n%s\n\n", version_string); |
| 118 | printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n" |
| 119 | " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n", |
| 120 | i386boot_start, i386boot_romdata_start-1, |
| 121 | i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1, |
| 122 | i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1, |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 123 | i386boot_bss_start+i386boot_bss_size, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 124 | i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1); |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 125 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 126 | |
| 127 | return (0); |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * WARNING: this code looks "cleaner" than the PowerPC version, but |
| 132 | * has the disadvantage that you either get nothing, or everything. |
| 133 | * On PowerPC, you might see "DRAM: " before the system hangs - which |
| 134 | * gives a simple yet clear indication which part of the |
| 135 | * initialization if failing. |
| 136 | */ |
| 137 | static int display_dram_config (void) |
| 138 | { |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 139 | int i; |
| 140 | |
| 141 | puts ("DRAM Configuration:\n"); |
| 142 | |
| 143 | for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) { |
| 144 | printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start); |
| 145 | print_size (gd->bd->bi_dram[i].size, "\n"); |
| 146 | } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 147 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 148 | return (0); |
| 149 | } |
| 150 | |
| 151 | static void display_flash_config (ulong size) |
| 152 | { |
| 153 | puts ("Flash: "); |
| 154 | print_size (size, "\n"); |
| 155 | } |
| 156 | |
| 157 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 158 | /* |
| 159 | * Breath some life into the board... |
| 160 | * |
| 161 | * Initialize an SMC for serial comms, and carry out some hardware |
| 162 | * tests. |
| 163 | * |
| 164 | * The first part of initialization is running from Flash memory; |
| 165 | * its main purpose is to initialize the RAM so that we |
| 166 | * can relocate the monitor code to RAM. |
| 167 | */ |
| 168 | |
| 169 | /* |
| 170 | * All attempts to come up with a "common" initialization sequence |
| 171 | * that works for all boards and architectures failed: some of the |
| 172 | * requirements are just _too_ different. To get rid of the resulting |
| 173 | * mess of board dependend #ifdef'ed code we now make the whole |
| 174 | * initialization sequence configurable to the user. |
| 175 | * |
| 176 | * The requirements for any new initalization function is simple: it |
| 177 | * receives a pointer to the "global data" structure as it's only |
| 178 | * argument, and returns an integer return code, where 0 means |
| 179 | * "continue" and != 0 means "fatal error, hang the system". |
| 180 | */ |
| 181 | typedef int (init_fnc_t) (void); |
| 182 | |
| 183 | init_fnc_t *init_sequence[] = { |
| 184 | cpu_init, /* basic cpu dependent setup */ |
| 185 | board_init, /* basic board dependent setup */ |
| 186 | dram_init, /* configure available RAM banks */ |
| 187 | mem_malloc_init, /* dependant on dram_init */ |
| 188 | interrupt_init, /* set up exceptions */ |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 189 | timer_init, |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 190 | serial_init, |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 191 | env_init, /* initialize environment */ |
| 192 | init_baudrate, /* initialze baudrate settings */ |
| 193 | serial_init, /* serial communications setup */ |
| 194 | display_banner, |
| 195 | display_dram_config, |
| 196 | |
| 197 | NULL, |
| 198 | }; |
| 199 | |
Graeme Russ | 2fe2a97 | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 200 | gd_t *gd; |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 201 | |
| 202 | void start_i386boot (void) |
| 203 | { |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 204 | char *s; |
| 205 | int i; |
| 206 | ulong size; |
| 207 | static gd_t gd_data; |
| 208 | static bd_t bd_data; |
| 209 | init_fnc_t **init_fnc_ptr; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 210 | |
Graeme Russ | 8495964 | 2009-02-24 21:14:56 +1100 | [diff] [blame] | 211 | #ifndef CONFIG_SKIP_RELOCATE_UBOOT |
| 212 | cmd_tbl_t *p; |
| 213 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 214 | show_boot_progress(0x21); |
| 215 | |
Graeme Russ | 2fe2a97 | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 216 | gd = &gd_data; |
wdenk | 3337af4 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 217 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
| 218 | __asm__ __volatile__("": : :"memory"); |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 219 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 220 | memset (gd, 0, sizeof (gd_t)); |
| 221 | gd->bd = &bd_data; |
| 222 | memset (gd->bd, 0, sizeof (bd_t)); |
| 223 | show_boot_progress(0x22); |
| 224 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 225 | gd->baudrate = CONFIG_BAUDRATE; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 226 | |
Graeme Russ | 8495964 | 2009-02-24 21:14:56 +1100 | [diff] [blame] | 227 | #ifndef CONFIG_SKIP_RELOCATE_UBOOT |
| 228 | /* Need to set relocation offset here for interrupt initialization */ |
| 229 | gd->reloc_off = CONFIG_SYS_BL_START_RAM - TEXT_BASE; |
| 230 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 231 | for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) { |
| 232 | show_boot_progress(0xa130|i); |
| 233 | |
| 234 | if ((*init_fnc_ptr)() != 0) { |
| 235 | hang (); |
| 236 | } |
| 237 | } |
| 238 | show_boot_progress(0x23); |
| 239 | |
Graeme Russ | 8495964 | 2009-02-24 21:14:56 +1100 | [diff] [blame] | 240 | #ifndef CONFIG_SKIP_RELOCATE_UBOOT |
| 241 | for (p = &__u_boot_cmd_start; p != &__u_boot_cmd_end; p++) { |
| 242 | ulong addr; |
| 243 | addr = (ulong) (p->cmd) + gd->reloc_off; |
| 244 | p->cmd = (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr; |
| 245 | addr = (ulong)(p->name) + gd->reloc_off; |
| 246 | p->name = (char *)addr; |
| 247 | |
| 248 | if (p->usage != NULL) { |
| 249 | addr = (ulong)(p->usage) + gd->reloc_off; |
| 250 | p->usage = (char *)addr; |
| 251 | } |
| 252 | #ifdef CONFIG_SYS_LONGHELP |
| 253 | if (p->help != NULL) { |
| 254 | addr = (ulong)(p->help) + gd->reloc_off; |
| 255 | p->help = (char *)addr; |
| 256 | } |
| 257 | #endif |
| 258 | } |
| 259 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 260 | /* configure available FLASH banks */ |
| 261 | size = flash_init(); |
| 262 | display_flash_config(size); |
| 263 | show_boot_progress(0x24); |
| 264 | |
| 265 | show_boot_progress(0x25); |
| 266 | |
| 267 | /* initialize environment */ |
| 268 | env_relocate (); |
| 269 | show_boot_progress(0x26); |
| 270 | |
| 271 | |
| 272 | /* IP Address */ |
| 273 | bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr"); |
| 274 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 275 | #if defined(CONFIG_PCI) |
| 276 | /* |
| 277 | * Do pci configuration |
| 278 | */ |
| 279 | pci_init(); |
| 280 | #endif |
| 281 | |
| 282 | show_boot_progress(0x27); |
| 283 | |
| 284 | |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 285 | stdio_init (); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 286 | |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 287 | jumptable_init (); |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 288 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 289 | /* Initialize the console (after the relocation and devices init) */ |
| 290 | console_init_r(); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 291 | |
| 292 | #ifdef CONFIG_MISC_INIT_R |
| 293 | /* miscellaneous platform dependent initialisations */ |
| 294 | misc_init_r(); |
| 295 | #endif |
| 296 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 297 | #if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 298 | WATCHDOG_RESET(); |
| 299 | puts ("PCMCIA:"); |
| 300 | pcmcia_init(); |
| 301 | #endif |
| 302 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 303 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 304 | WATCHDOG_RESET(); |
| 305 | puts("KGDB: "); |
| 306 | kgdb_init(); |
| 307 | #endif |
| 308 | |
| 309 | /* enable exceptions */ |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 310 | enable_interrupts(); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 311 | show_boot_progress(0x28); |
| 312 | |
| 313 | /* Must happen after interrupts are initialized since |
| 314 | * an irq handler gets installed |
| 315 | */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 316 | #ifdef CONFIG_SERIAL_SOFTWARE_FIFO |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 317 | serial_buffered_init(); |
| 318 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 319 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 320 | #ifdef CONFIG_STATUS_LED |
| 321 | status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING); |
| 322 | #endif |
| 323 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 324 | udelay(20); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 325 | |
| 326 | set_timer (0); |
| 327 | |
| 328 | /* Initialize from environment */ |
| 329 | if ((s = getenv ("loadaddr")) != NULL) { |
| 330 | load_addr = simple_strtoul (s, NULL, 16); |
| 331 | } |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 332 | #if defined(CONFIG_CMD_NET) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 333 | if ((s = getenv ("bootfile")) != NULL) { |
| 334 | copy_filename (BootFile, s, sizeof (BootFile)); |
| 335 | } |
Jon Loeliger | 1670a5b | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 336 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 337 | |
| 338 | WATCHDOG_RESET(); |
| 339 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 340 | #if defined(CONFIG_CMD_IDE) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 341 | WATCHDOG_RESET(); |
| 342 | puts("IDE: "); |
| 343 | ide_init(); |
Jon Loeliger | 1670a5b | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 344 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 345 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 346 | #if defined(CONFIG_CMD_SCSI) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 347 | WATCHDOG_RESET(); |
| 348 | puts("SCSI: "); |
| 349 | scsi_init(); |
| 350 | #endif |
| 351 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 352 | #if defined(CONFIG_CMD_DOC) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 353 | WATCHDOG_RESET(); |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 354 | puts("DOC: "); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 355 | doc_init(); |
| 356 | #endif |
| 357 | |
Luigi 'Comio' Mantellini | 01db155 | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 358 | #ifdef CONFIG_BITBANGMII |
| 359 | bb_miiphy_init(); |
| 360 | #endif |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 361 | #if defined(CONFIG_CMD_NET) |
Marian Balakowicz | aab8c49 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 362 | #if defined(CONFIG_NET_MULTI) |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 363 | WATCHDOG_RESET(); |
| 364 | puts("Net: "); |
Marian Balakowicz | aab8c49 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 365 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 366 | eth_initialize(gd->bd); |
| 367 | #endif |
| 368 | |
Jon Loeliger | 1207797 | 2007-07-09 18:05:38 -0500 | [diff] [blame] | 369 | #if ( defined(CONFIG_CMD_NET)) && (0) |
Marian Balakowicz | aab8c49 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 370 | WATCHDOG_RESET(); |
| 371 | # ifdef DEBUG |
| 372 | puts ("Reset Ethernet PHY\n"); |
| 373 | # endif |
| 374 | reset_phy(); |
| 375 | #endif |
| 376 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 377 | #ifdef CONFIG_LAST_STAGE_INIT |
| 378 | WATCHDOG_RESET(); |
| 379 | /* |
| 380 | * Some parts can be only initialized if all others (like |
| 381 | * Interrupts) are up and running (i.e. the PC-style ISA |
| 382 | * keyboard). |
| 383 | */ |
| 384 | last_stage_init(); |
| 385 | #endif |
| 386 | |
| 387 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 388 | #ifdef CONFIG_POST |
| 389 | post_run (NULL, POST_RAM | post_bootmode_get(0)); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 390 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 391 | |
| 392 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 393 | show_boot_progress(0x29); |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 394 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 395 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 396 | for (;;) { |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 397 | main_loop(); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | /* NOTREACHED - no way out of command loop except booting */ |
| 401 | } |
| 402 | |
| 403 | void hang (void) |
| 404 | { |
| 405 | puts ("### ERROR ### Please RESET the board ###\n"); |
| 406 | for (;;); |
| 407 | } |
Mike Frysinger | 0870e47 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 408 | |
| 409 | unsigned long do_go_exec (ulong (*entry)(int, char *[]), int argc, char *argv[]) |
| 410 | { |
| 411 | /* |
Graeme Russ | 2fe2a97 | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 412 | * TODO: Test this function - changed to fix compiler error. |
| 413 | * Original code was: |
| 414 | * return (entry >> 1) (argc, argv); |
| 415 | * with a comment about Nios function pointers are address >> 1 |
Mike Frysinger | 0870e47 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 416 | */ |
Graeme Russ | 2fe2a97 | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 417 | return (entry) (argc, argv); |
Mike Frysinger | 0870e47 | 2008-04-13 19:42:19 -0400 | [diff] [blame] | 418 | } |