atomic.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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_add_unless(v, a, u, sfx) \
  36. ({ \
  37. typeof((v)->counter) c, old; \
  38. \
  39. c = atomic##sfx##_read(v); \
  40. while (c != (u) && \
  41. (old = atomic##sfx##_cmpxchg((v), c, c + (a))) != c) \
  42. c = old; \
  43. c; \
  44. })
  45. #define ATOMIC_INIT(i) { (i) }
  46. #define atomic_read(v) READ_ONCE((v)->counter)
  47. #define atomic_set(v, i) (((v)->counter) = (i))
  48. #define atomic_xchg(v, new) xchg(&((v)->counter), (new))
  49. #define atomic_cmpxchg(v, old, new) cmpxchg(&((v)->counter), (old), (new))
  50. #define atomic_inc(v) atomic_add(1, (v))
  51. #define atomic_dec(v) atomic_sub(1, (v))
  52. #define atomic_inc_return(v) atomic_add_return(1, (v))
  53. #define atomic_dec_return(v) atomic_sub_return(1, (v))
  54. #define atomic_inc_and_test(v) (atomic_inc_return(v) == 0)
  55. #define atomic_dec_and_test(v) (atomic_dec_return(v) == 0)
  56. #define atomic_sub_and_test(i, v) (atomic_sub_return((i), (v)) == 0)
  57. #define atomic_add_negative(i, v) (atomic_add_return((i), (v)) < 0)
  58. #define __atomic_add_unless(v, a, u) ___atomic_add_unless(v, a, u,)
  59. #define atomic_andnot atomic_andnot
  60. /*
  61. * 64-bit atomic operations.
  62. */
  63. #define ATOMIC64_INIT ATOMIC_INIT
  64. #define atomic64_read atomic_read
  65. #define atomic64_set atomic_set
  66. #define atomic64_xchg atomic_xchg
  67. #define atomic64_cmpxchg atomic_cmpxchg
  68. #define atomic64_inc(v) atomic64_add(1, (v))
  69. #define atomic64_dec(v) atomic64_sub(1, (v))
  70. #define atomic64_inc_return(v) atomic64_add_return(1, (v))
  71. #define atomic64_dec_return(v) atomic64_sub_return(1, (v))
  72. #define atomic64_inc_and_test(v) (atomic64_inc_return(v) == 0)
  73. #define atomic64_dec_and_test(v) (atomic64_dec_return(v) == 0)
  74. #define atomic64_sub_and_test(i, v) (atomic64_sub_return((i), (v)) == 0)
  75. #define atomic64_add_negative(i, v) (atomic64_add_return((i), (v)) < 0)
  76. #define atomic64_add_unless(v, a, u) (___atomic_add_unless(v, a, u, 64) != u)
  77. #define atomic64_andnot atomic64_andnot
  78. #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
  79. #endif
  80. #endif