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