H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_ATOMIC_32_H |
| 2 | #define _ASM_X86_ATOMIC_32_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/compiler.h> |
Matthew Wilcox | ea435467 | 2009-01-06 14:40:39 -0800 | [diff] [blame^] | 5 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <asm/processor.h> |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 7 | #include <asm/cmpxchg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * Atomic operations that C can't guarantee us. Useful for |
| 11 | * resource counting etc.. |
| 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #define ATOMIC_INIT(i) { (i) } |
| 15 | |
| 16 | /** |
| 17 | * atomic_read - read atomic variable |
| 18 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 19 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * Atomically reads the value of @v. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 21 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #define atomic_read(v) ((v)->counter) |
| 23 | |
| 24 | /** |
| 25 | * atomic_set - set atomic variable |
| 26 | * @v: pointer of type atomic_t |
| 27 | * @i: required value |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 28 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * Atomically sets the value of @v to @i. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 30 | */ |
| 31 | #define atomic_set(v, i) (((v)->counter) = (i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /** |
| 34 | * atomic_add - add integer to atomic variable |
| 35 | * @i: integer value to add |
| 36 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 37 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * Atomically adds @i to @v. |
| 39 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 40 | static inline void atomic_add(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 42 | asm volatile(LOCK_PREFIX "addl %1,%0" |
| 43 | : "+m" (v->counter) |
| 44 | : "ir" (i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | /** |
Robert P. J. Day | cc38682 | 2007-05-08 00:35:08 -0700 | [diff] [blame] | 48 | * atomic_sub - subtract integer from atomic variable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | * @i: integer value to subtract |
| 50 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 51 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | * Atomically subtracts @i from @v. |
| 53 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 54 | static inline void atomic_sub(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 56 | asm volatile(LOCK_PREFIX "subl %1,%0" |
| 57 | : "+m" (v->counter) |
| 58 | : "ir" (i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | /** |
| 62 | * atomic_sub_and_test - subtract value from variable and test result |
| 63 | * @i: integer value to subtract |
| 64 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 65 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | * Atomically subtracts @i from @v and returns |
| 67 | * true if the result is zero, or false for all |
| 68 | * other cases. |
| 69 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 70 | static inline int atomic_sub_and_test(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | unsigned char c; |
| 73 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 74 | asm volatile(LOCK_PREFIX "subl %2,%0; sete %1" |
| 75 | : "+m" (v->counter), "=qm" (c) |
| 76 | : "ir" (i) : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | return c; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * atomic_inc - increment atomic variable |
| 82 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 83 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | * Atomically increments @v by 1. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 85 | */ |
| 86 | static inline void atomic_inc(atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 88 | asm volatile(LOCK_PREFIX "incl %0" |
| 89 | : "+m" (v->counter)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | /** |
| 93 | * atomic_dec - decrement atomic variable |
| 94 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 95 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | * Atomically decrements @v by 1. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 97 | */ |
| 98 | static inline void atomic_dec(atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 100 | asm volatile(LOCK_PREFIX "decl %0" |
| 101 | : "+m" (v->counter)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /** |
| 105 | * atomic_dec_and_test - decrement and test |
| 106 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 107 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | * Atomically decrements @v by 1 and |
| 109 | * returns true if the result is 0, or false for all other |
| 110 | * cases. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 111 | */ |
| 112 | static inline int atomic_dec_and_test(atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | unsigned char c; |
| 115 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 116 | asm volatile(LOCK_PREFIX "decl %0; sete %1" |
| 117 | : "+m" (v->counter), "=qm" (c) |
| 118 | : : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return c != 0; |
| 120 | } |
| 121 | |
| 122 | /** |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 123 | * atomic_inc_and_test - increment and test |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | * @v: pointer of type atomic_t |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 125 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * Atomically increments @v by 1 |
| 127 | * and returns true if the result is zero, or false for all |
| 128 | * other cases. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 129 | */ |
| 130 | static inline int atomic_inc_and_test(atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
| 132 | unsigned char c; |
| 133 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 134 | asm volatile(LOCK_PREFIX "incl %0; sete %1" |
| 135 | : "+m" (v->counter), "=qm" (c) |
| 136 | : : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return c != 0; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * atomic_add_negative - add and test if negative |
| 142 | * @v: pointer of type atomic_t |
| 143 | * @i: integer value to add |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 144 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | * Atomically adds @i to @v and returns true |
| 146 | * if the result is negative, or false when |
| 147 | * result is greater than or equal to zero. |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 148 | */ |
| 149 | static inline int atomic_add_negative(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
| 151 | unsigned char c; |
| 152 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 153 | asm volatile(LOCK_PREFIX "addl %2,%0; sets %1" |
| 154 | : "+m" (v->counter), "=qm" (c) |
| 155 | : "ir" (i) : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | return c; |
| 157 | } |
| 158 | |
| 159 | /** |
Robert P. J. Day | cc38682 | 2007-05-08 00:35:08 -0700 | [diff] [blame] | 160 | * atomic_add_return - add integer and return |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | * @v: pointer of type atomic_t |
| 162 | * @i: integer value to add |
| 163 | * |
| 164 | * Atomically adds @i to @v and returns @i + @v |
| 165 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 166 | static inline int atomic_add_return(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | int __i; |
| 169 | #ifdef CONFIG_M386 |
lepton | 1bb858f | 2006-04-18 22:21:10 -0700 | [diff] [blame] | 170 | unsigned long flags; |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 171 | if (unlikely(boot_cpu_data.x86 <= 3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | goto no_xadd; |
| 173 | #endif |
| 174 | /* Modern 486+ processor */ |
| 175 | __i = i; |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 176 | asm volatile(LOCK_PREFIX "xaddl %0, %1" |
| 177 | : "+r" (i), "+m" (v->counter) |
| 178 | : : "memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return i + __i; |
| 180 | |
| 181 | #ifdef CONFIG_M386 |
| 182 | no_xadd: /* Legacy 386 processor */ |
lepton | 1bb858f | 2006-04-18 22:21:10 -0700 | [diff] [blame] | 183 | local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | __i = atomic_read(v); |
| 185 | atomic_set(v, i + __i); |
lepton | 1bb858f | 2006-04-18 22:21:10 -0700 | [diff] [blame] | 186 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | return i + __i; |
| 188 | #endif |
| 189 | } |
| 190 | |
Robert P. J. Day | cc38682 | 2007-05-08 00:35:08 -0700 | [diff] [blame] | 191 | /** |
| 192 | * atomic_sub_return - subtract integer and return |
| 193 | * @v: pointer of type atomic_t |
| 194 | * @i: integer value to subtract |
| 195 | * |
| 196 | * Atomically subtracts @i from @v and returns @v - @i |
| 197 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 198 | static inline int atomic_sub_return(int i, atomic_t *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 200 | return atomic_add_return(-i, v); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Mathieu Desnoyers | e656e24 | 2007-05-08 00:34:20 -0700 | [diff] [blame] | 203 | #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) |
| 204 | #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) |
Nick Piggin | 4a6dae6 | 2005-11-13 16:07:24 -0800 | [diff] [blame] | 205 | |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 206 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 207 | * atomic_add_unless - add unless the number is already a given value |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 208 | * @v: pointer of type atomic_t |
| 209 | * @a: the amount to add to v... |
| 210 | * @u: ...unless v is equal to u. |
| 211 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 212 | * Atomically adds @a to @v, so long as @v was not already @u. |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 213 | * Returns non-zero if @v was not @u, and zero otherwise. |
| 214 | */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 215 | static inline int atomic_add_unless(atomic_t *v, int a, int u) |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 216 | { |
| 217 | int c, old; |
| 218 | c = atomic_read(v); |
| 219 | for (;;) { |
| 220 | if (unlikely(c == (u))) |
| 221 | break; |
| 222 | old = atomic_cmpxchg((v), c, c + (a)); |
| 223 | if (likely(old == c)) |
| 224 | break; |
| 225 | c = old; |
| 226 | } |
| 227 | return c != (u); |
| 228 | } |
| 229 | |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 230 | #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) |
| 231 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 232 | #define atomic_inc_return(v) (atomic_add_return(1, v)) |
| 233 | #define atomic_dec_return(v) (atomic_sub_return(1, v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /* These are x86-specific, used by some header files */ |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 236 | #define atomic_clear_mask(mask, addr) \ |
| 237 | asm volatile(LOCK_PREFIX "andl %0,%1" \ |
| 238 | : : "r" (~(mask)), "m" (*(addr)) : "memory") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Joe Perches | 78ff12e | 2008-03-23 01:01:41 -0700 | [diff] [blame] | 240 | #define atomic_set_mask(mask, addr) \ |
| 241 | asm volatile(LOCK_PREFIX "orl %0,%1" \ |
| 242 | : : "r" (mask), "m" (*(addr)) : "memory") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
| 244 | /* Atomic operations are already serializing on x86 */ |
| 245 | #define smp_mb__before_atomic_dec() barrier() |
| 246 | #define smp_mb__after_atomic_dec() barrier() |
| 247 | #define smp_mb__before_atomic_inc() barrier() |
| 248 | #define smp_mb__after_atomic_inc() barrier() |
| 249 | |
Christoph Lameter | d3cb487 | 2006-01-06 00:11:20 -0800 | [diff] [blame] | 250 | #include <asm-generic/atomic.h> |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 251 | #endif /* _ASM_X86_ATOMIC_32_H */ |