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