wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
Detlev Zundel | 82826d5 | 2010-01-22 14:47:59 +0100 | [diff] [blame] | 2 | * (C) Copyright 2000-2010 |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <watchdog.h> |
| 26 | #include <command.h> |
| 27 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 28 | #include <stdio_dev.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 29 | #ifdef CONFIG_8xx |
| 30 | #include <mpc8xx.h> |
| 31 | #endif |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 32 | #ifdef CONFIG_5xx |
| 33 | #include <mpc5xx.h> |
| 34 | #endif |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 35 | #ifdef CONFIG_MPC5xxx |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 36 | #include <mpc5xxx.h> |
| 37 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 38 | #if defined(CONFIG_CMD_IDE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 39 | #include <ide.h> |
| 40 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 41 | #if defined(CONFIG_CMD_SCSI) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 42 | #include <scsi.h> |
| 43 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 44 | #if defined(CONFIG_CMD_KGDB) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 45 | #include <kgdb.h> |
| 46 | #endif |
| 47 | #ifdef CONFIG_STATUS_LED |
| 48 | #include <status_led.h> |
| 49 | #endif |
| 50 | #include <net.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 51 | #ifdef CONFIG_GENERIC_MMC |
| 52 | #include <mmc.h> |
| 53 | #endif |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 54 | #include <serial.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 56 | #if !defined(CONFIG_CPM2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 57 | #include <commproc.h> |
| 58 | #endif |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 59 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 60 | #include <version.h> |
| 61 | #if defined(CONFIG_BAB7xx) |
| 62 | #include <w83c553f.h> |
| 63 | #endif |
| 64 | #include <dtt.h> |
| 65 | #if defined(CONFIG_POST) |
| 66 | #include <post.h> |
| 67 | #endif |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 68 | #if defined(CONFIG_LOGBUFFER) |
| 69 | #include <logbuff.h> |
| 70 | #endif |
Wolfgang Denk | 9c67352 | 2009-07-26 23:28:02 +0200 | [diff] [blame] | 71 | #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 72 | #include <asm/cache.h> |
| 73 | #endif |
wdenk | 1c43771 | 2004-01-16 00:30:56 +0000 | [diff] [blame] | 74 | #ifdef CONFIG_PS2KBD |
| 75 | #include <keyboard.h> |
| 76 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 77 | |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 78 | #ifdef CONFIG_ADDR_MAP |
| 79 | #include <asm/mmu.h> |
| 80 | #endif |
| 81 | |
Kumar Gala | fc39c2fd | 2009-03-31 17:58:13 -0500 | [diff] [blame] | 82 | #ifdef CONFIG_MP |
| 83 | #include <asm/mp.h> |
| 84 | #endif |
| 85 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 86 | #ifdef CONFIG_BITBANGMII |
| 87 | #include <miiphy.h> |
| 88 | #endif |
| 89 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 90 | #ifdef CONFIG_SYS_UPDATE_FLASH_SIZE |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 91 | extern int update_flash_size (int flash_size); |
| 92 | #endif |
| 93 | |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 94 | #if defined(CONFIG_SC3) |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 95 | extern void sc3_read_eeprom(void); |
| 96 | #endif |
| 97 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 98 | #if defined(CONFIG_CMD_DOC) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 99 | void doc_init (void); |
| 100 | #endif |
| 101 | #if defined(CONFIG_HARD_I2C) || \ |
| 102 | defined(CONFIG_SOFT_I2C) |
| 103 | #include <i2c.h> |
| 104 | #endif |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 105 | #include <spi.h> |
Scott Wood | d6ac2ed | 2008-05-22 10:49:46 -0500 | [diff] [blame] | 106 | #include <nand.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 107 | |
| 108 | static char *failed = "*** failed ***\n"; |
| 109 | |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 110 | #if defined(CONFIG_OXC) || defined(CONFIG_PCU_E) || defined(CONFIG_RMU) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 111 | extern flash_info_t flash_info[]; |
wdenk | 17d704e | 2004-04-10 20:43:50 +0000 | [diff] [blame] | 112 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 113 | |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 114 | #if defined(CONFIG_START_IDE) |
| 115 | extern int board_start_ide(void); |
| 116 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 117 | #include <environment.h> |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 118 | |
Wolfgang Denk | bce84c4 | 2005-08-30 14:13:23 +0200 | [diff] [blame] | 119 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 120 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 121 | #if defined(CONFIG_ENV_IS_EMBEDDED) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 122 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
| 123 | #elif ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \ |
| 124 | (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] | 125 | defined(CONFIG_ENV_IS_IN_NVRAM) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 127 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 128 | #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 129 | #endif |
| 130 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | #if !defined(CONFIG_SYS_MEM_TOP_HIDE) |
| 132 | #define CONFIG_SYS_MEM_TOP_HIDE 0 |
Stefan Roese | 6fb4b64 | 2008-03-27 10:24:03 +0100 | [diff] [blame] | 133 | #endif |
| 134 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 135 | extern ulong __init_end; |
| 136 | extern ulong _end; |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 137 | ulong monitor_flash_len; |
| 138 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 139 | #if defined(CONFIG_CMD_BEDBUG) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 140 | #include <bedbug/type.h> |
| 141 | #endif |
| 142 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 143 | /************************************************************************ |
| 144 | * Utilities * |
| 145 | ************************************************************************ |
| 146 | */ |
| 147 | |
| 148 | /* |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 149 | * All attempts to come up with a "common" initialization sequence |
| 150 | * that works for all boards and architectures failed: some of the |
| 151 | * requirements are just _too_ different. To get rid of the resulting |
| 152 | * mess of board dependend #ifdef'ed code we now make the whole |
| 153 | * initialization sequence configurable to the user. |
| 154 | * |
| 155 | * The requirements for any new initalization function is simple: it |
| 156 | * receives a pointer to the "global data" structure as it's only |
| 157 | * argument, and returns an integer return code, where 0 means |
| 158 | * "continue" and != 0 means "fatal error, hang the system". |
| 159 | */ |
| 160 | typedef int (init_fnc_t) (void); |
| 161 | |
| 162 | /************************************************************************ |
| 163 | * Init Utilities * |
| 164 | ************************************************************************ |
| 165 | * Some of this code should be moved into the core functions, |
| 166 | * but let's get it working (again) first... |
| 167 | */ |
| 168 | |
| 169 | static int init_baudrate (void) |
| 170 | { |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 171 | char tmp[64]; /* long enough for environment variables */ |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 172 | int i = getenv_f("baudrate", tmp, sizeof (tmp)); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 173 | |
| 174 | gd->baudrate = (i > 0) |
| 175 | ? (int) simple_strtoul (tmp, NULL, 10) |
| 176 | : CONFIG_BAUDRATE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 177 | return (0); |
| 178 | } |
| 179 | |
| 180 | /***********************************************************************/ |
| 181 | |
Kim Phillips | 79f240f | 2007-08-16 22:52:39 -0500 | [diff] [blame] | 182 | void __board_add_ram_info(int use_default) |
| 183 | { |
| 184 | /* please define platform specific board_add_ram_info() */ |
| 185 | } |
| 186 | void board_add_ram_info(int) __attribute__((weak, alias("__board_add_ram_info"))); |
| 187 | |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 188 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 189 | static int init_func_ram (void) |
| 190 | { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 191 | #ifdef CONFIG_BOARD_TYPES |
| 192 | int board_type = gd->board_type; |
| 193 | #else |
| 194 | int board_type = 0; /* use dummy arg */ |
| 195 | #endif |
| 196 | puts ("DRAM: "); |
| 197 | |
| 198 | if ((gd->ram_size = initdram (board_type)) > 0) { |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 199 | print_size (gd->ram_size, ""); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 200 | board_add_ram_info(0); |
Stefan Roese | d96f41e | 2005-11-30 13:06:40 +0100 | [diff] [blame] | 201 | putc('\n'); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 202 | return (0); |
| 203 | } |
| 204 | puts (failed); |
| 205 | return (1); |
| 206 | } |
| 207 | |
| 208 | /***********************************************************************/ |
| 209 | |
| 210 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
| 211 | static int init_func_i2c (void) |
| 212 | { |
| 213 | puts ("I2C: "); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 214 | i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 215 | puts ("ready\n"); |
| 216 | return (0); |
| 217 | } |
| 218 | #endif |
| 219 | |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 220 | #if defined(CONFIG_HARD_SPI) |
| 221 | static int init_func_spi (void) |
| 222 | { |
| 223 | puts ("SPI: "); |
| 224 | spi_init (); |
| 225 | puts ("ready\n"); |
| 226 | return (0); |
| 227 | } |
| 228 | #endif |
| 229 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 230 | /***********************************************************************/ |
| 231 | |
| 232 | #if defined(CONFIG_WATCHDOG) |
| 233 | static int init_func_watchdog_init (void) |
| 234 | { |
| 235 | puts (" Watchdog enabled\n"); |
| 236 | WATCHDOG_RESET (); |
| 237 | return (0); |
| 238 | } |
| 239 | # define INIT_FUNC_WATCHDOG_INIT init_func_watchdog_init, |
| 240 | |
| 241 | static int init_func_watchdog_reset (void) |
| 242 | { |
| 243 | WATCHDOG_RESET (); |
| 244 | return (0); |
| 245 | } |
| 246 | # define INIT_FUNC_WATCHDOG_RESET init_func_watchdog_reset, |
| 247 | #else |
| 248 | # define INIT_FUNC_WATCHDOG_INIT /* undef */ |
| 249 | # define INIT_FUNC_WATCHDOG_RESET /* undef */ |
| 250 | #endif /* CONFIG_WATCHDOG */ |
| 251 | |
| 252 | /************************************************************************ |
| 253 | * Initialization sequence * |
| 254 | ************************************************************************ |
| 255 | */ |
| 256 | |
| 257 | init_fnc_t *init_sequence[] = { |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 258 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
| 259 | probecpu, |
| 260 | #endif |
Anton Vorontsov | 91525c6 | 2009-10-12 23:55:39 +0400 | [diff] [blame] | 261 | #if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 262 | board_early_init_f, |
| 263 | #endif |
wdenk | 66ca92a | 2004-09-28 17:59:53 +0000 | [diff] [blame] | 264 | #if !defined(CONFIG_8xx_CPUCLK_DEFAULT) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 265 | get_clocks, /* get CPU and bus clocks (etc.) */ |
Markus Klotzbuecher | 090eb73 | 2006-07-12 15:26:01 +0200 | [diff] [blame] | 266 | #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ |
| 267 | && !defined(CONFIG_TQM885D) |
wdenk | e9132ea | 2004-04-24 23:23:30 +0000 | [diff] [blame] | 268 | adjust_sdram_tbs_8xx, |
| 269 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 270 | init_timebase, |
wdenk | c178d3d | 2004-01-24 20:25:54 +0000 | [diff] [blame] | 271 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 272 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 273 | #if !defined(CONFIG_CPM2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 274 | dpram_init, |
| 275 | #endif |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 276 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 277 | #if defined(CONFIG_BOARD_POSTCLK_INIT) |
| 278 | board_postclk_init, |
| 279 | #endif |
| 280 | env_init, |
wdenk | 66ca92a | 2004-09-28 17:59:53 +0000 | [diff] [blame] | 281 | #if defined(CONFIG_8xx_CPUCLK_DEFAULT) |
wdenk | c178d3d | 2004-01-24 20:25:54 +0000 | [diff] [blame] | 282 | get_clocks_866, /* get CPU and bus clocks according to the environment variable */ |
| 283 | sdram_adjust_866, /* adjust sdram refresh rate according to the new clock */ |
| 284 | init_timebase, |
| 285 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 286 | init_baudrate, |
| 287 | serial_init, |
| 288 | console_init_f, |
| 289 | display_options, |
| 290 | #if defined(CONFIG_8260) |
| 291 | prt_8260_rsr, |
| 292 | prt_8260_clks, |
| 293 | #endif /* CONFIG_8260 */ |
Peter Tyser | 0f89860 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 294 | #if defined(CONFIG_MPC83xx) |
Dave Liu | 9be39a6 | 2007-06-25 10:41:56 +0800 | [diff] [blame] | 295 | prt_83xx_rsr, |
| 296 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 297 | checkcpu, |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 298 | #if defined(CONFIG_MPC5xxx) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 299 | prt_mpc5xxx_clks, |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 300 | #endif /* CONFIG_MPC5xxx */ |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 301 | #if defined(CONFIG_MPC8220) |
| 302 | prt_mpc8220_clks, |
| 303 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 304 | checkboard, |
| 305 | INIT_FUNC_WATCHDOG_INIT |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 306 | #if defined(CONFIG_MISC_INIT_F) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 307 | misc_init_f, |
| 308 | #endif |
| 309 | INIT_FUNC_WATCHDOG_RESET |
| 310 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
| 311 | init_func_i2c, |
| 312 | #endif |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 313 | #if defined(CONFIG_HARD_SPI) |
| 314 | init_func_spi, |
| 315 | #endif |
wdenk | 4532cb6 | 2003-04-27 22:52:51 +0000 | [diff] [blame] | 316 | #ifdef CONFIG_POST |
| 317 | post_init_f, |
| 318 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 319 | INIT_FUNC_WATCHDOG_RESET |
| 320 | init_func_ram, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 321 | #if defined(CONFIG_SYS_DRAM_TEST) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 322 | testdram, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 323 | #endif /* CONFIG_SYS_DRAM_TEST */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 324 | INIT_FUNC_WATCHDOG_RESET |
| 325 | |
| 326 | NULL, /* Terminate this list */ |
| 327 | }; |
| 328 | |
Kumar Gala | 81d93e5 | 2008-02-18 08:09:37 -0600 | [diff] [blame] | 329 | ulong get_effective_memsize(void) |
| 330 | { |
| 331 | #ifndef CONFIG_VERY_BIG_RAM |
| 332 | return gd->ram_size; |
| 333 | #else |
| 334 | /* limit stack to what we can reasonable map */ |
| 335 | return ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ? |
| 336 | CONFIG_MAX_MEM_MAPPED : gd->ram_size); |
| 337 | #endif |
| 338 | } |
| 339 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 340 | /************************************************************************ |
| 341 | * |
| 342 | * This is the first part of the initialization sequence that is |
| 343 | * implemented in C, but still running from ROM. |
| 344 | * |
| 345 | * The main purpose is to provide a (serial) console interface as |
| 346 | * soon as possible (so we can see any error messages), and to |
| 347 | * initialize the RAM so that we can relocate the monitor code to |
| 348 | * RAM. |
| 349 | * |
| 350 | * Be aware of the restrictions: global data is read-only, BSS is not |
| 351 | * initialized, and stack space is limited to a few kB. |
| 352 | * |
| 353 | ************************************************************************ |
| 354 | */ |
| 355 | |
Marian Balakowicz | 95d449a | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 356 | #ifdef CONFIG_LOGBUFFER |
| 357 | unsigned long logbuffer_base(void) |
| 358 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 359 | return CONFIG_SYS_SDRAM_BASE + get_effective_memsize() - LOGBUFF_LEN; |
Marian Balakowicz | 95d449a | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 360 | } |
| 361 | #endif |
| 362 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 363 | void board_init_f (ulong bootflag) |
| 364 | { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 365 | bd_t *bd; |
| 366 | ulong len, addr, addr_sp; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 367 | ulong *s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 368 | gd_t *id; |
| 369 | init_fnc_t **init_fnc_ptr; |
| 370 | #ifdef CONFIG_PRAM |
| 371 | int i; |
| 372 | ulong reg; |
| 373 | uchar tmp[64]; /* long enough for environment variables */ |
| 374 | #endif |
| 375 | |
| 376 | /* Pointer is writable since we allocated a register for it */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 377 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 378 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
| 379 | __asm__ __volatile__("": : :"memory"); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 380 | |
Detlev Zundel | 82826d5 | 2010-01-22 14:47:59 +0100 | [diff] [blame] | 381 | #if !defined(CONFIG_CPM2) && !defined(CONFIG_MPC512X) && \ |
| 382 | !defined(CONFIG_MPC83xx) && !defined(CONFIG_MPC85xx) && \ |
| 383 | !defined(CONFIG_MPC86xx) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 384 | /* Clear initial global data */ |
| 385 | memset ((void *) gd, 0, sizeof (gd_t)); |
| 386 | #endif |
| 387 | |
| 388 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 389 | if ((*init_fnc_ptr) () != 0) { |
| 390 | hang (); |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | /* |
| 395 | * Now that we have DRAM mapped and working, we can |
| 396 | * relocate the code and continue running from DRAM. |
| 397 | * |
| 398 | * Reserve memory at end of RAM for (top down in that order): |
Stefan Roese | 14f73ca | 2008-03-26 10:14:11 +0100 | [diff] [blame] | 399 | * - area that won't get touched by U-Boot and Linux (optional) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 400 | * - kernel log buffer |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 401 | * - protected RAM |
| 402 | * - LCD framebuffer |
| 403 | * - monitor code |
| 404 | * - board info struct |
| 405 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 406 | len = (ulong)&_end - CONFIG_SYS_MONITOR_BASE; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 407 | |
Stefan Roese | 14f73ca | 2008-03-26 10:14:11 +0100 | [diff] [blame] | 408 | /* |
| 409 | * Subtract specified amount of memory to hide so that it won't |
| 410 | * get "touched" at all by U-Boot. By fixing up gd->ram_size |
| 411 | * the Linux kernel should now get passed the now "corrected" |
| 412 | * memory size and won't touch it either. This should work |
| 413 | * for arch/ppc and arch/powerpc. Only Linux board ports in |
| 414 | * arch/powerpc with bootwrapper support, that recalculate the |
| 415 | * memory size from the SDRAM controller setup will have to |
| 416 | * get fixed. |
| 417 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 418 | gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; |
Stefan Roese | 14f73ca | 2008-03-26 10:14:11 +0100 | [diff] [blame] | 419 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 420 | addr = CONFIG_SYS_SDRAM_BASE + get_effective_memsize(); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 421 | |
Kumar Gala | fc39c2fd | 2009-03-31 17:58:13 -0500 | [diff] [blame] | 422 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) |
| 423 | /* |
| 424 | * We need to make sure the location we intend to put secondary core |
| 425 | * boot code is reserved and not used by any part of u-boot |
Wolfgang Denk | c0a14ae | 2009-04-05 00:27:57 +0200 | [diff] [blame] | 426 | */ |
Kumar Gala | fc39c2fd | 2009-03-31 17:58:13 -0500 | [diff] [blame] | 427 | if (addr > determine_mp_bootpg()) { |
| 428 | addr = determine_mp_bootpg(); |
| 429 | debug ("Reserving MP boot page to %08lx\n", addr); |
| 430 | } |
| 431 | #endif |
| 432 | |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 433 | #ifdef CONFIG_LOGBUFFER |
Yuri Tikhonov | 3d61018 | 2008-02-06 18:48:36 +0100 | [diff] [blame] | 434 | #ifndef CONFIG_ALT_LB_ADDR |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 435 | /* reserve kernel log buffer */ |
| 436 | addr -= (LOGBUFF_RESERVE); |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 437 | debug ("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, addr); |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 438 | #endif |
Yuri Tikhonov | 3d61018 | 2008-02-06 18:48:36 +0100 | [diff] [blame] | 439 | #endif |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 440 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 441 | #ifdef CONFIG_PRAM |
| 442 | /* |
| 443 | * reserve protected RAM |
| 444 | */ |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 445 | i = getenv_f("pram", (char *)tmp, sizeof (tmp)); |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 446 | reg = (i > 0) ? simple_strtoul ((const char *)tmp, NULL, 10) : CONFIG_PRAM; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 447 | addr -= (reg << 10); /* size is in kB */ |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 448 | debug ("Reserving %ldk for protected RAM at %08lx\n", reg, addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 449 | #endif /* CONFIG_PRAM */ |
| 450 | |
| 451 | /* round down to next 4 kB limit */ |
| 452 | addr &= ~(4096 - 1); |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 453 | debug ("Top of RAM usable for U-Boot at: %08lx\n", addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 454 | |
| 455 | #ifdef CONFIG_LCD |
| 456 | /* reserve memory for LCD display (always full pages) */ |
| 457 | addr = lcd_setmem (addr); |
| 458 | gd->fb_base = addr; |
| 459 | #endif /* CONFIG_LCD */ |
| 460 | |
| 461 | #if defined(CONFIG_VIDEO) && defined(CONFIG_8xx) |
| 462 | /* reserve memory for video display (always full pages) */ |
| 463 | addr = video_setmem (addr); |
| 464 | gd->fb_base = addr; |
| 465 | #endif /* CONFIG_VIDEO */ |
| 466 | |
| 467 | /* |
| 468 | * reserve memory for U-Boot code, data & bss |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 469 | * round down to next 4 kB limit |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 470 | */ |
| 471 | addr -= len; |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 472 | addr &= ~(4096 - 1); |
Wolfgang Denk | 7d31499 | 2005-10-05 00:00:54 +0200 | [diff] [blame] | 473 | #ifdef CONFIG_E500 |
| 474 | /* round down to next 64 kB limit so that IVPR stays aligned */ |
| 475 | addr &= ~(65536 - 1); |
| 476 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 477 | |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 478 | debug ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 479 | |
| 480 | /* |
| 481 | * reserve memory for malloc() arena |
| 482 | */ |
| 483 | addr_sp = addr - TOTAL_MALLOC_LEN; |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 484 | debug ("Reserving %dk for malloc() at: %08lx\n", |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 485 | TOTAL_MALLOC_LEN >> 10, addr_sp); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 486 | |
| 487 | /* |
| 488 | * (permanently) allocate a Board Info struct |
| 489 | * and a permanent copy of the "global" data |
| 490 | */ |
| 491 | addr_sp -= sizeof (bd_t); |
| 492 | bd = (bd_t *) addr_sp; |
| 493 | gd->bd = bd; |
Wolfgang Denk | b64f190 | 2008-07-14 15:06:35 +0200 | [diff] [blame] | 494 | debug ("Reserving %zu Bytes for Board Info at: %08lx\n", |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 495 | sizeof (bd_t), addr_sp); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 496 | addr_sp -= sizeof (gd_t); |
| 497 | id = (gd_t *) addr_sp; |
Wolfgang Denk | b64f190 | 2008-07-14 15:06:35 +0200 | [diff] [blame] | 498 | debug ("Reserving %zu Bytes for Global Data at: %08lx\n", |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 499 | sizeof (gd_t), addr_sp); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 500 | |
| 501 | /* |
| 502 | * Finally, we set up a new (bigger) stack. |
| 503 | * |
| 504 | * Leave some safety gap for SP, force alignment on 16 byte boundary |
| 505 | * Clear initial stack frame |
| 506 | */ |
| 507 | addr_sp -= 16; |
| 508 | addr_sp &= ~0xF; |
Wolfgang Denk | 7bc5ee0 | 2005-08-26 01:36:03 +0200 | [diff] [blame] | 509 | s = (ulong *)addr_sp; |
| 510 | *s-- = 0; |
| 511 | *s-- = 0; |
| 512 | addr_sp = (ulong)s; |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 513 | debug ("Stack Pointer at: %08lx\n", addr_sp); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 514 | |
| 515 | /* |
| 516 | * Save local variables to board info struct |
| 517 | */ |
| 518 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 519 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM memory */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 520 | bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */ |
| 521 | |
Wolfgang Denk | 3611665 | 2010-08-11 09:38:31 +0200 | [diff] [blame^] | 522 | #ifdef CONFIG_SYS_SRAM_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 523 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM memory */ |
| 524 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM memory */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 525 | #else |
Wolfgang Denk | 3611665 | 2010-08-11 09:38:31 +0200 | [diff] [blame^] | 526 | bd->bi_sramstart = 0; |
| 527 | bd->bi_sramsize = 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 528 | #endif |
| 529 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 530 | #if defined(CONFIG_8xx) || defined(CONFIG_8260) || defined(CONFIG_5xx) || \ |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 531 | defined(CONFIG_E500) || defined(CONFIG_MPC86xx) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 532 | bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 533 | #endif |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 534 | #if defined(CONFIG_MPC5xxx) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 535 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 536 | #endif |
Peter Tyser | 0f89860 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 537 | #if defined(CONFIG_MPC83xx) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 538 | bd->bi_immrbar = CONFIG_SYS_IMMR; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 539 | #endif |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 540 | #if defined(CONFIG_MPC8220) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 541 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 542 | bd->bi_inpfreq = gd->inp_clk; |
| 543 | bd->bi_pcifreq = gd->pci_clk; |
| 544 | bd->bi_vcofreq = gd->vco_clk; |
| 545 | bd->bi_pevfreq = gd->pev_clk; |
| 546 | bd->bi_flbfreq = gd->flb_clk; |
| 547 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 548 | /* store bootparam to sram (backward compatible), here? */ |
| 549 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 550 | u32 *sram = (u32 *)CONFIG_SYS_SRAM_BASE; |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 551 | *sram++ = gd->ram_size; |
| 552 | *sram++ = gd->bus_clk; |
| 553 | *sram++ = gd->inp_clk; |
| 554 | *sram++ = gd->cpu_clk; |
| 555 | *sram++ = gd->vco_clk; |
| 556 | *sram++ = gd->flb_clk; |
| 557 | *sram++ = 0xb8c3ba11; /* boot signature */ |
| 558 | } |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 559 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 560 | |
| 561 | bd->bi_bootflags = bootflag; /* boot / reboot flag (for LynxOS) */ |
| 562 | |
| 563 | WATCHDOG_RESET (); |
| 564 | bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */ |
| 565 | bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */ |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 566 | #if defined(CONFIG_CPM2) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 567 | bd->bi_cpmfreq = gd->cpm_clk; |
| 568 | bd->bi_brgfreq = gd->brg_clk; |
| 569 | bd->bi_sccfreq = gd->scc_clk; |
| 570 | bd->bi_vco = gd->vco_out; |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 571 | #endif /* CONFIG_CPM2 */ |
Grzegorz Bernacki | 281ff9a | 2008-01-08 17:16:15 +0100 | [diff] [blame] | 572 | #if defined(CONFIG_MPC512X) |
Grzegorz Bernacki | 5d49e0e | 2008-01-11 12:03:43 +0100 | [diff] [blame] | 573 | bd->bi_ipsfreq = gd->ips_clk; |
Grzegorz Bernacki | 281ff9a | 2008-01-08 17:16:15 +0100 | [diff] [blame] | 574 | #endif /* CONFIG_MPC512X */ |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 575 | #if defined(CONFIG_MPC5xxx) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 576 | bd->bi_ipbfreq = gd->ipb_clk; |
| 577 | bd->bi_pcifreq = gd->pci_clk; |
wdenk | cbd8a35 | 2004-02-24 02:00:03 +0000 | [diff] [blame] | 578 | #endif /* CONFIG_MPC5xxx */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 579 | bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ |
| 580 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 581 | #ifdef CONFIG_SYS_EXTBDINFO |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 582 | strncpy ((char *)bd->bi_s_version, "1.2", sizeof (bd->bi_s_version)); |
| 583 | strncpy ((char *)bd->bi_r_version, U_BOOT_VERSION, sizeof (bd->bi_r_version)); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 584 | |
| 585 | bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */ |
| 586 | bd->bi_plb_busfreq = gd->bus_clk; |
Stefan Roese | 343c48b | 2007-05-11 12:01:06 +0200 | [diff] [blame] | 587 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ |
| 588 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
| 589 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 590 | bd->bi_pci_busfreq = get_PCI_freq (); |
wdenk | 109c0e3 | 2004-03-23 21:43:07 +0000 | [diff] [blame] | 591 | bd->bi_opbfreq = get_OPB_freq (); |
Michal Simek | 9fea65a | 2008-06-24 09:54:09 +0200 | [diff] [blame] | 592 | #elif defined(CONFIG_XILINX_405) |
wdenk | 028ab6b | 2004-02-23 23:54:43 +0000 | [diff] [blame] | 593 | bd->bi_pci_busfreq = get_PCI_freq (); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 594 | #endif |
| 595 | #endif |
| 596 | |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 597 | debug ("New Stack Pointer is: %08lx\n", addr_sp); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 598 | |
| 599 | WATCHDOG_RESET (); |
| 600 | |
| 601 | #ifdef CONFIG_POST |
| 602 | post_bootmode_init(); |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 603 | post_run (NULL, POST_ROM | post_bootmode_get(0)); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 604 | #endif |
| 605 | |
| 606 | WATCHDOG_RESET(); |
| 607 | |
Richard Retanubun | 4b99327 | 2010-01-15 10:06:06 -0500 | [diff] [blame] | 608 | gd->relocaddr = addr; /* Record relocation address, useful for debug */ |
| 609 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 610 | memcpy (id, (void *)gd, sizeof (gd_t)); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 611 | |
| 612 | relocate_code (addr_sp, id, addr); |
| 613 | |
| 614 | /* NOTREACHED - relocate_code() does not return */ |
| 615 | } |
| 616 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 617 | /************************************************************************ |
| 618 | * |
| 619 | * This is the next part if the initialization sequence: we are now |
| 620 | * running from RAM and have a "normal" C environment, i. e. global |
| 621 | * data can be written, BSS has been cleared, the stack size in not |
| 622 | * that critical any more, etc. |
| 623 | * |
| 624 | ************************************************************************ |
| 625 | */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 626 | void board_init_r (gd_t *id, ulong dest_addr) |
| 627 | { |
Stefan Roese | ff7dc06 | 2009-02-23 16:52:36 +0100 | [diff] [blame] | 628 | char *s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 629 | bd_t *bd; |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 630 | ulong malloc_start; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 631 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 632 | #ifndef CONFIG_SYS_NO_FLASH |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 633 | ulong flash_size; |
| 634 | #endif |
| 635 | |
| 636 | gd = id; /* initialize RAM version of global data */ |
| 637 | bd = gd->bd; |
| 638 | |
| 639 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
Grant Likely | f82b3b6 | 2007-07-03 00:34:19 -0600 | [diff] [blame] | 640 | |
Peter Tyser | d4e8ada | 2009-08-21 23:05:21 -0500 | [diff] [blame] | 641 | /* The Malloc area is immediately below the monitor copy in DRAM */ |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 642 | malloc_start = dest_addr - TOTAL_MALLOC_LEN; |
Kumar Gala | 13d46ab | 2009-09-01 21:07:08 -0500 | [diff] [blame] | 643 | |
Peter Tyser | f947690 | 2009-12-15 12:10:47 -0600 | [diff] [blame] | 644 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
| 645 | /* |
| 646 | * The gd->cpu pointer is set to an address in flash before relocation. |
| 647 | * We need to update it to point to the same CPU entry in RAM. |
| 648 | */ |
| 649 | gd->cpu += dest_addr - CONFIG_SYS_MONITOR_BASE; |
| 650 | #endif |
| 651 | |
Marian Balakowicz | bb105f2 | 2006-06-30 15:27:09 +0200 | [diff] [blame] | 652 | #ifdef CONFIG_SERIAL_MULTI |
| 653 | serial_initialize(); |
| 654 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 655 | |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 656 | debug ("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 657 | |
| 658 | WATCHDOG_RESET (); |
| 659 | |
Becky Bruce | d025aa4 | 2008-10-31 17:14:39 -0500 | [diff] [blame] | 660 | /* |
| 661 | * Setup trap handlers |
| 662 | */ |
| 663 | trap_init (dest_addr); |
| 664 | |
Becky Bruce | c9315e6 | 2009-02-03 18:10:52 -0600 | [diff] [blame] | 665 | #ifdef CONFIG_ADDR_MAP |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 666 | init_addr_map(); |
| 667 | #endif |
| 668 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 669 | #if defined(CONFIG_BOARD_EARLY_INIT_R) |
| 670 | board_early_init_r (); |
| 671 | #endif |
| 672 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 673 | monitor_flash_len = (ulong)&__init_end - dest_addr; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 674 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 675 | WATCHDOG_RESET (); |
| 676 | |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 677 | #ifdef CONFIG_LOGBUFFER |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 678 | logbuff_init_ptrs (); |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 679 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 680 | #ifdef CONFIG_POST |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 681 | post_output_backlog (); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 682 | #endif |
| 683 | |
| 684 | WATCHDOG_RESET(); |
| 685 | |
Kim Phillips | 1a2e203 | 2010-04-20 19:37:54 -0500 | [diff] [blame] | 686 | #if defined(CONFIG_SYS_DELAYED_ICACHE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 687 | icache_enable (); /* it's time to enable the instruction cache */ |
| 688 | #endif |
| 689 | |
Wolfgang Denk | 9c67352 | 2009-07-26 23:28:02 +0200 | [diff] [blame] | 690 | #if defined(CONFIG_SYS_INIT_RAM_LOCK) && defined(CONFIG_E500) |
| 691 | unlock_ram_in_cache(); /* it's time to unlock D-cache in e500 */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 692 | #endif |
| 693 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 694 | #if defined(CONFIG_BAB7xx) || defined(CONFIG_CPC45) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 695 | /* |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 696 | * Do PCI configuration on BAB7xx and CPC45 _before_ the flash |
| 697 | * gets initialised, because we need the ISA resp. PCI_to_LOCAL bus |
| 698 | * bridge there. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 699 | */ |
| 700 | pci_init (); |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 701 | #endif |
| 702 | #if defined(CONFIG_BAB7xx) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 703 | /* |
| 704 | * Initialise the ISA bridge |
| 705 | */ |
| 706 | initialise_w83c553f (); |
| 707 | #endif |
| 708 | |
| 709 | asm ("sync ; isync"); |
| 710 | |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 711 | mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN); |
Stefan Roese | c790b04 | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 712 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 713 | #if !defined(CONFIG_SYS_NO_FLASH) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 714 | puts ("FLASH: "); |
| 715 | |
| 716 | if ((flash_size = flash_init ()) > 0) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 717 | # ifdef CONFIG_SYS_FLASH_CHECKSUM |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 718 | print_size (flash_size, ""); |
| 719 | /* |
| 720 | * Compute and print flash CRC if flashchecksum is set to 'y' |
| 721 | * |
| 722 | * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX |
| 723 | */ |
| 724 | s = getenv ("flashchecksum"); |
| 725 | if (s && (*s == 'y')) { |
Wolfgang Denk | 06c53be | 2008-07-10 13:16:09 +0200 | [diff] [blame] | 726 | printf (" CRC: %08X", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 727 | crc32 (0, (const unsigned char *) CONFIG_SYS_FLASH_BASE, flash_size) |
wdenk | 7e78036 | 2004-04-08 22:31:29 +0000 | [diff] [blame] | 728 | ); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 729 | } |
| 730 | putc ('\n'); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 731 | # else /* !CONFIG_SYS_FLASH_CHECKSUM */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 732 | print_size (flash_size, "\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 733 | # endif /* CONFIG_SYS_FLASH_CHECKSUM */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 734 | } else { |
| 735 | puts (failed); |
| 736 | hang (); |
| 737 | } |
| 738 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 739 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; /* update start of FLASH memory */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 740 | bd->bi_flashsize = flash_size; /* size of FLASH memory (final value) */ |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 741 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 742 | #if defined(CONFIG_SYS_UPDATE_FLASH_SIZE) |
Heiko Schocher | fa23044 | 2006-12-21 17:17:02 +0100 | [diff] [blame] | 743 | /* Make a update of the Memctrl. */ |
| 744 | update_flash_size (flash_size); |
| 745 | #endif |
| 746 | |
| 747 | |
wdenk | 7e78036 | 2004-04-08 22:31:29 +0000 | [diff] [blame] | 748 | # if defined(CONFIG_PCU_E) || defined(CONFIG_OXC) || defined(CONFIG_RMU) |
| 749 | /* flash mapped at end of memory map */ |
| 750 | bd->bi_flashoffset = TEXT_BASE + flash_size; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 751 | # elif CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 752 | bd->bi_flashoffset = monitor_flash_len; /* reserved area for startup monitor */ |
wdenk | 0cb61d7 | 2003-08-30 00:05:50 +0000 | [diff] [blame] | 753 | # else |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 754 | bd->bi_flashoffset = 0; |
wdenk | 0cb61d7 | 2003-08-30 00:05:50 +0000 | [diff] [blame] | 755 | # endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 756 | #else /* CONFIG_SYS_NO_FLASH */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 757 | |
| 758 | bd->bi_flashsize = 0; |
| 759 | bd->bi_flashstart = 0; |
| 760 | bd->bi_flashoffset = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 761 | #endif /* !CONFIG_SYS_NO_FLASH */ |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 762 | |
| 763 | WATCHDOG_RESET (); |
| 764 | |
| 765 | /* initialize higher level parts of CPU like time base and timers */ |
| 766 | cpu_init_r (); |
| 767 | |
| 768 | WATCHDOG_RESET (); |
| 769 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 770 | #ifdef CONFIG_SPI |
Jean-Christophe PLAGNIOL-VILLARD | bb1f8b4 | 2008-09-05 09:19:30 +0200 | [diff] [blame] | 771 | # if !defined(CONFIG_ENV_IS_IN_EEPROM) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 772 | spi_init_f (); |
| 773 | # endif |
| 774 | spi_init_r (); |
| 775 | #endif |
| 776 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 777 | #if defined(CONFIG_CMD_NAND) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 778 | WATCHDOG_RESET (); |
| 779 | puts ("NAND: "); |
| 780 | nand_init(); /* go init the NAND */ |
| 781 | #endif |
| 782 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 783 | #ifdef CONFIG_GENERIC_MMC |
| 784 | /* |
| 785 | * MMC initialization is called before relocating env. |
| 786 | * Thus It is required that operations like pin multiplexer |
| 787 | * be put in board_init. |
| 788 | */ |
| 789 | WATCHDOG_RESET (); |
| 790 | puts ("MMC: "); |
| 791 | mmc_initialize (bd); |
| 792 | #endif |
| 793 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 794 | /* relocate environment function pointers etc. */ |
| 795 | env_relocate (); |
| 796 | |
| 797 | /* |
| 798 | * Fill in missing fields of bd_info. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 799 | * We do this here, where we have "normal" access to the |
| 800 | * environment; we used to do this still running from ROM, |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 801 | * where had to use getenv_f(), which can be pretty slow when |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 802 | * the environment is in EEPROM. |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 803 | */ |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 804 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 805 | #if defined(CONFIG_SYS_EXTBDINFO) |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 806 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) |
| 807 | #if defined(CONFIG_I2CFAST) |
| 808 | /* |
| 809 | * set bi_iic_fast for linux taking environment variable |
| 810 | * "i2cfast" into account |
| 811 | */ |
| 812 | { |
| 813 | char *s = getenv ("i2cfast"); |
| 814 | if (s && ((*s == 'y') || (*s == 'Y'))) { |
| 815 | bd->bi_iic_fast[0] = 1; |
| 816 | bd->bi_iic_fast[1] = 1; |
| 817 | } else { |
| 818 | bd->bi_iic_fast[0] = 0; |
| 819 | bd->bi_iic_fast[1] = 0; |
| 820 | } |
| 821 | } |
| 822 | #else |
| 823 | bd->bi_iic_fast[0] = 0; |
| 824 | bd->bi_iic_fast[1] = 0; |
| 825 | #endif /* CONFIG_I2CFAST */ |
| 826 | #endif /* CONFIG_405GP, CONFIG_405EP */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 827 | #endif /* CONFIG_SYS_EXTBDINFO */ |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 828 | |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 829 | #if defined(CONFIG_SC3) |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 830 | sc3_read_eeprom(); |
| 831 | #endif |
Haiying Wang | d59feff | 2008-01-16 17:12:12 -0500 | [diff] [blame] | 832 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 833 | #if defined (CONFIG_ID_EEPROM) || defined (CONFIG_SYS_I2C_MAC_OFFSET) |
Haiying Wang | d59feff | 2008-01-16 17:12:12 -0500 | [diff] [blame] | 834 | mac_read_from_eeprom(); |
| 835 | #endif |
| 836 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 837 | #ifdef CONFIG_HERMES |
| 838 | if ((gd->board_type >> 16) == 2) |
| 839 | bd->bi_ethspeed = gd->board_type & 0xFFFF; |
| 840 | else |
| 841 | bd->bi_ethspeed = 0xFFFF; |
| 842 | #endif |
| 843 | |
Stefan Roese | 02a301c | 2009-02-25 12:11:15 +0100 | [diff] [blame] | 844 | #ifdef CONFIG_CMD_NET |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 845 | /* kept around for legacy kernels only ... ignore the next section */ |
| 846 | eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr); |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 847 | #ifdef CONFIG_HAS_ETH1 |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 848 | eth_getenv_enetaddr("eth1addr", bd->bi_enet1addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 849 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 850 | #ifdef CONFIG_HAS_ETH2 |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 851 | eth_getenv_enetaddr("eth2addr", bd->bi_enet2addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 852 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 853 | #ifdef CONFIG_HAS_ETH3 |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 854 | eth_getenv_enetaddr("eth3addr", bd->bi_enet3addr); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 855 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 856 | #ifdef CONFIG_HAS_ETH4 |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 857 | eth_getenv_enetaddr("eth4addr", bd->bi_enet4addr); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 858 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 859 | #ifdef CONFIG_HAS_ETH5 |
Mike Frysinger | eb85aa5 | 2009-02-11 20:07:19 -0500 | [diff] [blame] | 860 | eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 861 | #endif |
Stefan Roese | 02a301c | 2009-02-25 12:11:15 +0100 | [diff] [blame] | 862 | #endif /* CONFIG_CMD_NET */ |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 863 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 864 | /* IP Address */ |
| 865 | bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); |
| 866 | |
| 867 | WATCHDOG_RESET (); |
| 868 | |
wdenk | 979bdbc | 2004-06-01 21:08:17 +0000 | [diff] [blame] | 869 | #if defined(CONFIG_PCI) && !defined(CONFIG_BAB7xx) && !defined(CONFIG_CPC45) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 870 | /* |
| 871 | * Do pci configuration |
| 872 | */ |
| 873 | pci_init (); |
| 874 | #endif |
| 875 | |
| 876 | /** leave this here (after malloc(), environment and PCI are working) **/ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 877 | /* Initialize stdio devices */ |
| 878 | stdio_init (); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 879 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 880 | /* Initialize the jump table for applications */ |
| 881 | jumptable_init (); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 882 | |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 883 | #if defined(CONFIG_API) |
| 884 | /* Initialize API */ |
| 885 | api_init (); |
| 886 | #endif |
| 887 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 888 | /* Initialize the console (after the relocation and devices init) */ |
| 889 | console_init_r (); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 890 | |
Peter Tyser | 3a8f28d | 2009-09-16 22:03:07 -0500 | [diff] [blame] | 891 | #if defined(CONFIG_MISC_INIT_R) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 892 | /* miscellaneous platform dependent initialisations */ |
| 893 | misc_init_r (); |
| 894 | #endif |
| 895 | |
| 896 | #ifdef CONFIG_HERMES |
| 897 | if (bd->bi_ethspeed != 0xFFFF) |
| 898 | hermes_start_lxt980 ((int) bd->bi_ethspeed); |
| 899 | #endif |
| 900 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 901 | #if defined(CONFIG_CMD_KGDB) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 902 | WATCHDOG_RESET (); |
| 903 | puts ("KGDB: "); |
| 904 | kgdb_init (); |
| 905 | #endif |
| 906 | |
wdenk | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 907 | debug ("U-Boot relocated to %08lx\n", dest_addr); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * Enable Interrupts |
| 911 | */ |
| 912 | interrupt_init (); |
| 913 | |
| 914 | /* Must happen after interrupts are initialized since |
| 915 | * an irq handler gets installed |
| 916 | */ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 917 | #ifdef CONFIG_SERIAL_SOFTWARE_FIFO |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 918 | serial_buffered_init(); |
| 919 | #endif |
| 920 | |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 921 | #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 922 | status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING); |
| 923 | #endif |
| 924 | |
| 925 | udelay (20); |
| 926 | |
| 927 | set_timer (0); |
| 928 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 929 | /* Initialize from environment */ |
| 930 | if ((s = getenv ("loadaddr")) != NULL) { |
| 931 | load_addr = simple_strtoul (s, NULL, 16); |
| 932 | } |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 933 | #if defined(CONFIG_CMD_NET) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 934 | if ((s = getenv ("bootfile")) != NULL) { |
| 935 | copy_filename (BootFile, s, sizeof (BootFile)); |
| 936 | } |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 937 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 938 | |
| 939 | WATCHDOG_RESET (); |
| 940 | |
Heiko Schocher | 9c2d63e | 2009-02-25 12:28:32 +0100 | [diff] [blame] | 941 | #if defined(CONFIG_DTT) /* Digital Thermometers and Thermostats */ |
| 942 | dtt_init (); |
| 943 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 944 | #if defined(CONFIG_CMD_SCSI) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 945 | WATCHDOG_RESET (); |
| 946 | puts ("SCSI: "); |
| 947 | scsi_init (); |
| 948 | #endif |
| 949 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 950 | #if defined(CONFIG_CMD_DOC) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 951 | WATCHDOG_RESET (); |
| 952 | puts ("DOC: "); |
| 953 | doc_init (); |
| 954 | #endif |
| 955 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 956 | #ifdef CONFIG_BITBANGMII |
| 957 | bb_miiphy_init(); |
| 958 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 959 | #if defined(CONFIG_CMD_NET) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 960 | #if defined(CONFIG_NET_MULTI) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 961 | WATCHDOG_RESET (); |
| 962 | puts ("Net: "); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 963 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 964 | eth_initialize (bd); |
| 965 | #endif |
| 966 | |
Peter Tyser | 004eca0 | 2009-09-16 22:03:08 -0500 | [diff] [blame] | 967 | #if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 968 | WATCHDOG_RESET (); |
| 969 | debug ("Reset Ethernet PHY\n"); |
| 970 | reset_phy (); |
| 971 | #endif |
| 972 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 973 | #ifdef CONFIG_POST |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 974 | post_run (NULL, POST_RAM | post_bootmode_get(0)); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 975 | #endif |
| 976 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 977 | #if defined(CONFIG_CMD_PCMCIA) \ |
| 978 | && !defined(CONFIG_CMD_IDE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 979 | WATCHDOG_RESET (); |
| 980 | puts ("PCMCIA:"); |
| 981 | pcmcia_init (); |
| 982 | #endif |
| 983 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 984 | #if defined(CONFIG_CMD_IDE) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 985 | WATCHDOG_RESET (); |
| 986 | # ifdef CONFIG_IDE_8xx_PCCARD |
| 987 | puts ("PCMCIA:"); |
| 988 | # else |
| 989 | puts ("IDE: "); |
| 990 | #endif |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 991 | #if defined(CONFIG_START_IDE) |
| 992 | if (board_start_ide()) |
| 993 | ide_init (); |
| 994 | #else |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 995 | ide_init (); |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 996 | #endif |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 997 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 998 | |
| 999 | #ifdef CONFIG_LAST_STAGE_INIT |
| 1000 | WATCHDOG_RESET (); |
| 1001 | /* |
| 1002 | * Some parts can be only initialized if all others (like |
| 1003 | * Interrupts) are up and running (i.e. the PC-style ISA |
| 1004 | * keyboard). |
| 1005 | */ |
| 1006 | last_stage_init (); |
| 1007 | #endif |
| 1008 | |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 1009 | #if defined(CONFIG_CMD_BEDBUG) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1010 | WATCHDOG_RESET (); |
| 1011 | bedbug_init (); |
| 1012 | #endif |
| 1013 | |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1014 | #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1015 | /* |
| 1016 | * Export available size of memory for Linux, |
| 1017 | * taking into account the protected RAM at top of memory |
| 1018 | */ |
| 1019 | { |
| 1020 | ulong pram; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1021 | uchar memsz[32]; |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1022 | #ifdef CONFIG_PRAM |
| 1023 | char *s; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1024 | |
| 1025 | if ((s = getenv ("pram")) != NULL) { |
| 1026 | pram = simple_strtoul (s, NULL, 10); |
| 1027 | } else { |
| 1028 | pram = CONFIG_PRAM; |
| 1029 | } |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1030 | #else |
| 1031 | pram=0; |
| 1032 | #endif |
| 1033 | #ifdef CONFIG_LOGBUFFER |
Yuri Tikhonov | 3d61018 | 2008-02-06 18:48:36 +0100 | [diff] [blame] | 1034 | #ifndef CONFIG_ALT_LB_ADDR |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1035 | /* Also take the logbuffer into account (pram is in kB) */ |
| 1036 | pram += (LOGBUFF_LEN+LOGBUFF_OVERHEAD)/1024; |
| 1037 | #endif |
Yuri Tikhonov | 3d61018 | 2008-02-06 18:48:36 +0100 | [diff] [blame] | 1038 | #endif |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 1039 | sprintf ((char *)memsz, "%ldk", (bd->bi_memsize / 1024) - pram); |
| 1040 | setenv ("mem", (char *)memsz); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1041 | } |
| 1042 | #endif |
| 1043 | |
wdenk | 1c43771 | 2004-01-16 00:30:56 +0000 | [diff] [blame] | 1044 | #ifdef CONFIG_PS2KBD |
| 1045 | puts ("PS/2: "); |
| 1046 | kbd_init(); |
| 1047 | #endif |
| 1048 | |
wdenk | 4532cb6 | 2003-04-27 22:52:51 +0000 | [diff] [blame] | 1049 | #ifdef CONFIG_MODEM_SUPPORT |
| 1050 | { |
| 1051 | extern int do_mdm_init; |
| 1052 | do_mdm_init = gd->do_mdm_init; |
| 1053 | } |
| 1054 | #endif |
| 1055 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1056 | /* Initialization complete - start the monitor */ |
| 1057 | |
| 1058 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 1059 | for (;;) { |
| 1060 | WATCHDOG_RESET (); |
| 1061 | main_loop (); |
| 1062 | } |
| 1063 | |
| 1064 | /* NOTREACHED - no way out of command loop except booting */ |
| 1065 | } |
| 1066 | |
| 1067 | void hang (void) |
| 1068 | { |
| 1069 | puts ("### ERROR ### Please RESET the board ###\n"); |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 1070 | show_boot_progress(-30); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1071 | for (;;); |
| 1072 | } |
| 1073 | |
wdenk | 4532cb6 | 2003-04-27 22:52:51 +0000 | [diff] [blame] | 1074 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1075 | #if 0 /* We could use plain global data, but the resulting code is bigger */ |
| 1076 | /* |
| 1077 | * Pointer to initial global data area |
| 1078 | * |
| 1079 | * Here we initialize it. |
| 1080 | */ |
| 1081 | #undef XTRN_DECLARE_GLOBAL_DATA_PTR |
| 1082 | #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1083 | DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1084 | #endif /* 0 */ |
| 1085 | |
| 1086 | /************************************************************************/ |