spl.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2010-2012
  4. * Texas Instruments, <www.ti.com>
  5. *
  6. * Aneesh V <aneesh@ti.com>
  7. * Tom Rini <trini@ti.com>
  8. */
  9. #include <common.h>
  10. #include <config.h>
  11. #include <init.h>
  12. #include <spl.h>
  13. #include <image.h>
  14. #include <asm/cache.h>
  15. #include <linux/compiler.h>
  16. #include <asm/mach-types.h>
  17. #ifndef CONFIG_SPL_DM
  18. /* Pointer to as well as the global data structure for SPL */
  19. DECLARE_GLOBAL_DATA_PTR;
  20. /*
  21. * WARNING: This is going away very soon. Don't use it and don't submit
  22. * pafches that rely on it. The global_data area is set up in crt0.S.
  23. */
  24. gd_t gdata __attribute__ ((section(".data")));
  25. #endif
  26. /*
  27. * In the context of SPL, board_init_f() prepares the hardware for execution
  28. * from system RAM (DRAM, DDR...). As system RAM may not be available yet,
  29. * board_init_f() must use the current GD to store any data which must be
  30. * passed on to later stages. These data include the relocation destination,
  31. * the future stack, and the future GD location. BSS is cleared after this
  32. * function (and therefore must be accessible).
  33. *
  34. * We provide this version by default but mark it as __weak to allow for
  35. * platforms to do this in their own way if needed. Please see the top
  36. * level U-Boot README "Board Initialization Flow" section for info on what
  37. * to put in this function.
  38. */
  39. void __weak board_init_f(ulong dummy)
  40. {
  41. }
  42. /*
  43. * This function jumps to an image with argument. Normally an FDT or ATAGS
  44. * image.
  45. */
  46. #ifdef CONFIG_SPL_OS_BOOT
  47. #ifdef CONFIG_ARM64
  48. void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
  49. {
  50. debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
  51. cleanup_before_linux();
  52. armv8_switch_to_el2((u64)spl_image->arg, 0, 0, 0,
  53. spl_image->entry_point, ES_TO_AARCH64);
  54. }
  55. #else
  56. void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
  57. {
  58. unsigned long machid = 0xffffffff;
  59. #ifdef CONFIG_MACH_TYPE
  60. machid = CONFIG_MACH_TYPE;
  61. #endif
  62. debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
  63. typedef void (*image_entry_arg_t)(int, int, void *)
  64. __attribute__ ((noreturn));
  65. image_entry_arg_t image_entry =
  66. (image_entry_arg_t)(uintptr_t) spl_image->entry_point;
  67. cleanup_before_linux();
  68. image_entry(0, machid, spl_image->arg);
  69. }
  70. #endif /* CONFIG_ARM64 */
  71. #endif