blob: 89436b96ad66ea9953309aa5ef8ba4560b03584b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle102fa152007-02-16 17:18:50 +00006 * Copyright (c) 1994 - 1997, 99, 2000, 06, 07 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (c) 1999, 2000 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_BITOPS_H
10#define _ASM_BITOPS_H
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compiler.h>
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000013#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
Ralf Baechle0004a9d2006-10-31 03:45:07 +000015#include <asm/barrier.h>
Ralf Baechleec917c22005-10-07 16:58:15 +010016#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/byteorder.h> /* sigh ... */
18#include <asm/cpu-features.h>
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000019#include <asm/sgidefs.h>
20#include <asm/war.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#if (_MIPS_SZLONG == 32)
23#define SZLONG_LOG 5
24#define SZLONG_MASK 31UL
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000025#define __LL "ll "
26#define __SC "sc "
Ralf Baechle102fa152007-02-16 17:18:50 +000027#define __INS "ins "
28#define __EXT "ext "
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#elif (_MIPS_SZLONG == 64)
30#define SZLONG_LOG 6
31#define SZLONG_MASK 63UL
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000032#define __LL "lld "
33#define __SC "scd "
Ralf Baechle102fa152007-02-16 17:18:50 +000034#define __INS "dins "
35#define __EXT "dext "
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#endif
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * clear_bit() doesn't provide any barrier for the compiler.
40 */
41#define smp_mb__before_clear_bit() smp_mb()
42#define smp_mb__after_clear_bit() smp_mb()
43
44/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * set_bit - Atomically set a bit in memory
46 * @nr: the bit to set
47 * @addr: the address to start counting from
48 *
49 * This function is atomic and may not be reordered. See __set_bit()
50 * if you do not require the atomic guarantees.
51 * Note that @nr may be almost arbitrarily large; this function is not
52 * restricted to acting on a single-word quantity.
53 */
54static inline void set_bit(unsigned long nr, volatile unsigned long *addr)
55{
56 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
57 unsigned long temp;
58
59 if (cpu_has_llsc && R10000_LLSC_WAR) {
60 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +000061 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 "1: " __LL "%0, %1 # set_bit \n"
63 " or %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000064 " " __SC "%0, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000066 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 : "=&r" (temp), "=m" (*m)
68 : "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
Ralf Baechle102fa152007-02-16 17:18:50 +000069#ifdef CONFIG_CPU_MIPSR2
70 } else if (__builtin_constant_p(nr)) {
71 __asm__ __volatile__(
72 "1: " __LL "%0, %1 # set_bit \n"
73 " " __INS "%0, %4, %2, 1 \n"
74 " " __SC "%0, %1 \n"
75 " beqz %0, 2f \n"
76 " .subsection 2 \n"
77 "2: b 1b \n"
78 " .previous \n"
79 : "=&r" (temp), "=m" (*m)
80 : "ir" (nr & SZLONG_MASK), "m" (*m), "r" (~0));
81#endif /* CONFIG_CPU_MIPSR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 } else if (cpu_has_llsc) {
83 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +000084 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 "1: " __LL "%0, %1 # set_bit \n"
86 " or %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000087 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +010088 " beqz %0, 2f \n"
89 " .subsection 2 \n"
90 "2: b 1b \n"
91 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +000092 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 : "=&r" (temp), "=m" (*m)
94 : "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
95 } else {
96 volatile unsigned long *a = addr;
97 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +000098 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 a += nr >> SZLONG_LOG;
101 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000102 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 *a |= mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000104 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106}
107
108/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * clear_bit - Clears a bit in memory
110 * @nr: Bit to clear
111 * @addr: Address to start counting from
112 *
113 * clear_bit() is atomic and may not be reordered. However, it does
114 * not contain a memory barrier, so if it is used for locking purposes,
115 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit()
116 * in order to ensure changes are visible on other processors.
117 */
118static inline void clear_bit(unsigned long nr, volatile unsigned long *addr)
119{
120 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
121 unsigned long temp;
122
123 if (cpu_has_llsc && R10000_LLSC_WAR) {
124 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000125 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 "1: " __LL "%0, %1 # clear_bit \n"
127 " and %0, %2 \n"
128 " " __SC "%0, %1 \n"
129 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000130 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 : "=&r" (temp), "=m" (*m)
132 : "ir" (~(1UL << (nr & SZLONG_MASK))), "m" (*m));
Ralf Baechle102fa152007-02-16 17:18:50 +0000133#ifdef CONFIG_CPU_MIPSR2
134 } else if (__builtin_constant_p(nr)) {
135 __asm__ __volatile__(
136 "1: " __LL "%0, %1 # clear_bit \n"
137 " " __INS "%0, $0, %2, 1 \n"
138 " " __SC "%0, %1 \n"
139 " beqz %0, 2f \n"
140 " .subsection 2 \n"
141 "2: b 1b \n"
142 " .previous \n"
143 : "=&r" (temp), "=m" (*m)
144 : "ir" (nr & SZLONG_MASK), "m" (*m));
145#endif /* CONFIG_CPU_MIPSR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 } else if (cpu_has_llsc) {
147 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000148 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 "1: " __LL "%0, %1 # clear_bit \n"
150 " and %0, %2 \n"
151 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100152 " beqz %0, 2f \n"
153 " .subsection 2 \n"
154 "2: b 1b \n"
155 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000156 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 : "=&r" (temp), "=m" (*m)
158 : "ir" (~(1UL << (nr & SZLONG_MASK))), "m" (*m));
159 } else {
160 volatile unsigned long *a = addr;
161 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000162 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 a += nr >> SZLONG_LOG;
165 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000166 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *a &= ~mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000168 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170}
171
172/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * change_bit - Toggle a bit in memory
174 * @nr: Bit to change
175 * @addr: Address to start counting from
176 *
177 * change_bit() is atomic and may not be reordered.
178 * Note that @nr may be almost arbitrarily large; this function is not
179 * restricted to acting on a single-word quantity.
180 */
181static inline void change_bit(unsigned long nr, volatile unsigned long *addr)
182{
183 if (cpu_has_llsc && R10000_LLSC_WAR) {
184 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
185 unsigned long temp;
186
187 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000188 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 "1: " __LL "%0, %1 # change_bit \n"
190 " xor %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000191 " " __SC "%0, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 " beqzl %0, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000193 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 : "=&r" (temp), "=m" (*m)
195 : "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
196 } else if (cpu_has_llsc) {
197 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
198 unsigned long temp;
199
200 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000201 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 "1: " __LL "%0, %1 # change_bit \n"
203 " xor %0, %2 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000204 " " __SC "%0, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100205 " beqz %0, 2f \n"
206 " .subsection 2 \n"
207 "2: b 1b \n"
208 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000209 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 : "=&r" (temp), "=m" (*m)
211 : "ir" (1UL << (nr & SZLONG_MASK)), "m" (*m));
212 } else {
213 volatile unsigned long *a = addr;
214 unsigned long mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000215 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 a += nr >> SZLONG_LOG;
218 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000219 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *a ^= mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000221 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223}
224
225/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * test_and_set_bit - Set a bit and return its old value
227 * @nr: Bit to set
228 * @addr: Address to count from
229 *
230 * This operation is atomic and cannot be reordered.
231 * It also implies a memory barrier.
232 */
233static inline int test_and_set_bit(unsigned long nr,
234 volatile unsigned long *addr)
235{
236 if (cpu_has_llsc && R10000_LLSC_WAR) {
237 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
238 unsigned long temp, res;
239
240 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000241 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 "1: " __LL "%0, %1 # test_and_set_bit \n"
243 " or %2, %0, %3 \n"
244 " " __SC "%2, %1 \n"
245 " beqzl %2, 1b \n"
246 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000247 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 : "=&r" (temp), "=m" (*m), "=&r" (res)
249 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
250 : "memory");
251
252 return res != 0;
253 } else if (cpu_has_llsc) {
254 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
255 unsigned long temp, res;
256
257 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000258 " .set push \n"
259 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000260 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000261 "1: " __LL "%0, %1 # test_and_set_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 " or %2, %0, %3 \n"
263 " " __SC "%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100264 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100266 " .subsection 2 \n"
267 "2: b 1b \n"
268 " nop \n"
269 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000270 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 : "=&r" (temp), "=m" (*m), "=&r" (res)
272 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
273 : "memory");
274
275 return res != 0;
276 } else {
277 volatile unsigned long *a = addr;
278 unsigned long mask;
279 int retval;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000280 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 a += nr >> SZLONG_LOG;
283 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000284 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 retval = (mask & *a) != 0;
286 *a |= mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000287 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 return retval;
290 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000291
292 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * test_and_clear_bit - Clear a bit and return its old value
297 * @nr: Bit to clear
298 * @addr: Address to count from
299 *
300 * This operation is atomic and cannot be reordered.
301 * It also implies a memory barrier.
302 */
303static inline int test_and_clear_bit(unsigned long nr,
304 volatile unsigned long *addr)
305{
306 if (cpu_has_llsc && R10000_LLSC_WAR) {
307 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
308 unsigned long temp, res;
309
310 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000311 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 "1: " __LL "%0, %1 # test_and_clear_bit \n"
313 " or %2, %0, %3 \n"
314 " xor %2, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000315 " " __SC "%2, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 " beqzl %2, 1b \n"
317 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000318 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 : "=&r" (temp), "=m" (*m), "=&r" (res)
320 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
321 : "memory");
322
323 return res != 0;
Ralf Baechle102fa152007-02-16 17:18:50 +0000324#ifdef CONFIG_CPU_MIPSR2
325 } else if (__builtin_constant_p(nr)) {
326 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
327 unsigned long temp, res;
328
329 __asm__ __volatile__(
330 "1: " __LL "%0, %1 # test_and_clear_bit \n"
331 " " __EXT "%2, %0, %3, 1 \n"
332 " " __INS "%0, $0, %3, 1 \n"
333 " " __SC "%0, %1 \n"
334 " beqz %0, 2f \n"
335 " .subsection 2 \n"
336 "2: b 1b \n"
337 " .previous \n"
338 : "=&r" (temp), "=m" (*m), "=&r" (res)
339 : "ri" (nr & SZLONG_MASK), "m" (*m)
340 : "memory");
341
342 return res;
343#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 } else if (cpu_has_llsc) {
345 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
346 unsigned long temp, res;
347
348 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000349 " .set push \n"
350 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000351 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000352 "1: " __LL "%0, %1 # test_and_clear_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 " or %2, %0, %3 \n"
354 " xor %2, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000355 " " __SC "%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100356 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100358 " .subsection 2 \n"
359 "2: b 1b \n"
360 " nop \n"
361 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000362 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 : "=&r" (temp), "=m" (*m), "=&r" (res)
364 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
365 : "memory");
366
367 return res != 0;
368 } else {
369 volatile unsigned long *a = addr;
370 unsigned long mask;
371 int retval;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000372 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 a += nr >> SZLONG_LOG;
375 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000376 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 retval = (mask & *a) != 0;
378 *a &= ~mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000379 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 return retval;
382 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000383
384 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * test_and_change_bit - Change a bit and return its old value
389 * @nr: Bit to change
390 * @addr: Address to count from
391 *
392 * This operation is atomic and cannot be reordered.
393 * It also implies a memory barrier.
394 */
395static inline int test_and_change_bit(unsigned long nr,
396 volatile unsigned long *addr)
397{
398 if (cpu_has_llsc && R10000_LLSC_WAR) {
399 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
400 unsigned long temp, res;
401
402 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000403 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000404 "1: " __LL "%0, %1 # test_and_change_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 " xor %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000406 " " __SC "%2, %1 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 " beqzl %2, 1b \n"
408 " and %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000409 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 : "=&r" (temp), "=m" (*m), "=&r" (res)
411 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
412 : "memory");
413
414 return res != 0;
415 } else if (cpu_has_llsc) {
416 unsigned long *m = ((unsigned long *) addr) + (nr >> SZLONG_LOG);
417 unsigned long temp, res;
418
419 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000420 " .set push \n"
421 " .set noreorder \n"
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000422 " .set mips3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000423 "1: " __LL "%0, %1 # test_and_change_bit \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 " xor %2, %0, %3 \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000425 " " __SC "\t%2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100426 " beqz %2, 2f \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 " and %2, %0, %3 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100428 " .subsection 2 \n"
429 "2: b 1b \n"
430 " nop \n"
431 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000432 " .set pop \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 : "=&r" (temp), "=m" (*m), "=&r" (res)
434 : "r" (1UL << (nr & SZLONG_MASK)), "m" (*m)
435 : "memory");
436
437 return res != 0;
438 } else {
439 volatile unsigned long *a = addr;
440 unsigned long mask, retval;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000441 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 a += nr >> SZLONG_LOG;
444 mask = 1UL << (nr & SZLONG_MASK);
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000445 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 retval = (mask & *a) != 0;
447 *a ^= mask;
Ralf Baechle4ffd8b32006-11-30 01:14:50 +0000448 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 return retval;
451 }
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000452
453 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800456#include <asm-generic/bitops/non-atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Ralf Baechle65903262005-07-12 12:50:30 +0000458/*
459 * Return the bit position (0..63) of the most significant 1 bit in a word
460 * Returns -1 if no 1 bit exists
461 */
Ralf Baechleec917c22005-10-07 16:58:15 +0100462static inline int __ilog2(unsigned long x)
Ralf Baechle65903262005-07-12 12:50:30 +0000463{
464 int lz;
465
Ralf Baechleec917c22005-10-07 16:58:15 +0100466 if (sizeof(x) == 4) {
467 __asm__ (
468 " .set push \n"
469 " .set mips32 \n"
470 " clz %0, %1 \n"
471 " .set pop \n"
472 : "=r" (lz)
473 : "r" (x));
474
475 return 31 - lz;
476 }
477
478 BUG_ON(sizeof(x) != 8);
479
Ralf Baechle65903262005-07-12 12:50:30 +0000480 __asm__ (
481 " .set push \n"
482 " .set mips64 \n"
483 " dclz %0, %1 \n"
484 " .set pop \n"
485 : "=r" (lz)
486 : "r" (x));
487
488 return 63 - lz;
489}
Ralf Baechle65903262005-07-12 12:50:30 +0000490
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800491#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
492
Ralf Baechle65903262005-07-12 12:50:30 +0000493/*
494 * __ffs - find first bit in word.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * @word: The word to search
496 *
Ralf Baechle65903262005-07-12 12:50:30 +0000497 * Returns 0..SZLONG-1
498 * Undefined if no bit exists, so code should check against 0 first.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
Ralf Baechle65903262005-07-12 12:50:30 +0000500static inline unsigned long __ffs(unsigned long word)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Ralf Baechle65903262005-07-12 12:50:30 +0000502 return __ilog2(word & -word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505/*
Atsushi Nemotobc818242006-04-17 21:19:12 +0900506 * fls - find last bit set.
507 * @word: The word to search
508 *
509 * This is defined the same way as ffs.
510 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
511 */
512static inline int fls(int word)
513{
514 __asm__ ("clz %0, %1" : "=r" (word) : "r" (word));
515
516 return 32 - word;
517}
518
519#if defined(CONFIG_64BIT) && defined(CONFIG_CPU_MIPS64)
520static inline int fls64(__u64 word)
521{
522 __asm__ ("dclz %0, %1" : "=r" (word) : "r" (word));
523
524 return 64 - word;
525}
526#else
527#include <asm-generic/bitops/fls64.h>
528#endif
529
530/*
Ralf Baechle65903262005-07-12 12:50:30 +0000531 * ffs - find first bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * @word: The word to search
533 *
Atsushi Nemotobc818242006-04-17 21:19:12 +0900534 * This is defined the same way as
535 * the libc and compiler builtin ffs routines, therefore
536 * differs in spirit from the above ffz (man ffs).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
Atsushi Nemotobc818242006-04-17 21:19:12 +0900538static inline int ffs(int word)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Ralf Baechle65903262005-07-12 12:50:30 +0000540 if (!word)
541 return 0;
542
Atsushi Nemotobc818242006-04-17 21:19:12 +0900543 return fls(word & -word);
Ralf Baechle65903262005-07-12 12:50:30 +0000544}
Ralf Baechle2caf1902006-01-30 17:14:41 +0000545
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800546#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800548#include <asm-generic/bitops/__ffs.h>
549#include <asm-generic/bitops/ffs.h>
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800550#include <asm-generic/bitops/fls.h>
Atsushi Nemotobc818242006-04-17 21:19:12 +0900551#include <asm-generic/bitops/fls64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800553#endif /*defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Atsushi Nemotobc818242006-04-17 21:19:12 +0900555#include <asm-generic/bitops/ffz.h>
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800556#include <asm-generic/bitops/find.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558#ifdef __KERNEL__
559
Akinobu Mita3c9ee7e2006-03-26 01:39:30 -0800560#include <asm-generic/bitops/sched.h>
561#include <asm-generic/bitops/hweight.h>
562#include <asm-generic/bitops/ext2-non-atomic.h>
563#include <asm-generic/bitops/ext2-atomic.h>
564#include <asm-generic/bitops/minix.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566#endif /* __KERNEL__ */
567
568#endif /* _ASM_BITOPS_H */