Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Atomic operations that C can't guarantee us. Useful for |
| 3 | * resource counting etc.. |
| 4 | * |
| 5 | * But use these as seldom as possible since they are much more slower |
| 6 | * than regular operations. |
| 7 | * |
| 8 | * This file is subject to the terms and conditions of the GNU General Public |
| 9 | * License. See the file "COPYING" in the main directory of this archive |
| 10 | * for more details. |
| 11 | * |
Ralf Baechle | e303e08 | 2006-11-30 01:14:50 +0000 | [diff] [blame] | 12 | * Copyright (C) 1996, 97, 99, 2000, 03, 04, 06 by Ralf Baechle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifndef _ASM_ATOMIC_H |
| 15 | #define _ASM_ATOMIC_H |
| 16 | |
Ralf Baechle | 192ef36 | 2006-07-07 14:07:18 +0100 | [diff] [blame] | 17 | #include <linux/irqflags.h> |
Matthew Wilcox | ea435467 | 2009-01-06 14:40:39 -0800 | [diff] [blame] | 18 | #include <linux/types.h> |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 19 | #include <asm/barrier.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/cpu-features.h> |
| 21 | #include <asm/war.h> |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 22 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #define ATOMIC_INIT(i) { (i) } |
| 25 | |
| 26 | /* |
| 27 | * atomic_read - read atomic variable |
| 28 | * @v: pointer of type atomic_t |
| 29 | * |
| 30 | * Atomically reads the value of @v. |
| 31 | */ |
Anton Blanchard | f3d46f9 | 2010-05-17 14:33:53 +1000 | [diff] [blame] | 32 | #define atomic_read(v) (*(volatile int *)&(v)->counter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * atomic_set - set atomic variable |
| 36 | * @v: pointer of type atomic_t |
| 37 | * @i: required value |
| 38 | * |
| 39 | * Atomically sets the value of @v to @i. |
| 40 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 41 | #define atomic_set(v, i) ((v)->counter = (i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * atomic_add - add integer to atomic variable |
| 45 | * @i: integer value to add |
| 46 | * @v: pointer of type atomic_t |
| 47 | * |
| 48 | * Atomically adds @i to @v. |
| 49 | */ |
| 50 | static __inline__ void atomic_add(int i, atomic_t * v) |
| 51 | { |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 52 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 53 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 56 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | "1: ll %0, %1 # atomic_add \n" |
| 58 | " addu %0, %2 \n" |
| 59 | " sc %0, %1 \n" |
| 60 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 61 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | : "=&r" (temp), "=m" (v->counter) |
| 63 | : "Ir" (i), "m" (v->counter)); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 64 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 65 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 67 | do { |
| 68 | __asm__ __volatile__( |
| 69 | " .set mips3 \n" |
| 70 | " ll %0, %1 # atomic_add \n" |
| 71 | " addu %0, %2 \n" |
| 72 | " sc %0, %1 \n" |
| 73 | " .set mips0 \n" |
| 74 | : "=&r" (temp), "=m" (v->counter) |
| 75 | : "Ir" (i), "m" (v->counter)); |
| 76 | } while (unlikely(!temp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } else { |
| 78 | unsigned long flags; |
| 79 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 80 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | v->counter += i; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 82 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * atomic_sub - subtract the atomic variable |
| 88 | * @i: integer value to subtract |
| 89 | * @v: pointer of type atomic_t |
| 90 | * |
| 91 | * Atomically subtracts @i from @v. |
| 92 | */ |
| 93 | static __inline__ void atomic_sub(int i, atomic_t * v) |
| 94 | { |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 95 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 96 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 99 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | "1: ll %0, %1 # atomic_sub \n" |
| 101 | " subu %0, %2 \n" |
| 102 | " sc %0, %1 \n" |
| 103 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 104 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | : "=&r" (temp), "=m" (v->counter) |
| 106 | : "Ir" (i), "m" (v->counter)); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 107 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 108 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 110 | do { |
| 111 | __asm__ __volatile__( |
| 112 | " .set mips3 \n" |
| 113 | " ll %0, %1 # atomic_sub \n" |
| 114 | " subu %0, %2 \n" |
| 115 | " sc %0, %1 \n" |
| 116 | " .set mips0 \n" |
| 117 | : "=&r" (temp), "=m" (v->counter) |
| 118 | : "Ir" (i), "m" (v->counter)); |
| 119 | } while (unlikely(!temp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } else { |
| 121 | unsigned long flags; |
| 122 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 123 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | v->counter -= i; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 125 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * Same as above, but return the result value |
| 131 | */ |
| 132 | static __inline__ int atomic_add_return(int i, atomic_t * v) |
| 133 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 134 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 136 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 137 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 138 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 139 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 142 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | "1: ll %1, %2 # atomic_add_return \n" |
| 144 | " addu %0, %1, %3 \n" |
| 145 | " sc %0, %2 \n" |
| 146 | " beqzl %0, 1b \n" |
| 147 | " addu %0, %1, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 148 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 150 | : "Ir" (i), "m" (v->counter) |
| 151 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 152 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 153 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 155 | do { |
| 156 | __asm__ __volatile__( |
| 157 | " .set mips3 \n" |
| 158 | " ll %1, %2 # atomic_add_return \n" |
| 159 | " addu %0, %1, %3 \n" |
| 160 | " sc %0, %2 \n" |
| 161 | " .set mips0 \n" |
| 162 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 163 | : "Ir" (i), "m" (v->counter) |
| 164 | : "memory"); |
| 165 | } while (unlikely(!result)); |
| 166 | |
| 167 | result = temp + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } else { |
| 169 | unsigned long flags; |
| 170 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 171 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | result = v->counter; |
| 173 | result += i; |
| 174 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 175 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 178 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return result; |
| 181 | } |
| 182 | |
| 183 | static __inline__ int atomic_sub_return(int i, atomic_t * v) |
| 184 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 185 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 187 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 188 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 189 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 190 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
| 192 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 193 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | "1: ll %1, %2 # atomic_sub_return \n" |
| 195 | " subu %0, %1, %3 \n" |
| 196 | " sc %0, %2 \n" |
| 197 | " beqzl %0, 1b \n" |
| 198 | " subu %0, %1, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 199 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 201 | : "Ir" (i), "m" (v->counter) |
| 202 | : "memory"); |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 203 | |
| 204 | result = temp - i; |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 205 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 206 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 208 | do { |
| 209 | __asm__ __volatile__( |
| 210 | " .set mips3 \n" |
| 211 | " ll %1, %2 # atomic_sub_return \n" |
| 212 | " subu %0, %1, %3 \n" |
| 213 | " sc %0, %2 \n" |
| 214 | " .set mips0 \n" |
| 215 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 216 | : "Ir" (i), "m" (v->counter) |
| 217 | : "memory"); |
| 218 | } while (unlikely(!result)); |
| 219 | |
| 220 | result = temp - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } else { |
| 222 | unsigned long flags; |
| 223 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 224 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | result = v->counter; |
| 226 | result -= i; |
| 227 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 228 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 231 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | return result; |
| 234 | } |
| 235 | |
| 236 | /* |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 237 | * atomic_sub_if_positive - conditionally subtract integer from atomic variable |
| 238 | * @i: integer value to subtract |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * @v: pointer of type atomic_t |
| 240 | * |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 241 | * Atomically test @v and subtract @i if @v is greater or equal than @i. |
| 242 | * The function returns the old value of @v minus @i. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | */ |
| 244 | static __inline__ int atomic_sub_if_positive(int i, atomic_t * v) |
| 245 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 246 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 248 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 249 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 250 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 251 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 254 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | "1: ll %1, %2 # atomic_sub_if_positive\n" |
| 256 | " subu %0, %1, %3 \n" |
| 257 | " bltz %0, 1f \n" |
| 258 | " sc %0, %2 \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 259 | " .set noreorder \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | " beqzl %0, 1b \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 261 | " subu %0, %1, %3 \n" |
| 262 | " .set reorder \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | "1: \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 264 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 266 | : "Ir" (i), "m" (v->counter) |
| 267 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 268 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 269 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | __asm__ __volatile__( |
Maciej W. Rozycki | c4559f6 | 2005-06-23 15:57:15 +0000 | [diff] [blame] | 272 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | "1: ll %1, %2 # atomic_sub_if_positive\n" |
| 274 | " subu %0, %1, %3 \n" |
| 275 | " bltz %0, 1f \n" |
| 276 | " sc %0, %2 \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 277 | " .set noreorder \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 278 | " beqz %0, 1b \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 279 | " subu %0, %1, %3 \n" |
| 280 | " .set reorder \n" |
Ralf Baechle | 5095202 | 2008-07-03 23:28:35 +0100 | [diff] [blame] | 281 | "1: \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 282 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 284 | : "Ir" (i), "m" (v->counter) |
| 285 | : "memory"); |
| 286 | } else { |
| 287 | unsigned long flags; |
| 288 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 289 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | result = v->counter; |
| 291 | result -= i; |
| 292 | if (result >= 0) |
| 293 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 294 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 297 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | return result; |
| 300 | } |
| 301 | |
Mathieu Desnoyers | e12f644 | 2007-05-08 00:34:24 -0700 | [diff] [blame] | 302 | #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n))) |
| 303 | #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) |
Nick Piggin | 4a6dae6 | 2005-11-13 16:07:24 -0800 | [diff] [blame] | 304 | |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 305 | /** |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame^] | 306 | * __atomic_add_unless - add unless the number is a given value |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 307 | * @v: pointer of type atomic_t |
| 308 | * @a: the amount to add to v... |
| 309 | * @u: ...unless v is equal to u. |
| 310 | * |
| 311 | * Atomically adds @a to @v, so long as it was not @u. |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame^] | 312 | * Returns the old value of @v. |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 313 | */ |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame^] | 314 | 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] | 315 | { |
| 316 | int c, old; |
| 317 | c = atomic_read(v); |
| 318 | for (;;) { |
| 319 | if (unlikely(c == (u))) |
| 320 | break; |
| 321 | old = atomic_cmpxchg((v), c, c + (a)); |
| 322 | if (likely(old == c)) |
| 323 | break; |
| 324 | c = old; |
| 325 | } |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame^] | 326 | return c; |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 327 | } |
Nick Piggin | 8426e1f | 2005-11-13 16:07:25 -0800 | [diff] [blame] | 328 | |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 329 | #define atomic_dec_return(v) atomic_sub_return(1, (v)) |
| 330 | #define atomic_inc_return(v) atomic_add_return(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | /* |
| 333 | * atomic_sub_and_test - subtract value from variable and test result |
| 334 | * @i: integer value to subtract |
| 335 | * @v: pointer of type atomic_t |
| 336 | * |
| 337 | * Atomically subtracts @i from @v and returns |
| 338 | * true if the result is zero, or false for all |
| 339 | * other cases. |
| 340 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 341 | #define atomic_sub_and_test(i, v) (atomic_sub_return((i), (v)) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
| 343 | /* |
| 344 | * atomic_inc_and_test - increment and test |
| 345 | * @v: pointer of type atomic_t |
| 346 | * |
| 347 | * Atomically increments @v by 1 |
| 348 | * and returns true if the result is zero, or false for all |
| 349 | * other cases. |
| 350 | */ |
| 351 | #define atomic_inc_and_test(v) (atomic_inc_return(v) == 0) |
| 352 | |
| 353 | /* |
| 354 | * atomic_dec_and_test - decrement by 1 and test |
| 355 | * @v: pointer of type atomic_t |
| 356 | * |
| 357 | * Atomically decrements @v by 1 and |
| 358 | * returns true if the result is 0, or false for all other |
| 359 | * cases. |
| 360 | */ |
| 361 | #define atomic_dec_and_test(v) (atomic_sub_return(1, (v)) == 0) |
| 362 | |
| 363 | /* |
| 364 | * atomic_dec_if_positive - decrement by 1 if old value positive |
| 365 | * @v: pointer of type atomic_t |
| 366 | */ |
| 367 | #define atomic_dec_if_positive(v) atomic_sub_if_positive(1, v) |
| 368 | |
| 369 | /* |
| 370 | * atomic_inc - increment atomic variable |
| 371 | * @v: pointer of type atomic_t |
| 372 | * |
| 373 | * Atomically increments @v by 1. |
| 374 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 375 | #define atomic_inc(v) atomic_add(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
| 377 | /* |
| 378 | * atomic_dec - decrement and test |
| 379 | * @v: pointer of type atomic_t |
| 380 | * |
| 381 | * Atomically decrements @v by 1. |
| 382 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 383 | #define atomic_dec(v) atomic_sub(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | /* |
| 386 | * atomic_add_negative - add and test if negative |
| 387 | * @v: pointer of type atomic_t |
| 388 | * @i: integer value to add |
| 389 | * |
| 390 | * Atomically adds @i to @v and returns true |
| 391 | * if the result is negative, or false when |
| 392 | * result is greater than or equal to zero. |
| 393 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 394 | #define atomic_add_negative(i, v) (atomic_add_return(i, (v)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 396 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | #define ATOMIC64_INIT(i) { (i) } |
| 399 | |
| 400 | /* |
| 401 | * atomic64_read - read atomic variable |
| 402 | * @v: pointer of type atomic64_t |
| 403 | * |
| 404 | */ |
Anton Blanchard | f3d46f9 | 2010-05-17 14:33:53 +1000 | [diff] [blame] | 405 | #define atomic64_read(v) (*(volatile long *)&(v)->counter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | /* |
| 408 | * atomic64_set - set atomic variable |
| 409 | * @v: pointer of type atomic64_t |
| 410 | * @i: required value |
| 411 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 412 | #define atomic64_set(v, i) ((v)->counter = (i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
| 414 | /* |
| 415 | * atomic64_add - add integer to atomic variable |
| 416 | * @i: integer value to add |
| 417 | * @v: pointer of type atomic64_t |
| 418 | * |
| 419 | * Atomically adds @i to @v. |
| 420 | */ |
| 421 | static __inline__ void atomic64_add(long i, atomic64_t * v) |
| 422 | { |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 423 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 424 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
| 426 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 427 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | "1: lld %0, %1 # atomic64_add \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 429 | " daddu %0, %2 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | " scd %0, %1 \n" |
| 431 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 432 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | : "=&r" (temp), "=m" (v->counter) |
| 434 | : "Ir" (i), "m" (v->counter)); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 435 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 436 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 438 | do { |
| 439 | __asm__ __volatile__( |
| 440 | " .set mips3 \n" |
| 441 | " lld %0, %1 # atomic64_add \n" |
| 442 | " daddu %0, %2 \n" |
| 443 | " scd %0, %1 \n" |
| 444 | " .set mips0 \n" |
| 445 | : "=&r" (temp), "=m" (v->counter) |
| 446 | : "Ir" (i), "m" (v->counter)); |
| 447 | } while (unlikely(!temp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } else { |
| 449 | unsigned long flags; |
| 450 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 451 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | v->counter += i; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 453 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * atomic64_sub - subtract the atomic variable |
| 459 | * @i: integer value to subtract |
| 460 | * @v: pointer of type atomic64_t |
| 461 | * |
| 462 | * Atomically subtracts @i from @v. |
| 463 | */ |
| 464 | static __inline__ void atomic64_sub(long i, atomic64_t * v) |
| 465 | { |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 466 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 467 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 470 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | "1: lld %0, %1 # atomic64_sub \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 472 | " dsubu %0, %2 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | " scd %0, %1 \n" |
| 474 | " beqzl %0, 1b \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 475 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | : "=&r" (temp), "=m" (v->counter) |
| 477 | : "Ir" (i), "m" (v->counter)); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 478 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 479 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 481 | do { |
| 482 | __asm__ __volatile__( |
| 483 | " .set mips3 \n" |
| 484 | " lld %0, %1 # atomic64_sub \n" |
| 485 | " dsubu %0, %2 \n" |
| 486 | " scd %0, %1 \n" |
| 487 | " .set mips0 \n" |
| 488 | : "=&r" (temp), "=m" (v->counter) |
| 489 | : "Ir" (i), "m" (v->counter)); |
| 490 | } while (unlikely(!temp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | } else { |
| 492 | unsigned long flags; |
| 493 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 494 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | v->counter -= i; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 496 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | } |
| 499 | |
| 500 | /* |
| 501 | * Same as above, but return the result value |
| 502 | */ |
| 503 | static __inline__ long atomic64_add_return(long i, atomic64_t * v) |
| 504 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 505 | long result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 507 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 508 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 509 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 510 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
| 512 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 513 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | "1: lld %1, %2 # atomic64_add_return \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 515 | " daddu %0, %1, %3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | " scd %0, %2 \n" |
| 517 | " beqzl %0, 1b \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 518 | " daddu %0, %1, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 519 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 521 | : "Ir" (i), "m" (v->counter) |
| 522 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 523 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 524 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 526 | do { |
| 527 | __asm__ __volatile__( |
| 528 | " .set mips3 \n" |
| 529 | " lld %1, %2 # atomic64_add_return \n" |
| 530 | " daddu %0, %1, %3 \n" |
| 531 | " scd %0, %2 \n" |
| 532 | " .set mips0 \n" |
| 533 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 534 | : "Ir" (i), "m" (v->counter) |
| 535 | : "memory"); |
| 536 | } while (unlikely(!result)); |
| 537 | |
| 538 | result = temp + i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } else { |
| 540 | unsigned long flags; |
| 541 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 542 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | result = v->counter; |
| 544 | result += i; |
| 545 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 546 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 549 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | return result; |
| 552 | } |
| 553 | |
| 554 | static __inline__ long atomic64_sub_return(long i, atomic64_t * v) |
| 555 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 556 | long result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 558 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 559 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 560 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 561 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 564 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | "1: lld %1, %2 # atomic64_sub_return \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 566 | " dsubu %0, %1, %3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | " scd %0, %2 \n" |
| 568 | " beqzl %0, 1b \n" |
David Daney | f2a6827 | 2010-07-22 11:59:27 -0700 | [diff] [blame] | 569 | " dsubu %0, %1, %3 \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 570 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 572 | : "Ir" (i), "m" (v->counter) |
| 573 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 574 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 575 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 577 | do { |
| 578 | __asm__ __volatile__( |
| 579 | " .set mips3 \n" |
| 580 | " lld %1, %2 # atomic64_sub_return \n" |
| 581 | " dsubu %0, %1, %3 \n" |
| 582 | " scd %0, %2 \n" |
| 583 | " .set mips0 \n" |
| 584 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 585 | : "Ir" (i), "m" (v->counter) |
| 586 | : "memory"); |
| 587 | } while (unlikely(!result)); |
| 588 | |
| 589 | result = temp - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } else { |
| 591 | unsigned long flags; |
| 592 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 593 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | result = v->counter; |
| 595 | result -= i; |
| 596 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 597 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 600 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | return result; |
| 603 | } |
| 604 | |
| 605 | /* |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 606 | * atomic64_sub_if_positive - conditionally subtract integer from atomic variable |
| 607 | * @i: integer value to subtract |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | * @v: pointer of type atomic64_t |
| 609 | * |
Arnaud Giersch | f10d14d | 2005-11-13 00:38:18 +0100 | [diff] [blame] | 610 | * Atomically test @v and subtract @i if @v is greater or equal than @i. |
| 611 | * The function returns the old value of @v minus @i. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | */ |
| 613 | static __inline__ long atomic64_sub_if_positive(long i, atomic64_t * v) |
| 614 | { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 615 | long result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 617 | smp_mb__before_llsc(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 618 | |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 619 | if (kernel_uses_llsc && R10000_LLSC_WAR) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 620 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
| 622 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 623 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | "1: lld %1, %2 # atomic64_sub_if_positive\n" |
| 625 | " dsubu %0, %1, %3 \n" |
| 626 | " bltz %0, 1f \n" |
| 627 | " scd %0, %2 \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 628 | " .set noreorder \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | " beqzl %0, 1b \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 630 | " dsubu %0, %1, %3 \n" |
| 631 | " .set reorder \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | "1: \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 633 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 635 | : "Ir" (i), "m" (v->counter) |
| 636 | : "memory"); |
David Daney | b791d11 | 2009-07-13 11:15:19 -0700 | [diff] [blame] | 637 | } else if (kernel_uses_llsc) { |
Ralf Baechle | 915ec1e | 2009-01-12 00:52:18 +0000 | [diff] [blame] | 638 | long temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
| 640 | __asm__ __volatile__( |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 641 | " .set mips3 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | "1: lld %1, %2 # atomic64_sub_if_positive\n" |
| 643 | " dsubu %0, %1, %3 \n" |
| 644 | " bltz %0, 1f \n" |
| 645 | " scd %0, %2 \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 646 | " .set noreorder \n" |
Ralf Baechle | 7837314 | 2010-10-29 19:08:24 +0100 | [diff] [blame] | 647 | " beqz %0, 1b \n" |
Ralf Baechle | 92f22c1 | 2006-02-23 14:10:53 +0000 | [diff] [blame] | 648 | " dsubu %0, %1, %3 \n" |
| 649 | " .set reorder \n" |
Ralf Baechle | 5095202 | 2008-07-03 23:28:35 +0100 | [diff] [blame] | 650 | "1: \n" |
Maciej W. Rozycki | aac8aa7 | 2005-06-14 17:35:03 +0000 | [diff] [blame] | 651 | " .set mips0 \n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | : "=&r" (result), "=&r" (temp), "=m" (v->counter) |
| 653 | : "Ir" (i), "m" (v->counter) |
| 654 | : "memory"); |
| 655 | } else { |
| 656 | unsigned long flags; |
| 657 | |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 658 | raw_local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | result = v->counter; |
| 660 | result -= i; |
| 661 | if (result >= 0) |
| 662 | v->counter = result; |
Ralf Baechle | 49edd09 | 2007-03-16 16:10:36 +0000 | [diff] [blame] | 663 | raw_local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | } |
| 665 | |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 666 | smp_llsc_mb(); |
Ralf Baechle | 0004a9d | 2006-10-31 03:45:07 +0000 | [diff] [blame] | 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | return result; |
| 669 | } |
| 670 | |
Mathieu Desnoyers | e12f644 | 2007-05-08 00:34:24 -0700 | [diff] [blame] | 671 | #define atomic64_cmpxchg(v, o, n) \ |
Atsushi Nemoto | 7b239bb | 2007-05-10 23:47:45 +0900 | [diff] [blame] | 672 | ((__typeof__((v)->counter))cmpxchg(&((v)->counter), (o), (n))) |
Mathieu Desnoyers | e12f644 | 2007-05-08 00:34:24 -0700 | [diff] [blame] | 673 | #define atomic64_xchg(v, new) (xchg(&((v)->counter), (new))) |
| 674 | |
| 675 | /** |
| 676 | * atomic64_add_unless - add unless the number is a given value |
| 677 | * @v: pointer of type atomic64_t |
| 678 | * @a: the amount to add to v... |
| 679 | * @u: ...unless v is equal to u. |
| 680 | * |
| 681 | * Atomically adds @a to @v, so long as it was not @u. |
Arun Sharma | f24219b | 2011-07-26 16:09:07 -0700 | [diff] [blame^] | 682 | * Returns the old value of @v. |
Mathieu Desnoyers | e12f644 | 2007-05-08 00:34:24 -0700 | [diff] [blame] | 683 | */ |
Mathieu Desnoyers | 2856f5e | 2007-05-08 00:34:38 -0700 | [diff] [blame] | 684 | static __inline__ int atomic64_add_unless(atomic64_t *v, long a, long u) |
| 685 | { |
| 686 | long c, old; |
| 687 | c = atomic64_read(v); |
| 688 | for (;;) { |
| 689 | if (unlikely(c == (u))) |
| 690 | break; |
| 691 | old = atomic64_cmpxchg((v), c, c + (a)); |
| 692 | if (likely(old == c)) |
| 693 | break; |
| 694 | c = old; |
| 695 | } |
| 696 | return c != (u); |
| 697 | } |
| 698 | |
Mathieu Desnoyers | e12f644 | 2007-05-08 00:34:24 -0700 | [diff] [blame] | 699 | #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0) |
| 700 | |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 701 | #define atomic64_dec_return(v) atomic64_sub_return(1, (v)) |
| 702 | #define atomic64_inc_return(v) atomic64_add_return(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
| 704 | /* |
| 705 | * atomic64_sub_and_test - subtract value from variable and test result |
| 706 | * @i: integer value to subtract |
| 707 | * @v: pointer of type atomic64_t |
| 708 | * |
| 709 | * Atomically subtracts @i from @v and returns |
| 710 | * true if the result is zero, or false for all |
| 711 | * other cases. |
| 712 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 713 | #define atomic64_sub_and_test(i, v) (atomic64_sub_return((i), (v)) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
| 715 | /* |
| 716 | * atomic64_inc_and_test - increment and test |
| 717 | * @v: pointer of type atomic64_t |
| 718 | * |
| 719 | * Atomically increments @v by 1 |
| 720 | * and returns true if the result is zero, or false for all |
| 721 | * other cases. |
| 722 | */ |
| 723 | #define atomic64_inc_and_test(v) (atomic64_inc_return(v) == 0) |
| 724 | |
| 725 | /* |
| 726 | * atomic64_dec_and_test - decrement by 1 and test |
| 727 | * @v: pointer of type atomic64_t |
| 728 | * |
| 729 | * Atomically decrements @v by 1 and |
| 730 | * returns true if the result is 0, or false for all other |
| 731 | * cases. |
| 732 | */ |
| 733 | #define atomic64_dec_and_test(v) (atomic64_sub_return(1, (v)) == 0) |
| 734 | |
| 735 | /* |
| 736 | * atomic64_dec_if_positive - decrement by 1 if old value positive |
| 737 | * @v: pointer of type atomic64_t |
| 738 | */ |
| 739 | #define atomic64_dec_if_positive(v) atomic64_sub_if_positive(1, v) |
| 740 | |
| 741 | /* |
| 742 | * atomic64_inc - increment atomic variable |
| 743 | * @v: pointer of type atomic64_t |
| 744 | * |
| 745 | * Atomically increments @v by 1. |
| 746 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 747 | #define atomic64_inc(v) atomic64_add(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
| 749 | /* |
| 750 | * atomic64_dec - decrement and test |
| 751 | * @v: pointer of type atomic64_t |
| 752 | * |
| 753 | * Atomically decrements @v by 1. |
| 754 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 755 | #define atomic64_dec(v) atomic64_sub(1, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
| 757 | /* |
| 758 | * atomic64_add_negative - add and test if negative |
| 759 | * @v: pointer of type atomic64_t |
| 760 | * @i: integer value to add |
| 761 | * |
| 762 | * Atomically adds @i to @v and returns true |
| 763 | * if the result is negative, or false when |
| 764 | * result is greater than or equal to zero. |
| 765 | */ |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 766 | #define atomic64_add_negative(i, v) (atomic64_add_return(i, (v)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
Deng-Cheng Zhu | 2b78920 | 2010-06-09 12:35:25 +0800 | [diff] [blame] | 768 | #else /* !CONFIG_64BIT */ |
| 769 | |
| 770 | #include <asm-generic/atomic64.h> |
| 771 | |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 772 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | /* |
| 775 | * atomic*_return operations are serializing but not the non-*_return |
| 776 | * versions. |
| 777 | */ |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 778 | #define smp_mb__before_atomic_dec() smp_mb__before_llsc() |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 779 | #define smp_mb__after_atomic_dec() smp_llsc_mb() |
David Daney | f252ffd | 2010-01-08 17:17:43 -0800 | [diff] [blame] | 780 | #define smp_mb__before_atomic_inc() smp_mb__before_llsc() |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 781 | #define smp_mb__after_atomic_inc() smp_llsc_mb() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Arnd Bergmann | 72099ed | 2009-05-13 22:56:29 +0000 | [diff] [blame] | 783 | #include <asm-generic/atomic-long.h> |
Ralf Baechle | 17099b1 | 2007-07-14 13:24:05 +0100 | [diff] [blame] | 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | #endif /* _ASM_ATOMIC_H */ |