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