kobject-data.ld 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (c) 2017,2021 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifdef CONFIG_USERSPACE
  7. z_kobject_data_begin = .;
  8. SECTION_DATA_PROLOGUE(kobject_data,,)
  9. {
  10. #if !defined(LINKER_ZEPHYR_PREBUILT) && \
  11. !defined(LINKER_ZEPHYR_FINAL)
  12. #ifdef CONFIG_DYNAMIC_OBJECTS
  13. PROVIDE(_thread_idx_map = .);
  14. . = . + CONFIG_MAX_THREAD_BYTES;
  15. #endif
  16. #endif /* !LINKER_ZEPHYR_PREBUILT && !LINKER_ZEPHYR_FINAL */
  17. /* During LINKER_KOBJECT_PREBUILT and LINKER_ZEPHYR_PREBUILT,
  18. * space needs to be reserved for the rodata that will be
  19. * produced by gperf during the final stages of linking.
  20. * The alignment and size are produced by
  21. * scripts/gen_kobject_placeholders.py. These are here
  22. * so the addresses to kobjects would remain the same
  23. * during the final stages of linking (LINKER_ZEPHYR_FINAL).
  24. */
  25. #if defined(LINKER_ZEPHYR_PREBUILT)
  26. #include <linker-kobject-prebuilt-data.h>
  27. #ifdef CONFIG_DYNAMIC_OBJECTS
  28. /* This is produced by gperf. Put a place holder here
  29. * to avoid compilation error.
  30. */
  31. PROVIDE(_thread_idx_map = .);
  32. #endif
  33. #ifdef KOBJECT_DATA_ALIGN
  34. . = ALIGN(KOBJECT_DATA_ALIGN);
  35. . = . + KOBJECT_DATA_SZ;
  36. #endif
  37. #endif /* LINKER_ZEPHYR_PREBUILT */
  38. #if defined(LINKER_ZEPHYR_FINAL)
  39. #include <linker-kobject-prebuilt-data.h>
  40. #ifdef KOBJECT_DATA_ALIGN
  41. . = ALIGN(KOBJECT_DATA_ALIGN);
  42. _kobject_data_area_start = .;
  43. #endif
  44. *(".kobject_data.data*")
  45. *(".kobject_data.sdata*")
  46. #ifdef KOBJECT_DATA_ALIGN
  47. _kobject_data_area_end = .;
  48. _kobject_data_area_used = _kobject_data_area_end - _kobject_data_area_start;
  49. ASSERT(_kobject_data_area_used <= KOBJECT_DATA_SZ,
  50. "scripts/gen_kobject_placeholders.py did not reserve enough space \
  51. for kobject data."
  52. );
  53. /* Padding is needed to preserve kobject addresses
  54. * if we have reserved more space than needed.
  55. */
  56. . = MAX(., _kobject_data_area_start + KOBJECT_DATA_SZ);
  57. #endif /* KOBJECT_DATA_ALIGN */
  58. #endif /* LINKER_ZEPHYR_FINAL */
  59. } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  60. #endif /* CONFIG_USERSPACE */