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