stack.c 1.1 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 <asm/global_data.h>
  16. #include <asm/mp.h>
  17. DECLARE_GLOBAL_DATA_PTR;
  18. int arch_reserve_stacks(void)
  19. {
  20. ulong *s;
  21. /* setup stack pointer for exceptions */
  22. gd->irq_sp = gd->start_addr_sp;
  23. /* Clear initial stack frame */
  24. s = (ulong *)gd->start_addr_sp;
  25. *s = 0; /* Terminate back chain */
  26. *++s = 0; /* NULL return address */
  27. return 0;
  28. }
  29. int arch_setup_dest_addr(void)
  30. {
  31. #if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
  32. /*
  33. * We need to make sure the location we intend to put secondary core
  34. * boot code is reserved and not used by any part of u-boot
  35. */
  36. if (gd->relocaddr > determine_mp_bootpg(NULL)) {
  37. gd->relocaddr = determine_mp_bootpg(NULL);
  38. debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
  39. }
  40. #endif
  41. return 0;
  42. }