spl.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * (C) Copyright 2010-2012
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Aneesh V <aneesh@ti.com>
  6. * Tom Rini <trini@ti.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #include <common.h>
  11. #include <config.h>
  12. #include <spl.h>
  13. #include <image.h>
  14. #include <linux/compiler.h>
  15. #ifndef CONFIG_SPL_DM
  16. /* Pointer to as well as the global data structure for SPL */
  17. DECLARE_GLOBAL_DATA_PTR;
  18. /*
  19. * WARNING: This is going away very soon. Don't use it and don't submit
  20. * pafches that rely on it. The global_data area is set up in crt0.S.
  21. */
  22. gd_t gdata __attribute__ ((section(".data")));
  23. #endif
  24. /*
  25. * In the context of SPL, board_init_f must ensure that any clocks/etc for
  26. * DDR are enabled, ensure that the stack pointer is valid, clear the BSS
  27. * and call board_init_f. We provide this version by default but mark it
  28. * as __weak to allow for platforms to do this in their own way if needed.
  29. */
  30. void __weak board_init_f(ulong dummy)
  31. {
  32. /* Clear the BSS. */
  33. memset(__bss_start, 0, __bss_end - __bss_start);
  34. #ifndef CONFIG_SPL_DM
  35. /* TODO: Remove settings of the global data pointer here */
  36. gd = &gdata;
  37. #endif
  38. board_init_r(NULL, 0);
  39. }
  40. /*
  41. * This function jumps to an image with argument. Normally an FDT or ATAGS
  42. * image.
  43. * arg: Pointer to paramter image in RAM
  44. */
  45. #ifdef CONFIG_SPL_OS_BOOT
  46. void __noreturn jump_to_image_linux(void *arg)
  47. {
  48. unsigned long machid = 0xffffffff;
  49. #ifdef CONFIG_MACH_TYPE
  50. machid = CONFIG_MACH_TYPE;
  51. #endif
  52. debug("Entering kernel arg pointer: 0x%p\n", arg);
  53. typedef void (*image_entry_arg_t)(int, int, void *)
  54. __attribute__ ((noreturn));
  55. image_entry_arg_t image_entry =
  56. (image_entry_arg_t) spl_image.entry_point;
  57. cleanup_before_linux();
  58. image_entry(0, machid, arg);
  59. }
  60. #endif