kobject-priv-stacks.ld 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2017,2021 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifdef CONFIG_USERSPACE
  7. #ifdef CONFIG_GEN_PRIV_STACKS
  8. SECTION_DATA_PROLOGUE(priv_stacks_noinit,,)
  9. {
  10. z_priv_stacks_ram_start = .;
  11. /* During LINKER_KOBJECT_PREBUILT and LINKER_ZEPHYR_PREBUILT,
  12. * space needs to be reserved for the rodata that will be
  13. * produced by gperf during the final stages of linking.
  14. * The alignment and size are produced by
  15. * scripts/gen_kobject_placeholders.py. These are here
  16. * so the addresses to kobjects would remain the same
  17. * during the final stages of linking (LINKER_ZEPHYR_FINAL).
  18. */
  19. #if defined(LINKER_ZEPHYR_PREBUILT)
  20. #include <linker-kobject-prebuilt-priv-stacks.h>
  21. #ifdef KOBJECT_PRIV_STACKS_ALIGN
  22. . = ALIGN(KOBJECT_PRIV_STACKS_ALIGN);
  23. . = . + KOBJECT_PRIV_STACKS_SZ;
  24. #endif
  25. #endif /* LINKER_ZEPHYR_PREBUILT */
  26. #if defined(LINKER_ZEPHYR_FINAL)
  27. #include <linker-kobject-prebuilt-priv-stacks.h>
  28. #ifdef KOBJECT_PRIV_STACKS_ALIGN
  29. . = ALIGN(KOBJECT_PRIV_STACKS_ALIGN);
  30. #endif
  31. *(".priv_stacks.noinit")
  32. #endif /* LINKER_ZEPHYR_FINAL */
  33. z_priv_stacks_ram_end = .;
  34. #if defined(LINKER_ZEPHYR_FINAL)
  35. #ifdef KOBJECT_PRIV_STACKS_ALIGN
  36. z_priv_stacks_ram_used = z_priv_stacks_ram_end - z_priv_stacks_ram_start;
  37. ASSERT(z_priv_stacks_ram_used <= KOBJECT_PRIV_STACKS_SZ,
  38. "scripts/gen_kobject_placeholders.py did not reserve enough space \
  39. for priviledged stacks."
  40. );
  41. /* Padding is needed to preserve kobject addresses
  42. * if we have reserved more space than needed.
  43. */
  44. . = MAX(., z_priv_stacks_ram_start + KOBJECT_PRIV_STACKS_SZ);
  45. #endif /* KOBJECT_PRIV_STACKS_ALIGN */
  46. #endif /* LINKER_ZEPHYR_FINAL */
  47. } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  48. #endif /* CONFIG_GEN_PRIV_STACKS */
  49. #endif /* CONFIG_USERSPACE */