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