Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_ATOMIC_LONG_H |
| 2 | #define _ASM_GENERIC_ATOMIC_LONG_H |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 3 | /* |
| 4 | * Copyright (C) 2005 Silicon Graphics, Inc. |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5 | * Christoph Lameter |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 6 | * |
| 7 | * Allows to provide arch independent atomic definitions without the need to |
| 8 | * edit all arch specific atomic.h files. |
| 9 | */ |
| 10 | |
Andrew Morton | 5998bf1 | 2006-01-08 01:00:29 -0800 | [diff] [blame] | 11 | #include <asm/types.h> |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 12 | |
| 13 | /* |
| 14 | * Suppport for atomic_long_t |
| 15 | * |
| 16 | * Casts for parameters are avoided for existing atomic functions in order to |
| 17 | * avoid issues with cast-as-lval under gcc 4.x and other limitations that the |
| 18 | * macros of a platform may have. |
| 19 | */ |
| 20 | |
| 21 | #if BITS_PER_LONG == 64 |
| 22 | |
| 23 | typedef atomic64_t atomic_long_t; |
| 24 | |
| 25 | #define ATOMIC_LONG_INIT(i) ATOMIC64_INIT(i) |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 26 | #define ATOMIC_LONG_PFX(x) atomic64 ## x |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 27 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 28 | #else |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 29 | |
| 30 | typedef atomic_t atomic_long_t; |
| 31 | |
| 32 | #define ATOMIC_LONG_INIT(i) ATOMIC_INIT(i) |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 33 | #define ATOMIC_LONG_PFX(x) atomic ## x |
| 34 | |
| 35 | #endif |
| 36 | |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 37 | #define ATOMIC_LONG_READ_OP(mo) \ |
Peter Zijlstra | e3e72ab | 2015-09-18 13:22:52 +0200 | [diff] [blame] | 38 | static inline long atomic_long_read##mo(const atomic_long_t *l) \ |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 39 | { \ |
| 40 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; \ |
| 41 | \ |
| 42 | return (long)ATOMIC_LONG_PFX(_read##mo)(v); \ |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 43 | } |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 44 | ATOMIC_LONG_READ_OP() |
| 45 | ATOMIC_LONG_READ_OP(_acquire) |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 46 | |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 47 | #undef ATOMIC_LONG_READ_OP |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 48 | |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 49 | #define ATOMIC_LONG_SET_OP(mo) \ |
| 50 | static inline void atomic_long_set##mo(atomic_long_t *l, long i) \ |
| 51 | { \ |
| 52 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; \ |
| 53 | \ |
| 54 | ATOMIC_LONG_PFX(_set##mo)(v, i); \ |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 55 | } |
Will Deacon | 6d79ef2 | 2015-08-06 17:54:39 +0100 | [diff] [blame] | 56 | ATOMIC_LONG_SET_OP() |
| 57 | ATOMIC_LONG_SET_OP(_release) |
| 58 | |
| 59 | #undef ATOMIC_LONG_SET_OP |
| 60 | |
| 61 | #define ATOMIC_LONG_ADD_SUB_OP(op, mo) \ |
| 62 | static inline long \ |
| 63 | atomic_long_##op##_return##mo(long i, atomic_long_t *l) \ |
| 64 | { \ |
| 65 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; \ |
| 66 | \ |
| 67 | return (long)ATOMIC_LONG_PFX(_##op##_return##mo)(i, v); \ |
| 68 | } |
| 69 | ATOMIC_LONG_ADD_SUB_OP(add,) |
| 70 | ATOMIC_LONG_ADD_SUB_OP(add, _relaxed) |
| 71 | ATOMIC_LONG_ADD_SUB_OP(add, _acquire) |
| 72 | ATOMIC_LONG_ADD_SUB_OP(add, _release) |
| 73 | ATOMIC_LONG_ADD_SUB_OP(sub,) |
| 74 | ATOMIC_LONG_ADD_SUB_OP(sub, _relaxed) |
| 75 | ATOMIC_LONG_ADD_SUB_OP(sub, _acquire) |
| 76 | ATOMIC_LONG_ADD_SUB_OP(sub, _release) |
| 77 | |
| 78 | #undef ATOMIC_LONG_ADD_SUB_OP |
| 79 | |
| 80 | #define atomic_long_cmpxchg_relaxed(l, old, new) \ |
| 81 | (ATOMIC_LONG_PFX(_cmpxchg_relaxed)((ATOMIC_LONG_PFX(_t) *)(l), \ |
| 82 | (old), (new))) |
| 83 | #define atomic_long_cmpxchg_acquire(l, old, new) \ |
| 84 | (ATOMIC_LONG_PFX(_cmpxchg_acquire)((ATOMIC_LONG_PFX(_t) *)(l), \ |
| 85 | (old), (new))) |
| 86 | #define atomic_long_cmpxchg_release(l, old, new) \ |
| 87 | (ATOMIC_LONG_PFX(_cmpxchg_release)((ATOMIC_LONG_PFX(_t) *)(l), \ |
| 88 | (old), (new))) |
| 89 | #define atomic_long_cmpxchg(l, old, new) \ |
| 90 | (ATOMIC_LONG_PFX(_cmpxchg)((ATOMIC_LONG_PFX(_t) *)(l), (old), (new))) |
| 91 | |
| 92 | #define atomic_long_xchg_relaxed(v, new) \ |
| 93 | (ATOMIC_LONG_PFX(_xchg_relaxed)((ATOMIC_LONG_PFX(_t) *)(v), (new))) |
| 94 | #define atomic_long_xchg_acquire(v, new) \ |
| 95 | (ATOMIC_LONG_PFX(_xchg_acquire)((ATOMIC_LONG_PFX(_t) *)(v), (new))) |
| 96 | #define atomic_long_xchg_release(v, new) \ |
| 97 | (ATOMIC_LONG_PFX(_xchg_release)((ATOMIC_LONG_PFX(_t) *)(v), (new))) |
| 98 | #define atomic_long_xchg(v, new) \ |
| 99 | (ATOMIC_LONG_PFX(_xchg)((ATOMIC_LONG_PFX(_t) *)(v), (new))) |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 100 | |
| 101 | static inline void atomic_long_inc(atomic_long_t *l) |
| 102 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 103 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 104 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 105 | ATOMIC_LONG_PFX(_inc)(v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | static inline void atomic_long_dec(atomic_long_t *l) |
| 109 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 110 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 111 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 112 | ATOMIC_LONG_PFX(_dec)(v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 113 | } |
| 114 | |
Peter Zijlstra | 90fe651 | 2015-09-18 15:04:59 +0200 | [diff] [blame] | 115 | #define ATOMIC_LONG_OP(op) \ |
| 116 | static inline void \ |
| 117 | atomic_long_##op(long i, atomic_long_t *l) \ |
| 118 | { \ |
| 119 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; \ |
| 120 | \ |
| 121 | ATOMIC_LONG_PFX(_##op)(i, v); \ |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 122 | } |
| 123 | |
Peter Zijlstra | 90fe651 | 2015-09-18 15:04:59 +0200 | [diff] [blame] | 124 | ATOMIC_LONG_OP(add) |
| 125 | ATOMIC_LONG_OP(sub) |
| 126 | ATOMIC_LONG_OP(and) |
| 127 | ATOMIC_LONG_OP(or) |
| 128 | ATOMIC_LONG_OP(xor) |
| 129 | ATOMIC_LONG_OP(andnot) |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 130 | |
Peter Zijlstra | 90fe651 | 2015-09-18 15:04:59 +0200 | [diff] [blame] | 131 | #undef ATOMIC_LONG_OP |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 132 | |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 133 | static inline int atomic_long_sub_and_test(long i, atomic_long_t *l) |
| 134 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 135 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 136 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 137 | return ATOMIC_LONG_PFX(_sub_and_test)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | static inline int atomic_long_dec_and_test(atomic_long_t *l) |
| 141 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 142 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 143 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 144 | return ATOMIC_LONG_PFX(_dec_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static inline int atomic_long_inc_and_test(atomic_long_t *l) |
| 148 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 149 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 150 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 151 | return ATOMIC_LONG_PFX(_inc_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static inline int atomic_long_add_negative(long i, atomic_long_t *l) |
| 155 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 156 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 157 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 158 | return ATOMIC_LONG_PFX(_add_negative)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Davidlohr Bueso | 63ab7bd | 2015-09-30 13:03:11 -0700 | [diff] [blame] | 161 | #define ATOMIC_LONG_INC_DEC_OP(op, mo) \ |
| 162 | static inline long \ |
| 163 | atomic_long_##op##_return##mo(atomic_long_t *l) \ |
| 164 | { \ |
| 165 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; \ |
| 166 | \ |
| 167 | return (long)ATOMIC_LONG_PFX(_##op##_return##mo)(v); \ |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 168 | } |
Davidlohr Bueso | 63ab7bd | 2015-09-30 13:03:11 -0700 | [diff] [blame] | 169 | ATOMIC_LONG_INC_DEC_OP(inc,) |
| 170 | ATOMIC_LONG_INC_DEC_OP(inc, _relaxed) |
| 171 | ATOMIC_LONG_INC_DEC_OP(inc, _acquire) |
| 172 | ATOMIC_LONG_INC_DEC_OP(inc, _release) |
| 173 | ATOMIC_LONG_INC_DEC_OP(dec,) |
| 174 | ATOMIC_LONG_INC_DEC_OP(dec, _relaxed) |
| 175 | ATOMIC_LONG_INC_DEC_OP(dec, _acquire) |
| 176 | ATOMIC_LONG_INC_DEC_OP(dec, _release) |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 177 | |
Davidlohr Bueso | 63ab7bd | 2015-09-30 13:03:11 -0700 | [diff] [blame] | 178 | #undef ATOMIC_LONG_INC_DEC_OP |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 179 | |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 180 | static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u) |
| 181 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 182 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 183 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 184 | return (long)ATOMIC_LONG_PFX(_add_unless)(v, a, u); |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 185 | } |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 186 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 187 | #define atomic_long_inc_not_zero(l) \ |
| 188 | ATOMIC_LONG_PFX(_inc_not_zero)((ATOMIC_LONG_PFX(_t) *)(l)) |
Adrian Bunk | 4b358e2 | 2006-12-06 20:40:28 -0800 | [diff] [blame] | 189 | |
Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 190 | #endif /* _ASM_GENERIC_ATOMIC_LONG_H */ |