wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1 | /* |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003 |
| 3 | * Josef Baumgartner <josef.baumgartner@telex.de> |
| 4 | * |
| 5 | * (C) Copyright 2000-2002 |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <watchdog.h> |
| 29 | #include <command.h> |
| 30 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 31 | #include <stdio_dev.h> |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 32 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 33 | #include <asm/immap.h> |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 34 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 35 | #if defined(CONFIG_CMD_IDE) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 36 | #include <ide.h> |
| 37 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 38 | #if defined(CONFIG_CMD_SCSI) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 39 | #include <scsi.h> |
| 40 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 41 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 42 | #include <kgdb.h> |
| 43 | #endif |
| 44 | #ifdef CONFIG_STATUS_LED |
| 45 | #include <status_led.h> |
| 46 | #endif |
| 47 | #include <net.h> |
Marcel Ziswiler | b71190f | 2008-05-01 09:05:26 +0200 | [diff] [blame] | 48 | #include <serial.h> |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 49 | #if defined(CONFIG_CMD_BEDBUG) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 50 | #include <cmd_bedbug.h> |
| 51 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 53 | #include <commproc.h> |
| 54 | #endif |
| 55 | #include <version.h> |
| 56 | |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 57 | #if defined(CONFIG_HARD_I2C) || \ |
| 58 | defined(CONFIG_SOFT_I2C) |
| 59 | #include <i2c.h> |
| 60 | #endif |
| 61 | |
TsiChung Liew | a7323bb | 2008-07-23 17:53:36 -0500 | [diff] [blame] | 62 | #ifdef CONFIG_CMD_SPI |
| 63 | #include <spi.h> |
| 64 | #endif |
| 65 | |
TsiChung Liew | ab6ba84 | 2008-08-13 12:07:03 +0000 | [diff] [blame] | 66 | #include <nand.h> |
| 67 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 68 | DECLARE_GLOBAL_DATA_PTR; |
| 69 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 70 | static char *failed = "*** failed ***\n"; |
| 71 | |
| 72 | #ifdef CONFIG_PCU_E |
| 73 | extern flash_info_t flash_info[]; |
| 74 | #endif |
| 75 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 76 | #include <environment.h> |
| 77 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | #if ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \ |
| 79 | (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \ |
Jean-Christophe PLAGNIOL-VILLARD | 9314cee | 2008-09-10 22:47:59 +0200 | [diff] [blame] | 80 | defined(CONFIG_ENV_IS_IN_NVRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 81 | #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 82 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 83 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 84 | #endif |
| 85 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 86 | extern ulong __init_end; |
| 87 | extern ulong _end; |
| 88 | |
| 89 | extern void timer_init(void); |
| 90 | |
| 91 | #if defined(CONFIG_WATCHDOG) |
| 92 | # define INIT_FUNC_WATCHDOG_INIT watchdog_init, |
| 93 | # define WATCHDOG_DISABLE watchdog_disable |
| 94 | |
| 95 | extern int watchdog_init(void); |
| 96 | extern int watchdog_disable(void); |
| 97 | #else |
| 98 | # define INIT_FUNC_WATCHDOG_INIT /* undef */ |
| 99 | # define WATCHDOG_DISABLE /* undef */ |
| 100 | #endif /* CONFIG_WATCHDOG */ |
| 101 | |
| 102 | ulong monitor_flash_len; |
| 103 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 104 | /************************************************************************ |
| 105 | * Utilities * |
| 106 | ************************************************************************ |
| 107 | */ |
| 108 | |
| 109 | /* |
| 110 | * The Malloc area is immediately below the monitor copy in DRAM |
| 111 | */ |
Peter Tyser | 832f437 | 2009-08-21 23:05:20 -0500 | [diff] [blame^] | 112 | static void mem_malloc_init(ulong start, ulong size) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 113 | { |
Peter Tyser | 832f437 | 2009-08-21 23:05:20 -0500 | [diff] [blame^] | 114 | mem_malloc_start = start; |
| 115 | mem_malloc_end = start + size; |
| 116 | mem_malloc_brk = start; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 117 | |
Peter Tyser | 832f437 | 2009-08-21 23:05:20 -0500 | [diff] [blame^] | 118 | memset ((void *)mem_malloc_start, 0, size); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 119 | } |
| 120 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 121 | /* |
| 122 | * All attempts to come up with a "common" initialization sequence |
| 123 | * that works for all boards and architectures failed: some of the |
| 124 | * requirements are just _too_ different. To get rid of the resulting |
| 125 | * mess of board dependend #ifdef'ed code we now make the whole |
| 126 | * initialization sequence configurable to the user. |
| 127 | * |
| 128 | * The requirements for any new initalization function is simple: it |
| 129 | * receives a pointer to the "global data" structure as it's only |
| 130 | * argument, and returns an integer return code, where 0 means |
| 131 | * "continue" and != 0 means "fatal error, hang the system". |
| 132 | */ |
| 133 | typedef int (init_fnc_t) (void); |
| 134 | |
| 135 | /************************************************************************ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 136 | * Init Utilities |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 137 | ************************************************************************ |
| 138 | * Some of this code should be moved into the core functions, |
| 139 | * but let's get it working (again) first... |
| 140 | */ |
| 141 | |
| 142 | static int init_baudrate (void) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 143 | { |
TsiChung Liew | 6e37091 | 2008-06-24 12:12:16 -0500 | [diff] [blame] | 144 | char tmp[64]; /* long enough for environment variables */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 145 | int i = getenv_r ("baudrate", tmp, sizeof (tmp)); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 146 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 147 | gd->baudrate = (i > 0) |
| 148 | ? (int) simple_strtoul (tmp, NULL, 10) |
| 149 | : CONFIG_BAUDRATE; |
| 150 | return (0); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 151 | } |
| 152 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 153 | /***********************************************************************/ |
| 154 | |
| 155 | static int init_func_ram (void) |
| 156 | { |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 157 | int board_type = 0; /* use dummy arg */ |
| 158 | puts ("DRAM: "); |
| 159 | |
| 160 | if ((gd->ram_size = initdram (board_type)) > 0) { |
| 161 | print_size (gd->ram_size, "\n"); |
| 162 | return (0); |
| 163 | } |
| 164 | puts (failed); |
| 165 | return (1); |
| 166 | } |
| 167 | |
| 168 | /***********************************************************************/ |
| 169 | |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 170 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
| 171 | static int init_func_i2c (void) |
| 172 | { |
| 173 | puts ("I2C: "); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 174 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 175 | puts ("ready\n"); |
| 176 | return (0); |
| 177 | } |
| 178 | #endif |
| 179 | |
TsiChung Liew | a7323bb | 2008-07-23 17:53:36 -0500 | [diff] [blame] | 180 | #if defined(CONFIG_HARD_SPI) |
| 181 | static int init_func_spi (void) |
| 182 | { |
| 183 | puts ("SPI: "); |
| 184 | spi_init (); |
| 185 | puts ("ready\n"); |
| 186 | return (0); |
| 187 | } |
| 188 | #endif |
| 189 | |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 190 | /***********************************************************************/ |
| 191 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 192 | /************************************************************************ |
| 193 | * Initialization sequence * |
| 194 | ************************************************************************ |
| 195 | */ |
| 196 | |
| 197 | init_fnc_t *init_sequence[] = { |
Stefan Roese | d61ea14 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 198 | get_clocks, |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 199 | env_init, |
| 200 | init_baudrate, |
| 201 | serial_init, |
| 202 | console_init_f, |
| 203 | display_options, |
| 204 | checkcpu, |
| 205 | checkboard, |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 206 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
| 207 | init_func_i2c, |
| 208 | #endif |
TsiChung Liew | a7323bb | 2008-07-23 17:53:36 -0500 | [diff] [blame] | 209 | #if defined(CONFIG_HARD_SPI) |
| 210 | init_func_spi, |
| 211 | #endif |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 212 | init_func_ram, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 213 | #if defined(CONFIG_SYS_DRAM_TEST) |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 214 | testdram, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 215 | #endif /* CONFIG_SYS_DRAM_TEST */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 216 | INIT_FUNC_WATCHDOG_INIT |
| 217 | NULL, /* Terminate this list */ |
| 218 | }; |
| 219 | |
| 220 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 221 | /************************************************************************ |
| 222 | * |
| 223 | * This is the first part of the initialization sequence that is |
| 224 | * implemented in C, but still running from ROM. |
| 225 | * |
| 226 | * The main purpose is to provide a (serial) console interface as |
| 227 | * soon as possible (so we can see any error messages), and to |
| 228 | * initialize the RAM so that we can relocate the monitor code to |
| 229 | * RAM. |
| 230 | * |
| 231 | * Be aware of the restrictions: global data is read-only, BSS is not |
| 232 | * initialized, and stack space is limited to a few kB. |
| 233 | * |
| 234 | ************************************************************************ |
| 235 | */ |
| 236 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 237 | void |
| 238 | board_init_f (ulong bootflag) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 239 | { |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 240 | bd_t *bd; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 241 | ulong len, addr, addr_sp; |
Marian Balakowicz | 483a0cf | 2006-05-09 11:28:36 +0200 | [diff] [blame] | 242 | ulong *paddr; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 243 | gd_t *id; |
| 244 | init_fnc_t **init_fnc_ptr; |
| 245 | #ifdef CONFIG_PRAM |
| 246 | int i; |
| 247 | ulong reg; |
TsiChung Liew | 6e37091 | 2008-06-24 12:12:16 -0500 | [diff] [blame] | 248 | char tmp[64]; /* long enough for environment variables */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 249 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 250 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 251 | /* Pointer is writable since we allocated a register for it */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 252 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 253 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
| 254 | __asm__ __volatile__("": : :"memory"); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 255 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 256 | /* Clear initial global data */ |
| 257 | memset ((void *) gd, 0, sizeof (gd_t)); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 258 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 259 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 260 | if ((*init_fnc_ptr)() != 0) { |
| 261 | hang (); |
| 262 | } |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 263 | } |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 264 | |
| 265 | /* |
| 266 | * Now that we have DRAM mapped and working, we can |
| 267 | * relocate the code and continue running from DRAM. |
| 268 | * |
| 269 | * Reserve memory at end of RAM for (top down in that order): |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 270 | * - protected RAM |
| 271 | * - LCD framebuffer |
| 272 | * - monitor code |
| 273 | * - board info struct |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 274 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 275 | len = (ulong)&_end - CONFIG_SYS_MONITOR_BASE; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 276 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 277 | addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 278 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 279 | #ifdef CONFIG_LOGBUFFER |
| 280 | /* reserve kernel log buffer */ |
| 281 | addr -= (LOGBUFF_RESERVE); |
| 282 | debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr); |
| 283 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 284 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 285 | #ifdef CONFIG_PRAM |
| 286 | /* |
| 287 | * reserve protected RAM |
| 288 | */ |
| 289 | i = getenv_r ("pram", tmp, sizeof (tmp)); |
| 290 | reg = (i > 0) ? simple_strtoul (tmp, NULL, 10) : CONFIG_PRAM; |
| 291 | addr -= (reg << 10); /* size is in kB */ |
| 292 | debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr); |
| 293 | #endif /* CONFIG_PRAM */ |
| 294 | |
TsiChungLiew | 1552af7 | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 295 | /* round down to next 4 kB limit */ |
| 296 | addr &= ~(4096 - 1); |
| 297 | debug ("Top of RAM usable for U-Boot at: %08lx\n", addr); |
| 298 | |
| 299 | #ifdef CONFIG_LCD |
| 300 | /* reserve memory for LCD display (always full pages) */ |
| 301 | addr = lcd_setmem (addr); |
| 302 | gd->fb_base = addr; |
| 303 | #endif /* CONFIG_LCD */ |
| 304 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 305 | /* |
| 306 | * reserve memory for U-Boot code, data & bss |
| 307 | * round down to next 4 kB limit |
| 308 | */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 309 | addr -= len; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 310 | addr &= ~(4096 - 1); |
| 311 | |
| 312 | debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); |
| 313 | |
| 314 | /* |
| 315 | * reserve memory for malloc() arena |
| 316 | */ |
| 317 | addr_sp = addr - TOTAL_MALLOC_LEN; |
| 318 | debug ("Reserving %dk for malloc() at: %08lx\n", |
| 319 | TOTAL_MALLOC_LEN >> 10, addr_sp); |
| 320 | |
| 321 | /* |
| 322 | * (permanently) allocate a Board Info struct |
| 323 | * and a permanent copy of the "global" data |
| 324 | */ |
| 325 | addr_sp -= sizeof (bd_t); |
| 326 | bd = (bd_t *) addr_sp; |
| 327 | gd->bd = bd; |
Wolfgang Denk | b64f190 | 2008-07-14 15:06:35 +0200 | [diff] [blame] | 328 | debug ("Reserving %zu Bytes for Board Info at: %08lx\n", |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 329 | sizeof (bd_t), addr_sp); |
| 330 | addr_sp -= sizeof (gd_t); |
| 331 | id = (gd_t *) addr_sp; |
Wolfgang Denk | b64f190 | 2008-07-14 15:06:35 +0200 | [diff] [blame] | 332 | debug ("Reserving %zu Bytes for Global Data at: %08lx\n", |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 333 | sizeof (gd_t), addr_sp); |
| 334 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 335 | /* Reserve memory for boot params. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 336 | addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 337 | bd->bi_boot_params = addr_sp; |
| 338 | debug ("Reserving %dk for boot parameters at: %08lx\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 339 | CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 340 | |
| 341 | /* |
| 342 | * Finally, we set up a new (bigger) stack. |
| 343 | * |
| 344 | * Leave some safety gap for SP, force alignment on 16 byte boundary |
| 345 | * Clear initial stack frame |
| 346 | */ |
| 347 | addr_sp -= 16; |
| 348 | addr_sp &= ~0xF; |
Marian Balakowicz | 483a0cf | 2006-05-09 11:28:36 +0200 | [diff] [blame] | 349 | |
| 350 | paddr = (ulong *)addr_sp; |
| 351 | *paddr-- = 0; |
| 352 | *paddr-- = 0; |
| 353 | addr_sp = (ulong)paddr; |
Wolfgang Denk | 977b50f | 2006-05-10 17:43:20 +0200 | [diff] [blame] | 354 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 355 | debug ("Stack Pointer at: %08lx\n", addr_sp); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 356 | |
| 357 | /* |
| 358 | * Save local variables to board info struct |
| 359 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 360 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 361 | bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 362 | #ifdef CONFIG_SYS_INIT_RAM_ADDR |
| 363 | bd->bi_sramstart = CONFIG_SYS_INIT_RAM_ADDR; /* start of SRAM memory */ |
| 364 | bd->bi_sramsize = CONFIG_SYS_INIT_RAM_END; /* size of SRAM memory */ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 365 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 366 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 367 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 368 | bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 369 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 370 | WATCHDOG_RESET (); |
| 371 | bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */ |
| 372 | bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 373 | #ifdef CONFIG_PCI |
| 374 | bd->bi_pcifreq = gd->pci_clk; /* PCI Freq in Hz */ |
| 375 | #endif |
| 376 | #ifdef CONFIG_EXTRA_CLOCK |
| 377 | bd->bi_inpfreq = gd->inp_clk; /* input Freq in Hz */ |
| 378 | bd->bi_vcofreq = gd->vco_clk; /* vco Freq in Hz */ |
| 379 | bd->bi_flbfreq = gd->flb_clk; /* flexbus Freq in Hz */ |
| 380 | #endif |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 381 | bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 382 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 383 | #ifdef CONFIG_SYS_EXTBDINFO |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 384 | strncpy (bd->bi_s_version, "1.2", sizeof (bd->bi_s_version)); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 385 | strncpy (bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version)); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 386 | #endif |
| 387 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 388 | WATCHDOG_RESET (); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 389 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 390 | #ifdef CONFIG_POST |
| 391 | post_bootmode_init(); |
| 392 | post_run (NULL, POST_ROM | post_bootmode_get(0)); |
| 393 | #endif |
| 394 | |
| 395 | WATCHDOG_RESET(); |
| 396 | |
| 397 | memcpy (id, (void *)gd, sizeof (gd_t)); |
| 398 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 399 | debug ("Start relocate of code from %08x to %08lx\n", CONFIG_SYS_MONITOR_BASE, addr); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 400 | relocate_code (addr_sp, id, addr); |
| 401 | |
| 402 | /* NOTREACHED - jump_to_ram() does not return */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 403 | } |
| 404 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 405 | /************************************************************************ |
| 406 | * |
| 407 | * This is the next part if the initialization sequence: we are now |
| 408 | * running from RAM and have a "normal" C environment, i. e. global |
| 409 | * data can be written, BSS has been cleared, the stack size in not |
| 410 | * that critical any more, etc. |
| 411 | * |
| 412 | ************************************************************************ |
| 413 | */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 414 | void board_init_r (gd_t *id, ulong dest_addr) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 415 | { |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 416 | cmd_tbl_t *cmdtp; |
Richard Retanubun | dc26965 | 2009-03-23 13:35:48 -0400 | [diff] [blame] | 417 | char *s; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 418 | bd_t *bd; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 419 | extern void malloc_bin_reloc (void); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 420 | |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 421 | #ifndef CONFIG_ENV_IS_NOWHERE |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 422 | extern char * env_name_spec; |
| 423 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 424 | #ifndef CONFIG_SYS_NO_FLASH |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 425 | ulong flash_size; |
| 426 | #endif |
| 427 | gd = id; /* initialize RAM version of global data */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 428 | bd = gd->bd; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 429 | |
| 430 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
| 431 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 432 | #ifdef CONFIG_SERIAL_MULTI |
| 433 | serial_initialize(); |
| 434 | #endif |
| 435 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 436 | debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
| 437 | |
| 438 | WATCHDOG_RESET (); |
| 439 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 440 | gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 441 | |
| 442 | monitor_flash_len = (ulong)&__init_end - dest_addr; |
| 443 | |
| 444 | /* |
| 445 | * We have to relocate the command table manually |
| 446 | */ |
| 447 | for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) { |
| 448 | ulong addr; |
| 449 | addr = (ulong) (cmdtp->cmd) + gd->reloc_off; |
| 450 | #if 0 |
| 451 | printf ("Command \"%s\": 0x%08lx => 0x%08lx\n", |
| 452 | cmdtp->name, (ulong) (cmdtp->cmd), addr); |
| 453 | #endif |
| 454 | cmdtp->cmd = |
| 455 | (int (*)(struct cmd_tbl_s *, int, int, char *[]))addr; |
| 456 | |
| 457 | addr = (ulong)(cmdtp->name) + gd->reloc_off; |
| 458 | cmdtp->name = (char *)addr; |
| 459 | |
| 460 | if (cmdtp->usage) { |
| 461 | addr = (ulong)(cmdtp->usage) + gd->reloc_off; |
| 462 | cmdtp->usage = (char *)addr; |
| 463 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 464 | #ifdef CONFIG_SYS_LONGHELP |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 465 | if (cmdtp->help) { |
| 466 | addr = (ulong)(cmdtp->help) + gd->reloc_off; |
| 467 | cmdtp->help = (char *)addr; |
| 468 | } |
| 469 | #endif |
| 470 | } |
| 471 | /* there are some other pointer constants we must deal with */ |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 472 | #ifndef CONFIG_ENV_IS_NOWHERE |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 473 | env_name_spec += gd->reloc_off; |
| 474 | #endif |
| 475 | |
| 476 | WATCHDOG_RESET (); |
| 477 | |
| 478 | #ifdef CONFIG_LOGBUFFER |
| 479 | logbuff_init_ptrs (); |
| 480 | #endif |
| 481 | #ifdef CONFIG_POST |
| 482 | post_output_backlog (); |
| 483 | post_reloc (); |
| 484 | #endif |
| 485 | WATCHDOG_RESET(); |
| 486 | |
| 487 | #if 0 |
| 488 | /* instruction cache enabled in cpu_init_f() for faster relocation */ |
| 489 | icache_enable (); /* it's time to enable the instruction cache */ |
| 490 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 491 | |
| 492 | /* |
| 493 | * Setup trap handlers |
| 494 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 495 | trap_init (CONFIG_SYS_SDRAM_BASE); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 496 | |
Stefan Roese | c790b04 | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 497 | /* initialize malloc() area */ |
Peter Tyser | 832f437 | 2009-08-21 23:05:20 -0500 | [diff] [blame^] | 498 | mem_malloc_init (CONFIG_SYS_MONITOR_BASE + gd->reloc_off - |
| 499 | TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN); |
Stefan Roese | c790b04 | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 500 | malloc_bin_reloc (); |
| 501 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 502 | #if !defined(CONFIG_SYS_NO_FLASH) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 503 | puts ("FLASH: "); |
| 504 | |
| 505 | if ((flash_size = flash_init ()) > 0) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 506 | # ifdef CONFIG_SYS_FLASH_CHECKSUM |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 507 | print_size (flash_size, ""); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 508 | /* |
| 509 | * Compute and print flash CRC if flashchecksum is set to 'y' |
| 510 | * |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 511 | * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 512 | */ |
| 513 | s = getenv ("flashchecksum"); |
| 514 | if (s && (*s == 'y')) { |
TsiChung Liew | 11d88b2 | 2009-06-12 13:03:34 +0000 | [diff] [blame] | 515 | printf (" CRC: %08X", |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 516 | crc32 (0, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 517 | (const unsigned char *) CONFIG_SYS_FLASH_BASE, |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 518 | flash_size) |
| 519 | ); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 520 | } |
| 521 | putc ('\n'); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 522 | # else /* !CONFIG_SYS_FLASH_CHECKSUM */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 523 | print_size (flash_size, "\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 524 | # endif /* CONFIG_SYS_FLASH_CHECKSUM */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 525 | } else { |
| 526 | puts (failed); |
| 527 | hang (); |
| 528 | } |
| 529 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 530 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 531 | bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */ |
| 532 | bd->bi_flashoffset = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 533 | #else /* CONFIG_SYS_NO_FLASH */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 534 | bd->bi_flashsize = 0; |
| 535 | bd->bi_flashstart = 0; |
| 536 | bd->bi_flashoffset = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 537 | #endif /* !CONFIG_SYS_NO_FLASH */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 538 | |
| 539 | WATCHDOG_RESET (); |
| 540 | |
| 541 | /* initialize higher level parts of CPU like time base and timers */ |
| 542 | cpu_init_r (); |
| 543 | |
| 544 | WATCHDOG_RESET (); |
| 545 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 546 | #ifdef CONFIG_SPI |
Jean-Christophe PLAGNIOL-VILLARD | bb1f8b4 | 2008-09-05 09:19:30 +0200 | [diff] [blame] | 547 | # if !defined(CONFIG_ENV_IS_IN_EEPROM) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 548 | spi_init_f (); |
| 549 | # endif |
| 550 | spi_init_r (); |
| 551 | #endif |
| 552 | |
| 553 | /* relocate environment function pointers etc. */ |
| 554 | env_relocate (); |
| 555 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 556 | /* |
| 557 | * Fill in missing fields of bd_info. |
| 558 | * We do this here, where we have "normal" access to the |
| 559 | * environment; we used to do this still running from ROM, |
| 560 | * where had to use getenv_r(), which can be pretty slow when |
| 561 | * the environment is in EEPROM. |
| 562 | */ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 563 | bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); |
| 564 | |
| 565 | WATCHDOG_RESET (); |
| 566 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 567 | #if defined(CONFIG_PCI) |
| 568 | /* |
| 569 | * Do pci configuration |
| 570 | */ |
| 571 | pci_init (); |
| 572 | #endif |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 573 | |
| 574 | /** leave this here (after malloc(), environment and PCI are working) **/ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 575 | /* Initialize stdio devices */ |
| 576 | stdio_init (); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 577 | |
| 578 | /* Initialize the jump table for applications */ |
| 579 | jumptable_init (); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 580 | |
| 581 | /* Initialize the console (after the relocation and devices init) */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 582 | console_init_r (); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 583 | |
stroese | e2c22d7 | 2004-12-16 17:55:22 +0000 | [diff] [blame] | 584 | #if defined(CONFIG_MISC_INIT_R) |
| 585 | /* miscellaneous platform dependent initialisations */ |
| 586 | misc_init_r (); |
| 587 | #endif |
| 588 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 589 | #if defined(CONFIG_CMD_KGDB) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 590 | WATCHDOG_RESET (); |
| 591 | puts ("KGDB: "); |
| 592 | kgdb_init (); |
| 593 | #endif |
| 594 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 595 | debug ("U-Boot relocated to %08lx\n", dest_addr); |
| 596 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 597 | /* |
| 598 | * Enable Interrupts |
| 599 | */ |
| 600 | interrupt_init (); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 601 | |
| 602 | /* Must happen after interrupts are initialized since |
| 603 | * an irq handler gets installed |
| 604 | */ |
| 605 | timer_init(); |
| 606 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 607 | #ifdef CONFIG_SERIAL_SOFTWARE_FIFO |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 608 | serial_buffered_init(); |
| 609 | #endif |
| 610 | |
| 611 | #ifdef CONFIG_STATUS_LED |
| 612 | status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING); |
| 613 | #endif |
| 614 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 615 | udelay (20); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 616 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 617 | set_timer (0); |
| 618 | |
| 619 | /* Insert function pointers now that we have relocated the code */ |
| 620 | |
| 621 | /* Initialize from environment */ |
| 622 | if ((s = getenv ("loadaddr")) != NULL) { |
| 623 | load_addr = simple_strtoul (s, NULL, 16); |
| 624 | } |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 625 | #if defined(CONFIG_CMD_NET) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 626 | if ((s = getenv ("bootfile")) != NULL) { |
| 627 | copy_filename (BootFile, s, sizeof (BootFile)); |
| 628 | } |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 629 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 630 | |
| 631 | WATCHDOG_RESET (); |
| 632 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 633 | #if defined(CONFIG_CMD_DOC) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 634 | WATCHDOG_RESET (); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 635 | puts ("DOC: "); |
| 636 | doc_init (); |
| 637 | #endif |
| 638 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 639 | #if defined(CONFIG_CMD_NAND) |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 640 | WATCHDOG_RESET (); |
Markus Klotzbuecher | d860c34 | 2006-04-25 17:00:33 +0200 | [diff] [blame] | 641 | puts ("NAND: "); |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 642 | nand_init(); /* go init the NAND */ |
| 643 | #endif |
| 644 | |
Stefan Roese | d61ea14 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 645 | #if defined(CONFIG_CMD_NET) |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 646 | WATCHDOG_RESET(); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 647 | #if defined(FEC_ENET) |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 648 | eth_init(bd); |
| 649 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 650 | #if defined(CONFIG_NET_MULTI) |
| 651 | puts ("Net: "); |
TsiChungLiew | ab77bc5 | 2007-08-15 15:39:17 -0500 | [diff] [blame] | 652 | eth_initialize (bd); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 653 | #endif |
| 654 | #endif |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 655 | |
| 656 | #ifdef CONFIG_POST |
| 657 | post_run (NULL, POST_RAM | post_bootmode_get(0)); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 658 | #endif |
| 659 | |
Stefan Roese | d61ea14 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 660 | #if defined(CONFIG_CMD_PCMCIA) \ |
| 661 | && !defined(CONFIG_CMD_IDE) |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 662 | WATCHDOG_RESET (); |
| 663 | puts ("PCMCIA:"); |
| 664 | pcmcia_init (); |
| 665 | #endif |
| 666 | |
Stefan Roese | d61ea14 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 667 | #if defined(CONFIG_CMD_IDE) |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 668 | WATCHDOG_RESET (); |
| 669 | puts ("IDE: "); |
| 670 | ide_init (); |
Stefan Roese | d61ea14 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 671 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 672 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 673 | #ifdef CONFIG_LAST_STAGE_INIT |
| 674 | WATCHDOG_RESET (); |
| 675 | /* |
| 676 | * Some parts can be only initialized if all others (like |
| 677 | * Interrupts) are up and running (i.e. the PC-style ISA |
| 678 | * keyboard). |
| 679 | */ |
| 680 | last_stage_init (); |
| 681 | #endif |
| 682 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 683 | #if defined(CONFIG_CMD_BEDBUG) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 684 | WATCHDOG_RESET (); |
| 685 | bedbug_init (); |
| 686 | #endif |
| 687 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 688 | #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 689 | /* |
| 690 | * Export available size of memory for Linux, |
| 691 | * taking into account the protected RAM at top of memory |
| 692 | */ |
| 693 | { |
| 694 | ulong pram; |
TsiChung Liew | 6e37091 | 2008-06-24 12:12:16 -0500 | [diff] [blame] | 695 | char memsz[32]; |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 696 | #ifdef CONFIG_PRAM |
| 697 | char *s; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 698 | |
| 699 | if ((s = getenv ("pram")) != NULL) { |
| 700 | pram = simple_strtoul (s, NULL, 10); |
| 701 | } else { |
| 702 | pram = CONFIG_PRAM; |
| 703 | } |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 704 | #else |
| 705 | pram=0; |
| 706 | #endif |
| 707 | #ifdef CONFIG_LOGBUFFER |
| 708 | /* Also take the logbuffer into account (pram is in kB) */ |
| 709 | pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024; |
| 710 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 711 | sprintf (memsz, "%ldk", (bd->bi_memsize / 1024) - pram); |
| 712 | setenv ("mem", memsz); |
| 713 | } |
| 714 | #endif |
| 715 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 716 | #ifdef CONFIG_MODEM_SUPPORT |
| 717 | { |
| 718 | extern int do_mdm_init; |
| 719 | do_mdm_init = gd->do_mdm_init; |
| 720 | } |
| 721 | #endif |
| 722 | |
| 723 | #ifdef CONFIG_WATCHDOG |
| 724 | /* disable watchdog if environment is set */ |
| 725 | if ((s = getenv ("watchdog")) != NULL) { |
| 726 | if (strncmp (s, "off", 3) == 0) { |
| 727 | WATCHDOG_DISABLE (); |
| 728 | } |
| 729 | } |
| 730 | #endif /* CONFIG_WATCHDOG*/ |
| 731 | |
| 732 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 733 | /* Initialization complete - start the monitor */ |
| 734 | |
| 735 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 736 | for (;;) { |
| 737 | WATCHDOG_RESET (); |
| 738 | main_loop (); |
| 739 | } |
| 740 | |
| 741 | /* NOTREACHED - no way out of command loop except booting */ |
| 742 | } |
| 743 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 744 | |
| 745 | void hang(void) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 746 | { |
| 747 | puts ("### ERROR ### Please RESET the board ###\n"); |
| 748 | for (;;); |
| 749 | } |