qdf_atomic.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. * Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qdf_atomic.h
  20. * This file provides OS abstraction for atomic APIs.
  21. */
  22. #ifndef _QDF_ATOMIC_H
  23. #define _QDF_ATOMIC_H
  24. #include <i_qdf_atomic.h>
  25. /**
  26. * qdf_atomic_t - atomic type of variable
  27. *
  28. * Use this when you want a simple resource counter etc. which is atomic
  29. * across multiple CPU's. These maybe slower than usual counters on some
  30. * platforms/OS'es, so use them with caution.
  31. */
  32. typedef __qdf_atomic_t qdf_atomic_t;
  33. /**
  34. * qdf_atomic_init() - initialize an atomic type variable
  35. * @v: A pointer to an opaque atomic variable
  36. *
  37. * Return: None
  38. */
  39. static inline QDF_STATUS qdf_atomic_init(qdf_atomic_t *v)
  40. {
  41. return __qdf_atomic_init(v);
  42. }
  43. /**
  44. * qdf_atomic_read() - read the value of an atomic variable
  45. * @v: A pointer to an opaque atomic variable
  46. *
  47. * Return: The current value of the variable
  48. */
  49. static inline int32_t qdf_atomic_read(qdf_atomic_t *v)
  50. {
  51. return __qdf_atomic_read(v);
  52. }
  53. /**
  54. * qdf_atomic_inc() - increment the value of an atomic variable
  55. * @v: A pointer to an opaque atomic variable
  56. *
  57. * Return: None
  58. */
  59. static inline void qdf_atomic_inc(qdf_atomic_t *v)
  60. {
  61. __qdf_atomic_inc(v);
  62. }
  63. /**
  64. * qdf_atomic_dec() - decrement the value of an atomic variable
  65. * @v: A pointer to an opaque atomic variable
  66. *
  67. * Return: None
  68. */
  69. static inline void qdf_atomic_dec(qdf_atomic_t *v)
  70. {
  71. __qdf_atomic_dec(v);
  72. }
  73. /**
  74. * qdf_atomic_add() - add a value to the value of an atomic variable
  75. * @i: The amount by which to increase the atomic counter
  76. * @v: A pointer to an opaque atomic variable
  77. *
  78. * Return: None
  79. */
  80. static inline void qdf_atomic_add(int i, qdf_atomic_t *v)
  81. {
  82. __qdf_atomic_add(i, v);
  83. }
  84. /**
  85. * qdf_atomic_sub() - Subtract a value from an atomic variable
  86. * @i: the amount by which to decrease the atomic counter
  87. * @v: a pointer to an opaque atomic variable
  88. *
  89. * Return: none
  90. */
  91. static inline void qdf_atomic_sub(int i, qdf_atomic_t *v)
  92. {
  93. __qdf_atomic_sub(i, v);
  94. }
  95. /**
  96. * qdf_atomic_dec_and_test() - decrement an atomic variable and check if the
  97. * new value is zero
  98. * @v: A pointer to an opaque atomic variable
  99. *
  100. * Return:
  101. * true (non-zero) if the new value is zero,
  102. * false (0) if the new value is non-zero
  103. */
  104. static inline int32_t qdf_atomic_dec_and_test(qdf_atomic_t *v)
  105. {
  106. return __qdf_atomic_dec_and_test(v);
  107. }
  108. /**
  109. * qdf_atomic_set() - set a value to the value of an atomic variable
  110. * @v: A pointer to an opaque atomic variable
  111. * @i: required value to set
  112. *
  113. * Atomically sets the value of v to i
  114. * Return: None
  115. */
  116. static inline void qdf_atomic_set(qdf_atomic_t *v, int i)
  117. {
  118. __qdf_atomic_set(v, i);
  119. }
  120. /**
  121. * qdf_atomic_inc_return() - return the incremented value of an atomic variable
  122. * @v: A pointer to an opaque atomic variable
  123. *
  124. * Return: The current value of the variable
  125. */
  126. static inline int32_t qdf_atomic_inc_return(qdf_atomic_t *v)
  127. {
  128. return __qdf_atomic_inc_return(v);
  129. }
  130. /**
  131. * qdf_atomic_dec_return() - return the decremented value of an atomic
  132. * variable
  133. * @v: A pointer to an opaque atomic variable
  134. *
  135. * Return: The current value of the variable
  136. */
  137. static inline int32_t qdf_atomic_dec_return(qdf_atomic_t *v)
  138. {
  139. return __qdf_atomic_dec_return(v);
  140. }
  141. /**
  142. * qdf_atomic_set_bit - Atomically set a bit in memory
  143. * @nr: bit to set
  144. * @addr: the address to start counting from
  145. *
  146. * Return: none
  147. */
  148. static inline void qdf_atomic_set_bit(int nr, volatile unsigned long *addr)
  149. {
  150. __qdf_atomic_set_bit(nr, addr);
  151. }
  152. /**
  153. * qdf_atomic_clear_bit - Atomically clear a bit in memory
  154. * @nr: bit to clear
  155. * @addr: the address to start counting from
  156. *
  157. * Return: none
  158. */
  159. static inline void qdf_atomic_clear_bit(int nr, volatile unsigned long *addr)
  160. {
  161. __qdf_atomic_clear_bit(nr, addr);
  162. }
  163. /**
  164. * qdf_atomic_change_bit - Atomically toggle a bit in memory
  165. * from addr
  166. * @nr: bit to change
  167. * @addr: the address to start counting from
  168. *
  169. * Return: none
  170. */
  171. static inline void qdf_atomic_change_bit(int nr, volatile unsigned long *addr)
  172. {
  173. __qdf_atomic_change_bit(nr, addr);
  174. }
  175. /**
  176. * qdf_atomic_test_and_set_bit - Atomically set a bit and return its old value
  177. * @nr: Bit to set
  178. * @addr: the address to start counting from
  179. *
  180. * Return: return nr bit old value
  181. */
  182. static inline int qdf_atomic_test_and_set_bit(int nr,
  183. volatile unsigned long *addr)
  184. {
  185. return __qdf_atomic_test_and_set_bit(nr, addr);
  186. }
  187. /**
  188. * qdf_atomic_test_and_clear_bit - Atomically clear a bit and return its old
  189. * value
  190. * @nr: bit to clear
  191. * @addr: the address to start counting from
  192. *
  193. * Return: return nr bit old value
  194. */
  195. static inline int qdf_atomic_test_and_clear_bit(int nr,
  196. volatile unsigned long *addr)
  197. {
  198. return __qdf_atomic_test_and_clear_bit(nr, addr);
  199. }
  200. /**
  201. * qdf_atomic_test_and_change_bit - Atomically toggle a bit and return its old
  202. * value
  203. * @nr: bit to change
  204. * @addr: the address to start counting from
  205. *
  206. * Return: return nr bit old value
  207. */
  208. static inline int qdf_atomic_test_and_change_bit(int nr,
  209. volatile unsigned long *addr)
  210. {
  211. return __qdf_atomic_test_and_change_bit(nr, addr);
  212. }
  213. /**
  214. * qdf_atomic_test_bit - Atomically get the nr-th bit value starting from addr
  215. * @nr: bit to get
  216. * @addr: the address to start counting from
  217. *
  218. * Return: return nr bit value
  219. */
  220. static inline int qdf_atomic_test_bit(int nr, volatile unsigned long *addr)
  221. {
  222. return __qdf_atomic_test_bit(nr, addr);
  223. }
  224. #endif