2 * include/asm-xtensa/atomic.h
4 * Atomic operations that C can't guarantee us. Useful for resource counting..
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 * Copyright (C) 2001 - 2005 Tensilica Inc.
13 #ifndef _XTENSA_ATOMIC_H
14 #define _XTENSA_ATOMIC_H
16 #include <linux/stringify.h>
18 typedef struct { volatile int counter; } atomic_t;
21 #include <asm/processor.h>
22 #include <asm/system.h>
24 #define ATOMIC_INIT(i) { (i) }
27 * This Xtensa implementation assumes that the right mechanism
28 * for exclusion is for locking interrupts to level 1.
30 * Locking interrupts looks like this:
37 * Note that a15 is used here because the register allocation
38 * done by the compiler is not guaranteed and a window overflow
39 * may not occur between the rsil and wsr instructions. By using
40 * a15 in the rsil, the machine is guaranteed to be in a state
41 * where no register reference will cause an overflow.
45 * atomic_read - read atomic variable
46 * @v: pointer of type atomic_t
48 * Atomically reads the value of @v.
50 #define atomic_read(v) ((v)->counter)
53 * atomic_set - set atomic variable
54 * @v: pointer of type atomic_t
57 * Atomically sets the value of @v to @i.
59 #define atomic_set(v,i) ((v)->counter = (i))
62 * atomic_add - add integer to atomic variable
63 * @i: integer value to add
64 * @v: pointer of type atomic_t
66 * Atomically adds @i to @v.
68 static inline void atomic_add(int i, atomic_t * v)
73 "rsil a15, "__stringify(LOCKLEVEL)"\n\t"
77 "wsr a15, "__stringify(PS)" \n\t"
86 * atomic_sub - subtract the atomic variable
87 * @i: integer value to subtract
88 * @v: pointer of type atomic_t
90 * Atomically subtracts @i from @v.
92 static inline void atomic_sub(int i, atomic_t *v)
97 "rsil a15, "__stringify(LOCKLEVEL)"\n\t"
100 "s32i %0, %2, 0 \n\t"
101 "wsr a15, "__stringify(PS)" \n\t"
110 * We use atomic_{add|sub}_return to define other functions.
113 static inline int atomic_add_return(int i, atomic_t * v)
117 __asm__ __volatile__(
118 "rsil a15,"__stringify(LOCKLEVEL)"\n\t"
119 "l32i %0, %2, 0 \n\t"
120 "add %0, %0, %1 \n\t"
121 "s32i %0, %2, 0 \n\t"
122 "wsr a15, "__stringify(PS)" \n\t"
132 static inline int atomic_sub_return(int i, atomic_t * v)
136 __asm__ __volatile__(
137 "rsil a15,"__stringify(LOCKLEVEL)"\n\t"
138 "l32i %0, %2, 0 \n\t"
139 "sub %0, %0, %1 \n\t"
140 "s32i %0, %2, 0 \n\t"
141 "wsr a15, "__stringify(PS)" \n\t"
152 * atomic_sub_and_test - subtract value from variable and test result
153 * @i: integer value to subtract
154 * @v: pointer of type atomic_t
156 * Atomically subtracts @i from @v and returns
157 * true if the result is zero, or false for all
160 #define atomic_sub_and_test(i,v) (atomic_sub_return((i),(v)) == 0)
163 * atomic_inc - increment atomic variable
164 * @v: pointer of type atomic_t
166 * Atomically increments @v by 1.
168 #define atomic_inc(v) atomic_add(1,(v))
171 * atomic_inc - increment atomic variable
172 * @v: pointer of type atomic_t
174 * Atomically increments @v by 1.
176 #define atomic_inc_return(v) atomic_add_return(1,(v))
179 * atomic_dec - decrement atomic variable
180 * @v: pointer of type atomic_t
182 * Atomically decrements @v by 1.
184 #define atomic_dec(v) atomic_sub(1,(v))
187 * atomic_dec_return - decrement atomic variable
188 * @v: pointer of type atomic_t
190 * Atomically decrements @v by 1.
192 #define atomic_dec_return(v) atomic_sub_return(1,(v))
195 * atomic_dec_and_test - decrement and test
196 * @v: pointer of type atomic_t
198 * Atomically decrements @v by 1 and
199 * returns true if the result is 0, or false for all other
202 #define atomic_dec_and_test(v) (atomic_sub_return(1,(v)) == 0)
205 * atomic_inc_and_test - increment and test
206 * @v: pointer of type atomic_t
208 * Atomically increments @v by 1
209 * and returns true if the result is zero, or false for all
212 #define atomic_inc_and_test(v) (atomic_add_return(1,(v)) == 0)
215 * atomic_add_negative - add and test if negative
216 * @v: pointer of type atomic_t
217 * @i: integer value to add
219 * Atomically adds @i to @v and returns true
220 * if the result is negative, or false when
221 * result is greater than or equal to zero.
223 #define atomic_add_negative(i,v) (atomic_add_return((i),(v)) < 0)
225 #define atomic_cmpxchg(v, o, n) ((int)cmpxchg(&((v)->counter), (o), (n)))
226 #define atomic_xchg(v, new) (xchg(&((v)->counter), new))
229 * atomic_add_unless - add unless the number is a given value
230 * @v: pointer of type atomic_t
231 * @a: the amount to add to v...
232 * @u: ...unless v is equal to u.
234 * Atomically adds @a to @v, so long as it was not @u.
235 * Returns non-zero if @v was not @u, and zero otherwise.
237 static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)
242 if (unlikely(c == (u)))
244 old = atomic_cmpxchg((v), c, c + (a));
245 if (likely(old == c))
252 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
254 static inline void atomic_clear_mask(unsigned int mask, atomic_t *v)
256 unsigned int all_f = -1;
259 __asm__ __volatile__(
260 "rsil a15,"__stringify(LOCKLEVEL)"\n\t"
261 "l32i %0, %2, 0 \n\t"
262 "xor %1, %4, %3 \n\t"
263 "and %0, %0, %4 \n\t"
264 "s32i %0, %2, 0 \n\t"
265 "wsr a15, "__stringify(PS)" \n\t"
267 : "=&a" (vval), "=a" (mask)
268 : "a" (v), "a" (all_f), "1" (mask)
273 static inline void atomic_set_mask(unsigned int mask, atomic_t *v)
277 __asm__ __volatile__(
278 "rsil a15,"__stringify(LOCKLEVEL)"\n\t"
279 "l32i %0, %2, 0 \n\t"
281 "s32i %0, %2, 0 \n\t"
282 "wsr a15, "__stringify(PS)" \n\t"
285 : "a" (mask), "a" (v)
290 /* Atomic operations are already serializing */
291 #define smp_mb__before_atomic_dec() barrier()
292 #define smp_mb__after_atomic_dec() barrier()
293 #define smp_mb__before_atomic_inc() barrier()
294 #define smp_mb__after_atomic_inc() barrier()
296 #include <asm-generic/atomic.h>
297 #endif /* __KERNEL__ */
299 #endif /* _XTENSA_ATOMIC_H */