linker-tool-mwdt.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (c) 2020, Synopsys, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Metware toolchain linker defs
  9. *
  10. * This header file defines the necessary macros used by the linker script for
  11. * use with the metware linker.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_MWDT_H_
  14. #define ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_MWDT_H_
  15. /*
  16. * mwdt linker doesn't have the following directives
  17. */
  18. #define ASSERT(x, y)
  19. #define SUBALIGN(x) ALIGN(x)
  20. #define LOG2CEIL(x) ((((x) <= 2048) ? 11 : (((x) <= 4096)?12:(((x) <= 8192) ? \
  21. 13 : (((x) <= 16384) ? 14 : (((x) <= 32768) ? 15:(((x) <= 65536) ? \
  22. 16 : (((x) <= 131072) ? 17 : (((x) <= 262144) ? 18:(((x) <= 524288) ? \
  23. 19 : (((x) <= 1048576) ? 20 : (((x) <= 2097152) ? \
  24. 21 : (((x) <= 4194304) ? 22 : (((x) <= 8388608) ? \
  25. 23 : (((x) <= 16777216) ? 24 : (((x) <= 33554432) ? \
  26. 25 : (((x) <= 67108864) ? 26 : (((x) <= 134217728) ? \
  27. 27 : (((x) <= 268435456) ? 28 : (((x) <= 536870912) ? \
  28. 29 : (((x) <= 1073741824) ? 30 : (((x) <= 2147483648) ? \
  29. 31 : 32))))))))))))))))))))))
  30. /*
  31. * The GROUP_START() and GROUP_END() macros are used to define a group
  32. * of sections located in one memory area, such as RAM, ROM, etc.
  33. * The <where> parameter is the name of the memory area.
  34. */
  35. #define GROUP_START(where)
  36. #define GROUP_END(where)
  37. /*
  38. * The GROUP_LINK_IN() macro is located at the end of the section
  39. * description and tells the linker that this section is located in
  40. * the memory area specified by <where> argument.
  41. */
  42. #define GROUP_LINK_IN(where) > where
  43. /**
  44. * The GROUP_ROM_LINK_IN() macro is located at the end of the section
  45. * description and tells the linker that this a read-only section
  46. * that is physically placed at the 'lregion` argument.
  47. *
  48. */
  49. #define GROUP_ROM_LINK_IN(vregion, lregion) > lregion
  50. /*
  51. * As GROUP_LINK_IN(), but takes a second argument indicating the
  52. * memory region (e.g. "ROM") for the load address. Used for
  53. * initialized data sections that on XIP platforms must be copied at
  54. * startup.
  55. *
  56. * And, because output directives in GNU ld are "sticky", this must
  57. * also be used on the first section *after* such an initialized data
  58. * section, specifying the same memory region (e.g. "RAM") for both
  59. * vregion and lregion.
  60. */
  61. #ifdef CONFIG_XIP
  62. #define GROUP_DATA_LINK_IN(vregion, lregion) > vregion AT > lregion
  63. #else
  64. #define GROUP_DATA_LINK_IN(vregion, lregion) > vregion
  65. #endif
  66. /**
  67. * Route memory for read-write sections that are NOT loaded; typically this
  68. * is only used for 'BSS' and 'noinit'.
  69. */
  70. #ifdef CONFIG_XIP
  71. #define GROUP_NOLOAD_LINK_IN(vregion, lregion) > vregion AT > vregion
  72. #else
  73. #define GROUP_NOLOAD_LINK_IN(vregion, lregion) > vregion
  74. #endif
  75. /*
  76. * The SECTION_PROLOGUE() macro is used to define the beginning of a section.
  77. * The <name> parameter is the name of the section, and the <option> parameter
  78. * is to include any special options such as (NOLOAD). Page alignment has its
  79. * own parameter since it needs abstraction across the different toolchains.
  80. * If not required, the <options> and <align> parameters should be left blank.
  81. */
  82. #define SECTION_PROLOGUE(name, options, align) name options align :
  83. /*
  84. * As for SECTION_PROLOGUE(), except that this one must (!) be used
  85. * for data sections which on XIP platforms will have differing
  86. * virtual and load addresses (i.e. they'll be copied into RAM at
  87. * program startup). Such a section must (!) also use
  88. * GROUP_LINK_IN_LMA to specify the correct output load address.
  89. */
  90. #ifdef CONFIG_XIP
  91. #define SECTION_DATA_PROLOGUE(name, options, align) \
  92. name options ALIGN_WITH_INPUT align :
  93. #else
  94. #define SECTION_DATA_PROLOGUE(name, options, align) name options align :
  95. #endif
  96. #define SORT_BY_NAME(x) SORT(x)
  97. #endif /* ZEPHYR_INCLUDE_LINKER_LINKER_TOOL_MWDT_H_ */