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) \ |
| 38 | static inline long atomic_long_read##mo(atomic_long_t *l) \ |
| 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 | |
| 115 | static inline void atomic_long_add(long i, atomic_long_t *l) |
| 116 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 117 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 118 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 119 | ATOMIC_LONG_PFX(_add)(i, v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static inline void atomic_long_sub(long i, atomic_long_t *l) |
| 123 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 124 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 125 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 126 | ATOMIC_LONG_PFX(_sub)(i, v); |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 127 | } |
| 128 | |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 129 | static inline int atomic_long_sub_and_test(long i, atomic_long_t *l) |
| 130 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 131 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 132 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 133 | return ATOMIC_LONG_PFX(_sub_and_test)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static inline int atomic_long_dec_and_test(atomic_long_t *l) |
| 137 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 138 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 139 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 140 | return ATOMIC_LONG_PFX(_dec_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | static inline int atomic_long_inc_and_test(atomic_long_t *l) |
| 144 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 145 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 146 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 147 | return ATOMIC_LONG_PFX(_inc_and_test)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | static inline int atomic_long_add_negative(long i, atomic_long_t *l) |
| 151 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 152 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 153 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 154 | return ATOMIC_LONG_PFX(_add_negative)(i, v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 157 | static inline long atomic_long_inc_return(atomic_long_t *l) |
| 158 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 159 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 160 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 161 | return (long)ATOMIC_LONG_PFX(_inc_return)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static inline long atomic_long_dec_return(atomic_long_t *l) |
| 165 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 166 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 167 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 168 | return (long)ATOMIC_LONG_PFX(_dec_return)(v); |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 171 | static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u) |
| 172 | { |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 173 | ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l; |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 174 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 175 | return (long)ATOMIC_LONG_PFX(_add_unless)(v, a, u); |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 176 | } |
Mathieu Desnoyers | bb2382c | 2007-05-08 00:34:19 -0700 | [diff] [blame] | 177 | |
Will Deacon | 586b610 | 2015-08-06 17:54:38 +0100 | [diff] [blame] | 178 | #define atomic_long_inc_not_zero(l) \ |
| 179 | ATOMIC_LONG_PFX(_inc_not_zero)((ATOMIC_LONG_PFX(_t) *)(l)) |
Adrian Bunk | 4b358e2 | 2006-12-06 20:40:28 -0800 | [diff] [blame] | 180 | |
Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 181 | #endif /* _ASM_GENERIC_ATOMIC_LONG_H */ |