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