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