blob: a94cbebbc33df5dab756ce6fce0a739a13212784 [file] [log] [blame]
Arnd Bergmann72099ed2009-05-13 22:56:29 +00001#ifndef _ASM_GENERIC_ATOMIC_LONG_H
2#define _ASM_GENERIC_ATOMIC_LONG_H
Christoph Lameterd3cb4872006-01-06 00:11:20 -08003/*
4 * Copyright (C) 2005 Silicon Graphics, Inc.
Christoph Lametercde53532008-07-04 09:59:22 -07005 * Christoph Lameter
Christoph Lameterd3cb4872006-01-06 00:11:20 -08006 *
7 * Allows to provide arch independent atomic definitions without the need to
8 * edit all arch specific atomic.h files.
9 */
10
Andrew Morton5998bf12006-01-08 01:00:29 -080011#include <asm/types.h>
Christoph Lameterd3cb4872006-01-06 00:11:20 -080012
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
23typedef atomic64_t atomic_long_t;
24
25#define ATOMIC_LONG_INIT(i) ATOMIC64_INIT(i)
Will Deacon586b6102015-08-06 17:54:38 +010026#define ATOMIC_LONG_PFX(x) atomic64 ## x
Christoph Lameterd3cb4872006-01-06 00:11:20 -080027
Will Deacon586b6102015-08-06 17:54:38 +010028#else
Christoph Lameterd3cb4872006-01-06 00:11:20 -080029
30typedef atomic_t atomic_long_t;
31
32#define ATOMIC_LONG_INIT(i) ATOMIC_INIT(i)
Will Deacon586b6102015-08-06 17:54:38 +010033#define ATOMIC_LONG_PFX(x) atomic ## x
34
35#endif
36
Will Deacon6d79ef22015-08-06 17:54:39 +010037#define ATOMIC_LONG_READ_OP(mo) \
38static 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 Lameterd3cb4872006-01-06 00:11:20 -080043}
Will Deacon6d79ef22015-08-06 17:54:39 +010044ATOMIC_LONG_READ_OP()
45ATOMIC_LONG_READ_OP(_acquire)
Christoph Lameterd3cb4872006-01-06 00:11:20 -080046
Will Deacon6d79ef22015-08-06 17:54:39 +010047#undef ATOMIC_LONG_READ_OP
Christoph Lameterd3cb4872006-01-06 00:11:20 -080048
Will Deacon6d79ef22015-08-06 17:54:39 +010049#define ATOMIC_LONG_SET_OP(mo) \
50static 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 Lameterd3cb4872006-01-06 00:11:20 -080055}
Will Deacon6d79ef22015-08-06 17:54:39 +010056ATOMIC_LONG_SET_OP()
57ATOMIC_LONG_SET_OP(_release)
58
59#undef ATOMIC_LONG_SET_OP
60
61#define ATOMIC_LONG_ADD_SUB_OP(op, mo) \
62static inline long \
63atomic_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}
69ATOMIC_LONG_ADD_SUB_OP(add,)
70ATOMIC_LONG_ADD_SUB_OP(add, _relaxed)
71ATOMIC_LONG_ADD_SUB_OP(add, _acquire)
72ATOMIC_LONG_ADD_SUB_OP(add, _release)
73ATOMIC_LONG_ADD_SUB_OP(sub,)
74ATOMIC_LONG_ADD_SUB_OP(sub, _relaxed)
75ATOMIC_LONG_ADD_SUB_OP(sub, _acquire)
76ATOMIC_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 Lameterd3cb4872006-01-06 00:11:20 -0800100
101static inline void atomic_long_inc(atomic_long_t *l)
102{
Will Deacon586b6102015-08-06 17:54:38 +0100103 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800104
Will Deacon586b6102015-08-06 17:54:38 +0100105 ATOMIC_LONG_PFX(_inc)(v);
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800106}
107
108static inline void atomic_long_dec(atomic_long_t *l)
109{
Will Deacon586b6102015-08-06 17:54:38 +0100110 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800111
Will Deacon586b6102015-08-06 17:54:38 +0100112 ATOMIC_LONG_PFX(_dec)(v);
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800113}
114
115static inline void atomic_long_add(long i, atomic_long_t *l)
116{
Will Deacon586b6102015-08-06 17:54:38 +0100117 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800118
Will Deacon586b6102015-08-06 17:54:38 +0100119 ATOMIC_LONG_PFX(_add)(i, v);
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800120}
121
122static inline void atomic_long_sub(long i, atomic_long_t *l)
123{
Will Deacon586b6102015-08-06 17:54:38 +0100124 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800125
Will Deacon586b6102015-08-06 17:54:38 +0100126 ATOMIC_LONG_PFX(_sub)(i, v);
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800127}
128
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700129static inline int atomic_long_sub_and_test(long i, atomic_long_t *l)
130{
Will Deacon586b6102015-08-06 17:54:38 +0100131 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700132
Will Deacon586b6102015-08-06 17:54:38 +0100133 return ATOMIC_LONG_PFX(_sub_and_test)(i, v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700134}
135
136static inline int atomic_long_dec_and_test(atomic_long_t *l)
137{
Will Deacon586b6102015-08-06 17:54:38 +0100138 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700139
Will Deacon586b6102015-08-06 17:54:38 +0100140 return ATOMIC_LONG_PFX(_dec_and_test)(v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700141}
142
143static inline int atomic_long_inc_and_test(atomic_long_t *l)
144{
Will Deacon586b6102015-08-06 17:54:38 +0100145 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700146
Will Deacon586b6102015-08-06 17:54:38 +0100147 return ATOMIC_LONG_PFX(_inc_and_test)(v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700148}
149
150static inline int atomic_long_add_negative(long i, atomic_long_t *l)
151{
Will Deacon586b6102015-08-06 17:54:38 +0100152 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700153
Will Deacon586b6102015-08-06 17:54:38 +0100154 return ATOMIC_LONG_PFX(_add_negative)(i, v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700155}
156
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700157static inline long atomic_long_inc_return(atomic_long_t *l)
158{
Will Deacon586b6102015-08-06 17:54:38 +0100159 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700160
Will Deacon586b6102015-08-06 17:54:38 +0100161 return (long)ATOMIC_LONG_PFX(_inc_return)(v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700162}
163
164static inline long atomic_long_dec_return(atomic_long_t *l)
165{
Will Deacon586b6102015-08-06 17:54:38 +0100166 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700167
Will Deacon586b6102015-08-06 17:54:38 +0100168 return (long)ATOMIC_LONG_PFX(_dec_return)(v);
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700169}
170
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -0700171static inline long atomic_long_add_unless(atomic_long_t *l, long a, long u)
172{
Will Deacon586b6102015-08-06 17:54:38 +0100173 ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -0700174
Will Deacon586b6102015-08-06 17:54:38 +0100175 return (long)ATOMIC_LONG_PFX(_add_unless)(v, a, u);
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -0700176}
Mathieu Desnoyersbb2382c2007-05-08 00:34:19 -0700177
Will Deacon586b6102015-08-06 17:54:38 +0100178#define atomic_long_inc_not_zero(l) \
179 ATOMIC_LONG_PFX(_inc_not_zero)((ATOMIC_LONG_PFX(_t) *)(l))
Adrian Bunk4b358e22006-12-06 20:40:28 -0800180
Arnd Bergmann72099ed2009-05-13 22:56:29 +0000181#endif /* _ASM_GENERIC_ATOMIC_LONG_H */