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
6 * Copyright (c) 1994 - 1997, 99, 2000, 06, 07 Ralf Baechle (ralf@linux-mips.org)
7 * Copyright (c) 1999, 2000 Silicon Graphics, Inc.
12 #ifndef _LINUX_BITOPS_H
13 #error only <linux/bitops.h> can be included directly
16 #include <linux/compiler.h>
17 #include <linux/types.h>
18 #include <asm/barrier.h>
19 #include <asm/byteorder.h> /* sigh ... */
20 #include <asm/compiler.h>
21 #include <asm/cpu-features.h>
22 #include <asm/sgidefs.h>
25 #if _MIPS_SZLONG == 32
27 #define SZLONG_MASK 31UL
32 #elif _MIPS_SZLONG == 64
34 #define SZLONG_MASK 63UL
42 * These are the "slower" versions of the functions and are in bitops.c.
43 * These functions call raw_local_irq_{save,restore}().
45 void __mips_set_bit(unsigned long nr
, volatile unsigned long *addr
);
46 void __mips_clear_bit(unsigned long nr
, volatile unsigned long *addr
);
47 void __mips_change_bit(unsigned long nr
, volatile unsigned long *addr
);
48 int __mips_test_and_set_bit(unsigned long nr
,
49 volatile unsigned long *addr
);
50 int __mips_test_and_set_bit_lock(unsigned long nr
,
51 volatile unsigned long *addr
);
52 int __mips_test_and_clear_bit(unsigned long nr
,
53 volatile unsigned long *addr
);
54 int __mips_test_and_change_bit(unsigned long nr
,
55 volatile unsigned long *addr
);
59 * set_bit - Atomically set a bit in memory
61 * @addr: the address to start counting from
63 * This function is atomic and may not be reordered. See __set_bit()
64 * if you do not require the atomic guarantees.
65 * Note that @nr may be almost arbitrarily large; this function is not
66 * restricted to acting on a single-word quantity.
68 static inline void set_bit(unsigned long nr
, volatile unsigned long *addr
)
70 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
71 int bit
= nr
& SZLONG_MASK
;
74 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
77 "1: " __LL
"%0, %1 # set_bit \n"
82 : "=&r" (temp
), "=" GCC_OFF_SMALL_ASM() (*m
)
83 : "ir" (1UL << bit
), GCC_OFF_SMALL_ASM() (*m
));
84 #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
85 } else if (kernel_uses_llsc
&& __builtin_constant_p(bit
)) {
88 " " __LL
"%0, %1 # set_bit \n"
89 " " __INS
"%0, %3, %2, 1 \n"
91 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
92 : "ir" (bit
), "r" (~0));
93 } while (unlikely(!temp
));
94 #endif /* CONFIG_CPU_MIPSR2 || CONFIG_CPU_MIPSR6 */
95 } else if (kernel_uses_llsc
) {
98 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
99 " " __LL
"%0, %1 # set_bit \n"
103 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
104 : "ir" (1UL << bit
));
105 } while (unlikely(!temp
));
107 __mips_set_bit(nr
, addr
);
111 * clear_bit - Clears a bit in memory
113 * @addr: Address to start counting from
115 * clear_bit() is atomic and may not be reordered. However, it does
116 * not contain a memory barrier, so if it is used for locking purposes,
117 * you should call smp_mb__before_atomic() and/or smp_mb__after_atomic()
118 * in order to ensure changes are visible on other processors.
120 static inline void clear_bit(unsigned long nr
, volatile unsigned long *addr
)
122 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
123 int bit
= nr
& SZLONG_MASK
;
126 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
127 __asm__
__volatile__(
128 " .set arch=r4000 \n"
129 "1: " __LL
"%0, %1 # clear_bit \n"
134 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
135 : "ir" (~(1UL << bit
)));
136 #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
137 } else if (kernel_uses_llsc
&& __builtin_constant_p(bit
)) {
139 __asm__
__volatile__(
140 " " __LL
"%0, %1 # clear_bit \n"
141 " " __INS
"%0, $0, %2, 1 \n"
143 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
145 } while (unlikely(!temp
));
146 #endif /* CONFIG_CPU_MIPSR2 || CONFIG_CPU_MIPSR6 */
147 } else if (kernel_uses_llsc
) {
149 __asm__
__volatile__(
150 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
151 " " __LL
"%0, %1 # clear_bit \n"
155 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
156 : "ir" (~(1UL << bit
)));
157 } while (unlikely(!temp
));
159 __mips_clear_bit(nr
, addr
);
163 * clear_bit_unlock - Clears a bit in memory
165 * @addr: Address to start counting from
167 * clear_bit() is atomic and implies release semantics before the memory
168 * operation. It can be used for an unlock.
170 static inline void clear_bit_unlock(unsigned long nr
, volatile unsigned long *addr
)
172 smp_mb__before_atomic();
177 * change_bit - Toggle a bit in memory
179 * @addr: Address to start counting from
181 * change_bit() is atomic and may not be reordered.
182 * Note that @nr may be almost arbitrarily large; this function is not
183 * restricted to acting on a single-word quantity.
185 static inline void change_bit(unsigned long nr
, volatile unsigned long *addr
)
187 int bit
= nr
& SZLONG_MASK
;
189 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
190 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
193 __asm__
__volatile__(
194 " .set arch=r4000 \n"
195 "1: " __LL
"%0, %1 # change_bit \n"
200 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
201 : "ir" (1UL << bit
));
202 } else if (kernel_uses_llsc
) {
203 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
207 __asm__
__volatile__(
208 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
209 " " __LL
"%0, %1 # change_bit \n"
213 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
)
214 : "ir" (1UL << bit
));
215 } while (unlikely(!temp
));
217 __mips_change_bit(nr
, addr
);
221 * test_and_set_bit - Set a bit and return its old value
223 * @addr: Address to count from
225 * This operation is atomic and cannot be reordered.
226 * It also implies a memory barrier.
228 static inline int test_and_set_bit(unsigned long nr
,
229 volatile unsigned long *addr
)
231 int bit
= nr
& SZLONG_MASK
;
234 smp_mb__before_llsc();
236 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
237 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
240 __asm__
__volatile__(
241 " .set arch=r4000 \n"
242 "1: " __LL
"%0, %1 # test_and_set_bit \n"
248 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
251 } else if (kernel_uses_llsc
) {
252 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
256 __asm__
__volatile__(
257 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
258 " " __LL
"%0, %1 # test_and_set_bit \n"
262 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
265 } while (unlikely(!res
));
267 res
= temp
& (1UL << bit
);
269 res
= __mips_test_and_set_bit(nr
, addr
);
277 * test_and_set_bit_lock - Set a bit and return its old value
279 * @addr: Address to count from
281 * This operation is atomic and implies acquire ordering semantics
282 * after the memory operation.
284 static inline int test_and_set_bit_lock(unsigned long nr
,
285 volatile unsigned long *addr
)
287 int bit
= nr
& SZLONG_MASK
;
290 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
291 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
294 __asm__
__volatile__(
295 " .set arch=r4000 \n"
296 "1: " __LL
"%0, %1 # test_and_set_bit \n"
302 : "=&r" (temp
), "+m" (*m
), "=&r" (res
)
305 } else if (kernel_uses_llsc
) {
306 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
310 __asm__
__volatile__(
311 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
312 " " __LL
"%0, %1 # test_and_set_bit \n"
316 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
319 } while (unlikely(!res
));
321 res
= temp
& (1UL << bit
);
323 res
= __mips_test_and_set_bit_lock(nr
, addr
);
330 * test_and_clear_bit - Clear a bit and return its old value
332 * @addr: Address to count from
334 * This operation is atomic and cannot be reordered.
335 * It also implies a memory barrier.
337 static inline int test_and_clear_bit(unsigned long nr
,
338 volatile unsigned long *addr
)
340 int bit
= nr
& SZLONG_MASK
;
343 smp_mb__before_llsc();
345 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
346 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
349 __asm__
__volatile__(
350 " .set arch=r4000 \n"
351 "1: " __LL
"%0, %1 # test_and_clear_bit \n"
358 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
361 #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
362 } else if (kernel_uses_llsc
&& __builtin_constant_p(nr
)) {
363 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
367 __asm__
__volatile__(
368 " " __LL
"%0, %1 # test_and_clear_bit \n"
369 " " __EXT
"%2, %0, %3, 1 \n"
370 " " __INS
"%0, $0, %3, 1 \n"
372 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
375 } while (unlikely(!temp
));
377 } else if (kernel_uses_llsc
) {
378 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
382 __asm__
__volatile__(
383 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
384 " " __LL
"%0, %1 # test_and_clear_bit \n"
389 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
392 } while (unlikely(!res
));
394 res
= temp
& (1UL << bit
);
396 res
= __mips_test_and_clear_bit(nr
, addr
);
404 * test_and_change_bit - Change a bit and return its old value
406 * @addr: Address to count from
408 * This operation is atomic and cannot be reordered.
409 * It also implies a memory barrier.
411 static inline int test_and_change_bit(unsigned long nr
,
412 volatile unsigned long *addr
)
414 int bit
= nr
& SZLONG_MASK
;
417 smp_mb__before_llsc();
419 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
420 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
423 __asm__
__volatile__(
424 " .set arch=r4000 \n"
425 "1: " __LL
"%0, %1 # test_and_change_bit \n"
431 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
434 } else if (kernel_uses_llsc
) {
435 unsigned long *m
= ((unsigned long *) addr
) + (nr
>> SZLONG_LOG
);
439 __asm__
__volatile__(
440 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
441 " " __LL
"%0, %1 # test_and_change_bit \n"
443 " " __SC
"\t%2, %1 \n"
445 : "=&r" (temp
), "+" GCC_OFF_SMALL_ASM() (*m
), "=&r" (res
)
448 } while (unlikely(!res
));
450 res
= temp
& (1UL << bit
);
452 res
= __mips_test_and_change_bit(nr
, addr
);
459 #include <asm-generic/bitops/non-atomic.h>
462 * __clear_bit_unlock - Clears a bit in memory
464 * @addr: Address to start counting from
466 * __clear_bit() is non-atomic and implies release semantics before the memory
467 * operation. It can be used for an unlock if no other CPUs can concurrently
468 * modify other bits in the word.
470 static inline void __clear_bit_unlock(unsigned long nr
, volatile unsigned long *addr
)
472 smp_mb__before_llsc();
473 __clear_bit(nr
, addr
);
477 * Return the bit position (0..63) of the most significant 1 bit in a word
478 * Returns -1 if no 1 bit exists
480 static inline unsigned long __fls(unsigned long word
)
484 if (BITS_PER_LONG
== 32 && !__builtin_constant_p(word
) &&
485 __builtin_constant_p(cpu_has_clo_clz
) && cpu_has_clo_clz
) {
488 " .set "MIPS_ISA_LEVEL
" \n"
497 if (BITS_PER_LONG
== 64 && !__builtin_constant_p(word
) &&
498 __builtin_constant_p(cpu_has_mips64
) && cpu_has_mips64
) {
501 " .set "MIPS_ISA_LEVEL
" \n"
510 num
= BITS_PER_LONG
- 1;
512 #if BITS_PER_LONG == 64
513 if (!(word
& (~0ul << 32))) {
518 if (!(word
& (~0ul << (BITS_PER_LONG
-16)))) {
522 if (!(word
& (~0ul << (BITS_PER_LONG
-8)))) {
526 if (!(word
& (~0ul << (BITS_PER_LONG
-4)))) {
530 if (!(word
& (~0ul << (BITS_PER_LONG
-2)))) {
534 if (!(word
& (~0ul << (BITS_PER_LONG
-1))))
540 * __ffs - find first bit in word.
541 * @word: The word to search
543 * Returns 0..SZLONG-1
544 * Undefined if no bit exists, so code should check against 0 first.
546 static inline unsigned long __ffs(unsigned long word
)
548 return __fls(word
& -word
);
552 * fls - find last bit set.
553 * @word: The word to search
555 * This is defined the same way as ffs.
556 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
558 static inline int fls(int x
)
562 if (!__builtin_constant_p(x
) &&
563 __builtin_constant_p(cpu_has_clo_clz
) && cpu_has_clo_clz
) {
566 " .set "MIPS_ISA_LEVEL
" \n"
578 if (!(x
& 0xffff0000u
)) {
582 if (!(x
& 0xff000000u
)) {
586 if (!(x
& 0xf0000000u
)) {
590 if (!(x
& 0xc0000000u
)) {
594 if (!(x
& 0x80000000u
)) {
601 #include <asm-generic/bitops/fls64.h>
604 * ffs - find first bit set.
605 * @word: The word to search
607 * This is defined the same way as
608 * the libc and compiler builtin ffs routines, therefore
609 * differs in spirit from the above ffz (man ffs).
611 static inline int ffs(int word
)
616 return fls(word
& -word
);
619 #include <asm-generic/bitops/ffz.h>
620 #include <asm-generic/bitops/find.h>
624 #include <asm-generic/bitops/sched.h>
626 #include <asm/arch_hweight.h>
627 #include <asm-generic/bitops/const_hweight.h>
629 #include <asm-generic/bitops/le.h>
630 #include <asm-generic/bitops/ext2-atomic.h>
632 #endif /* __KERNEL__ */
634 #endif /* _ASM_BITOPS_H */