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