i_qdf_atomic.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * DOC: i_qdf_atomic.h
  28. * This file provides OS dependent atomic APIs.
  29. */
  30. #ifndef I_QDF_ATOMIC_H
  31. #define I_QDF_ATOMIC_H
  32. #include <qdf_status.h> /* QDF_STATUS */
  33. #include <linux/atomic.h>
  34. typedef atomic_t __qdf_atomic_t;
  35. /**
  36. * __qdf_atomic_init() - initialize an atomic type variable
  37. * @v: A pointer to an opaque atomic variable
  38. *
  39. * Return: QDF_STATUS
  40. */
  41. static inline QDF_STATUS __qdf_atomic_init(__qdf_atomic_t *v)
  42. {
  43. atomic_set(v, 0);
  44. return QDF_STATUS_SUCCESS;
  45. }
  46. /**
  47. * __qdf_atomic_read() - read the value of an atomic variable
  48. * @v: A pointer to an opaque atomic variable
  49. *
  50. * Return: The current value of the variable
  51. */
  52. static inline int32_t __qdf_atomic_read(__qdf_atomic_t *v)
  53. {
  54. return atomic_read(v);
  55. }
  56. /**
  57. * __qdf_atomic_inc() - increment the value of an atomic variable
  58. * @v: A pointer to an opaque atomic variable
  59. *
  60. * Return: None
  61. */
  62. static inline void __qdf_atomic_inc(__qdf_atomic_t *v)
  63. {
  64. atomic_inc(v);
  65. }
  66. /**
  67. * __qdf_atomic_dec() - decrement the value of an atomic variable
  68. * @v: A pointer to an opaque atomic variable
  69. *
  70. * Return: None
  71. */
  72. static inline void __qdf_atomic_dec(__qdf_atomic_t *v)
  73. {
  74. atomic_dec(v);
  75. }
  76. /**
  77. * __qdf_atomic_add() - add a value to the value of an atomic variable
  78. * @i: The amount by which to increase the atomic counter
  79. * @v: A pointer to an opaque atomic variable
  80. *
  81. * Return: None
  82. */
  83. static inline void __qdf_atomic_add(int i, __qdf_atomic_t *v)
  84. {
  85. atomic_add(i, v);
  86. }
  87. /**
  88. * __qdf_atomic_sub() - Subtract a value from an atomic variable
  89. * @i: the amount by which to decrease the atomic counter
  90. * @v: a pointer to an opaque atomic variable
  91. *
  92. * Return: none
  93. */
  94. static inline void __qdf_atomic_sub(int i, __qdf_atomic_t *v)
  95. {
  96. atomic_sub(i, v);
  97. }
  98. /**
  99. * __qdf_atomic_dec_and_test() - decrement an atomic variable and check if the
  100. * new value is zero
  101. * @v: A pointer to an opaque atomic variable
  102. *
  103. * Return:
  104. * true (non-zero) if the new value is zero,
  105. * false (0) if the new value is non-zero
  106. */
  107. static inline int32_t __qdf_atomic_dec_and_test(__qdf_atomic_t *v)
  108. {
  109. return atomic_dec_and_test(v);
  110. }
  111. /**
  112. * __qdf_atomic_set() - set a value to the value of an atomic variable
  113. * @v: A pointer to an opaque atomic variable
  114. *
  115. * Return: None
  116. */
  117. static inline void __qdf_atomic_set(__qdf_atomic_t *v, int i)
  118. {
  119. atomic_set(v, i);
  120. }
  121. /**
  122. * __qdf_atomic_inc_return() - return the incremented value of an atomic variable
  123. * @v: A pointer to an opaque atomic variable
  124. *
  125. * Return: The current value of the variable
  126. */
  127. static inline int32_t __qdf_atomic_inc_return(__qdf_atomic_t *v)
  128. {
  129. return atomic_inc_return(v);
  130. }
  131. #endif