Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
| 3 | * (C) Copyright 2002-2006 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * (C) Copyright 2002 |
| 7 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 8 | * Marius Groeger <mgroeger@sysgo.de> |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
| 14 | #include <linux/compiler.h> |
| 15 | #include <version.h> |
| 16 | #include <environment.h> |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 17 | #include <dm.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 18 | #include <fdtdec.h> |
Simon Glass | f828bf2 | 2013-04-20 08:42:41 +0000 | [diff] [blame] | 19 | #include <fs.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 20 | #if defined(CONFIG_CMD_IDE) |
| 21 | #include <ide.h> |
| 22 | #endif |
| 23 | #include <i2c.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 24 | #include <initcall.h> |
| 25 | #include <logbuff.h> |
Simon Glass | fb5cf7f | 2015-02-27 22:06:36 -0700 | [diff] [blame] | 26 | #include <malloc.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 27 | #include <mapmem.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 28 | |
| 29 | /* TODO: Can we move these into arch/ headers? */ |
| 30 | #ifdef CONFIG_8xx |
| 31 | #include <mpc8xx.h> |
| 32 | #endif |
| 33 | #ifdef CONFIG_5xx |
| 34 | #include <mpc5xx.h> |
| 35 | #endif |
| 36 | #ifdef CONFIG_MPC5xxx |
| 37 | #include <mpc5xxx.h> |
| 38 | #endif |
Gabriel Huau | ec3b482 | 2014-09-03 13:57:54 -0700 | [diff] [blame] | 39 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) |
Gabriel Huau | a76df70 | 2014-07-26 11:35:43 -0700 | [diff] [blame] | 40 | #include <asm/mp.h> |
| 41 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 42 | |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 43 | #include <os.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 44 | #include <post.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 45 | #include <spi.h> |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 46 | #include <status_led.h> |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 47 | #include <trace.h> |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 48 | #include <watchdog.h> |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 49 | #include <asm/errno.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 50 | #include <asm/io.h> |
| 51 | #include <asm/sections.h> |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 52 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 53 | #include <asm/init_helpers.h> |
| 54 | #include <asm/relocate.h> |
| 55 | #endif |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 56 | #ifdef CONFIG_SANDBOX |
| 57 | #include <asm/state.h> |
| 58 | #endif |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 59 | #include <dm/root.h> |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 60 | #include <linux/compiler.h> |
| 61 | |
| 62 | /* |
| 63 | * Pointer to initial global data area |
| 64 | * |
| 65 | * Here we initialize it if needed. |
| 66 | */ |
| 67 | #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR |
| 68 | #undef XTRN_DECLARE_GLOBAL_DATA_PTR |
| 69 | #define XTRN_DECLARE_GLOBAL_DATA_PTR /* empty = allocate here */ |
| 70 | DECLARE_GLOBAL_DATA_PTR = (gd_t *) (CONFIG_SYS_INIT_GD_ADDR); |
| 71 | #else |
| 72 | DECLARE_GLOBAL_DATA_PTR; |
| 73 | #endif |
| 74 | |
| 75 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 76 | * TODO(sjg@chromium.org): IMO this code should be |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 77 | * refactored to a single function, something like: |
| 78 | * |
| 79 | * void led_set_state(enum led_colour_t colour, int on); |
| 80 | */ |
| 81 | /************************************************************************ |
| 82 | * Coloured LED functionality |
| 83 | ************************************************************************ |
| 84 | * May be supplied by boards if desired |
| 85 | */ |
Jeroen Hofstee | c5d4001 | 2014-06-23 23:20:19 +0200 | [diff] [blame] | 86 | __weak void coloured_LED_init(void) {} |
| 87 | __weak void red_led_on(void) {} |
| 88 | __weak void red_led_off(void) {} |
| 89 | __weak void green_led_on(void) {} |
| 90 | __weak void green_led_off(void) {} |
| 91 | __weak void yellow_led_on(void) {} |
| 92 | __weak void yellow_led_off(void) {} |
| 93 | __weak void blue_led_on(void) {} |
| 94 | __weak void blue_led_off(void) {} |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * Why is gd allocated a register? Prior to reloc it might be better to |
| 98 | * just pass it around to each function in this file? |
| 99 | * |
| 100 | * After reloc one could argue that it is hardly used and doesn't need |
| 101 | * to be in a register. Or if it is it should perhaps hold pointers to all |
| 102 | * global data for all modules, so that post-reloc we can avoid the massive |
| 103 | * literal pool we get on ARM. Or perhaps just encourage each module to use |
| 104 | * a structure... |
| 105 | */ |
| 106 | |
| 107 | /* |
| 108 | * Could the CONFIG_SPL_BUILD infection become a flag in gd? |
| 109 | */ |
| 110 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 111 | #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 112 | static int init_func_watchdog_init(void) |
| 113 | { |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 114 | # if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \ |
| 115 | defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \ |
Stefan Roese | 14a380a | 2015-03-10 08:04:36 +0100 | [diff] [blame] | 116 | defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \ |
| 117 | defined(CONFIG_IMX_WATCHDOG)) |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 118 | hw_watchdog_init(); |
| 119 | # endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 120 | puts(" Watchdog enabled\n"); |
| 121 | WATCHDOG_RESET(); |
| 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | int init_func_watchdog_reset(void) |
| 127 | { |
| 128 | WATCHDOG_RESET(); |
| 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | #endif /* CONFIG_WATCHDOG */ |
| 133 | |
Jeroen Hofstee | dd2a6cd | 2014-10-08 22:57:22 +0200 | [diff] [blame] | 134 | __weak void board_add_ram_info(int use_default) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 135 | { |
| 136 | /* please define platform specific board_add_ram_info() */ |
| 137 | } |
| 138 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 139 | static int init_baud_rate(void) |
| 140 | { |
| 141 | gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE); |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static int display_text_info(void) |
| 146 | { |
Ben Stoltz | 9b21749 | 2015-07-31 09:31:37 -0600 | [diff] [blame] | 147 | #if !defined(CONFIG_SANDBOX) && !defined(CONFIG_EFI_APP) |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 148 | ulong bss_start, bss_end, text_base; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 149 | |
Simon Glass | 632efa7 | 2013-03-11 07:06:48 +0000 | [diff] [blame] | 150 | bss_start = (ulong)&__bss_start; |
| 151 | bss_end = (ulong)&__bss_end; |
Albert ARIBAUD | b60eff3 | 2014-02-22 17:53:43 +0100 | [diff] [blame] | 152 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 153 | #ifdef CONFIG_SYS_TEXT_BASE |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 154 | text_base = CONFIG_SYS_TEXT_BASE; |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 155 | #else |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 156 | text_base = CONFIG_SYS_MONITOR_BASE; |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 157 | #endif |
Daniel Schwierzeck | 9fdee7d | 2014-11-15 23:46:53 +0100 | [diff] [blame] | 158 | |
| 159 | debug("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n", |
| 160 | text_base, bss_start, bss_end); |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 161 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 162 | |
| 163 | #ifdef CONFIG_MODEM_SUPPORT |
| 164 | debug("Modem Support enabled\n"); |
| 165 | #endif |
| 166 | #ifdef CONFIG_USE_IRQ |
| 167 | debug("IRQ Stack: %08lx\n", IRQ_STACK_START); |
| 168 | debug("FIQ Stack: %08lx\n", FIQ_STACK_START); |
| 169 | #endif |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | static int announce_dram_init(void) |
| 175 | { |
| 176 | puts("DRAM: "); |
| 177 | return 0; |
| 178 | } |
| 179 | |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 180 | #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 181 | static int init_func_ram(void) |
| 182 | { |
| 183 | #ifdef CONFIG_BOARD_TYPES |
| 184 | int board_type = gd->board_type; |
| 185 | #else |
| 186 | int board_type = 0; /* use dummy arg */ |
| 187 | #endif |
| 188 | |
| 189 | gd->ram_size = initdram(board_type); |
| 190 | |
| 191 | if (gd->ram_size > 0) |
| 192 | return 0; |
| 193 | |
| 194 | puts("*** failed ***\n"); |
| 195 | return 1; |
| 196 | } |
| 197 | #endif |
| 198 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 199 | static int show_dram_config(void) |
| 200 | { |
York Sun | fa39ffe | 2014-05-02 17:28:05 -0700 | [diff] [blame] | 201 | unsigned long long size; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 202 | |
| 203 | #ifdef CONFIG_NR_DRAM_BANKS |
| 204 | int i; |
| 205 | |
| 206 | debug("\nRAM Configuration:\n"); |
| 207 | for (i = size = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 208 | size += gd->bd->bi_dram[i].size; |
Bin Meng | 715f599 | 2015-08-06 01:31:20 -0700 | [diff] [blame] | 209 | debug("Bank #%d: %llx ", i, |
| 210 | (unsigned long long)(gd->bd->bi_dram[i].start)); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 211 | #ifdef DEBUG |
| 212 | print_size(gd->bd->bi_dram[i].size, "\n"); |
| 213 | #endif |
| 214 | } |
| 215 | debug("\nDRAM: "); |
| 216 | #else |
| 217 | size = gd->ram_size; |
| 218 | #endif |
| 219 | |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 220 | print_size(size, ""); |
| 221 | board_add_ram_info(0); |
| 222 | putc('\n'); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
Jeroen Hofstee | dd2a6cd | 2014-10-08 22:57:22 +0200 | [diff] [blame] | 227 | __weak void dram_init_banksize(void) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 228 | { |
| 229 | #if defined(CONFIG_NR_DRAM_BANKS) && defined(CONFIG_SYS_SDRAM_BASE) |
| 230 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 231 | gd->bd->bi_dram[0].size = get_effective_memsize(); |
| 232 | #endif |
| 233 | } |
| 234 | |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 235 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 236 | static int init_func_i2c(void) |
| 237 | { |
| 238 | puts("I2C: "); |
trem | 815a76f | 2013-09-21 18:13:34 +0200 | [diff] [blame] | 239 | #ifdef CONFIG_SYS_I2C |
| 240 | i2c_init_all(); |
| 241 | #else |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 242 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
trem | 815a76f | 2013-09-21 18:13:34 +0200 | [diff] [blame] | 243 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 244 | puts("ready\n"); |
| 245 | return 0; |
| 246 | } |
| 247 | #endif |
| 248 | |
| 249 | #if defined(CONFIG_HARD_SPI) |
| 250 | static int init_func_spi(void) |
| 251 | { |
| 252 | puts("SPI: "); |
| 253 | spi_init(); |
| 254 | puts("ready\n"); |
| 255 | return 0; |
| 256 | } |
| 257 | #endif |
| 258 | |
| 259 | __maybe_unused |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 260 | static int zero_global_data(void) |
| 261 | { |
| 262 | memset((void *)gd, '\0', sizeof(gd_t)); |
| 263 | |
| 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | static int setup_mon_len(void) |
| 268 | { |
Michal Simek | e945f6d | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 269 | #if defined(__ARM__) || defined(__MICROBLAZE__) |
Albert ARIBAUD | b60eff3 | 2014-02-22 17:53:43 +0100 | [diff] [blame] | 270 | gd->mon_len = (ulong)&__bss_end - (ulong)_start; |
Ben Stoltz | 9b21749 | 2015-07-31 09:31:37 -0600 | [diff] [blame] | 271 | #elif defined(CONFIG_SANDBOX) || defined(CONFIG_EFI_APP) |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 272 | gd->mon_len = (ulong)&_end - (ulong)_init; |
Thomas Chou | 5ff10aa | 2014-08-22 11:36:47 +0800 | [diff] [blame] | 273 | #elif defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2) |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 274 | gd->mon_len = CONFIG_SYS_MONITOR_LEN; |
Kun-Hua Huang | 2e88bb2 | 2015-08-24 14:52:35 +0800 | [diff] [blame] | 275 | #elif defined(CONFIG_NDS32) |
| 276 | gd->mon_len = (ulong)(&__bss_end) - (ulong)(&_start); |
Simon Glass | 632efa7 | 2013-03-11 07:06:48 +0000 | [diff] [blame] | 277 | #else |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 278 | /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ |
| 279 | gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; |
Simon Glass | 632efa7 | 2013-03-11 07:06:48 +0000 | [diff] [blame] | 280 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 281 | return 0; |
| 282 | } |
| 283 | |
| 284 | __weak int arch_cpu_init(void) |
| 285 | { |
| 286 | return 0; |
| 287 | } |
| 288 | |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 289 | #ifdef CONFIG_SANDBOX |
| 290 | static int setup_ram_buf(void) |
| 291 | { |
Simon Glass | 5c2859c | 2013-11-10 10:27:03 -0700 | [diff] [blame] | 292 | struct sandbox_state *state = state_get_current(); |
| 293 | |
| 294 | gd->arch.ram_buf = state->ram_buf; |
| 295 | gd->ram_size = state->ram_size; |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 296 | |
| 297 | return 0; |
| 298 | } |
| 299 | #endif |
| 300 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 301 | /* Get the top of usable RAM */ |
| 302 | __weak ulong board_get_usable_ram_top(ulong total_size) |
| 303 | { |
Stephen Warren | 1e4d11a | 2014-12-23 10:34:49 -0700 | [diff] [blame] | 304 | #ifdef CONFIG_SYS_SDRAM_BASE |
| 305 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 306 | * Detect whether we have so much RAM that it goes past the end of our |
Stephen Warren | 1e4d11a | 2014-12-23 10:34:49 -0700 | [diff] [blame] | 307 | * 32-bit address space. If so, clip the usable RAM so it doesn't. |
| 308 | */ |
| 309 | if (gd->ram_top < CONFIG_SYS_SDRAM_BASE) |
| 310 | /* |
| 311 | * Will wrap back to top of 32-bit space when reservations |
| 312 | * are made. |
| 313 | */ |
| 314 | return 0; |
| 315 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 316 | return gd->ram_top; |
| 317 | } |
| 318 | |
| 319 | static int setup_dest_addr(void) |
| 320 | { |
| 321 | debug("Monitor len: %08lX\n", gd->mon_len); |
| 322 | /* |
| 323 | * Ram is setup, size stored in gd !! |
| 324 | */ |
| 325 | debug("Ram size: %08lX\n", (ulong)gd->ram_size); |
| 326 | #if defined(CONFIG_SYS_MEM_TOP_HIDE) |
| 327 | /* |
| 328 | * Subtract specified amount of memory to hide so that it won't |
| 329 | * get "touched" at all by U-Boot. By fixing up gd->ram_size |
| 330 | * the Linux kernel should now get passed the now "corrected" |
| 331 | * memory size and won't touch it either. This should work |
| 332 | * for arch/ppc and arch/powerpc. Only Linux board ports in |
| 333 | * arch/powerpc with bootwrapper support, that recalculate the |
| 334 | * memory size from the SDRAM controller setup will have to |
| 335 | * get fixed. |
| 336 | */ |
| 337 | gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; |
| 338 | #endif |
| 339 | #ifdef CONFIG_SYS_SDRAM_BASE |
| 340 | gd->ram_top = CONFIG_SYS_SDRAM_BASE; |
| 341 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 342 | gd->ram_top += get_effective_memsize(); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 343 | gd->ram_top = board_get_usable_ram_top(gd->mon_len); |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 344 | gd->relocaddr = gd->ram_top; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 345 | debug("Ram top: %08lX\n", (ulong)gd->ram_top); |
Gabriel Huau | ec3b482 | 2014-09-03 13:57:54 -0700 | [diff] [blame] | 346 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 347 | /* |
| 348 | * We need to make sure the location we intend to put secondary core |
| 349 | * boot code is reserved and not used by any part of u-boot |
| 350 | */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 351 | if (gd->relocaddr > determine_mp_bootpg(NULL)) { |
| 352 | gd->relocaddr = determine_mp_bootpg(NULL); |
| 353 | debug("Reserving MP boot page to %08lx\n", gd->relocaddr); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 354 | } |
| 355 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR) |
| 360 | static int reserve_logbuffer(void) |
| 361 | { |
| 362 | /* reserve kernel log buffer */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 363 | gd->relocaddr -= LOGBUFF_RESERVE; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 364 | debug("Reserving %dk for kernel logbuffer at %08lx\n", LOGBUFF_LEN, |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 365 | gd->relocaddr); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | #endif |
| 369 | |
| 370 | #ifdef CONFIG_PRAM |
| 371 | /* reserve protected RAM */ |
| 372 | static int reserve_pram(void) |
| 373 | { |
| 374 | ulong reg; |
| 375 | |
| 376 | reg = getenv_ulong("pram", 10, CONFIG_PRAM); |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 377 | gd->relocaddr -= (reg << 10); /* size is in kB */ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 378 | debug("Reserving %ldk for protected RAM at %08lx\n", reg, |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 379 | gd->relocaddr); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | #endif /* CONFIG_PRAM */ |
| 383 | |
| 384 | /* Round memory pointer down to next 4 kB limit */ |
| 385 | static int reserve_round_4k(void) |
| 386 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 387 | gd->relocaddr &= ~(4096 - 1); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 388 | return 0; |
| 389 | } |
| 390 | |
| 391 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \ |
| 392 | defined(CONFIG_ARM) |
| 393 | static int reserve_mmu(void) |
| 394 | { |
| 395 | /* reserve TLB table */ |
David Feng | cce6be7 | 2013-12-14 11:47:36 +0800 | [diff] [blame] | 396 | gd->arch.tlb_size = PGTABLE_SIZE; |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 397 | gd->relocaddr -= gd->arch.tlb_size; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 398 | |
| 399 | /* round down to next 64 kB limit */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 400 | gd->relocaddr &= ~(0x10000 - 1); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 401 | |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 402 | gd->arch.tlb_addr = gd->relocaddr; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 403 | debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr, |
| 404 | gd->arch.tlb_addr + gd->arch.tlb_size); |
| 405 | return 0; |
| 406 | } |
| 407 | #endif |
| 408 | |
| 409 | #ifdef CONFIG_LCD |
| 410 | static int reserve_lcd(void) |
| 411 | { |
| 412 | #ifdef CONFIG_FB_ADDR |
| 413 | gd->fb_base = CONFIG_FB_ADDR; |
| 414 | #else |
| 415 | /* reserve memory for LCD display (always full pages) */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 416 | gd->relocaddr = lcd_setmem(gd->relocaddr); |
| 417 | gd->fb_base = gd->relocaddr; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 418 | #endif /* CONFIG_FB_ADDR */ |
| 419 | return 0; |
| 420 | } |
| 421 | #endif /* CONFIG_LCD */ |
| 422 | |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 423 | static int reserve_trace(void) |
| 424 | { |
| 425 | #ifdef CONFIG_TRACE |
| 426 | gd->relocaddr -= CONFIG_TRACE_BUFFER_SIZE; |
| 427 | gd->trace_buff = map_sysmem(gd->relocaddr, CONFIG_TRACE_BUFFER_SIZE); |
| 428 | debug("Reserving %dk for trace data at: %08lx\n", |
| 429 | CONFIG_TRACE_BUFFER_SIZE >> 10, gd->relocaddr); |
| 430 | #endif |
| 431 | |
| 432 | return 0; |
| 433 | } |
| 434 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 435 | #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \ |
| 436 | !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \ |
angelo@sysam.it | 944ab34 | 2015-03-28 11:34:52 +0100 | [diff] [blame] | 437 | !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 438 | static int reserve_video(void) |
| 439 | { |
| 440 | /* reserve memory for video display (always full pages) */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 441 | gd->relocaddr = video_setmem(gd->relocaddr); |
| 442 | gd->fb_base = gd->relocaddr; |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | #endif |
| 447 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 448 | static int reserve_uboot(void) |
| 449 | { |
| 450 | /* |
| 451 | * reserve memory for U-Boot code, data & bss |
| 452 | * round down to next 4 kB limit |
| 453 | */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 454 | gd->relocaddr -= gd->mon_len; |
| 455 | gd->relocaddr &= ~(4096 - 1); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 456 | #ifdef CONFIG_E500 |
| 457 | /* round down to next 64 kB limit so that IVPR stays aligned */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 458 | gd->relocaddr &= ~(65536 - 1); |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 459 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 460 | |
| 461 | debug("Reserving %ldk for U-Boot at: %08lx\n", gd->mon_len >> 10, |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 462 | gd->relocaddr); |
| 463 | |
| 464 | gd->start_addr_sp = gd->relocaddr; |
| 465 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 466 | return 0; |
| 467 | } |
| 468 | |
Simon Glass | 8cae8a6 | 2013-03-05 14:39:45 +0000 | [diff] [blame] | 469 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 470 | /* reserve memory for malloc() area */ |
| 471 | static int reserve_malloc(void) |
| 472 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 473 | gd->start_addr_sp = gd->start_addr_sp - TOTAL_MALLOC_LEN; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 474 | debug("Reserving %dk for malloc() at: %08lx\n", |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 475 | TOTAL_MALLOC_LEN >> 10, gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | /* (permanently) allocate a Board Info struct */ |
| 480 | static int reserve_board(void) |
| 481 | { |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 482 | if (!gd->bd) { |
| 483 | gd->start_addr_sp -= sizeof(bd_t); |
| 484 | gd->bd = (bd_t *)map_sysmem(gd->start_addr_sp, sizeof(bd_t)); |
| 485 | memset(gd->bd, '\0', sizeof(bd_t)); |
| 486 | debug("Reserving %zu Bytes for Board Info at: %08lx\n", |
| 487 | sizeof(bd_t), gd->start_addr_sp); |
| 488 | } |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 489 | return 0; |
| 490 | } |
Simon Glass | 8cae8a6 | 2013-03-05 14:39:45 +0000 | [diff] [blame] | 491 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 492 | |
| 493 | static int setup_machine(void) |
| 494 | { |
| 495 | #ifdef CONFIG_MACH_TYPE |
| 496 | gd->bd->bi_arch_number = CONFIG_MACH_TYPE; /* board id for Linux */ |
| 497 | #endif |
| 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | static int reserve_global_data(void) |
| 502 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 503 | gd->start_addr_sp -= sizeof(gd_t); |
| 504 | gd->new_gd = (gd_t *)map_sysmem(gd->start_addr_sp, sizeof(gd_t)); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 505 | debug("Reserving %zu Bytes for Global Data at: %08lx\n", |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 506 | sizeof(gd_t), gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | static int reserve_fdt(void) |
| 511 | { |
| 512 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 513 | * If the device tree is sitting immediately above our image then we |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 514 | * must relocate it. If it is embedded in the data section, then it |
| 515 | * will be relocated with other data. |
| 516 | */ |
| 517 | if (gd->fdt_blob) { |
| 518 | gd->fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32); |
| 519 | |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 520 | gd->start_addr_sp -= gd->fdt_size; |
| 521 | gd->new_fdt = map_sysmem(gd->start_addr_sp, gd->fdt_size); |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 522 | debug("Reserving %lu Bytes for FDT at: %08lx\n", |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 523 | gd->fdt_size, gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | return 0; |
| 527 | } |
| 528 | |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 529 | int arch_reserve_stacks(void) |
| 530 | { |
| 531 | return 0; |
| 532 | } |
| 533 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 534 | static int reserve_stacks(void) |
| 535 | { |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 536 | /* make stack pointer 16-byte aligned */ |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 537 | gd->start_addr_sp -= 16; |
| 538 | gd->start_addr_sp &= ~0xf; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 539 | |
| 540 | /* |
Simon Glass | 4c50934 | 2015-04-28 20:25:03 -0600 | [diff] [blame] | 541 | * let the architecture-specific code tailor gd->start_addr_sp and |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 542 | * gd->irq_sp |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 543 | */ |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 544 | return arch_reserve_stacks(); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | static int display_new_sp(void) |
| 548 | { |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 549 | debug("New Stack Pointer is: %08lx\n", gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
Daniel Schwierzeck | fb3db63 | 2015-11-01 17:36:13 +0100 | [diff] [blame] | 554 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 555 | static int setup_board_part1(void) |
| 556 | { |
| 557 | bd_t *bd = gd->bd; |
| 558 | |
| 559 | /* |
| 560 | * Save local variables to board info struct |
| 561 | */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 562 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of memory */ |
| 563 | bd->bi_memsize = gd->ram_size; /* size in bytes */ |
| 564 | |
| 565 | #ifdef CONFIG_SYS_SRAM_BASE |
| 566 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; /* start of SRAM */ |
| 567 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; /* size of SRAM */ |
| 568 | #endif |
| 569 | |
Masahiro Yamada | 58dac32 | 2014-03-05 17:40:10 +0900 | [diff] [blame] | 570 | #if defined(CONFIG_8xx) || defined(CONFIG_MPC8260) || defined(CONFIG_5xx) || \ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 571 | defined(CONFIG_E500) || defined(CONFIG_MPC86xx) |
| 572 | bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */ |
| 573 | #endif |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 574 | #if defined(CONFIG_MPC5xxx) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 575 | bd->bi_mbar_base = CONFIG_SYS_MBAR; /* base of internal registers */ |
| 576 | #endif |
| 577 | #if defined(CONFIG_MPC83xx) |
| 578 | bd->bi_immrbar = CONFIG_SYS_IMMR; |
| 579 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 580 | |
| 581 | return 0; |
| 582 | } |
Daniel Schwierzeck | fb3db63 | 2015-11-01 17:36:13 +0100 | [diff] [blame] | 583 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 584 | |
Daniel Schwierzeck | fb3db63 | 2015-11-01 17:36:13 +0100 | [diff] [blame] | 585 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 586 | static int setup_board_part2(void) |
| 587 | { |
| 588 | bd_t *bd = gd->bd; |
| 589 | |
| 590 | bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */ |
| 591 | bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */ |
| 592 | #if defined(CONFIG_CPM2) |
| 593 | bd->bi_cpmfreq = gd->arch.cpm_clk; |
| 594 | bd->bi_brgfreq = gd->arch.brg_clk; |
| 595 | bd->bi_sccfreq = gd->arch.scc_clk; |
| 596 | bd->bi_vco = gd->arch.vco_out; |
| 597 | #endif /* CONFIG_CPM2 */ |
| 598 | #if defined(CONFIG_MPC512X) |
| 599 | bd->bi_ipsfreq = gd->arch.ips_clk; |
| 600 | #endif /* CONFIG_MPC512X */ |
| 601 | #if defined(CONFIG_MPC5xxx) |
| 602 | bd->bi_ipbfreq = gd->arch.ipb_clk; |
| 603 | bd->bi_pcifreq = gd->pci_clk; |
| 604 | #endif /* CONFIG_MPC5xxx */ |
Alison Wang | 1313db4 | 2015-02-12 18:33:15 +0800 | [diff] [blame] | 605 | #if defined(CONFIG_M68K) && defined(CONFIG_PCI) |
| 606 | bd->bi_pcifreq = gd->pci_clk; |
| 607 | #endif |
| 608 | #if defined(CONFIG_EXTRA_CLOCK) |
| 609 | bd->bi_inpfreq = gd->arch.inp_clk; /* input Freq in Hz */ |
| 610 | bd->bi_vcofreq = gd->arch.vco_clk; /* vco Freq in Hz */ |
| 611 | bd->bi_flbfreq = gd->arch.flb_clk; /* flexbus Freq in Hz */ |
| 612 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 613 | |
| 614 | return 0; |
| 615 | } |
| 616 | #endif |
| 617 | |
| 618 | #ifdef CONFIG_SYS_EXTBDINFO |
| 619 | static int setup_board_extra(void) |
| 620 | { |
| 621 | bd_t *bd = gd->bd; |
| 622 | |
| 623 | strncpy((char *) bd->bi_s_version, "1.2", sizeof(bd->bi_s_version)); |
| 624 | strncpy((char *) bd->bi_r_version, U_BOOT_VERSION, |
| 625 | sizeof(bd->bi_r_version)); |
| 626 | |
| 627 | bd->bi_procfreq = gd->cpu_clk; /* Processor Speed, In Hz */ |
| 628 | bd->bi_plb_busfreq = gd->bus_clk; |
| 629 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ |
| 630 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
| 631 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
| 632 | bd->bi_pci_busfreq = get_PCI_freq(); |
| 633 | bd->bi_opbfreq = get_OPB_freq(); |
| 634 | #elif defined(CONFIG_XILINX_405) |
| 635 | bd->bi_pci_busfreq = get_PCI_freq(); |
| 636 | #endif |
| 637 | |
| 638 | return 0; |
| 639 | } |
| 640 | #endif |
| 641 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 642 | #ifdef CONFIG_POST |
| 643 | static int init_post(void) |
| 644 | { |
| 645 | post_bootmode_init(); |
| 646 | post_run(NULL, POST_ROM | post_bootmode_get(0)); |
| 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | #endif |
| 651 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 652 | static int setup_dram_config(void) |
| 653 | { |
| 654 | /* Ram is board specific, so move it to board code ... */ |
| 655 | dram_init_banksize(); |
| 656 | |
| 657 | return 0; |
| 658 | } |
| 659 | |
| 660 | static int reloc_fdt(void) |
| 661 | { |
Simon Glass | f05ad9b | 2015-08-04 12:33:39 -0600 | [diff] [blame] | 662 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 663 | return 0; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 664 | if (gd->new_fdt) { |
| 665 | memcpy(gd->new_fdt, gd->fdt_blob, gd->fdt_size); |
| 666 | gd->fdt_blob = gd->new_fdt; |
| 667 | } |
| 668 | |
| 669 | return 0; |
| 670 | } |
| 671 | |
| 672 | static int setup_reloc(void) |
| 673 | { |
Simon Glass | f05ad9b | 2015-08-04 12:33:39 -0600 | [diff] [blame] | 674 | if (gd->flags & GD_FLG_SKIP_RELOC) { |
| 675 | debug("Skipping relocation due to flag\n"); |
| 676 | return 0; |
| 677 | } |
| 678 | |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 679 | #ifdef CONFIG_SYS_TEXT_BASE |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 680 | gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE; |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 681 | #ifdef CONFIG_M68K |
| 682 | /* |
| 683 | * On all ColdFire arch cpu, monitor code starts always |
| 684 | * just after the default vector table location, so at 0x400 |
| 685 | */ |
| 686 | gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400); |
| 687 | #endif |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 688 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 689 | memcpy(gd->new_gd, (char *)gd, sizeof(gd_t)); |
| 690 | |
| 691 | debug("Relocation Offset is: %08lx\n", gd->reloc_off); |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 692 | debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n", |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 693 | gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd), |
| 694 | gd->start_addr_sp); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 695 | |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | /* ARM calls relocate_code from its crt0.S */ |
Simon Glass | 808434c | 2013-11-10 10:26:59 -0700 | [diff] [blame] | 700 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 701 | |
| 702 | static int jump_to_copy(void) |
| 703 | { |
Simon Glass | f05ad9b | 2015-08-04 12:33:39 -0600 | [diff] [blame] | 704 | if (gd->flags & GD_FLG_SKIP_RELOC) |
| 705 | return 0; |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 706 | /* |
| 707 | * x86 is special, but in a nice way. It uses a trampoline which |
| 708 | * enables the dcache if possible. |
| 709 | * |
| 710 | * For now, other archs use relocate_code(), which is implemented |
| 711 | * similarly for all archs. When we do generic relocation, hopefully |
| 712 | * we can make all archs enable the dcache prior to relocation. |
| 713 | */ |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 714 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 715 | /* |
| 716 | * SDRAM and console are now initialised. The final stack can now |
| 717 | * be setup in SDRAM. Code execution will continue in Flash, but |
| 718 | * with the stack in SDRAM and Global Data in temporary memory |
| 719 | * (CPU cache) |
| 720 | */ |
Simon Glass | f0c7d9c | 2015-08-10 20:44:32 -0600 | [diff] [blame] | 721 | arch_setup_gd(gd->new_gd); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 722 | board_init_f_r_trampoline(gd->start_addr_sp); |
| 723 | #else |
Masahiro Yamada | a0ba279 | 2013-05-27 00:37:30 +0000 | [diff] [blame] | 724 | relocate_code(gd->start_addr_sp, gd->new_gd, gd->relocaddr); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 725 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 726 | |
| 727 | return 0; |
| 728 | } |
| 729 | #endif |
| 730 | |
| 731 | /* Record the board_init_f() bootstage (after arch_cpu_init()) */ |
| 732 | static int mark_bootstage(void) |
| 733 | { |
| 734 | bootstage_mark_name(BOOTSTAGE_ID_START_UBOOT_F, "board_init_f"); |
| 735 | |
| 736 | return 0; |
| 737 | } |
| 738 | |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 739 | static int initf_dm(void) |
| 740 | { |
| 741 | #if defined(CONFIG_DM) && defined(CONFIG_SYS_MALLOC_F_LEN) |
| 742 | int ret; |
| 743 | |
| 744 | ret = dm_init_and_scan(true); |
| 745 | if (ret) |
| 746 | return ret; |
| 747 | #endif |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | |
Simon Glass | 146251f | 2015-01-19 22:16:12 -0700 | [diff] [blame] | 752 | /* Architecture-specific memory reservation */ |
| 753 | __weak int reserve_arch(void) |
| 754 | { |
| 755 | return 0; |
| 756 | } |
| 757 | |
Simon Glass | d4c671c | 2015-03-05 12:25:16 -0700 | [diff] [blame] | 758 | __weak int arch_cpu_init_dm(void) |
| 759 | { |
| 760 | return 0; |
| 761 | } |
| 762 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 763 | static init_fnc_t init_sequence_f[] = { |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 764 | #ifdef CONFIG_SANDBOX |
| 765 | setup_ram_buf, |
| 766 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 767 | setup_mon_len, |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 768 | #ifdef CONFIG_OF_CONTROL |
Simon Glass | 0879361 | 2015-02-27 22:06:35 -0700 | [diff] [blame] | 769 | fdtdec_setup, |
Simon Glass | b45122f | 2015-02-27 22:06:34 -0700 | [diff] [blame] | 770 | #endif |
Kevin Hilman | d210718 | 2014-12-09 15:03:58 -0800 | [diff] [blame] | 771 | #ifdef CONFIG_TRACE |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 772 | trace_early_init, |
Kevin Hilman | d210718 | 2014-12-09 15:03:58 -0800 | [diff] [blame] | 773 | #endif |
Simon Glass | 768e0f5 | 2014-11-10 18:00:18 -0700 | [diff] [blame] | 774 | initf_malloc, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 775 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
| 776 | /* TODO: can this go into arch_cpu_init()? */ |
| 777 | probecpu, |
| 778 | #endif |
Bin Meng | a52a068e | 2015-08-20 06:40:18 -0700 | [diff] [blame] | 779 | #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP) |
| 780 | x86_fsp_init, |
| 781 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 782 | arch_cpu_init, /* basic arch cpu dependent setup */ |
| 783 | mark_bootstage, |
Simon Glass | 3ea0953 | 2014-09-03 17:36:59 -0600 | [diff] [blame] | 784 | initf_dm, |
Simon Glass | d4c671c | 2015-03-05 12:25:16 -0700 | [diff] [blame] | 785 | arch_cpu_init_dm, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 786 | #if defined(CONFIG_BOARD_EARLY_INIT_F) |
| 787 | board_early_init_f, |
| 788 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 789 | /* TODO: can any of this go into arch_cpu_init()? */ |
| 790 | #if defined(CONFIG_PPC) && !defined(CONFIG_8xx_CPUCLK_DEFAULT) |
| 791 | get_clocks, /* get CPU and bus clocks (etc.) */ |
| 792 | #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ |
| 793 | && !defined(CONFIG_TQM885D) |
| 794 | adjust_sdram_tbs_8xx, |
| 795 | #endif |
| 796 | /* TODO: can we rename this to timer_init()? */ |
| 797 | init_timebase, |
| 798 | #endif |
Bin Meng | 643b0f7 | 2015-10-22 19:13:33 -0700 | [diff] [blame] | 799 | #if defined(CONFIG_X86) || defined(CONFIG_ARM) || defined(CONFIG_MIPS) || \ |
Thomas Chou | a54915d | 2015-10-22 22:28:53 +0800 | [diff] [blame] | 800 | defined(CONFIG_BLACKFIN) || defined(CONFIG_NDS32) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 801 | timer_init, /* initialize timer */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 802 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 803 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
| 804 | #if !defined(CONFIG_CPM2) |
| 805 | dpram_init, |
| 806 | #endif |
| 807 | #endif |
| 808 | #if defined(CONFIG_BOARD_POSTCLK_INIT) |
| 809 | board_postclk_init, |
| 810 | #endif |
Peng Fan | 7664846 | 2015-10-30 17:30:02 +0800 | [diff] [blame] | 811 | #if defined(CONFIG_SYS_FSL_CLK) || defined(CONFIG_M68K) |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 812 | get_clocks, |
| 813 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 814 | env_init, /* initialize environment */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 815 | #if defined(CONFIG_8xx_CPUCLK_DEFAULT) |
| 816 | /* get CPU and bus clocks according to the environment variable */ |
| 817 | get_clocks_866, |
| 818 | /* adjust sdram refresh rate according to the new clock */ |
| 819 | sdram_adjust_866, |
| 820 | init_timebase, |
| 821 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 822 | init_baud_rate, /* initialze baudrate settings */ |
| 823 | serial_init, /* serial communications setup */ |
| 824 | console_init_f, /* stage 1 init of console */ |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 825 | #ifdef CONFIG_SANDBOX |
| 826 | sandbox_early_getopt_check, |
| 827 | #endif |
| 828 | #ifdef CONFIG_OF_CONTROL |
| 829 | fdtdec_prepare_fdt, |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 830 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 831 | display_options, /* say that we are here */ |
| 832 | display_text_info, /* show debugging info if required */ |
Masahiro Yamada | 58dac32 | 2014-03-05 17:40:10 +0900 | [diff] [blame] | 833 | #if defined(CONFIG_MPC8260) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 834 | prt_8260_rsr, |
| 835 | prt_8260_clks, |
Masahiro Yamada | 58dac32 | 2014-03-05 17:40:10 +0900 | [diff] [blame] | 836 | #endif /* CONFIG_MPC8260 */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 837 | #if defined(CONFIG_MPC83xx) |
| 838 | prt_83xx_rsr, |
| 839 | #endif |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 840 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 841 | checkcpu, |
| 842 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 843 | print_cpuinfo, /* display cpu info (and speed) */ |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 844 | #if defined(CONFIG_MPC5xxx) |
| 845 | prt_mpc5xxx_clks, |
| 846 | #endif /* CONFIG_MPC5xxx */ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 847 | #if defined(CONFIG_DISPLAY_BOARDINFO) |
Masahiro Yamada | 0365ffc | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 848 | show_board_info, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 849 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 850 | INIT_FUNC_WATCHDOG_INIT |
| 851 | #if defined(CONFIG_MISC_INIT_F) |
| 852 | misc_init_f, |
| 853 | #endif |
| 854 | INIT_FUNC_WATCHDOG_RESET |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 855 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 856 | init_func_i2c, |
| 857 | #endif |
| 858 | #if defined(CONFIG_HARD_SPI) |
| 859 | init_func_spi, |
| 860 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 861 | announce_dram_init, |
| 862 | /* TODO: unify all these dram functions? */ |
Kun-Hua Huang | 2e88bb2 | 2015-08-24 14:52:35 +0800 | [diff] [blame] | 863 | #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \ |
| 864 | defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 865 | dram_init, /* configure available RAM banks */ |
| 866 | #endif |
angelo@sysam.it | e310b93 | 2015-02-12 01:40:17 +0100 | [diff] [blame] | 867 | #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 868 | init_func_ram, |
| 869 | #endif |
| 870 | #ifdef CONFIG_POST |
| 871 | post_init_f, |
| 872 | #endif |
| 873 | INIT_FUNC_WATCHDOG_RESET |
| 874 | #if defined(CONFIG_SYS_DRAM_TEST) |
| 875 | testdram, |
| 876 | #endif /* CONFIG_SYS_DRAM_TEST */ |
| 877 | INIT_FUNC_WATCHDOG_RESET |
| 878 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 879 | #ifdef CONFIG_POST |
| 880 | init_post, |
| 881 | #endif |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 882 | INIT_FUNC_WATCHDOG_RESET |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 883 | /* |
| 884 | * Now that we have DRAM mapped and working, we can |
| 885 | * relocate the code and continue running from DRAM. |
| 886 | * |
| 887 | * Reserve memory at end of RAM for (top down in that order): |
| 888 | * - area that won't get touched by U-Boot and Linux (optional) |
| 889 | * - kernel log buffer |
| 890 | * - protected RAM |
| 891 | * - LCD framebuffer |
| 892 | * - monitor code |
| 893 | * - board info struct |
| 894 | */ |
| 895 | setup_dest_addr, |
Thomas Chou | bbfdff3 | 2015-10-27 11:23:39 +0800 | [diff] [blame] | 896 | #if defined(CONFIG_BLACKFIN) |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 897 | /* Blackfin u-boot monitor should be on top of the ram */ |
| 898 | reserve_uboot, |
| 899 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 900 | #if defined(CONFIG_LOGBUFFER) && !defined(CONFIG_ALT_LB_ADDR) |
| 901 | reserve_logbuffer, |
| 902 | #endif |
| 903 | #ifdef CONFIG_PRAM |
| 904 | reserve_pram, |
| 905 | #endif |
| 906 | reserve_round_4k, |
| 907 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) && \ |
| 908 | defined(CONFIG_ARM) |
| 909 | reserve_mmu, |
| 910 | #endif |
| 911 | #ifdef CONFIG_LCD |
| 912 | reserve_lcd, |
| 913 | #endif |
Simon Glass | 71c52db | 2013-06-11 11:14:42 -0700 | [diff] [blame] | 914 | reserve_trace, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 915 | /* TODO: Why the dependency on CONFIG_8xx? */ |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 916 | #if defined(CONFIG_VIDEO) && (!defined(CONFIG_PPC) || defined(CONFIG_8xx)) && \ |
| 917 | !defined(CONFIG_ARM) && !defined(CONFIG_X86) && \ |
angelo@sysam.it | 944ab34 | 2015-03-28 11:34:52 +0100 | [diff] [blame] | 918 | !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 919 | reserve_video, |
| 920 | #endif |
Thomas Chou | bbfdff3 | 2015-10-27 11:23:39 +0800 | [diff] [blame] | 921 | #if !defined(CONFIG_BLACKFIN) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 922 | reserve_uboot, |
Sonic Zhang | d54d7eb | 2014-07-17 19:01:34 +0800 | [diff] [blame] | 923 | #endif |
Simon Glass | 8cae8a6 | 2013-03-05 14:39:45 +0000 | [diff] [blame] | 924 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 925 | reserve_malloc, |
| 926 | reserve_board, |
Simon Glass | 8cae8a6 | 2013-03-05 14:39:45 +0000 | [diff] [blame] | 927 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 928 | setup_machine, |
| 929 | reserve_global_data, |
| 930 | reserve_fdt, |
Simon Glass | 146251f | 2015-01-19 22:16:12 -0700 | [diff] [blame] | 931 | reserve_arch, |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 932 | reserve_stacks, |
| 933 | setup_dram_config, |
| 934 | show_dram_config, |
Daniel Schwierzeck | fb3db63 | 2015-11-01 17:36:13 +0100 | [diff] [blame] | 935 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_MIPS) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 936 | setup_board_part1, |
Daniel Schwierzeck | fb3db63 | 2015-11-01 17:36:13 +0100 | [diff] [blame] | 937 | #endif |
| 938 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 939 | INIT_FUNC_WATCHDOG_RESET |
| 940 | setup_board_part2, |
| 941 | #endif |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 942 | display_new_sp, |
Simon Glass | e4fef6c | 2013-03-11 14:30:42 +0000 | [diff] [blame] | 943 | #ifdef CONFIG_SYS_EXTBDINFO |
| 944 | setup_board_extra, |
| 945 | #endif |
| 946 | INIT_FUNC_WATCHDOG_RESET |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 947 | reloc_fdt, |
| 948 | setup_reloc, |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 949 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 313aef3 | 2015-01-01 16:18:09 -0700 | [diff] [blame] | 950 | copy_uboot_to_ram, |
| 951 | clear_bss, |
| 952 | do_elf_reloc_fixups, |
| 953 | #endif |
Simon Glass | 808434c | 2013-11-10 10:26:59 -0700 | [diff] [blame] | 954 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 955 | jump_to_copy, |
| 956 | #endif |
| 957 | NULL, |
| 958 | }; |
| 959 | |
| 960 | void board_init_f(ulong boot_flags) |
| 961 | { |
York Sun | 2a1680e | 2014-05-02 17:28:04 -0700 | [diff] [blame] | 962 | #ifdef CONFIG_SYS_GENERIC_GLOBAL_DATA |
| 963 | /* |
| 964 | * For some archtectures, global data is initialized and used before |
| 965 | * calling this function. The data should be preserved. For others, |
| 966 | * CONFIG_SYS_GENERIC_GLOBAL_DATA should be defined and use the stack |
| 967 | * here to host global data until relocation. |
| 968 | */ |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 969 | gd_t data; |
| 970 | |
| 971 | gd = &data; |
| 972 | |
David Feng | cce6be7 | 2013-12-14 11:47:36 +0800 | [diff] [blame] | 973 | /* |
| 974 | * Clear global data before it is accessed at debug print |
| 975 | * in initcall_run_list. Otherwise the debug print probably |
| 976 | * get the wrong vaule of gd->have_console. |
| 977 | */ |
David Feng | cce6be7 | 2013-12-14 11:47:36 +0800 | [diff] [blame] | 978 | zero_global_data(); |
| 979 | #endif |
| 980 | |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 981 | gd->flags = boot_flags; |
Alexey Brodkin | 9aed5a2 | 2013-11-27 22:32:40 +0400 | [diff] [blame] | 982 | gd->have_console = 0; |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 983 | |
| 984 | if (initcall_run_list(init_sequence_f)) |
| 985 | hang(); |
| 986 | |
Ben Stoltz | 9b21749 | 2015-07-31 09:31:37 -0600 | [diff] [blame] | 987 | #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ |
| 988 | !defined(CONFIG_EFI_APP) |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 989 | /* NOTREACHED - jump_to_copy() does not return */ |
| 990 | hang(); |
| 991 | #endif |
| 992 | } |
| 993 | |
Alexey Brodkin | 3fb8016 | 2015-02-24 19:40:36 +0300 | [diff] [blame] | 994 | #if defined(CONFIG_X86) || defined(CONFIG_ARC) |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 995 | /* |
| 996 | * For now this code is only used on x86. |
| 997 | * |
| 998 | * init_sequence_f_r is the list of init functions which are run when |
| 999 | * U-Boot is executing from Flash with a semi-limited 'C' environment. |
| 1000 | * The following limitations must be considered when implementing an |
| 1001 | * '_f_r' function: |
| 1002 | * - 'static' variables are read-only |
| 1003 | * - Global Data (gd->xxx) is read/write |
| 1004 | * |
| 1005 | * The '_f_r' sequence must, as a minimum, copy U-Boot to RAM (if |
| 1006 | * supported). It _should_, if possible, copy global data to RAM and |
| 1007 | * initialise the CPU caches (to speed up the relocation process) |
| 1008 | * |
| 1009 | * NOTE: At present only x86 uses this route, but it is intended that |
| 1010 | * all archs will move to this when generic relocation is implemented. |
| 1011 | */ |
| 1012 | static init_fnc_t init_sequence_f_r[] = { |
| 1013 | init_cache_f_r, |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 1014 | |
| 1015 | NULL, |
| 1016 | }; |
| 1017 | |
| 1018 | void board_init_f_r(void) |
| 1019 | { |
| 1020 | if (initcall_run_list(init_sequence_f_r)) |
| 1021 | hang(); |
| 1022 | |
| 1023 | /* |
| 1024 | * U-Boot has been copied into SDRAM, the BSS has been cleared etc. |
| 1025 | * Transfer execution from Flash to RAM by calculating the address |
| 1026 | * of the in-RAM copy of board_init_r() and calling it |
| 1027 | */ |
Alexey Brodkin | 7bf9f20 | 2015-02-25 17:59:02 +0300 | [diff] [blame] | 1028 | (board_init_r + gd->reloc_off)((gd_t *)gd, gd->relocaddr); |
Simon Glass | 48a3380 | 2013-03-05 14:39:52 +0000 | [diff] [blame] | 1029 | |
| 1030 | /* NOTREACHED - board_init_r() does not return */ |
| 1031 | hang(); |
| 1032 | } |
Alexey Brodkin | 5bcd19a | 2015-03-24 11:12:47 +0300 | [diff] [blame] | 1033 | #endif /* CONFIG_X86 */ |