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 static __inline__
void set_bit(int nr
, volatile void * addr
)
28 unsigned long mask
= 1 << (nr
& 0x1f);
29 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
32 local_irq_save(flags
);
34 local_irq_restore(flags
);
37 static __inline__
void __set_bit(int nr
, volatile unsigned long * addr
)
39 unsigned long mask
= 1 << (nr
& 0x1f);
40 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
45 static __inline__
void clear_bit(int nr
, volatile void * addr
)
47 unsigned long mask
= 1 << (nr
& 0x1f);
48 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
51 local_irq_save(flags
);
53 local_irq_restore(flags
);
56 static __inline__
void __clear_bit(int nr
, volatile unsigned long *addr
)
58 unsigned long mask
= 1 << (nr
& 0x1f);
59 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
65 * clear_bit() doesn't provide any barrier for the compiler.
68 #define smp_mb__before_clear_bit() barrier()
69 #define smp_mb__after_clear_bit() barrier()
71 static __inline__
void change_bit(int nr
, volatile void * addr
)
73 unsigned long mask
= 1 << (nr
& 0x1f);
74 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
77 local_irq_save(flags
);
79 local_irq_restore(flags
);
82 static __inline__
void __change_bit(int nr
, volatile void * addr
)
84 unsigned long mask
= 1 << (nr
& 0x1f);
85 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
90 static __inline__
int test_and_set_bit(int nr
, volatile void * addr
)
93 unsigned long mask
= 1 << (nr
& 0x1f);
94 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
97 local_irq_save(flags
);
98 retval
= (mask
& *a
) != 0;
100 local_irq_restore(flags
);
105 static __inline__
int __test_and_set_bit(int nr
, volatile void * addr
)
107 unsigned long retval
;
108 unsigned long mask
= 1 << (nr
& 0x1f);
109 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
111 retval
= (mask
& *a
) != 0;
117 static __inline__
int test_and_clear_bit(int nr
, volatile void * addr
)
119 unsigned long retval
;
120 unsigned long mask
= 1 << (nr
& 0x1f);
121 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
124 local_irq_save(flags
);
125 retval
= (mask
& *a
) != 0;
127 local_irq_restore(flags
);
132 static __inline__
int __test_and_clear_bit(int nr
, volatile void * addr
)
134 unsigned long mask
= 1 << (nr
& 0x1f);
135 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
136 unsigned long old
= *a
;
139 return (old
& mask
) != 0;
142 static __inline__
int test_and_change_bit(int nr
, volatile void * addr
)
144 unsigned long retval
;
145 unsigned long mask
= 1 << (nr
& 0x1f);
146 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
149 local_irq_save(flags
);
151 retval
= (mask
& *a
) != 0;
153 local_irq_restore(flags
);
159 * non-atomic version; can be reordered
162 static __inline__
int __test_and_change_bit(int nr
, volatile void *addr
)
164 unsigned long mask
= 1 << (nr
& 0x1f);
165 unsigned long *a
= ((unsigned long *)addr
) + (nr
>> 5);
166 unsigned long old
= *a
;
169 return (old
& mask
) != 0;
172 static __inline__
int test_bit(int nr
, const volatile void *addr
)
174 return 1UL & (((const volatile unsigned int *)addr
)[nr
>>5] >> (nr
&31));
179 static __inline__
int __cntlz (unsigned long x
)
182 asm ("nsau %0, %1" : "=r" (lz
) : "r" (x
));
188 static __inline__
int __cntlz (unsigned long x
)
190 unsigned long sum
, x1
, x2
, x4
, x8
, x16
;
195 x16
= x
& 0xFFFF0000;
197 sum
+= (x16
!= 0) * 16;
198 sum
+= (x8
!= 0) * 8;
199 sum
+= (x4
!= 0) * 4;
208 * ffz: Find first zero in word. Undefined if no zero exists.
209 * bit 0 is the LSB of addr; bit 32 is the LSB of (addr+1).
212 static __inline__
int ffz(unsigned long x
)
216 return __cntlz(x
& -x
);
220 * __ffs: Find first bit set in word. Return 0 for bit 0
223 static __inline__
int __ffs(unsigned long x
)
225 return __cntlz(x
& -x
);
229 * ffs: Find first bit set in word. This is defined the same way as
230 * the libc and compiler builtin ffs routines, therefore
231 * differs in spirit from the above ffz (man ffs).
234 static __inline__
int ffs(unsigned long x
)
236 return __cntlz(x
& -x
) + 1;
240 * fls: Find last (most-significant) bit set in word.
241 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
244 static __inline__
int fls (unsigned int x
)
249 static __inline__
int
250 find_next_bit(const unsigned long *addr
, int size
, int offset
)
252 const unsigned long *p
= addr
+ (offset
>> 5);
253 unsigned long result
= offset
& ~31UL;
262 tmp
&= ~0UL << offset
;
271 if ((tmp
= *p
++) != 0)
281 tmp
&= ~0UL >> (32 - size
);
282 if (tmp
== 0UL) /* Are any bits set? */
283 return result
+ size
; /* Nope. */
285 return result
+ __ffs(tmp
);
289 * find_first_bit - find the first set bit in a memory region
290 * @addr: The address to start the search at
291 * @size: The maximum size to search
293 * Returns the bit-number of the first set bit, not the number of the byte
297 #define find_first_bit(addr, size) \
298 find_next_bit((addr), (size), 0)
300 static __inline__
int
301 find_next_zero_bit(const unsigned long *addr
, int size
, int offset
)
303 const unsigned long *p
= addr
+ (offset
>> 5);
304 unsigned long result
= offset
& ~31UL;
313 tmp
|= ~0UL >> (32-offset
);
321 while (size
& ~31UL) {
334 return result
+ ffz(tmp
);
337 #define find_first_zero_bit(addr, size) \
338 find_next_zero_bit((addr), (size), 0)
341 # define ext2_set_bit(nr,addr) __test_and_set_bit((nr), (addr))
342 # define ext2_set_bit_atomic(lock,nr,addr) test_and_set_bit((nr),(addr))
343 # define ext2_clear_bit(nr,addr) __test_and_clear_bit((nr), (addr))
344 # define ext2_clear_bit_atomic(lock,nr,addr) test_and_clear_bit((nr),(addr))
345 # define ext2_test_bit(nr,addr) test_bit((nr), (addr))
346 # define ext2_find_first_zero_bit(addr, size) find_first_zero_bit((addr),(size))
347 # define ext2_find_next_zero_bit(addr, size, offset) \
348 find_next_zero_bit((addr), (size), (offset))
349 #elif defined(__XTENSA_EB__)
350 # define ext2_set_bit(nr,addr) __test_and_set_bit((nr) ^ 0x18, (addr))
351 # define ext2_set_bit_atomic(lock,nr,addr) test_and_set_bit((nr) ^ 0x18, (addr))
352 # define ext2_clear_bit(nr,addr) __test_and_clear_bit((nr) ^ 18, (addr))
353 # define ext2_clear_bit_atomic(lock,nr,addr) test_and_clear_bit((nr)^0x18,(addr))
354 # define ext2_test_bit(nr,addr) test_bit((nr) ^ 0x18, (addr))
355 # define ext2_find_first_zero_bit(addr, size) \
356 ext2_find_next_zero_bit((addr), (size), 0)
358 static __inline__
unsigned long ext2_find_next_zero_bit(void *addr
, unsigned long size
, unsigned long offset
)
360 unsigned long *p
= ((unsigned long *) addr
) + (offset
>> 5);
361 unsigned long result
= offset
& ~31UL;
369 /* We hold the little endian value in tmp, but then the
370 * shift is illegal. So we could keep a big endian value
373 * tmp = __swab32(*(p++));
374 * tmp |= ~0UL >> (32-offset);
376 * but this would decrease preformance, so we change the
380 tmp
|= __swab32(~0UL >> (32-offset
));
388 while(size
& ~31UL) {
399 /* tmp is little endian, so we would have to swab the shift,
400 * see above. But then we have to swab tmp below for ffz, so
401 * we might as well do this here.
403 return result
+ ffz(__swab32(tmp
) | (~0UL << size
));
405 return result
+ ffz(__swab32(tmp
));
409 # error processor byte order undefined!
413 #define hweight32(x) generic_hweight32(x)
414 #define hweight16(x) generic_hweight16(x)
415 #define hweight8(x) generic_hweight8(x)
418 * Find the first bit set in a 140-bit bitmap.
419 * The first 100 bits are unlikely to be set.
422 static inline int sched_find_first_bit(const unsigned long *b
)
427 return __ffs(b
[1]) + 32;
429 return __ffs(b
[2]) + 64;
431 return __ffs(b
[3]) + 96;
432 return __ffs(b
[4]) + 128;
436 /* Bitmap functions for the minix filesystem. */
438 #define minix_test_and_set_bit(nr,addr) test_and_set_bit(nr,addr)
439 #define minix_set_bit(nr,addr) set_bit(nr,addr)
440 #define minix_test_and_clear_bit(nr,addr) test_and_clear_bit(nr,addr)
441 #define minix_test_bit(nr,addr) test_bit(nr,addr)
442 #define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
444 #endif /* __KERNEL__ */
446 #endif /* _XTENSA_BITOPS_H */