kobject-rom.ld 1.5 KB

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