1 /* 2 * (C) Copyright 2010 3 * Texas Instruments, <www.ti.com> 4 * 5 * Aneesh V <aneesh@ti.com> 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #include <common.h> 11 #include <binman_sym.h> 12 #include <dm.h> 13 #include <spl.h> 14 #include <asm/u-boot.h> 15 #include <nand.h> 16 #include <fat.h> 17 #include <version.h> 18 #include <image.h> 19 #include <malloc.h> 20 #include <dm/root.h> 21 #include <linux/compiler.h> 22 #include <fdt_support.h> 23 24 DECLARE_GLOBAL_DATA_PTR; 25 26 #ifndef CONFIG_SYS_UBOOT_START 27 #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE 28 #endif 29 #ifndef CONFIG_SYS_MONITOR_LEN 30 /* Unknown U-Boot size, let's assume it will not be more than 200 KB */ 31 #define CONFIG_SYS_MONITOR_LEN (200 * 1024) 32 #endif 33 34 u32 *boot_params_ptr = NULL; 35 36 /* See spl.h for information about this */ 37 binman_sym_declare(ulong, u_boot_any, pos); 38 39 /* Define board data structure */ 40 static bd_t bdata __attribute__ ((section(".data"))); 41 42 /* 43 * Board-specific Platform code can reimplement show_boot_progress () if needed 44 */ 45 __weak void show_boot_progress(int val) {} 46 47 /* 48 * Default function to determine if u-boot or the OS should 49 * be started. This implementation always returns 1. 50 * 51 * Please implement your own board specific funcion to do this. 52 * 53 * RETURN 54 * 0 to not start u-boot 55 * positive if u-boot should start 56 */ 57 #ifdef CONFIG_SPL_OS_BOOT 58 __weak int spl_start_uboot(void) 59 { 60 puts("SPL: Please implement spl_start_uboot() for your board\n"); 61 puts("SPL: Direct Linux boot not active!\n"); 62 return 1; 63 } 64 65 /* weak default platform specific function to initialize 66 * dram banks 67 */ 68 __weak int dram_init_banksize(void) 69 { 70 return 0; 71 } 72 73 /* 74 * Weak default function for arch specific zImage check. Return zero 75 * and fill start and end address if image is recognized. 76 */ 77 int __weak bootz_setup(ulong image, ulong *start, ulong *end) 78 { 79 return 1; 80 } 81 #endif 82 83 void spl_fixup_fdt(void) 84 { 85 #if defined(CONFIG_SPL_OF_LIBFDT) && defined(CONFIG_SYS_SPL_ARGS_ADDR) 86 void *fdt_blob = (void *)CONFIG_SYS_SPL_ARGS_ADDR; 87 int err; 88 89 err = fdt_check_header(fdt_blob); 90 if (err < 0) { 91 printf("fdt_root: %s\n", fdt_strerror(err)); 92 return; 93 } 94 95 /* fixup the memory dt node */ 96 err = fdt_shrink_to_minimum(fdt_blob, 0); 97 if (err == 0) { 98 printf("spl: fdt_shrink_to_minimum err - %d\n", err); 99 return; 100 } 101 102 err = arch_fixup_fdt(fdt_blob); 103 if (err) { 104 printf("spl: arch_fixup_fdt err - %d\n", err); 105 return; 106 } 107 #endif 108 } 109 110 /* 111 * Weak default function for board specific cleanup/preparation before 112 * Linux boot. Some boards/platforms might not need it, so just provide 113 * an empty stub here. 114 */ 115 __weak void spl_board_prepare_for_linux(void) 116 { 117 /* Nothing to do! */ 118 } 119 120 __weak void spl_board_prepare_for_boot(void) 121 { 122 /* Nothing to do! */ 123 } 124 125 void spl_set_header_raw_uboot(struct spl_image_info *spl_image) 126 { 127 ulong u_boot_pos = binman_sym(ulong, u_boot_any, pos); 128 129 spl_image->size = CONFIG_SYS_MONITOR_LEN; 130 131 /* 132 * Binman error cases: address of the end of the previous region or the 133 * start of the image's entry area (usually 0) if there is no previous 134 * region. 135 */ 136 if (u_boot_pos && u_boot_pos != BINMAN_SYM_MISSING) { 137 /* Binman does not support separated entry addresses */ 138 spl_image->entry_point = u_boot_pos; 139 spl_image->load_addr = u_boot_pos; 140 } else { 141 spl_image->entry_point = CONFIG_SYS_UBOOT_START; 142 spl_image->load_addr = CONFIG_SYS_TEXT_BASE; 143 } 144 spl_image->os = IH_OS_U_BOOT; 145 spl_image->name = "U-Boot"; 146 } 147 148 int spl_parse_image_header(struct spl_image_info *spl_image, 149 const struct image_header *header) 150 { 151 if (image_get_magic(header) == IH_MAGIC) { 152 #ifdef CONFIG_SPL_LEGACY_IMAGE_SUPPORT 153 u32 header_size = sizeof(struct image_header); 154 155 if (spl_image->flags & SPL_COPY_PAYLOAD_ONLY) { 156 /* 157 * On some system (e.g. powerpc), the load-address and 158 * entry-point is located at address 0. We can't load 159 * to 0-0x40. So skip header in this case. 160 */ 161 spl_image->load_addr = image_get_load(header); 162 spl_image->entry_point = image_get_ep(header); 163 spl_image->size = image_get_data_size(header); 164 } else { 165 spl_image->entry_point = image_get_load(header); 166 /* Load including the header */ 167 spl_image->load_addr = spl_image->entry_point - 168 header_size; 169 spl_image->size = image_get_data_size(header) + 170 header_size; 171 } 172 spl_image->os = image_get_os(header); 173 spl_image->name = image_get_name(header); 174 debug("spl: payload image: %.*s load addr: 0x%lx size: %d\n", 175 IH_NMLEN, spl_image->name, 176 spl_image->load_addr, spl_image->size); 177 #else 178 /* LEGACY image not supported */ 179 debug("Legacy boot image support not enabled, proceeding to other boot methods\n"); 180 return -EINVAL; 181 #endif 182 } else { 183 #ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE 184 /* 185 * CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the 186 * code which loads images in SPL cannot guarantee that 187 * absolutely all read errors will be reported. 188 * An example is the LPC32XX MLC NAND driver, which 189 * will consider that a completely unreadable NAND block 190 * is bad, and thus should be skipped silently. 191 */ 192 panic("** no mkimage signature but raw image not supported"); 193 #endif 194 195 #ifdef CONFIG_SPL_OS_BOOT 196 ulong start, end; 197 198 if (!bootz_setup((ulong)header, &start, &end)) { 199 spl_image->name = "Linux"; 200 spl_image->os = IH_OS_LINUX; 201 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR; 202 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR; 203 spl_image->size = end - start; 204 debug("spl: payload zImage, load addr: 0x%lx size: %d\n", 205 spl_image->load_addr, spl_image->size); 206 return 0; 207 } 208 #endif 209 210 #ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT 211 /* Signature not found - assume u-boot.bin */ 212 debug("mkimage signature not found - ih_magic = %x\n", 213 header->ih_magic); 214 spl_set_header_raw_uboot(spl_image); 215 #else 216 /* RAW image not supported, proceed to other boot methods. */ 217 debug("Raw boot image support not enabled, proceeding to other boot methods\n"); 218 return -EINVAL; 219 #endif 220 } 221 222 return 0; 223 } 224 225 __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) 226 { 227 typedef void __noreturn (*image_entry_noargs_t)(void); 228 229 image_entry_noargs_t image_entry = 230 (image_entry_noargs_t)spl_image->entry_point; 231 232 debug("image entry point: 0x%lX\n", spl_image->entry_point); 233 image_entry(); 234 } 235 236 static int spl_common_init(bool setup_malloc) 237 { 238 int ret; 239 240 debug("spl_early_init()\n"); 241 242 #if CONFIG_VAL(SYS_MALLOC_F_LEN) 243 if (setup_malloc) { 244 #ifdef CONFIG_MALLOC_F_ADDR 245 gd->malloc_base = CONFIG_MALLOC_F_ADDR; 246 #endif 247 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN); 248 gd->malloc_ptr = 0; 249 } 250 #endif 251 ret = bootstage_init(true); 252 if (ret) { 253 debug("%s: Failed to set up bootstage: ret=%d\n", __func__, 254 ret); 255 return ret; 256 } 257 bootstage_mark_name(BOOTSTAGE_ID_START_SPL, "spl"); 258 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { 259 ret = fdtdec_setup(); 260 if (ret) { 261 debug("fdtdec_setup() returned error %d\n", ret); 262 return ret; 263 } 264 } 265 if (CONFIG_IS_ENABLED(DM)) { 266 bootstage_start(BOOTSTATE_ID_ACCUM_DM_SPL, "dm_spl"); 267 /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */ 268 ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA)); 269 bootstage_accum(BOOTSTATE_ID_ACCUM_DM_SPL); 270 if (ret) { 271 debug("dm_init_and_scan() returned error %d\n", ret); 272 return ret; 273 } 274 } 275 276 return 0; 277 } 278 279 void spl_set_bd(void) 280 { 281 if (!gd->bd) 282 gd->bd = &bdata; 283 } 284 285 int spl_early_init(void) 286 { 287 int ret; 288 289 ret = spl_common_init(true); 290 if (ret) 291 return ret; 292 gd->flags |= GD_FLG_SPL_EARLY_INIT; 293 294 return 0; 295 } 296 297 int spl_init(void) 298 { 299 int ret; 300 bool setup_malloc = !(IS_ENABLED(CONFIG_SPL_STACK_R) && 301 IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIMPLE)); 302 303 if (!(gd->flags & GD_FLG_SPL_EARLY_INIT)) { 304 ret = spl_common_init(setup_malloc); 305 if (ret) 306 return ret; 307 } 308 gd->flags |= GD_FLG_SPL_INIT; 309 310 return 0; 311 } 312 313 #ifndef BOOT_DEVICE_NONE 314 #define BOOT_DEVICE_NONE 0xdeadbeef 315 #endif 316 317 __weak void board_boot_order(u32 *spl_boot_list) 318 { 319 spl_boot_list[0] = spl_boot_device(); 320 } 321 322 static struct spl_image_loader *spl_ll_find_loader(uint boot_device) 323 { 324 struct spl_image_loader *drv = 325 ll_entry_start(struct spl_image_loader, spl_image_loader); 326 const int n_ents = 327 ll_entry_count(struct spl_image_loader, spl_image_loader); 328 struct spl_image_loader *entry; 329 330 for (entry = drv; entry != drv + n_ents; entry++) { 331 if (boot_device == entry->boot_device) 332 return entry; 333 } 334 335 /* Not found */ 336 return NULL; 337 } 338 339 static int spl_load_image(struct spl_image_info *spl_image, 340 struct spl_image_loader *loader) 341 { 342 struct spl_boot_device bootdev; 343 344 bootdev.boot_device = loader->boot_device; 345 bootdev.boot_device_name = NULL; 346 347 return loader->load_image(spl_image, &bootdev); 348 } 349 350 /** 351 * boot_from_devices() - Try loading an booting U-Boot from a list of devices 352 * 353 * @spl_image: Place to put the image details if successful 354 * @spl_boot_list: List of boot devices to try 355 * @count: Number of elements in spl_boot_list 356 * @return 0 if OK, -ve on error 357 */ 358 static int boot_from_devices(struct spl_image_info *spl_image, 359 u32 spl_boot_list[], int count) 360 { 361 int i; 362 363 for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) { 364 struct spl_image_loader *loader; 365 366 loader = spl_ll_find_loader(spl_boot_list[i]); 367 #if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT) 368 if (loader) 369 printf("Trying to boot from %s\n", loader->name); 370 else 371 puts("SPL: Unsupported Boot Device!\n"); 372 #endif 373 if (loader && !spl_load_image(spl_image, loader)) 374 return 0; 375 } 376 377 return -ENODEV; 378 } 379 380 void board_init_r(gd_t *dummy1, ulong dummy2) 381 { 382 u32 spl_boot_list[] = { 383 BOOT_DEVICE_NONE, 384 BOOT_DEVICE_NONE, 385 BOOT_DEVICE_NONE, 386 BOOT_DEVICE_NONE, 387 BOOT_DEVICE_NONE, 388 }; 389 struct spl_image_info spl_image; 390 391 debug(">>spl:board_init_r()\n"); 392 393 spl_set_bd(); 394 395 #ifdef CONFIG_SPL_OS_BOOT 396 dram_init_banksize(); 397 #endif 398 399 #if defined(CONFIG_SYS_SPL_MALLOC_START) 400 mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START, 401 CONFIG_SYS_SPL_MALLOC_SIZE); 402 gd->flags |= GD_FLG_FULL_MALLOC_INIT; 403 #endif 404 if (!(gd->flags & GD_FLG_SPL_INIT)) { 405 if (spl_init()) 406 hang(); 407 } 408 #if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6) 409 /* 410 * timer_init() does not exist on PPC systems. The timer is initialized 411 * and enabled (decrementer) in interrupt_init() here. 412 */ 413 timer_init(); 414 #endif 415 416 #if CONFIG_IS_ENABLED(BOARD_INIT) 417 spl_board_init(); 418 #endif 419 420 memset(&spl_image, '\0', sizeof(spl_image)); 421 #ifdef CONFIG_SYS_SPL_ARGS_ADDR 422 spl_image.arg = (void *)CONFIG_SYS_SPL_ARGS_ADDR; 423 #endif 424 board_boot_order(spl_boot_list); 425 426 if (boot_from_devices(&spl_image, spl_boot_list, 427 ARRAY_SIZE(spl_boot_list))) { 428 puts("SPL: failed to boot from all boot devices\n"); 429 hang(); 430 } 431 432 #ifdef CONFIG_CPU_V7M 433 spl_image.entry_point |= 0x1; 434 #endif 435 switch (spl_image.os) { 436 case IH_OS_U_BOOT: 437 debug("Jumping to U-Boot\n"); 438 break; 439 #if CONFIG_IS_ENABLED(ATF) 440 case IH_OS_ARM_TRUSTED_FIRMWARE: 441 debug("Jumping to U-Boot via ARM Trusted Firmware\n"); 442 spl_invoke_atf(&spl_image); 443 break; 444 #endif 445 #ifdef CONFIG_SPL_OS_BOOT 446 case IH_OS_LINUX: 447 debug("Jumping to Linux\n"); 448 spl_fixup_fdt(); 449 spl_board_prepare_for_linux(); 450 jump_to_image_linux(&spl_image); 451 #endif 452 default: 453 debug("Unsupported OS image.. Jumping nevertheless..\n"); 454 } 455 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE) 456 debug("SPL malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr, 457 gd->malloc_ptr / 1024); 458 #endif 459 #ifdef CONFIG_BOOTSTAGE_STASH 460 int ret; 461 462 bootstage_mark_name(BOOTSTAGE_ID_END_SPL, "end_spl"); 463 ret = bootstage_stash((void *)CONFIG_BOOTSTAGE_STASH_ADDR, 464 CONFIG_BOOTSTAGE_STASH_SIZE); 465 if (ret) 466 debug("Failed to stash bootstage: err=%d\n", ret); 467 #endif 468 469 debug("loaded - jumping to U-Boot...\n"); 470 spl_board_prepare_for_boot(); 471 jump_to_image_no_args(&spl_image); 472 } 473 474 /* 475 * This requires UART clocks to be enabled. In order for this to work the 476 * caller must ensure that the gd pointer is valid. 477 */ 478 void preloader_console_init(void) 479 { 480 gd->baudrate = CONFIG_BAUDRATE; 481 482 serial_init(); /* serial communications setup */ 483 484 gd->have_console = 1; 485 486 #ifndef CONFIG_SPL_DISABLE_BANNER_PRINT 487 puts("\nU-Boot SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \ 488 U_BOOT_TIME " " U_BOOT_TZ ")\n"); 489 #endif 490 #ifdef CONFIG_SPL_DISPLAY_PRINT 491 spl_display_print(); 492 #endif 493 } 494 495 /** 496 * spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution 497 * 498 * Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM 499 * for the main board_init_r() execution. This is typically because we need 500 * more stack space for things like the MMC sub-system. 501 * 502 * This function calculates the stack position, copies the global_data into 503 * place, sets the new gd (except for ARM, for which setting GD within a C 504 * function may not always work) and returns the new stack position. The 505 * caller is responsible for setting up the sp register and, in the case 506 * of ARM, setting up gd. 507 * 508 * All of this is done using the same layout and alignments as done in 509 * board_init_f_init_reserve() / board_init_f_alloc_reserve(). 510 * 511 * @return new stack location, or 0 to use the same stack 512 */ 513 ulong spl_relocate_stack_gd(void) 514 { 515 #ifdef CONFIG_SPL_STACK_R 516 gd_t *new_gd; 517 ulong ptr = CONFIG_SPL_STACK_R_ADDR; 518 519 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN) 520 if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) { 521 ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN; 522 gd->malloc_base = ptr; 523 gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN; 524 gd->malloc_ptr = 0; 525 } 526 #endif 527 /* Get stack position: use 8-byte alignment for ABI compliance */ 528 ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16); 529 new_gd = (gd_t *)ptr; 530 memcpy(new_gd, (void *)gd, sizeof(gd_t)); 531 #if CONFIG_IS_ENABLED(DM) 532 dm_fixup_for_gd_move(new_gd); 533 #endif 534 #if !defined(CONFIG_ARM) 535 gd = new_gd; 536 #endif 537 return ptr; 538 #else 539 return 0; 540 #endif 541 } 542