wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 2 | * (C) Copyright 2002-2006 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * (C) Copyright 2002 |
| 6 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 7 | * Marius Groeger <mgroeger@sysgo.de> |
| 8 | * |
| 9 | * See file CREDITS for list of people who contributed to this |
| 10 | * project. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 25 | * MA 02111-1307 USA |
| 26 | */ |
| 27 | |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 28 | /* |
| 29 | * To match the U-Boot user interface on ARM platforms to the U-Boot |
| 30 | * standard (as on PPC platforms), some messages with debug character |
| 31 | * are removed from the default U-Boot build. |
| 32 | * |
| 33 | * Define DEBUG here if you want additional info as shown below |
| 34 | * printed upon startup: |
| 35 | * |
| 36 | * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274 |
| 37 | * IRQ Stack: 00ebff7c |
| 38 | * FIQ Stack: 00ebef7c |
| 39 | */ |
| 40 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 41 | #include <common.h> |
| 42 | #include <command.h> |
Simon Glass | 06fd853 | 2012-11-30 13:01:17 +0000 | [diff] [blame] | 43 | #include <environment.h> |
wdenk | 3595ac4 | 2003-06-22 17:18:28 +0000 | [diff] [blame] | 44 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 45 | #include <stdio_dev.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 46 | #include <version.h> |
| 47 | #include <net.h> |
Marcel Ziswiler | b71190f | 2008-05-01 09:05:26 +0200 | [diff] [blame] | 48 | #include <serial.h> |
Scott Wood | d6ac2ed | 2008-05-22 10:49:46 -0500 | [diff] [blame] | 49 | #include <nand.h> |
| 50 | #include <onenand_uboot.h> |
Ilya Yanok | 379e9fc | 2009-06-08 04:12:50 +0400 | [diff] [blame] | 51 | #include <mmc.h> |
Simon Glass | f5437ad | 2011-10-24 19:15:33 +0000 | [diff] [blame] | 52 | #include <libfdt.h> |
| 53 | #include <fdtdec.h> |
Valentin Longchamp | ea3681a | 2011-09-02 04:59:03 +0000 | [diff] [blame] | 54 | #include <post.h> |
| 55 | #include <logbuff.h> |
Simon Glass | e103b7a | 2013-03-05 14:39:38 +0000 | [diff] [blame] | 56 | #include <asm/sections.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 57 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 58 | #ifdef CONFIG_BITBANGMII |
| 59 | #include <miiphy.h> |
| 60 | #endif |
| 61 | |
Markus Klotzbücher | b2b4346 | 2006-02-10 11:25:41 +0100 | [diff] [blame] | 62 | DECLARE_GLOBAL_DATA_PTR; |
| 63 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 64 | ulong monitor_flash_len; |
| 65 | |
wdenk | 2abbe07 | 2003-06-16 23:50:08 +0000 | [diff] [blame] | 66 | #ifdef CONFIG_HAS_DATAFLASH |
| 67 | extern int AT91F_DataflashInit(void); |
| 68 | extern void dataflash_print_info(void); |
| 69 | #endif |
| 70 | |
Hebbar | f7ad79b | 2007-12-18 16:00:54 -0800 | [diff] [blame] | 71 | #if defined(CONFIG_HARD_I2C) || \ |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 72 | defined(CONFIG_SYS_I2C) |
Hebbar | f7ad79b | 2007-12-18 16:00:54 -0800 | [diff] [blame] | 73 | #include <i2c.h> |
| 74 | #endif |
| 75 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 76 | /************************************************************************ |
Peter Pearse | 9f5c3d3 | 2007-09-04 16:18:38 +0100 | [diff] [blame] | 77 | * Coloured LED functionality |
| 78 | ************************************************************************ |
| 79 | * May be supplied by boards if desired |
| 80 | */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 81 | inline void __coloured_LED_init(void) {} |
| 82 | void coloured_LED_init(void) |
| 83 | __attribute__((weak, alias("__coloured_LED_init"))); |
Jason Kridner | 2d3be7c | 2011-09-04 14:40:16 -0400 | [diff] [blame] | 84 | inline void __red_led_on(void) {} |
| 85 | void red_led_on(void) __attribute__((weak, alias("__red_led_on"))); |
| 86 | inline void __red_led_off(void) {} |
| 87 | void red_led_off(void) __attribute__((weak, alias("__red_led_off"))); |
| 88 | inline void __green_led_on(void) {} |
| 89 | void green_led_on(void) __attribute__((weak, alias("__green_led_on"))); |
| 90 | inline void __green_led_off(void) {} |
| 91 | void green_led_off(void) __attribute__((weak, alias("__green_led_off"))); |
| 92 | inline void __yellow_led_on(void) {} |
| 93 | void yellow_led_on(void) __attribute__((weak, alias("__yellow_led_on"))); |
| 94 | inline void __yellow_led_off(void) {} |
| 95 | void yellow_led_off(void) __attribute__((weak, alias("__yellow_led_off"))); |
| 96 | inline void __blue_led_on(void) {} |
| 97 | void blue_led_on(void) __attribute__((weak, alias("__blue_led_on"))); |
| 98 | inline void __blue_led_off(void) {} |
| 99 | void blue_led_off(void) __attribute__((weak, alias("__blue_led_off"))); |
Peter Pearse | 9f5c3d3 | 2007-09-04 16:18:38 +0100 | [diff] [blame] | 100 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 101 | /* |
| 102 | ************************************************************************ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 103 | * Init Utilities * |
| 104 | ************************************************************************ |
| 105 | * Some of this code should be moved into the core functions, |
| 106 | * or dropped completely, |
| 107 | * but let's get it working (again) first... |
| 108 | */ |
| 109 | |
Jean-Christophe PLAGNIOL-VILLARD | 4f57289 | 2009-02-22 15:49:28 +0100 | [diff] [blame] | 110 | #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE) |
| 111 | #define CONFIG_BAUDRATE 115200 |
| 112 | #endif |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 113 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 114 | static int init_baudrate(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 115 | { |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 116 | gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE); |
| 117 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 120 | static int display_banner(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 121 | { |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 122 | printf("\n\n%s\n\n", version_string); |
| 123 | debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n", |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 124 | _TEXT_BASE, |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 125 | _bss_start_ofs + _TEXT_BASE, _bss_end_ofs + _TEXT_BASE); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 126 | #ifdef CONFIG_MODEM_SUPPORT |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 127 | debug("Modem Support enabled\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 128 | #endif |
| 129 | #ifdef CONFIG_USE_IRQ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 130 | debug("IRQ Stack: %08lx\n", IRQ_STACK_START); |
| 131 | debug("FIQ Stack: %08lx\n", FIQ_STACK_START); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 132 | #endif |
wdenk | f72da34 | 2003-10-10 10:05:42 +0000 | [diff] [blame] | 133 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 134 | return (0); |
| 135 | } |
| 136 | |
| 137 | /* |
| 138 | * WARNING: this code looks "cleaner" than the PowerPC version, but |
| 139 | * has the disadvantage that you either get nothing, or everything. |
| 140 | * On PowerPC, you might see "DRAM: " before the system hangs - which |
| 141 | * gives a simple yet clear indication which part of the |
| 142 | * initialization if failing. |
| 143 | */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 144 | static int display_dram_config(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 145 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 146 | int i; |
| 147 | |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 148 | #ifdef DEBUG |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 149 | puts("RAM Configuration:\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 150 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 151 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 152 | printf("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start); |
| 153 | print_size(gd->bd->bi_dram[i].size, "\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 154 | } |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 155 | #else |
| 156 | ulong size = 0; |
| 157 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 158 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 159 | size += gd->bd->bi_dram[i].size; |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 160 | |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 161 | puts("DRAM: "); |
| 162 | print_size(size, "\n"); |
| 163 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 164 | |
| 165 | return (0); |
| 166 | } |
| 167 | |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame^] | 168 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 169 | static int init_func_i2c(void) |
Hebbar | f7ad79b | 2007-12-18 16:00:54 -0800 | [diff] [blame] | 170 | { |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 171 | puts("I2C: "); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 172 | #ifdef CONFIG_SYS_I2C |
| 173 | i2c_init_all(); |
| 174 | #else |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 175 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 176 | #endif |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 177 | puts("ready\n"); |
Hebbar | f7ad79b | 2007-12-18 16:00:54 -0800 | [diff] [blame] | 178 | return (0); |
| 179 | } |
| 180 | #endif |
| 181 | |
Jean-Christophe PLAGNIOL-VILLARD | f90c802 | 2009-01-31 09:04:58 +0100 | [diff] [blame] | 182 | #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI) |
| 183 | #include <pci.h> |
| 184 | static int arm_pci_init(void) |
| 185 | { |
| 186 | pci_init(); |
| 187 | return 0; |
| 188 | } |
| 189 | #endif /* CONFIG_CMD_PCI || CONFIG_PCI */ |
| 190 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 191 | /* |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 192 | * Breathe some life into the board... |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 193 | * |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 194 | * Initialize a serial port as console, and carry out some hardware |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 195 | * tests. |
| 196 | * |
| 197 | * The first part of initialization is running from Flash memory; |
| 198 | * its main purpose is to initialize the RAM so that we |
| 199 | * can relocate the monitor code to RAM. |
| 200 | */ |
| 201 | |
| 202 | /* |
| 203 | * All attempts to come up with a "common" initialization sequence |
| 204 | * that works for all boards and architectures failed: some of the |
| 205 | * requirements are just _too_ different. To get rid of the resulting |
wdenk | f6e20fc | 2004-02-08 19:38:38 +0000 | [diff] [blame] | 206 | * mess of board dependent #ifdef'ed code we now make the whole |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 207 | * initialization sequence configurable to the user. |
| 208 | * |
| 209 | * The requirements for any new initalization function is simple: it |
| 210 | * receives a pointer to the "global data" structure as it's only |
| 211 | * argument, and returns an integer return code, where 0 means |
| 212 | * "continue" and != 0 means "fatal error, hang the system". |
| 213 | */ |
| 214 | typedef int (init_fnc_t) (void); |
| 215 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 216 | int print_cpuinfo(void); |
Wolfgang Denk | 57cac1f | 2006-01-29 19:12:41 +0100 | [diff] [blame] | 217 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 218 | void __dram_init_banksize(void) |
| 219 | { |
| 220 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 221 | gd->bd->bi_dram[0].size = gd->ram_size; |
| 222 | } |
| 223 | void dram_init_banksize(void) |
| 224 | __attribute__((weak, alias("__dram_init_banksize"))); |
| 225 | |
Fabio Estevam | a21c651 | 2012-03-01 04:02:38 +0000 | [diff] [blame] | 226 | int __arch_cpu_init(void) |
| 227 | { |
| 228 | return 0; |
| 229 | } |
| 230 | int arch_cpu_init(void) |
| 231 | __attribute__((weak, alias("__arch_cpu_init"))); |
| 232 | |
Łukasz Majewski | 2ffb4be | 2012-11-13 03:21:56 +0000 | [diff] [blame] | 233 | int __power_init_board(void) |
| 234 | { |
| 235 | return 0; |
| 236 | } |
| 237 | int power_init_board(void) |
| 238 | __attribute__((weak, alias("__power_init_board"))); |
| 239 | |
Simon Glass | 2f8d8d6 | 2012-11-30 13:01:22 +0000 | [diff] [blame] | 240 | /* Record the board_init_f() bootstage (after arch_cpu_init()) */ |
| 241 | static int mark_bootstage(void) |
| 242 | { |
| 243 | bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f"); |
| 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 248 | init_fnc_t *init_sequence[] = { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 249 | arch_cpu_init, /* basic arch cpu dependent setup */ |
Simon Glass | 2f8d8d6 | 2012-11-30 13:01:22 +0000 | [diff] [blame] | 250 | mark_bootstage, |
Simon Glass | f5437ad | 2011-10-24 19:15:33 +0000 | [diff] [blame] | 251 | #ifdef CONFIG_OF_CONTROL |
| 252 | fdtdec_check_fdt, |
| 253 | #endif |
Simon Glass | eae78c3 | 2012-11-30 13:01:16 +0000 | [diff] [blame] | 254 | #if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 255 | board_early_init_f, |
| 256 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 257 | timer_init, /* initialize timer */ |
Markus Hubig | e23e5ee | 2012-08-16 08:22:08 +0000 | [diff] [blame] | 258 | #ifdef CONFIG_BOARD_POSTCLK_INIT |
| 259 | board_postclk_init, |
| 260 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 261 | #ifdef CONFIG_FSL_ESDHC |
| 262 | get_clocks, |
| 263 | #endif |
| 264 | env_init, /* initialize environment */ |
| 265 | init_baudrate, /* initialze baudrate settings */ |
| 266 | serial_init, /* serial communications setup */ |
| 267 | console_init_f, /* stage 1 init of console */ |
| 268 | display_banner, /* say that we are here */ |
| 269 | #if defined(CONFIG_DISPLAY_CPUINFO) |
| 270 | print_cpuinfo, /* display cpu info (and speed) */ |
| 271 | #endif |
| 272 | #if defined(CONFIG_DISPLAY_BOARDINFO) |
| 273 | checkboard, /* display board info */ |
| 274 | #endif |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame^] | 275 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 276 | init_func_i2c, |
| 277 | #endif |
| 278 | dram_init, /* configure available RAM banks */ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 279 | NULL, |
| 280 | }; |
| 281 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 282 | void board_init_f(ulong bootflag) |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 283 | { |
| 284 | bd_t *bd; |
| 285 | init_fnc_t **init_fnc_ptr; |
| 286 | gd_t *id; |
| 287 | ulong addr, addr_sp; |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 288 | #ifdef CONFIG_PRAM |
| 289 | ulong reg; |
| 290 | #endif |
Simon Glass | 39826f0 | 2012-09-27 15:41:55 +0000 | [diff] [blame] | 291 | void *new_fdt = NULL; |
| 292 | size_t fdt_size = 0; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 293 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 294 | memset((void *)gd, 0, sizeof(gd_t)); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 295 | |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 296 | gd->mon_len = _bss_end_ofs; |
Simon Glass | f5437ad | 2011-10-24 19:15:33 +0000 | [diff] [blame] | 297 | #ifdef CONFIG_OF_EMBED |
| 298 | /* Get a pointer to the FDT */ |
| 299 | gd->fdt_blob = _binary_dt_dtb_start; |
| 300 | #elif defined CONFIG_OF_SEPARATE |
| 301 | /* FDT is at end of image */ |
| 302 | gd->fdt_blob = (void *)(_end_ofs + _TEXT_BASE); |
| 303 | #endif |
Simon Glass | eea63e0 | 2011-10-24 19:15:34 +0000 | [diff] [blame] | 304 | /* Allow the early environment to override the fdt address */ |
| 305 | gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16, |
| 306 | (uintptr_t)gd->fdt_blob); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 307 | |
| 308 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 309 | if ((*init_fnc_ptr)() != 0) { |
| 310 | hang (); |
| 311 | } |
| 312 | } |
| 313 | |
Simon Glass | 2866903 | 2012-03-28 10:08:25 +0000 | [diff] [blame] | 314 | #ifdef CONFIG_OF_CONTROL |
| 315 | /* For now, put this check after the console is ready */ |
| 316 | if (fdtdec_prepare_fdt()) { |
| 317 | panic("** CONFIG_OF_CONTROL defined but no FDT - please see " |
| 318 | "doc/README.fdt-control"); |
| 319 | } |
| 320 | #endif |
| 321 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 322 | debug("monitor len: %08lX\n", gd->mon_len); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 323 | /* |
| 324 | * Ram is setup, size stored in gd !! |
| 325 | */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 326 | debug("ramsize: %08lX\n", gd->ram_size); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 327 | #if defined(CONFIG_SYS_MEM_TOP_HIDE) |
| 328 | /* |
| 329 | * Subtract specified amount of memory to hide so that it won't |
| 330 | * get "touched" at all by U-Boot. By fixing up gd->ram_size |
| 331 | * the Linux kernel should now get passed the now "corrected" |
| 332 | * memory size and won't touch it either. This should work |
| 333 | * for arch/ppc and arch/powerpc. Only Linux board ports in |
| 334 | * arch/powerpc with bootwrapper support, that recalculate the |
| 335 | * memory size from the SDRAM controller setup will have to |
| 336 | * get fixed. |
| 337 | */ |
| 338 | gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; |
| 339 | #endif |
| 340 | |
| 341 | addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size; |
| 342 | |
| 343 | #ifdef CONFIG_LOGBUFFER |
| 344 | #ifndef CONFIG_ALT_LB_ADDR |
| 345 | /* reserve kernel log buffer */ |
| 346 | addr -= (LOGBUFF_RESERVE); |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 347 | debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, |
| 348 | addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 349 | #endif |
| 350 | #endif |
| 351 | |
| 352 | #ifdef CONFIG_PRAM |
| 353 | /* |
| 354 | * reserve protected RAM |
| 355 | */ |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 356 | reg = getenv_ulong("pram", 10, CONFIG_PRAM); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 357 | addr -= (reg << 10); /* size is in kB */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 358 | debug("Reserving %ldk for protected RAM at %08lx\n", reg, addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 359 | #endif /* CONFIG_PRAM */ |
| 360 | |
Aneesh V | e47f2db | 2011-06-16 23:30:48 +0000 | [diff] [blame] | 361 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 362 | /* reserve TLB table */ |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 363 | gd->arch.tlb_size = 4096 * 4; |
| 364 | addr -= gd->arch.tlb_size; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 365 | |
| 366 | /* round down to next 64 kB limit */ |
| 367 | addr &= ~(0x10000 - 1); |
| 368 | |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 369 | gd->arch.tlb_addr = addr; |
| 370 | debug("TLB table from %08lx to %08lx\n", addr, addr + gd->arch.tlb_size); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 371 | #endif |
| 372 | |
| 373 | /* round down to next 4 kB limit */ |
| 374 | addr &= ~(4096 - 1); |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 375 | debug("Top of RAM usable for U-Boot at: %08lx\n", addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 376 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 377 | #ifdef CONFIG_LCD |
Minkyu Kang | d32a1a4 | 2011-04-24 22:22:34 +0000 | [diff] [blame] | 378 | #ifdef CONFIG_FB_ADDR |
| 379 | gd->fb_base = CONFIG_FB_ADDR; |
| 380 | #else |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 381 | /* reserve memory for LCD display (always full pages) */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 382 | addr = lcd_setmem(addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 383 | gd->fb_base = addr; |
Minkyu Kang | d32a1a4 | 2011-04-24 22:22:34 +0000 | [diff] [blame] | 384 | #endif /* CONFIG_FB_ADDR */ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 385 | #endif /* CONFIG_LCD */ |
| 386 | |
| 387 | /* |
| 388 | * reserve memory for U-Boot code, data & bss |
| 389 | * round down to next 4 kB limit |
| 390 | */ |
| 391 | addr -= gd->mon_len; |
| 392 | addr &= ~(4096 - 1); |
| 393 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 394 | debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 395 | |
Aneesh V | 401bb30 | 2011-07-13 05:11:07 +0000 | [diff] [blame] | 396 | #ifndef CONFIG_SPL_BUILD |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 397 | /* |
| 398 | * reserve memory for malloc() arena |
| 399 | */ |
| 400 | addr_sp = addr - TOTAL_MALLOC_LEN; |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 401 | debug("Reserving %dk for malloc() at: %08lx\n", |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 402 | TOTAL_MALLOC_LEN >> 10, addr_sp); |
| 403 | /* |
| 404 | * (permanently) allocate a Board Info struct |
| 405 | * and a permanent copy of the "global" data |
| 406 | */ |
| 407 | addr_sp -= sizeof (bd_t); |
| 408 | bd = (bd_t *) addr_sp; |
| 409 | gd->bd = bd; |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 410 | debug("Reserving %zu Bytes for Board Info at: %08lx\n", |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 411 | sizeof (bd_t), addr_sp); |
Igor Grinberg | 15c2e2c | 2011-08-16 23:48:23 +0000 | [diff] [blame] | 412 | |
| 413 | #ifdef CONFIG_MACH_TYPE |
| 414 | gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */ |
| 415 | #endif |
| 416 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 417 | addr_sp -= sizeof (gd_t); |
| 418 | id = (gd_t *) addr_sp; |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 419 | debug("Reserving %zu Bytes for Global Data at: %08lx\n", |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 420 | sizeof (gd_t), addr_sp); |
| 421 | |
Simon Glass | 39826f0 | 2012-09-27 15:41:55 +0000 | [diff] [blame] | 422 | #if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL) |
| 423 | /* |
| 424 | * If the device tree is sitting immediate above our image then we |
| 425 | * must relocate it. If it is embedded in the data section, then it |
| 426 | * will be relocated with other data. |
| 427 | */ |
| 428 | if (gd->fdt_blob) { |
| 429 | fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32); |
| 430 | |
| 431 | addr_sp -= fdt_size; |
| 432 | new_fdt = (void *)addr_sp; |
| 433 | debug("Reserving %zu Bytes for FDT at: %08lx\n", |
| 434 | fdt_size, addr_sp); |
| 435 | } |
| 436 | #endif |
| 437 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 438 | /* setup stackpointer for exeptions */ |
| 439 | gd->irq_sp = addr_sp; |
| 440 | #ifdef CONFIG_USE_IRQ |
| 441 | addr_sp -= (CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ); |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 442 | debug("Reserving %zu Bytes for IRQ stack at: %08lx\n", |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 443 | CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ, addr_sp); |
| 444 | #endif |
| 445 | /* leave 3 words for abort-stack */ |
Eric Cooper | 6445a30 | 2011-04-14 12:32:37 +0000 | [diff] [blame] | 446 | addr_sp -= 12; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 447 | |
| 448 | /* 8-byte alignment for ABI compliance */ |
| 449 | addr_sp &= ~0x07; |
| 450 | #else |
| 451 | addr_sp += 128; /* leave 32 words for abort-stack */ |
| 452 | gd->irq_sp = addr_sp; |
| 453 | #endif |
| 454 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 455 | debug("New Stack Pointer is: %08lx\n", addr_sp); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 456 | |
| 457 | #ifdef CONFIG_POST |
| 458 | post_bootmode_init(); |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 459 | post_run(NULL, POST_ROM | post_bootmode_get(0)); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 460 | #endif |
| 461 | |
| 462 | gd->bd->bi_baudrate = gd->baudrate; |
| 463 | /* Ram ist board specific, so move it to board code ... */ |
| 464 | dram_init_banksize(); |
| 465 | display_dram_config(); /* and display it */ |
| 466 | |
| 467 | gd->relocaddr = addr; |
| 468 | gd->start_addr_sp = addr_sp; |
| 469 | gd->reloc_off = addr - _TEXT_BASE; |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 470 | debug("relocation Offset is: %08lx\n", gd->reloc_off); |
Simon Glass | 39826f0 | 2012-09-27 15:41:55 +0000 | [diff] [blame] | 471 | if (new_fdt) { |
| 472 | memcpy(new_fdt, gd->fdt_blob, fdt_size); |
| 473 | gd->fdt_blob = new_fdt; |
| 474 | } |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 475 | memcpy(id, (void *)gd, sizeof(gd_t)); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | #if !defined(CONFIG_SYS_NO_FLASH) |
| 479 | static char *failed = "*** failed ***\n"; |
| 480 | #endif |
| 481 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 482 | /* |
Simon Glass | 06fd853 | 2012-11-30 13:01:17 +0000 | [diff] [blame] | 483 | * Tell if it's OK to load the environment early in boot. |
| 484 | * |
| 485 | * If CONFIG_OF_CONFIG is defined, we'll check with the FDT to see |
| 486 | * if this is OK (defaulting to saying it's not OK). |
| 487 | * |
| 488 | * NOTE: Loading the environment early can be a bad idea if security is |
| 489 | * important, since no verification is done on the environment. |
| 490 | * |
| 491 | * @return 0 if environment should not be loaded, !=0 if it is ok to load |
| 492 | */ |
| 493 | static int should_load_env(void) |
| 494 | { |
| 495 | #ifdef CONFIG_OF_CONTROL |
Lucas Stach | 4e5eb45 | 2013-01-22 00:15:49 +0000 | [diff] [blame] | 496 | return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1); |
Simon Glass | 06fd853 | 2012-11-30 13:01:17 +0000 | [diff] [blame] | 497 | #elif defined CONFIG_DELAY_ENVIRONMENT |
| 498 | return 0; |
| 499 | #else |
| 500 | return 1; |
| 501 | #endif |
| 502 | } |
| 503 | |
Simon Glass | e2e3e2b | 2012-11-30 13:01:19 +0000 | [diff] [blame] | 504 | #if defined(CONFIG_DISPLAY_BOARDINFO_LATE) && defined(CONFIG_OF_CONTROL) |
| 505 | static void display_fdt_model(const void *blob) |
| 506 | { |
| 507 | const char *model; |
| 508 | |
| 509 | model = (char *)fdt_getprop(blob, 0, "model", NULL); |
| 510 | printf("Model: %s\n", model ? model : "<unknown>"); |
| 511 | } |
| 512 | #endif |
| 513 | |
Simon Glass | 06fd853 | 2012-11-30 13:01:17 +0000 | [diff] [blame] | 514 | /************************************************************************ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 515 | * |
| 516 | * This is the next part if the initialization sequence: we are now |
| 517 | * running from RAM and have a "normal" C environment, i. e. global |
| 518 | * data can be written, BSS has been cleared, the stack size in not |
| 519 | * that critical any more, etc. |
| 520 | * |
| 521 | ************************************************************************ |
| 522 | */ |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 523 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 524 | void board_init_r(gd_t *id, ulong dest_addr) |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 525 | { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 526 | ulong malloc_start; |
| 527 | #if !defined(CONFIG_SYS_NO_FLASH) |
| 528 | ulong flash_size; |
| 529 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 530 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 531 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
Simon Glass | f933e84 | 2012-02-13 13:51:21 +0000 | [diff] [blame] | 532 | bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_R, "board_init_r"); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 533 | |
Po-Yu Chuang | f326cbb | 2011-03-01 23:02:04 +0000 | [diff] [blame] | 534 | monitor_flash_len = _end_ofs; |
Aneesh V | cba4b18 | 2011-08-16 04:33:05 +0000 | [diff] [blame] | 535 | |
| 536 | /* Enable caches */ |
| 537 | enable_caches(); |
Aneesh V | c2dd0d4 | 2011-06-16 23:30:49 +0000 | [diff] [blame] | 538 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 539 | debug("monitor flash len: %08lX\n", monitor_flash_len); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 540 | board_init(); /* Setup chipselects */ |
Hadli, Manjunath | 8f5d468 | 2012-02-06 00:30:44 +0000 | [diff] [blame] | 541 | /* |
| 542 | * TODO: printing of the clock inforamtion of the board is now |
| 543 | * implemented as part of bdinfo command. Currently only support for |
| 544 | * davinci SOC's is added. Remove this check once all the board |
| 545 | * implement this. |
| 546 | */ |
| 547 | #ifdef CONFIG_CLOCKS |
| 548 | set_cpu_clk_info(); /* Setup clock information */ |
| 549 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 550 | serial_initialize(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 551 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 552 | debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 553 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 554 | #ifdef CONFIG_LOGBUFFER |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 555 | logbuff_init_ptrs(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 556 | #endif |
| 557 | #ifdef CONFIG_POST |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 558 | post_output_backlog(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 559 | #endif |
| 560 | |
| 561 | /* The Malloc area is immediately below the monitor copy in DRAM */ |
| 562 | malloc_start = dest_addr - TOTAL_MALLOC_LEN; |
| 563 | mem_malloc_init (malloc_start, TOTAL_MALLOC_LEN); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 564 | |
Fabio Estevam | d519b4b | 2012-04-02 11:19:45 +0000 | [diff] [blame] | 565 | #ifdef CONFIG_ARCH_EARLY_INIT_R |
| 566 | arch_early_init_r(); |
| 567 | #endif |
Łukasz Majewski | 2ffb4be | 2012-11-13 03:21:56 +0000 | [diff] [blame] | 568 | power_init_board(); |
Fabio Estevam | d519b4b | 2012-04-02 11:19:45 +0000 | [diff] [blame] | 569 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 570 | #if !defined(CONFIG_SYS_NO_FLASH) |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 571 | puts("Flash: "); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 572 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 573 | flash_size = flash_init(); |
| 574 | if (flash_size > 0) { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 575 | # ifdef CONFIG_SYS_FLASH_CHECKSUM |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 576 | print_size(flash_size, ""); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 577 | /* |
| 578 | * Compute and print flash CRC if flashchecksum is set to 'y' |
| 579 | * |
| 580 | * NOTE: Maybe we should add some WATCHDOG_RESET()? XXX |
| 581 | */ |
Joe Hershberger | ec8a252 | 2012-12-11 22:16:22 -0600 | [diff] [blame] | 582 | if (getenv_yesno("flashchecksum") == 1) { |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 583 | printf(" CRC: %08X", crc32(0, |
| 584 | (const unsigned char *) CONFIG_SYS_FLASH_BASE, |
| 585 | flash_size)); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 586 | } |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 587 | putc('\n'); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 588 | # else /* !CONFIG_SYS_FLASH_CHECKSUM */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 589 | print_size(flash_size, "\n"); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 590 | # endif /* CONFIG_SYS_FLASH_CHECKSUM */ |
| 591 | } else { |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 592 | puts(failed); |
| 593 | hang(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 594 | } |
| 595 | #endif |
| 596 | |
| 597 | #if defined(CONFIG_CMD_NAND) |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 598 | puts("NAND: "); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 599 | nand_init(); /* go init the NAND */ |
| 600 | #endif |
| 601 | |
| 602 | #if defined(CONFIG_CMD_ONENAND) |
| 603 | onenand_init(); |
| 604 | #endif |
| 605 | |
Steve Sakoman | d470a6f | 2010-10-11 05:51:39 -0700 | [diff] [blame] | 606 | #ifdef CONFIG_GENERIC_MMC |
Taylor Hutt | 80e4095 | 2012-11-30 13:01:23 +0000 | [diff] [blame] | 607 | puts("MMC: "); |
| 608 | mmc_initialize(gd->bd); |
Steve Sakoman | d470a6f | 2010-10-11 05:51:39 -0700 | [diff] [blame] | 609 | #endif |
| 610 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 611 | #ifdef CONFIG_HAS_DATAFLASH |
| 612 | AT91F_DataflashInit(); |
| 613 | dataflash_print_info(); |
| 614 | #endif |
| 615 | |
| 616 | /* initialize environment */ |
Simon Glass | 06fd853 | 2012-11-30 13:01:17 +0000 | [diff] [blame] | 617 | if (should_load_env()) |
| 618 | env_relocate(); |
| 619 | else |
| 620 | set_default_env(NULL); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 621 | |
Michael Schwingen | 1ed63c5 | 2011-05-23 00:00:13 +0200 | [diff] [blame] | 622 | #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI) |
| 623 | arm_pci_init(); |
| 624 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 625 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 626 | stdio_init(); /* get the devices list going. */ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 627 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 628 | jumptable_init(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 629 | |
| 630 | #if defined(CONFIG_API) |
| 631 | /* Initialize API */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 632 | api_init(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 633 | #endif |
| 634 | |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 635 | console_init_r(); /* fully init console as a device */ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 636 | |
Simon Glass | e2e3e2b | 2012-11-30 13:01:19 +0000 | [diff] [blame] | 637 | #ifdef CONFIG_DISPLAY_BOARDINFO_LATE |
| 638 | # ifdef CONFIG_OF_CONTROL |
| 639 | /* Put this here so it appears on the LCD, now it is ready */ |
| 640 | display_fdt_model(gd->fdt_blob); |
| 641 | # else |
| 642 | checkboard(); |
| 643 | # endif |
| 644 | #endif |
| 645 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 646 | #if defined(CONFIG_ARCH_MISC_INIT) |
| 647 | /* miscellaneous arch dependent initialisations */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 648 | arch_misc_init(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 649 | #endif |
| 650 | #if defined(CONFIG_MISC_INIT_R) |
| 651 | /* miscellaneous platform dependent initialisations */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 652 | misc_init_r(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 653 | #endif |
| 654 | |
| 655 | /* set up exceptions */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 656 | interrupt_init(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 657 | /* enable exceptions */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 658 | enable_interrupts(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 659 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 660 | /* Initialize from environment */ |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 661 | load_addr = getenv_ulong("loadaddr", 16, load_addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 662 | |
Helmut Raiger | 9660e44 | 2011-10-20 04:19:47 +0000 | [diff] [blame] | 663 | #ifdef CONFIG_BOARD_LATE_INIT |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 664 | board_late_init(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 665 | #endif |
| 666 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 667 | #ifdef CONFIG_BITBANGMII |
| 668 | bb_miiphy_init(); |
| 669 | #endif |
| 670 | #if defined(CONFIG_CMD_NET) |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 671 | puts("Net: "); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 672 | eth_initialize(gd->bd); |
| 673 | #if defined(CONFIG_RESET_PHY_R) |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 674 | debug("Reset Ethernet PHY\n"); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 675 | reset_phy(); |
| 676 | #endif |
| 677 | #endif |
| 678 | |
| 679 | #ifdef CONFIG_POST |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 680 | post_run(NULL, POST_RAM | post_bootmode_get(0)); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 681 | #endif |
| 682 | |
| 683 | #if defined(CONFIG_PRAM) || defined(CONFIG_LOGBUFFER) |
| 684 | /* |
| 685 | * Export available size of memory for Linux, |
| 686 | * taking into account the protected RAM at top of memory |
| 687 | */ |
| 688 | { |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 689 | ulong pram = 0; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 690 | uchar memsz[32]; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 691 | |
Simon Glass | dc8bbea | 2011-10-13 14:43:06 +0000 | [diff] [blame] | 692 | #ifdef CONFIG_PRAM |
| 693 | pram = getenv_ulong("pram", 10, CONFIG_PRAM); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 694 | #endif |
| 695 | #ifdef CONFIG_LOGBUFFER |
| 696 | #ifndef CONFIG_ALT_LB_ADDR |
| 697 | /* Also take the logbuffer into account (pram is in kB) */ |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 698 | pram += (LOGBUFF_LEN + LOGBUFF_OVERHEAD) / 1024; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 699 | #endif |
| 700 | #endif |
Heiko Schocher | b2b8f98 | 2011-06-02 22:11:37 +0000 | [diff] [blame] | 701 | sprintf((char *)memsz, "%ldk", (gd->ram_size / 1024) - pram); |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 702 | setenv("mem", (char *)memsz); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 703 | } |
| 704 | #endif |
| 705 | |
| 706 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
| 707 | for (;;) { |
Heiko Schocher | ceb1d6d | 2011-07-15 19:36:36 +0000 | [diff] [blame] | 708 | main_loop(); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | /* NOTREACHED - no way out of command loop except booting */ |
| 712 | } |