nrfx_glue.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /*
  2. * Copyright (c) 2018, Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef NRFX_GLUE_H__
  7. #define NRFX_GLUE_H__
  8. #include <sys/__assert.h>
  9. #include <sys/atomic.h>
  10. #include <irq.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @defgroup nrfx_glue nrfx_glue.h
  16. * @{
  17. * @ingroup nrfx
  18. *
  19. * @brief This file contains macros that should be implemented according to
  20. * the needs of the host environment into which @em nrfx is integrated.
  21. */
  22. //------------------------------------------------------------------------------
  23. /**
  24. * @brief Macro for placing a runtime assertion.
  25. *
  26. * @param expression Expression to be evaluated.
  27. */
  28. #ifndef NRFX_ASSERT
  29. #define NRFX_ASSERT(expression) __ASSERT_NO_MSG(expression)
  30. #endif
  31. /**
  32. * @brief Macro for placing a compile time assertion.
  33. *
  34. * @param expression Expression to be evaluated.
  35. */
  36. #define NRFX_STATIC_ASSERT(expression) \
  37. BUILD_ASSERT(expression, "assertion failed")
  38. //------------------------------------------------------------------------------
  39. /**
  40. * @brief Macro for setting the priority of a specific IRQ.
  41. *
  42. * @param irq_number IRQ number.
  43. * @param priority Priority to be set.
  44. */
  45. #define NRFX_IRQ_PRIORITY_SET(irq_number, priority) // Intentionally empty.
  46. // Priorities of IRQs are
  47. // set through IRQ_CONNECT.
  48. /**
  49. * @brief Macro for enabling a specific IRQ.
  50. *
  51. * @param irq_number IRQ number.
  52. */
  53. #define NRFX_IRQ_ENABLE(irq_number) irq_enable(irq_number)
  54. /**
  55. * @brief Macro for checking if a specific IRQ is enabled.
  56. *
  57. * @param irq_number IRQ number.
  58. *
  59. * @retval true If the IRQ is enabled.
  60. * @retval false Otherwise.
  61. */
  62. #define NRFX_IRQ_IS_ENABLED(irq_number) irq_is_enabled(irq_number)
  63. /**
  64. * @brief Macro for disabling a specific IRQ.
  65. *
  66. * @param irq_number IRQ number.
  67. */
  68. #define NRFX_IRQ_DISABLE(irq_number) irq_disable(irq_number)
  69. /**
  70. * @brief Macro for setting a specific IRQ as pending.
  71. *
  72. * @param irq_number IRQ number.
  73. */
  74. #define NRFX_IRQ_PENDING_SET(irq_number) NVIC_SetPendingIRQ(irq_number)
  75. /**
  76. * @brief Macro for clearing the pending status of a specific IRQ.
  77. *
  78. * @param irq_number IRQ number.
  79. */
  80. #define NRFX_IRQ_PENDING_CLEAR(irq_number) NVIC_ClearPendingIRQ(irq_number)
  81. /**
  82. * @brief Macro for checking the pending status of a specific IRQ.
  83. *
  84. * @retval true If the IRQ is pending.
  85. * @retval false Otherwise.
  86. */
  87. #define NRFX_IRQ_IS_PENDING(irq_number) (NVIC_GetPendingIRQ(irq_number) == 1)
  88. /** @brief Macro for entering into a critical section. */
  89. #define NRFX_CRITICAL_SECTION_ENTER() { unsigned int irq_lock_key = irq_lock();
  90. /** @brief Macro for exiting from a critical section. */
  91. #define NRFX_CRITICAL_SECTION_EXIT() irq_unlock(irq_lock_key); }
  92. //------------------------------------------------------------------------------
  93. /**
  94. * @brief When set to a non-zero value, this macro specifies that
  95. * @ref nrfx_coredep_delay_us uses a precise DWT-based solution.
  96. * A compilation error is generated if the DWT unit is not present
  97. * in the SoC used.
  98. */
  99. #define NRFX_DELAY_DWT_BASED 0
  100. /**
  101. * @brief Macro for delaying the code execution for at least the specified time.
  102. *
  103. * @param us_time Number of microseconds to wait.
  104. */
  105. #define NRFX_DELAY_US(us_time) nrfx_busy_wait(us_time)
  106. /* This is a k_busy_wait wrapper, added to avoid the inclusion of kernel.h */
  107. void nrfx_busy_wait(uint32_t usec_to_wait);
  108. //------------------------------------------------------------------------------
  109. /** @brief Atomic 32-bit unsigned type. */
  110. #define nrfx_atomic_t atomic_t
  111. /**
  112. * @brief Macro for storing a value to an atomic object and returning its previous value.
  113. *
  114. * @param[in] p_data Atomic memory pointer.
  115. * @param[in] value Value to store.
  116. *
  117. * @return Previous value of the atomic object.
  118. */
  119. #define NRFX_ATOMIC_FETCH_STORE(p_data, value) atomic_set(p_data, value)
  120. /**
  121. * @brief Macro for running a bitwise OR operation on an atomic object and returning its previous value.
  122. *
  123. * @param[in] p_data Atomic memory pointer.
  124. * @param[in] value Value of the second operand in the OR operation.
  125. *
  126. * @return Previous value of the atomic object.
  127. */
  128. #define NRFX_ATOMIC_FETCH_OR(p_data, value) atomic_or(p_data, value)
  129. /**
  130. * @brief Macro for running a bitwise AND operation on an atomic object
  131. * and returning its previous value.
  132. *
  133. * @param[in] p_data Atomic memory pointer.
  134. * @param[in] value Value of the second operand in the AND operation.
  135. *
  136. * @return Previous value of the atomic object.
  137. */
  138. #define NRFX_ATOMIC_FETCH_AND(p_data, value) atomic_and(p_data, value)
  139. /**
  140. * @brief Macro for running a bitwise XOR operation on an atomic object
  141. * and returning its previous value.
  142. *
  143. * @param[in] p_data Atomic memory pointer.
  144. * @param[in] value Value of the second operand in the XOR operation.
  145. *
  146. * @return Previous value of the atomic object.
  147. */
  148. #define NRFX_ATOMIC_FETCH_XOR(p_data, value) atomic_xor(p_data, value)
  149. /**
  150. * @brief Macro for running an addition operation on an atomic object
  151. * and returning its previous value.
  152. *
  153. * @param[in] p_data Atomic memory pointer.
  154. * @param[in] value Value of the second operand in the ADD operation.
  155. *
  156. * @return Previous value of the atomic object.
  157. */
  158. #define NRFX_ATOMIC_FETCH_ADD(p_data, value) atomic_add(p_data, value)
  159. /**
  160. * @brief Macro for running a subtraction operation on an atomic object
  161. * and returning its previous value.
  162. *
  163. * @param[in] p_data Atomic memory pointer.
  164. * @param[in] value Value of the second operand in the SUB operation.
  165. *
  166. * @return Previous value of the atomic object.
  167. */
  168. #define NRFX_ATOMIC_FETCH_SUB(p_data, value) atomic_sub(p_data, value)
  169. //------------------------------------------------------------------------------
  170. /**
  171. * @brief When set to a non-zero value, this macro specifies that the
  172. * @ref nrfx_error_codes and the @ref nrfx_err_t type itself are defined
  173. * in a customized way and the default definitions from @c <nrfx_error.h>
  174. * should not be used.
  175. */
  176. #define NRFX_CUSTOM_ERROR_CODES 0
  177. //------------------------------------------------------------------------------
  178. /**
  179. * @brief When set to a non-zero value, this macro specifies that inside HALs
  180. * the event registers are read back after clearing, on devices that
  181. * otherwise could defer the actual register modification.
  182. */
  183. #define NRFX_EVENT_READBACK_ENABLED 1
  184. //------------------------------------------------------------------------------
  185. /** @brief Bitmask that defines DPPI channels that are reserved for use outside of the nrfx library. */
  186. #define NRFX_DPPI_CHANNELS_USED (NRFX_PPI_CHANNELS_USED_BY_BT_CTLR | \
  187. NRFX_PPI_CHANNELS_USED_BY_802154_DRV | \
  188. NRFX_PPI_CHANNELS_USED_BY_MPSL)
  189. /** @brief Bitmask that defines DPPI groups that are reserved for use outside of the nrfx library. */
  190. #define NRFX_DPPI_GROUPS_USED (NRFX_PPI_GROUPS_USED_BY_BT_CTLR | \
  191. NRFX_PPI_GROUPS_USED_BY_802154_DRV | \
  192. NRFX_PPI_GROUPS_USED_BY_MPSL)
  193. /** @brief Bitmask that defines PPI channels that are reserved for use outside of the nrfx library. */
  194. #define NRFX_PPI_CHANNELS_USED (NRFX_PPI_CHANNELS_USED_BY_BT_CTLR | \
  195. NRFX_PPI_CHANNELS_USED_BY_802154_DRV | \
  196. NRFX_PPI_CHANNELS_USED_BY_MPSL | \
  197. NRFX_PPI_CHANNELS_USED_BY_PWM_SW)
  198. /** @brief Bitmask that defines PPI groups that are reserved for use outside of the nrfx library. */
  199. #define NRFX_PPI_GROUPS_USED (NRFX_PPI_GROUPS_USED_BY_BT_CTLR | \
  200. NRFX_PPI_GROUPS_USED_BY_802154_DRV | \
  201. NRFX_PPI_GROUPS_USED_BY_MPSL)
  202. /** @brief Bitmask that defines GPIOTE channels that are reserved for use outside of the nrfx library. */
  203. #define NRFX_GPIOTE_CHANNELS_USED NRFX_GPIOTE_CHANNELS_USED_BY_PWM_SW
  204. #if defined(CONFIG_BT_CTLR)
  205. extern const uint32_t z_bt_ctlr_used_nrf_ppi_channels;
  206. extern const uint32_t z_bt_ctlr_used_nrf_ppi_groups;
  207. #define NRFX_PPI_CHANNELS_USED_BY_BT_CTLR z_bt_ctlr_used_nrf_ppi_channels
  208. #define NRFX_PPI_GROUPS_USED_BY_BT_CTLR z_bt_ctlr_used_nrf_ppi_groups
  209. #else
  210. #define NRFX_PPI_CHANNELS_USED_BY_BT_CTLR 0
  211. #define NRFX_PPI_GROUPS_USED_BY_BT_CTLR 0
  212. #endif
  213. #if defined(CONFIG_NRF_802154_RADIO_DRIVER)
  214. extern const uint32_t g_nrf_802154_used_nrf_ppi_channels;
  215. extern const uint32_t g_nrf_802154_used_nrf_ppi_groups;
  216. #define NRFX_PPI_CHANNELS_USED_BY_802154_DRV g_nrf_802154_used_nrf_ppi_channels
  217. #define NRFX_PPI_GROUPS_USED_BY_802154_DRV g_nrf_802154_used_nrf_ppi_groups
  218. #else
  219. #define NRFX_PPI_CHANNELS_USED_BY_802154_DRV 0
  220. #define NRFX_PPI_GROUPS_USED_BY_802154_DRV 0
  221. #endif
  222. #if defined(CONFIG_NRF_802154_RADIO_DRIVER) && \
  223. !defined(CONFIG_NRF_802154_SL_OPENSOURCE)
  224. extern const uint32_t z_mpsl_used_nrf_ppi_channels;
  225. extern const uint32_t z_mpsl_used_nrf_ppi_groups;
  226. #define NRFX_PPI_CHANNELS_USED_BY_MPSL z_mpsl_used_nrf_ppi_channels
  227. #define NRFX_PPI_GROUPS_USED_BY_MPSL z_mpsl_used_nrf_ppi_groups
  228. #else
  229. #define NRFX_PPI_CHANNELS_USED_BY_MPSL 0
  230. #define NRFX_PPI_GROUPS_USED_BY_MPSL 0
  231. #endif
  232. #if defined(CONFIG_PWM_NRF5_SW)
  233. #define PWM_NRF5_SW_NODE DT_INST(0, nordic_nrf_sw_pwm)
  234. #define PWM_NRF5_SW_GENERATOR_NODE DT_PHANDLE(PWM_NRF5_SW_NODE, generator)
  235. #if DT_NODE_HAS_COMPAT(PWM_NRF5_SW_GENERATOR_NODE, nordic_nrf_rtc)
  236. #define PWM_NRF5_SW_PPI_CHANNELS_PER_PIN 3
  237. #else
  238. #define PWM_NRF5_SW_PPI_CHANNELS_PER_PIN 2
  239. #endif /* DT_NODE_HAS_COMPAT(PWM_NRF5_SW_GENERATOR_NODE, nordic_nrf_rtc) */
  240. #define NRFX_PPI_CHANNELS_USED_BY_PWM_SW \
  241. (BIT_MASK(DT_PROP(PWM_NRF5_SW_NODE, channel_count) * \
  242. PWM_NRF5_SW_PPI_CHANNELS_PER_PIN) \
  243. << DT_PROP(PWM_NRF5_SW_NODE, ppi_base))
  244. #define NRFX_GPIOTE_CHANNELS_USED_BY_PWM_SW \
  245. DT_PROP(PWM_NRF5_SW_NODE, channel_count)
  246. #else
  247. #define NRFX_PPI_CHANNELS_USED_BY_PWM_SW 0
  248. #define NRFX_GPIOTE_CHANNELS_USED_BY_PWM_SW 0
  249. #endif
  250. /** @brief Bitmask that defines EGU instances that are reserved for use outside of the nrfx library. */
  251. #define NRFX_EGUS_USED 0
  252. /** @brief Bitmask that defines TIMER instances that are reserved for use outside of the nrfx library. */
  253. #define NRFX_TIMERS_USED 0
  254. //------------------------------------------------------------------------------
  255. /**
  256. * @brief Function helping to integrate nrfx IRQ handlers with IRQ_CONNECT.
  257. *
  258. * This function simply calls the nrfx IRQ handler supplied as the parameter.
  259. * It is intended to be used in the following way:
  260. * IRQ_CONNECT(IRQ_NUM, IRQ_PRI, nrfx_isr, nrfx_..._irq_handler, 0);
  261. *
  262. * @param[in] irq_handler Pointer to the nrfx IRQ handler to be called.
  263. */
  264. void nrfx_isr(const void *irq_handler);
  265. #if defined(CONFIG_SOC_SERIES_BSIM_NRFXX)
  266. #include "nrfx_glue_bsim.h"
  267. #endif
  268. /** @} */
  269. #ifdef __cplusplus
  270. }
  271. #endif
  272. #endif // NRFX_GLUE_H__