stack.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org>
  4. *
  5. * Copyright (c) 2011 The Chromium OS Authors.
  6. * (C) Copyright 2002-2006
  7. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. *
  9. * (C) Copyright 2002
  10. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  11. * Marius Groeger <mgroeger@sysgo.de>
  12. */
  13. #include <common.h>
  14. #include <init.h>
  15. #include <lmb.h>
  16. #include <asm/global_data.h>
  17. DECLARE_GLOBAL_DATA_PTR;
  18. int arch_reserve_stacks(void)
  19. {
  20. #ifdef CONFIG_SPL_BUILD
  21. gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
  22. gd->irq_sp = gd->start_addr_sp;
  23. #else
  24. /* setup stack pointer for exceptions */
  25. gd->irq_sp = gd->start_addr_sp;
  26. # if !defined(CONFIG_ARM64)
  27. /* leave 3 words for abort-stack, plus 1 for alignment */
  28. gd->start_addr_sp -= 16;
  29. # endif
  30. #endif
  31. return 0;
  32. }
  33. static ulong get_sp(void)
  34. {
  35. ulong ret;
  36. asm("mov %0, sp" : "=r"(ret) : );
  37. return ret;
  38. }
  39. void arch_lmb_reserve(struct lmb *lmb)
  40. {
  41. arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 16384);
  42. }