mwdt.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2020 Synopsys.
  3. * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_MWDT_H_
  8. #define ZEPHYR_INCLUDE_TOOLCHAIN_MWDT_H_
  9. #ifndef _LINKER
  10. #if defined(_ASMLANGUAGE)
  11. #include <toolchain/common.h>
  12. #define FUNC_CODE()
  13. #define FUNC_INSTR(a)
  14. .macro section_var_mwdt, section, symbol
  15. .section .\&section\&.\&symbol, "aw"
  16. symbol :
  17. .endm
  18. .macro section_func_mwdt, section, symbol
  19. .section .\&section\&.\&symbol, "ax"
  20. FUNC_CODE()
  21. PERFOPT_ALIGN
  22. symbol :
  23. FUNC_INSTR(symbol)
  24. .endm
  25. .macro section_subsec_func_mwdt, section, subsection, symbol
  26. .section .\&section\&.\&subsection, "ax"
  27. PERFOPT_ALIGN
  28. symbol :
  29. .endm
  30. #define SECTION_VAR(sect, sym) section_var_mwdt sect, sym
  31. #define SECTION_FUNC(sect, sym) section_func_mwdt sect, sym
  32. #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \
  33. section_subsec_func_mwdt sect, subsec, sym
  34. .macro glbl_text_mwdt, symbol
  35. .globl symbol
  36. .type symbol, @function
  37. .endm
  38. .macro glbl_data_mwdt, symbol
  39. .globl symbol
  40. .type symbol, @object
  41. .endm
  42. .macro weak_data_mwdt, symbol
  43. .weak symbol
  44. .type symbol, @object
  45. .endm
  46. #define GTEXT(sym) glbl_text_mwdt sym
  47. #define GDATA(sym) glbl_data_mwdt sym
  48. #define WDATA(sym) weak_data_mwdt sym
  49. #else /* defined(_ASMLANGUAGE) */
  50. /* MWDT toolchain misses ssize_t definition which is used by Zephyr */
  51. #ifndef _SSIZE_T_DEFINED
  52. #define _SSIZE_T_DEFINED
  53. #ifdef CONFIG_64BIT
  54. typedef long ssize_t;
  55. #else
  56. typedef int ssize_t;
  57. #endif
  58. #endif /* _SSIZE_T_DEFINED */
  59. #ifdef CONFIG_NEWLIB_LIBC
  60. #error "ARC MWDT doesn't support building with CONFIG_NEWLIB_LIBC as it doesn't have newlib"
  61. #endif /* CONFIG_NEWLIB_LIBC */
  62. #ifdef CONFIG_NATIVE_APPLICATION
  63. #error "ARC MWDT doesn't support building Zephyr as an native application"
  64. #endif /* CONFIG_NATIVE_APPLICATION */
  65. #define __no_optimization __attribute__((optnone))
  66. #include <toolchain/gcc.h>
  67. /* Metaware toolchain has _Static_assert. However it not able to calculate
  68. * conditional expression in build time for some realy complex cases. ARC GNU
  69. * toolchain works fine in this cases, so it looks like MWDT bug. So, disable
  70. * BUILD_ASSERT macro until we fix that issue in MWDT toolchain.
  71. */
  72. #undef BUILD_ASSERT
  73. #define BUILD_ASSERT(EXPR, MSG...)
  74. #define __builtin_arc_nop() _nop()
  75. #endif /* _ASMLANGUAGE */
  76. #endif /* !_LINKER */
  77. #endif /* ZEPHYR_INCLUDE_TOOLCHAIN_MWDT_H_ */