blob: a984111135b16e9c7c51d2cde681aa3b310a6a6b [file] [log] [blame]
Brian Gerst1a3b1d82010-01-07 11:53:33 -05001#ifndef _ASM_X86_ATOMIC64_32_H
2#define _ASM_X86_ATOMIC64_32_H
3
4#include <linux/compiler.h>
5#include <linux/types.h>
Brian Gerst1a3b1d82010-01-07 11:53:33 -05006//#include <asm/cmpxchg.h>
7
8/* An 64bit atomic type */
9
10typedef struct {
11 u64 __aligned(8) counter;
12} atomic64_t;
13
14#define ATOMIC64_INIT(val) { (val) }
15
Jan Beulich819165f2012-01-20 16:21:41 +000016#define __ATOMIC64_DECL(sym) void atomic64_##sym(atomic64_t *, ...)
17#ifndef ATOMIC64_EXPORT
18#define ATOMIC64_DECL_ONE __ATOMIC64_DECL
Luca Barbieria7e926a2010-02-24 10:54:25 +010019#else
Jan Beulich819165f2012-01-20 16:21:41 +000020#define ATOMIC64_DECL_ONE(sym) __ATOMIC64_DECL(sym); \
21 ATOMIC64_EXPORT(atomic64_##sym)
Luca Barbieria7e926a2010-02-24 10:54:25 +010022#endif
23
Jan Beulich819165f2012-01-20 16:21:41 +000024#ifdef CONFIG_X86_CMPXCHG64
25#define __alternative_atomic64(f, g, out, in...) \
26 asm volatile("call %P[func]" \
27 : out : [func] "i" (atomic64_##g##_cx8), ## in)
28
29#define ATOMIC64_DECL(sym) ATOMIC64_DECL_ONE(sym##_cx8)
30#else
31#define __alternative_atomic64(f, g, out, in...) \
32 alternative_call(atomic64_##f##_386, atomic64_##g##_cx8, \
33 X86_FEATURE_CX8, ASM_OUTPUT2(out), ## in)
34
35#define ATOMIC64_DECL(sym) ATOMIC64_DECL_ONE(sym##_cx8); \
36 ATOMIC64_DECL_ONE(sym##_386)
37
38ATOMIC64_DECL_ONE(add_386);
39ATOMIC64_DECL_ONE(sub_386);
40ATOMIC64_DECL_ONE(inc_386);
41ATOMIC64_DECL_ONE(dec_386);
42#endif
43
44#define alternative_atomic64(f, out, in...) \
45 __alternative_atomic64(f, f, ASM_OUTPUT2(out), ## in)
46
47ATOMIC64_DECL(read);
48ATOMIC64_DECL(set);
49ATOMIC64_DECL(xchg);
50ATOMIC64_DECL(add_return);
51ATOMIC64_DECL(sub_return);
52ATOMIC64_DECL(inc_return);
53ATOMIC64_DECL(dec_return);
54ATOMIC64_DECL(dec_if_positive);
55ATOMIC64_DECL(inc_not_zero);
56ATOMIC64_DECL(add_unless);
57
58#undef ATOMIC64_DECL
59#undef ATOMIC64_DECL_ONE
60#undef __ATOMIC64_DECL
61#undef ATOMIC64_EXPORT
Luca Barbieria7e926a2010-02-24 10:54:25 +010062
63/**
64 * atomic64_cmpxchg - cmpxchg atomic64 variable
Philipp Hahn1f045972012-05-02 18:09:35 +020065 * @v: pointer to type atomic64_t
Luca Barbieria7e926a2010-02-24 10:54:25 +010066 * @o: expected value
67 * @n: new value
68 *
69 * Atomically sets @v to @n if it was equal to @o and returns
70 * the old value.
71 */
72
73static inline long long atomic64_cmpxchg(atomic64_t *v, long long o, long long n)
74{
75 return cmpxchg64(&v->counter, o, n);
76}
Brian Gerst1a3b1d82010-01-07 11:53:33 -050077
78/**
79 * atomic64_xchg - xchg atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +010080 * @v: pointer to type atomic64_t
81 * @n: value to assign
Brian Gerst1a3b1d82010-01-07 11:53:33 -050082 *
Luca Barbieria7e926a2010-02-24 10:54:25 +010083 * Atomically xchgs the value of @v to @n and returns
Brian Gerst1a3b1d82010-01-07 11:53:33 -050084 * the old value.
85 */
Luca Barbieria7e926a2010-02-24 10:54:25 +010086static inline long long atomic64_xchg(atomic64_t *v, long long n)
87{
88 long long o;
89 unsigned high = (unsigned)(n >> 32);
90 unsigned low = (unsigned)n;
Jan Beulich819165f2012-01-20 16:21:41 +000091 alternative_atomic64(xchg, "=&A" (o),
92 "S" (v), "b" (low), "c" (high)
93 : "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +010094 return o;
95}
Brian Gerst1a3b1d82010-01-07 11:53:33 -050096
97/**
98 * atomic64_set - set atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +010099 * @v: pointer to type atomic64_t
Philipp Hahn1f045972012-05-02 18:09:35 +0200100 * @i: value to assign
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500101 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100102 * Atomically sets the value of @v to @n.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500103 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100104static inline void atomic64_set(atomic64_t *v, long long i)
105{
106 unsigned high = (unsigned)(i >> 32);
107 unsigned low = (unsigned)i;
Jan Beulich819165f2012-01-20 16:21:41 +0000108 alternative_atomic64(set, /* no output */,
109 "S" (v), "b" (low), "c" (high)
110 : "eax", "edx", "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100111}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500112
113/**
114 * atomic64_read - read atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +0100115 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500116 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100117 * Atomically reads the value of @v and returns it.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500118 */
H. Peter Anvin8030c362012-01-09 19:33:24 -0800119static inline long long atomic64_read(const atomic64_t *v)
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500120{
Luca Barbieria7e926a2010-02-24 10:54:25 +0100121 long long r;
Jan Beulich819165f2012-01-20 16:21:41 +0000122 alternative_atomic64(read, "=&A" (r), "c" (v) : "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100123 return r;
124 }
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500125
126/**
127 * atomic64_add_return - add and return
Luca Barbieria7e926a2010-02-24 10:54:25 +0100128 * @i: integer value to add
129 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500130 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100131 * Atomically adds @i to @v and returns @i + *@v
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500132 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100133static inline long long atomic64_add_return(long long i, atomic64_t *v)
134{
Jan Beulich819165f2012-01-20 16:21:41 +0000135 alternative_atomic64(add_return,
136 ASM_OUTPUT2("+A" (i), "+c" (v)),
137 ASM_NO_INPUT_CLOBBER("memory"));
Luca Barbieria7e926a2010-02-24 10:54:25 +0100138 return i;
139}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500140
141/*
142 * Other variants with different arithmetic operators:
143 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100144static inline long long atomic64_sub_return(long long i, atomic64_t *v)
145{
Jan Beulich819165f2012-01-20 16:21:41 +0000146 alternative_atomic64(sub_return,
147 ASM_OUTPUT2("+A" (i), "+c" (v)),
148 ASM_NO_INPUT_CLOBBER("memory"));
Luca Barbieria7e926a2010-02-24 10:54:25 +0100149 return i;
150}
151
152static inline long long atomic64_inc_return(atomic64_t *v)
153{
154 long long a;
Jan Beulich819165f2012-01-20 16:21:41 +0000155 alternative_atomic64(inc_return, "=&A" (a),
156 "S" (v) : "memory", "ecx");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100157 return a;
158}
159
160static inline long long atomic64_dec_return(atomic64_t *v)
161{
162 long long a;
Jan Beulich819165f2012-01-20 16:21:41 +0000163 alternative_atomic64(dec_return, "=&A" (a),
164 "S" (v) : "memory", "ecx");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100165 return a;
166}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500167
168/**
169 * atomic64_add - add integer to atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +0100170 * @i: integer value to add
171 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500172 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100173 * Atomically adds @i to @v.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500174 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100175static inline long long atomic64_add(long long i, atomic64_t *v)
176{
Jan Beulich819165f2012-01-20 16:21:41 +0000177 __alternative_atomic64(add, add_return,
178 ASM_OUTPUT2("+A" (i), "+c" (v)),
179 ASM_NO_INPUT_CLOBBER("memory"));
Luca Barbieria7e926a2010-02-24 10:54:25 +0100180 return i;
181}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500182
183/**
184 * atomic64_sub - subtract the atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +0100185 * @i: integer value to subtract
186 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500187 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100188 * Atomically subtracts @i from @v.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500189 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100190static inline long long atomic64_sub(long long i, atomic64_t *v)
191{
Jan Beulich819165f2012-01-20 16:21:41 +0000192 __alternative_atomic64(sub, sub_return,
193 ASM_OUTPUT2("+A" (i), "+c" (v)),
194 ASM_NO_INPUT_CLOBBER("memory"));
Luca Barbieria7e926a2010-02-24 10:54:25 +0100195 return i;
196}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500197
198/**
199 * atomic64_sub_and_test - subtract value from variable and test result
Luca Barbieria7e926a2010-02-24 10:54:25 +0100200 * @i: integer value to subtract
201 * @v: pointer to type atomic64_t
Philipp Hahn1f045972012-05-02 18:09:35 +0200202 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100203 * Atomically subtracts @i from @v and returns
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500204 * true if the result is zero, or false for all
205 * other cases.
206 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100207static inline int atomic64_sub_and_test(long long i, atomic64_t *v)
208{
209 return atomic64_sub_return(i, v) == 0;
210}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500211
212/**
213 * atomic64_inc - increment atomic64 variable
Luca Barbieria7e926a2010-02-24 10:54:25 +0100214 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500215 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100216 * Atomically increments @v by 1.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500217 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100218static inline void atomic64_inc(atomic64_t *v)
219{
Jan Beulich819165f2012-01-20 16:21:41 +0000220 __alternative_atomic64(inc, inc_return, /* no output */,
221 "S" (v) : "memory", "eax", "ecx", "edx");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100222}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500223
224/**
225 * atomic64_dec - decrement atomic64 variable
Philipp Hahn1f045972012-05-02 18:09:35 +0200226 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500227 *
Philipp Hahn1f045972012-05-02 18:09:35 +0200228 * Atomically decrements @v by 1.
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500229 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100230static inline void atomic64_dec(atomic64_t *v)
231{
Jan Beulich819165f2012-01-20 16:21:41 +0000232 __alternative_atomic64(dec, dec_return, /* no output */,
233 "S" (v) : "memory", "eax", "ecx", "edx");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100234}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500235
236/**
237 * atomic64_dec_and_test - decrement and test
Luca Barbieria7e926a2010-02-24 10:54:25 +0100238 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500239 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100240 * Atomically decrements @v by 1 and
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500241 * returns true if the result is 0, or false for all other
242 * cases.
243 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100244static inline int atomic64_dec_and_test(atomic64_t *v)
245{
246 return atomic64_dec_return(v) == 0;
247}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500248
249/**
250 * atomic64_inc_and_test - increment and test
Luca Barbieria7e926a2010-02-24 10:54:25 +0100251 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500252 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100253 * Atomically increments @v by 1
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500254 * and returns true if the result is zero, or false for all
255 * other cases.
256 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100257static inline int atomic64_inc_and_test(atomic64_t *v)
258{
259 return atomic64_inc_return(v) == 0;
260}
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500261
262/**
263 * atomic64_add_negative - add and test if negative
Luca Barbieria7e926a2010-02-24 10:54:25 +0100264 * @i: integer value to add
265 * @v: pointer to type atomic64_t
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500266 *
Luca Barbieria7e926a2010-02-24 10:54:25 +0100267 * Atomically adds @i to @v and returns true
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500268 * if the result is negative, or false when
269 * result is greater than or equal to zero.
270 */
Luca Barbieria7e926a2010-02-24 10:54:25 +0100271static inline int atomic64_add_negative(long long i, atomic64_t *v)
272{
273 return atomic64_add_return(i, v) < 0;
274}
275
276/**
277 * atomic64_add_unless - add unless the number is a given value
278 * @v: pointer of type atomic64_t
279 * @a: the amount to add to v...
280 * @u: ...unless v is equal to u.
281 *
282 * Atomically adds @a to @v, so long as it was not @u.
Jan Beulich819165f2012-01-20 16:21:41 +0000283 * Returns non-zero if the add was done, zero otherwise.
Luca Barbieria7e926a2010-02-24 10:54:25 +0100284 */
285static inline int atomic64_add_unless(atomic64_t *v, long long a, long long u)
286{
287 unsigned low = (unsigned)u;
288 unsigned high = (unsigned)(u >> 32);
Jan Beulich819165f2012-01-20 16:21:41 +0000289 alternative_atomic64(add_unless,
Jan Beulichcb8095b2012-01-20 16:22:04 +0000290 ASM_OUTPUT2("+A" (a), "+c" (low), "+D" (high)),
291 "S" (v) : "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100292 return (int)a;
293}
294
295
296static inline int atomic64_inc_not_zero(atomic64_t *v)
297{
298 int r;
Jan Beulich819165f2012-01-20 16:21:41 +0000299 alternative_atomic64(inc_not_zero, "=&a" (r),
300 "S" (v) : "ecx", "edx", "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100301 return r;
302}
303
304static inline long long atomic64_dec_if_positive(atomic64_t *v)
305{
306 long long r;
Jan Beulich819165f2012-01-20 16:21:41 +0000307 alternative_atomic64(dec_if_positive, "=&A" (r),
308 "S" (v) : "ecx", "memory");
Luca Barbieria7e926a2010-02-24 10:54:25 +0100309 return r;
310}
311
Jan Beulich819165f2012-01-20 16:21:41 +0000312#undef alternative_atomic64
313#undef __alternative_atomic64
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500314
Peter Zijlstra7fc18452014-04-23 20:28:37 +0200315#define ATOMIC64_OP(op, c_op) \
316static inline void atomic64_##op(long long i, atomic64_t *v) \
317{ \
318 long long old, c = 0; \
319 while ((old = atomic64_cmpxchg(v, c, c c_op i)) != c) \
320 c = old; \
321}
322
323ATOMIC64_OP(and, &)
324ATOMIC64_OP(or, |)
325ATOMIC64_OP(xor, ^)
326
327#undef ATOMIC64_OP
328
Brian Gerst1a3b1d82010-01-07 11:53:33 -0500329#endif /* _ASM_X86_ATOMIC64_32_H */