atomic.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /*
  2. * Copyright (c) 1997-2015, Wind River Systems, Inc.
  3. * Copyright (c) 2021 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_SYS_ATOMIC_H_
  8. #define ZEPHYR_INCLUDE_SYS_ATOMIC_H_
  9. #include <stdbool.h>
  10. #include <toolchain.h>
  11. #include <stddef.h>
  12. #include <zephyr/types.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. typedef int atomic_t;
  17. typedef atomic_t atomic_val_t;
  18. typedef void *atomic_ptr_t;
  19. typedef atomic_ptr_t atomic_ptr_val_t;
  20. /* Low-level primitives come in several styles: */
  21. #if defined(CONFIG_ATOMIC_OPERATIONS_C)
  22. /* Generic-but-slow implementation based on kernel locking and syscalls */
  23. #include <sys/atomic_c.h>
  24. #elif defined(CONFIG_ATOMIC_OPERATIONS_ARCH)
  25. /* Some architectures need their own implementation */
  26. # ifdef CONFIG_XTENSA
  27. /* Not all Xtensa toolchains support GCC-style atomic intrinsics */
  28. # include <arch/xtensa/atomic_xtensa.h>
  29. # else
  30. /* Other arch specific implementation */
  31. # include <sys/atomic_arch.h>
  32. # endif /* CONFIG_XTENSA */
  33. #else
  34. /* Default. See this file for the Doxygen reference: */
  35. #include <sys/atomic_builtin.h>
  36. #endif
  37. /* Portable higher-level utilities: */
  38. /**
  39. * @defgroup atomic_apis Atomic Services APIs
  40. * @ingroup kernel_apis
  41. * @{
  42. */
  43. /**
  44. * @brief Initialize an atomic variable.
  45. *
  46. * This macro can be used to initialize an atomic variable. For example,
  47. * @code atomic_t my_var = ATOMIC_INIT(75); @endcode
  48. *
  49. * @param i Value to assign to atomic variable.
  50. */
  51. #define ATOMIC_INIT(i) (i)
  52. /**
  53. * @brief Initialize an atomic pointer variable.
  54. *
  55. * This macro can be used to initialize an atomic pointer variable. For
  56. * example,
  57. * @code atomic_ptr_t my_ptr = ATOMIC_PTR_INIT(&data); @endcode
  58. *
  59. * @param p Pointer value to assign to atomic pointer variable.
  60. */
  61. #define ATOMIC_PTR_INIT(p) (p)
  62. /**
  63. * @cond INTERNAL_HIDDEN
  64. */
  65. #define ATOMIC_BITS (sizeof(atomic_val_t) * 8)
  66. #define ATOMIC_MASK(bit) (1U << ((uint32_t)(bit) & (ATOMIC_BITS - 1U)))
  67. #define ATOMIC_ELEM(addr, bit) ((addr) + ((bit) / ATOMIC_BITS))
  68. /**
  69. * INTERNAL_HIDDEN @endcond
  70. */
  71. /**
  72. * @brief This macro computes the number of atomic variables necessary to
  73. * represent a bitmap with @a num_bits.
  74. *
  75. * @param num_bits Number of bits.
  76. */
  77. #define ATOMIC_BITMAP_SIZE(num_bits) (1 + ((num_bits) - 1) / ATOMIC_BITS)
  78. /**
  79. * @brief Define an array of atomic variables.
  80. *
  81. * This macro defines an array of atomic variables containing at least
  82. * @a num_bits bits.
  83. *
  84. * @note
  85. * If used from file scope, the bits of the array are initialized to zero;
  86. * if used from within a function, the bits are left uninitialized.
  87. *
  88. * @cond INTERNAL_HIDDEN
  89. * @note
  90. * This macro should be replicated in the PREDEFINED field of the documentation
  91. * Doxyfile.
  92. * @endcond
  93. *
  94. * @param name Name of array of atomic variables.
  95. * @param num_bits Number of bits needed.
  96. */
  97. #define ATOMIC_DEFINE(name, num_bits) \
  98. atomic_t name[ATOMIC_BITMAP_SIZE(num_bits)]
  99. /**
  100. * @brief Atomically test a bit.
  101. *
  102. * This routine tests whether bit number @a bit of @a target is set or not.
  103. * The target may be a single atomic variable or an array of them.
  104. *
  105. * @param target Address of atomic variable or array.
  106. * @param bit Bit number (starting from 0).
  107. *
  108. * @return true if the bit was set, false if it wasn't.
  109. */
  110. static inline bool atomic_test_bit(const atomic_t *target, int bit)
  111. {
  112. atomic_val_t val = atomic_get(ATOMIC_ELEM(target, bit));
  113. return (1 & (val >> (bit & (ATOMIC_BITS - 1)))) != 0;
  114. }
  115. /**
  116. * @brief Atomically test and clear a bit.
  117. *
  118. * Atomically clear bit number @a bit of @a target and return its old value.
  119. * The target may be a single atomic variable or an array of them.
  120. *
  121. * @param target Address of atomic variable or array.
  122. * @param bit Bit number (starting from 0).
  123. *
  124. * @return true if the bit was set, false if it wasn't.
  125. */
  126. static inline bool atomic_test_and_clear_bit(atomic_t *target, int bit)
  127. {
  128. atomic_val_t mask = ATOMIC_MASK(bit);
  129. atomic_val_t old;
  130. old = atomic_and(ATOMIC_ELEM(target, bit), ~mask);
  131. return (old & mask) != 0;
  132. }
  133. /**
  134. * @brief Atomically set a bit.
  135. *
  136. * Atomically set bit number @a bit of @a target and return its old value.
  137. * The target may be a single atomic variable or an array of them.
  138. *
  139. * @param target Address of atomic variable or array.
  140. * @param bit Bit number (starting from 0).
  141. *
  142. * @return true if the bit was set, false if it wasn't.
  143. */
  144. static inline bool atomic_test_and_set_bit(atomic_t *target, int bit)
  145. {
  146. atomic_val_t mask = ATOMIC_MASK(bit);
  147. atomic_val_t old;
  148. old = atomic_or(ATOMIC_ELEM(target, bit), mask);
  149. return (old & mask) != 0;
  150. }
  151. /**
  152. * @brief Atomically clear a bit.
  153. *
  154. * Atomically clear bit number @a bit of @a target.
  155. * The target may be a single atomic variable or an array of them.
  156. *
  157. * @param target Address of atomic variable or array.
  158. * @param bit Bit number (starting from 0).
  159. *
  160. * @return N/A
  161. */
  162. static inline void atomic_clear_bit(atomic_t *target, int bit)
  163. {
  164. atomic_val_t mask = ATOMIC_MASK(bit);
  165. (void)atomic_and(ATOMIC_ELEM(target, bit), ~mask);
  166. }
  167. /**
  168. * @brief Atomically set a bit.
  169. *
  170. * Atomically set bit number @a bit of @a target.
  171. * The target may be a single atomic variable or an array of them.
  172. *
  173. * @param target Address of atomic variable or array.
  174. * @param bit Bit number (starting from 0).
  175. *
  176. * @return N/A
  177. */
  178. static inline void atomic_set_bit(atomic_t *target, int bit)
  179. {
  180. atomic_val_t mask = ATOMIC_MASK(bit);
  181. (void)atomic_or(ATOMIC_ELEM(target, bit), mask);
  182. }
  183. /**
  184. * @brief Atomically set a bit to a given value.
  185. *
  186. * Atomically set bit number @a bit of @a target to value @a val.
  187. * The target may be a single atomic variable or an array of them.
  188. *
  189. * @param target Address of atomic variable or array.
  190. * @param bit Bit number (starting from 0).
  191. * @param val true for 1, false for 0.
  192. *
  193. * @return N/A
  194. */
  195. static inline void atomic_set_bit_to(atomic_t *target, int bit, bool val)
  196. {
  197. atomic_val_t mask = ATOMIC_MASK(bit);
  198. if (val) {
  199. (void)atomic_or(ATOMIC_ELEM(target, bit), mask);
  200. } else {
  201. (void)atomic_and(ATOMIC_ELEM(target, bit), ~mask);
  202. }
  203. }
  204. /**
  205. * @}
  206. */
  207. #ifdef __cplusplus
  208. } /* extern "C" */
  209. #endif
  210. #endif /* ZEPHYR_INCLUDE_SYS_ATOMIC_H_ */