2 * include/asm-xtensa/bitops.h
4 * Atomic operations that C can't guarantee us.Useful for resource counting etc.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 * Copyright (C) 2001 - 2005 Tensilica Inc.
13 #ifndef _XTENSA_BITOPS_H
14 #define _XTENSA_BITOPS_H
18 #include <asm/processor.h>
19 #include <asm/byteorder.h>
20 #include <asm/system.h>
23 # error SMP not supported on this architecture
26 #define smp_mb__before_clear_bit() barrier()
27 #define smp_mb__after_clear_bit() barrier()
29 #include <asm-generic/bitops/atomic.h>
30 #include <asm-generic/bitops/non-atomic.h>
34 static __inline__ int __cntlz (unsigned long x)
37 asm ("nsau %0, %1" : "=r" (lz) : "r" (x));
43 static __inline__ int __cntlz (unsigned long x)
45 unsigned long sum, x1, x2, x4, x8, x16;
52 sum += (x16 != 0) * 16;
63 * ffz: Find first zero in word. Undefined if no zero exists.
64 * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
67 static __inline__ int ffz(unsigned long x)
71 return __cntlz(x & -x);
75 * __ffs: Find first bit set in word. Return 0 for bit 0
78 static __inline__ int __ffs(unsigned long x)
80 return __cntlz(x & -x);
84 * ffs: Find first bit set in word. This is defined the same way as
85 * the libc and compiler builtin ffs routines, therefore
86 * differs in spirit from the above ffz (man ffs).
89 static __inline__ int ffs(unsigned long x)
91 return __cntlz(x & -x) + 1;
95 * fls: Find last (most-significant) bit set in word.
96 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
99 static __inline__ int fls (unsigned int x)
103 #include <asm-generic/bitops/fls64.h>
104 #include <asm-generic/bitops/find.h>
105 #include <asm-generic/bitops/ext2-non-atomic.h>
108 # define ext2_set_bit_atomic(lock,nr,addr) test_and_set_bit((nr),(addr))
109 # define ext2_clear_bit_atomic(lock,nr,addr) test_and_clear_bit((nr),(addr))
110 #elif defined(__XTENSA_EB__)
111 # define ext2_set_bit_atomic(lock,nr,addr) test_and_set_bit((nr) ^ 0x18, (addr))
112 # define ext2_clear_bit_atomic(lock,nr,addr) test_and_clear_bit((nr)^0x18,(addr))
114 # error processor byte order undefined!
117 #include <asm-generic/bitops/hweight.h>
118 #include <asm-generic/bitops/sched.h>
119 #include <asm-generic/bitops/minix.h>
121 #endif /* __KERNEL__ */
123 #endif /* _XTENSA_BITOPS_H */