spl.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /* Pointer to as well as the global data structure for SPL */
  16. DECLARE_GLOBAL_DATA_PTR;
  17. gd_t gdata __attribute__ ((section(".data")));
  18. /*
  19. * In the context of SPL, board_init_f must ensure that any clocks/etc for
  20. * DDR are enabled, ensure that the stack pointer is valid, clear the BSS
  21. * and call board_init_f. We provide this version by default but mark it
  22. * as __weak to allow for platforms to do this in their own way if needed.
  23. */
  24. void __weak board_init_f(ulong dummy)
  25. {
  26. /* Set the stack pointer. */
  27. asm volatile("mov sp, %0\n" : : "r"(CONFIG_SPL_STACK));
  28. /* Clear the BSS. */
  29. memset(__bss_start, 0, __bss_end - __bss_start);
  30. /* Set global data pointer. */
  31. gd = &gdata;
  32. board_init_r(NULL, 0);
  33. }
  34. /*
  35. * This function jumps to an image with argument. Normally an FDT or ATAGS
  36. * image.
  37. * arg: Pointer to paramter image in RAM
  38. */
  39. #ifdef CONFIG_SPL_OS_BOOT
  40. void __noreturn jump_to_image_linux(void *arg)
  41. {
  42. unsigned long machid = 0xffffffff;
  43. #ifdef CONFIG_MACH_TYPE
  44. machid = CONFIG_MACH_TYPE;
  45. #endif
  46. debug("Entering kernel arg pointer: 0x%p\n", arg);
  47. typedef void (*image_entry_arg_t)(int, int, void *)
  48. __attribute__ ((noreturn));
  49. image_entry_arg_t image_entry =
  50. (image_entry_arg_t) spl_image.entry_point;
  51. cleanup_before_linux();
  52. image_entry(0, machid, arg);
  53. }
  54. #endif