atomic.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * Based on arch/arm/include/asm/atomic.h
  3. *
  4. * Copyright (C) 1996 Russell King.
  5. * Copyright (C) 2002 Deep Blue Solutions Ltd.
  6. * Copyright (C) 2012 ARM Ltd.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef __ASM_ATOMIC_H
  21. #define __ASM_ATOMIC_H
  22. #include <linux/compiler.h>
  23. #include <linux/types.h>
  24. #include <asm/barrier.h>
  25. #include <asm/lse.h>
  26. #ifdef __KERNEL__
  27. #define __ARM64_IN_ATOMIC_IMPL
  28. #if defined(CONFIG_ARM64_LSE_ATOMICS) && defined(CONFIG_AS_LSE)
  29. #include <asm/atomic_lse.h>
  30. #else
  31. #include <asm/atomic_ll_sc.h>
  32. #endif
  33. #undef __ARM64_IN_ATOMIC_IMPL
  34. #include <asm/cmpxchg.h>
  35. #define ATOMIC_INIT(i) { (i) }
  36. #define atomic_read(v) READ_ONCE((v)->counter)
  37. #define atomic_set(v, i) WRITE_ONCE(((v)->counter), (i))
  38. #define atomic_add_return_relaxed atomic_add_return_relaxed
  39. #define atomic_add_return_acquire atomic_add_return_acquire
  40. #define atomic_add_return_release atomic_add_return_release
  41. #define atomic_add_return atomic_add_return
  42. #define atomic_sub_return_relaxed atomic_sub_return_relaxed
  43. #define atomic_sub_return_acquire atomic_sub_return_acquire
  44. #define atomic_sub_return_release atomic_sub_return_release
  45. #define atomic_sub_return atomic_sub_return
  46. #define atomic_fetch_add_relaxed atomic_fetch_add_relaxed
  47. #define atomic_fetch_add_acquire atomic_fetch_add_acquire
  48. #define atomic_fetch_add_release atomic_fetch_add_release
  49. #define atomic_fetch_add atomic_fetch_add
  50. #define atomic_fetch_sub_relaxed atomic_fetch_sub_relaxed
  51. #define atomic_fetch_sub_acquire atomic_fetch_sub_acquire
  52. #define atomic_fetch_sub_release atomic_fetch_sub_release
  53. #define atomic_fetch_sub atomic_fetch_sub
  54. #define atomic_fetch_and_relaxed atomic_fetch_and_relaxed
  55. #define atomic_fetch_and_acquire atomic_fetch_and_acquire
  56. #define atomic_fetch_and_release atomic_fetch_and_release
  57. #define atomic_fetch_and atomic_fetch_and
  58. #define atomic_fetch_andnot_relaxed atomic_fetch_andnot_relaxed
  59. #define atomic_fetch_andnot_acquire atomic_fetch_andnot_acquire
  60. #define atomic_fetch_andnot_release atomic_fetch_andnot_release
  61. #define atomic_fetch_andnot atomic_fetch_andnot
  62. #define atomic_fetch_or_relaxed atomic_fetch_or_relaxed
  63. #define atomic_fetch_or_acquire atomic_fetch_or_acquire
  64. #define atomic_fetch_or_release atomic_fetch_or_release
  65. #define atomic_fetch_or atomic_fetch_or
  66. #define atomic_fetch_xor_relaxed atomic_fetch_xor_relaxed
  67. #define atomic_fetch_xor_acquire atomic_fetch_xor_acquire
  68. #define atomic_fetch_xor_release atomic_fetch_xor_release
  69. #define atomic_fetch_xor atomic_fetch_xor
  70. #define atomic_xchg_relaxed(v, new) xchg_relaxed(&((v)->counter), (new))
  71. #define atomic_xchg_acquire(v, new) xchg_acquire(&((v)->counter), (new))
  72. #define atomic_xchg_release(v, new) xchg_release(&((v)->counter), (new))
  73. #define atomic_xchg(v, new) xchg(&((v)->counter), (new))
  74. #define atomic_cmpxchg_relaxed(v, old, new) \
  75. cmpxchg_relaxed(&((v)->counter), (old), (new))
  76. #define atomic_cmpxchg_acquire(v, old, new) \
  77. cmpxchg_acquire(&((v)->counter), (old), (new))
  78. #define atomic_cmpxchg_release(v, old, new) \
  79. cmpxchg_release(&((v)->counter), (old), (new))
  80. #define atomic_cmpxchg(v, old, new) cmpxchg(&((v)->counter), (old), (new))
  81. #define atomic_andnot atomic_andnot
  82. /*
  83. * 64-bit atomic operations.
  84. */
  85. #define ATOMIC64_INIT ATOMIC_INIT
  86. #define atomic64_read atomic_read
  87. #define atomic64_set atomic_set
  88. #define atomic64_add_return_relaxed atomic64_add_return_relaxed
  89. #define atomic64_add_return_acquire atomic64_add_return_acquire
  90. #define atomic64_add_return_release atomic64_add_return_release
  91. #define atomic64_add_return atomic64_add_return
  92. #define atomic64_sub_return_relaxed atomic64_sub_return_relaxed
  93. #define atomic64_sub_return_acquire atomic64_sub_return_acquire
  94. #define atomic64_sub_return_release atomic64_sub_return_release
  95. #define atomic64_sub_return atomic64_sub_return
  96. #define atomic64_fetch_add_relaxed atomic64_fetch_add_relaxed
  97. #define atomic64_fetch_add_acquire atomic64_fetch_add_acquire
  98. #define atomic64_fetch_add_release atomic64_fetch_add_release
  99. #define atomic64_fetch_add atomic64_fetch_add
  100. #define atomic64_fetch_sub_relaxed atomic64_fetch_sub_relaxed
  101. #define atomic64_fetch_sub_acquire atomic64_fetch_sub_acquire
  102. #define atomic64_fetch_sub_release atomic64_fetch_sub_release
  103. #define atomic64_fetch_sub atomic64_fetch_sub
  104. #define atomic64_fetch_and_relaxed atomic64_fetch_and_relaxed
  105. #define atomic64_fetch_and_acquire atomic64_fetch_and_acquire
  106. #define atomic64_fetch_and_release atomic64_fetch_and_release
  107. #define atomic64_fetch_and atomic64_fetch_and
  108. #define atomic64_fetch_andnot_relaxed atomic64_fetch_andnot_relaxed
  109. #define atomic64_fetch_andnot_acquire atomic64_fetch_andnot_acquire
  110. #define atomic64_fetch_andnot_release atomic64_fetch_andnot_release
  111. #define atomic64_fetch_andnot atomic64_fetch_andnot
  112. #define atomic64_fetch_or_relaxed atomic64_fetch_or_relaxed
  113. #define atomic64_fetch_or_acquire atomic64_fetch_or_acquire
  114. #define atomic64_fetch_or_release atomic64_fetch_or_release
  115. #define atomic64_fetch_or atomic64_fetch_or
  116. #define atomic64_fetch_xor_relaxed atomic64_fetch_xor_relaxed
  117. #define atomic64_fetch_xor_acquire atomic64_fetch_xor_acquire
  118. #define atomic64_fetch_xor_release atomic64_fetch_xor_release
  119. #define atomic64_fetch_xor atomic64_fetch_xor
  120. #define atomic64_xchg_relaxed atomic_xchg_relaxed
  121. #define atomic64_xchg_acquire atomic_xchg_acquire
  122. #define atomic64_xchg_release atomic_xchg_release
  123. #define atomic64_xchg atomic_xchg
  124. #define atomic64_cmpxchg_relaxed atomic_cmpxchg_relaxed
  125. #define atomic64_cmpxchg_acquire atomic_cmpxchg_acquire
  126. #define atomic64_cmpxchg_release atomic_cmpxchg_release
  127. #define atomic64_cmpxchg atomic_cmpxchg
  128. #define atomic64_andnot atomic64_andnot
  129. #define atomic64_dec_if_positive atomic64_dec_if_positive
  130. #endif
  131. #endif