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