blob: 824fa0be55a39f295d200dd5e130647c11c4a9f3 [file] [log] [blame]
Ingo Molnarb7882b72009-07-03 13:26:39 +02001#include <linux/compiler.h>
Ingo Molnar1fde9022009-07-03 17:28:57 +02002#include <linux/module.h>
Ingo Molnarb7882b72009-07-03 13:26:39 +02003#include <linux/types.h>
Ingo Molnar1fde9022009-07-03 17:28:57 +02004
Ingo Molnarb7882b72009-07-03 13:26:39 +02005#include <asm/processor.h>
6#include <asm/cmpxchg.h>
7#include <asm/atomic.h>
8
Ingo Molnar3ac805d2009-07-03 12:51:19 +02009static noinline u64 cmpxchg8b(u64 *ptr, u64 old, u64 new)
Ingo Molnarb7882b72009-07-03 13:26:39 +020010{
Eric Dumazet69237f92009-07-03 13:26:41 +020011 u32 low = new;
12 u32 high = new >> 32;
13
Ingo Molnarb7882b72009-07-03 13:26:39 +020014 asm volatile(
Eric Dumazet69237f92009-07-03 13:26:41 +020015 LOCK_PREFIX "cmpxchg8b %1\n"
16 : "+A" (old), "+m" (*ptr)
17 : "b" (low), "c" (high)
18 );
Ingo Molnarb7882b72009-07-03 13:26:39 +020019 return old;
20}
21
22u64 atomic64_cmpxchg(atomic64_t *ptr, u64 old_val, u64 new_val)
23{
24 return cmpxchg8b(&ptr->counter, old_val, new_val);
25}
Ingo Molnar1fde9022009-07-03 17:28:57 +020026EXPORT_SYMBOL(atomic64_cmpxchg);
Ingo Molnarb7882b72009-07-03 13:26:39 +020027
28/**
29 * atomic64_xchg - xchg atomic64 variable
30 * @ptr: pointer to type atomic64_t
31 * @new_val: value to assign
32 *
33 * Atomically xchgs the value of @ptr to @new_val and returns
34 * the old value.
35 */
Ingo Molnarb7882b72009-07-03 13:26:39 +020036u64 atomic64_xchg(atomic64_t *ptr, u64 new_val)
37{
Ingo Molnar3a8d1782009-07-03 19:56:36 +020038 /*
39 * Try first with a (possibly incorrect) assumption about
40 * what we have there. We'll do two loops most likely,
41 * but we'll get an ownership MESI transaction straight away
42 * instead of a read transaction followed by a
43 * flush-for-ownership transaction:
44 */
45 u64 old_val, real_val = 0;
Ingo Molnarb7882b72009-07-03 13:26:39 +020046
47 do {
Ingo Molnar3a8d1782009-07-03 19:56:36 +020048 old_val = real_val;
49
50 real_val = atomic64_cmpxchg(ptr, old_val, new_val);
51
52 } while (real_val != old_val);
Ingo Molnarb7882b72009-07-03 13:26:39 +020053
54 return old_val;
55}
Ingo Molnar1fde9022009-07-03 17:28:57 +020056EXPORT_SYMBOL(atomic64_xchg);
Ingo Molnarb7882b72009-07-03 13:26:39 +020057
58/**
59 * atomic64_set - set atomic64 variable
60 * @ptr: pointer to type atomic64_t
61 * @new_val: value to assign
62 *
63 * Atomically sets the value of @ptr to @new_val.
64 */
65void atomic64_set(atomic64_t *ptr, u64 new_val)
66{
67 atomic64_xchg(ptr, new_val);
68}
Eric Dumazeta79f0da2009-07-03 16:50:10 +020069EXPORT_SYMBOL(atomic64_set);
Ingo Molnarb7882b72009-07-03 13:26:39 +020070
71/**
Ingo Molnar1fde9022009-07-03 17:28:57 +020072EXPORT_SYMBOL(atomic64_read);
Ingo Molnarb7882b72009-07-03 13:26:39 +020073 * atomic64_add_return - add and return
74 * @delta: integer value to add
75 * @ptr: pointer to type atomic64_t
76 *
77 * Atomically adds @delta to @ptr and returns @delta + *@ptr
78 */
Ingo Molnar3ac805d2009-07-03 12:51:19 +020079noinline u64 atomic64_add_return(u64 delta, atomic64_t *ptr)
Ingo Molnarb7882b72009-07-03 13:26:39 +020080{
Ingo Molnar824975e2009-07-03 12:39:07 +020081 /*
Ingo Molnar3a8d1782009-07-03 19:56:36 +020082 * Try first with a (possibly incorrect) assumption about
Ingo Molnar824975e2009-07-03 12:39:07 +020083 * what we have there. We'll do two loops most likely,
84 * but we'll get an ownership MESI transaction straight away
85 * instead of a read transaction followed by a
86 * flush-for-ownership transaction:
87 */
Ingo Molnar3a8d1782009-07-03 19:56:36 +020088 u64 old_val, new_val, real_val = 0;
Ingo Molnarb7882b72009-07-03 13:26:39 +020089
90 do {
Ingo Molnar824975e2009-07-03 12:39:07 +020091 old_val = real_val;
Ingo Molnarb7882b72009-07-03 13:26:39 +020092 new_val = old_val + delta;
93
Ingo Molnar824975e2009-07-03 12:39:07 +020094 real_val = atomic64_cmpxchg(ptr, old_val, new_val);
95
96 } while (real_val != old_val);
Ingo Molnarb7882b72009-07-03 13:26:39 +020097
98 return new_val;
99}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200100EXPORT_SYMBOL(atomic64_add_return);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200101
102u64 atomic64_sub_return(u64 delta, atomic64_t *ptr)
103{
104 return atomic64_add_return(-delta, ptr);
105}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200106EXPORT_SYMBOL(atomic64_sub_return);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200107
108u64 atomic64_inc_return(atomic64_t *ptr)
109{
110 return atomic64_add_return(1, ptr);
111}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200112EXPORT_SYMBOL(atomic64_inc_return);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200113
114u64 atomic64_dec_return(atomic64_t *ptr)
115{
116 return atomic64_sub_return(1, ptr);
117}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200118EXPORT_SYMBOL(atomic64_dec_return);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200119
120/**
121 * atomic64_add - add integer to atomic64 variable
122 * @delta: integer value to add
123 * @ptr: pointer to type atomic64_t
124 *
125 * Atomically adds @delta to @ptr.
126 */
127void atomic64_add(u64 delta, atomic64_t *ptr)
128{
129 atomic64_add_return(delta, ptr);
130}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200131EXPORT_SYMBOL(atomic64_add);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200132
133/**
134 * atomic64_sub - subtract the atomic64 variable
135 * @delta: integer value to subtract
136 * @ptr: pointer to type atomic64_t
137 *
138 * Atomically subtracts @delta from @ptr.
139 */
140void atomic64_sub(u64 delta, atomic64_t *ptr)
141{
142 atomic64_add(-delta, ptr);
143}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200144EXPORT_SYMBOL(atomic64_sub);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200145
146/**
147 * atomic64_sub_and_test - subtract value from variable and test result
148 * @delta: integer value to subtract
149 * @ptr: pointer to type atomic64_t
150 *
151 * Atomically subtracts @delta from @ptr and returns
152 * true if the result is zero, or false for all
153 * other cases.
154 */
155int atomic64_sub_and_test(u64 delta, atomic64_t *ptr)
156{
Ingo Molnarddf9a002009-07-03 20:11:30 +0200157 u64 new_val = atomic64_sub_return(delta, ptr);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200158
Ingo Molnarddf9a002009-07-03 20:11:30 +0200159 return new_val == 0;
Ingo Molnarb7882b72009-07-03 13:26:39 +0200160}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200161EXPORT_SYMBOL(atomic64_sub_and_test);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200162
163/**
164 * atomic64_inc - increment atomic64 variable
165 * @ptr: pointer to type atomic64_t
166 *
167 * Atomically increments @ptr by 1.
168 */
169void atomic64_inc(atomic64_t *ptr)
170{
171 atomic64_add(1, ptr);
172}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200173EXPORT_SYMBOL(atomic64_inc);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200174
175/**
176 * atomic64_dec - decrement atomic64 variable
177 * @ptr: pointer to type atomic64_t
178 *
179 * Atomically decrements @ptr by 1.
180 */
181void atomic64_dec(atomic64_t *ptr)
182{
183 atomic64_sub(1, ptr);
184}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200185EXPORT_SYMBOL(atomic64_dec);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200186
187/**
188 * atomic64_dec_and_test - decrement and test
189 * @ptr: pointer to type atomic64_t
190 *
191 * Atomically decrements @ptr by 1 and
192 * returns true if the result is 0, or false for all other
193 * cases.
194 */
195int atomic64_dec_and_test(atomic64_t *ptr)
196{
197 return atomic64_sub_and_test(1, ptr);
198}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200199EXPORT_SYMBOL(atomic64_dec_and_test);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200200
201/**
202 * atomic64_inc_and_test - increment and test
203 * @ptr: pointer to type atomic64_t
204 *
205 * Atomically increments @ptr by 1
206 * and returns true if the result is zero, or false for all
207 * other cases.
208 */
209int atomic64_inc_and_test(atomic64_t *ptr)
210{
211 return atomic64_sub_and_test(-1, ptr);
212}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200213EXPORT_SYMBOL(atomic64_inc_and_test);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200214
215/**
216 * atomic64_add_negative - add and test if negative
217 * @delta: integer value to add
218 * @ptr: pointer to type atomic64_t
219 *
220 * Atomically adds @delta to @ptr and returns true
221 * if the result is negative, or false when
222 * result is greater than or equal to zero.
223 */
224int atomic64_add_negative(u64 delta, atomic64_t *ptr)
225{
Ingo Molnarddf9a002009-07-03 20:11:30 +0200226 s64 new_val = atomic64_add_return(delta, ptr);
Ingo Molnarb7882b72009-07-03 13:26:39 +0200227
Ingo Molnarddf9a002009-07-03 20:11:30 +0200228 return new_val < 0;
Ingo Molnarb7882b72009-07-03 13:26:39 +0200229}
Ingo Molnar1fde9022009-07-03 17:28:57 +0200230EXPORT_SYMBOL(atomic64_add_negative);