[ARM] 3032/1: sparse: complains about generic_fls() prototype in asm-arm/bitops.h
[linux-2.6/openmoko-kernel/knife-kernel.git] / include / asm-arm / bitops.h
blobe007dd990da568318a73765bd68767ad7f705b36
1 /*
2 * Copyright 1995, Russell King.
3 * Various bits and pieces copyrights include:
4 * Linus Torvalds (test_bit).
5 * Big endian support: Copyright 2001, Nicolas Pitre
6 * reworked by rmk.
8 * bit 0 is the LSB of an "unsigned long" quantity.
10 * Please note that the code in this file should never be included
11 * from user space. Many of these are not implemented in assembler
12 * since they would be too costly. Also, they require privileged
13 * instructions (which are not available from user mode) to ensure
14 * that they are atomic.
17 #ifndef __ASM_ARM_BITOPS_H
18 #define __ASM_ARM_BITOPS_H
20 #ifdef __KERNEL__
22 #include <asm/system.h>
24 #define smp_mb__before_clear_bit() mb()
25 #define smp_mb__after_clear_bit() mb()
28 * These functions are the basis of our bit ops.
30 * First, the atomic bitops. These use native endian.
32 static inline void ____atomic_set_bit(unsigned int bit, volatile unsigned long *p)
34 unsigned long flags;
35 unsigned long mask = 1UL << (bit & 31);
37 p += bit >> 5;
39 local_irq_save(flags);
40 *p |= mask;
41 local_irq_restore(flags);
44 static inline void ____atomic_clear_bit(unsigned int bit, volatile unsigned long *p)
46 unsigned long flags;
47 unsigned long mask = 1UL << (bit & 31);
49 p += bit >> 5;
51 local_irq_save(flags);
52 *p &= ~mask;
53 local_irq_restore(flags);
56 static inline void ____atomic_change_bit(unsigned int bit, volatile unsigned long *p)
58 unsigned long flags;
59 unsigned long mask = 1UL << (bit & 31);
61 p += bit >> 5;
63 local_irq_save(flags);
64 *p ^= mask;
65 local_irq_restore(flags);
68 static inline int
69 ____atomic_test_and_set_bit(unsigned int bit, volatile unsigned long *p)
71 unsigned long flags;
72 unsigned int res;
73 unsigned long mask = 1UL << (bit & 31);
75 p += bit >> 5;
77 local_irq_save(flags);
78 res = *p;
79 *p = res | mask;
80 local_irq_restore(flags);
82 return res & mask;
85 static inline int
86 ____atomic_test_and_clear_bit(unsigned int bit, volatile unsigned long *p)
88 unsigned long flags;
89 unsigned int res;
90 unsigned long mask = 1UL << (bit & 31);
92 p += bit >> 5;
94 local_irq_save(flags);
95 res = *p;
96 *p = res & ~mask;
97 local_irq_restore(flags);
99 return res & mask;
102 static inline int
103 ____atomic_test_and_change_bit(unsigned int bit, volatile unsigned long *p)
105 unsigned long flags;
106 unsigned int res;
107 unsigned long mask = 1UL << (bit & 31);
109 p += bit >> 5;
111 local_irq_save(flags);
112 res = *p;
113 *p = res ^ mask;
114 local_irq_restore(flags);
116 return res & mask;
120 * Now the non-atomic variants. We let the compiler handle all
121 * optimisations for these. These are all _native_ endian.
123 static inline void __set_bit(int nr, volatile unsigned long *p)
125 p[nr >> 5] |= (1UL << (nr & 31));
128 static inline void __clear_bit(int nr, volatile unsigned long *p)
130 p[nr >> 5] &= ~(1UL << (nr & 31));
133 static inline void __change_bit(int nr, volatile unsigned long *p)
135 p[nr >> 5] ^= (1UL << (nr & 31));
138 static inline int __test_and_set_bit(int nr, volatile unsigned long *p)
140 unsigned long oldval, mask = 1UL << (nr & 31);
142 p += nr >> 5;
144 oldval = *p;
145 *p = oldval | mask;
146 return oldval & mask;
149 static inline int __test_and_clear_bit(int nr, volatile unsigned long *p)
151 unsigned long oldval, mask = 1UL << (nr & 31);
153 p += nr >> 5;
155 oldval = *p;
156 *p = oldval & ~mask;
157 return oldval & mask;
160 static inline int __test_and_change_bit(int nr, volatile unsigned long *p)
162 unsigned long oldval, mask = 1UL << (nr & 31);
164 p += nr >> 5;
166 oldval = *p;
167 *p = oldval ^ mask;
168 return oldval & mask;
172 * This routine doesn't need to be atomic.
174 static inline int __test_bit(int nr, const volatile unsigned long * p)
176 return (p[nr >> 5] >> (nr & 31)) & 1UL;
180 * A note about Endian-ness.
181 * -------------------------
183 * When the ARM is put into big endian mode via CR15, the processor
184 * merely swaps the order of bytes within words, thus:
186 * ------------ physical data bus bits -----------
187 * D31 ... D24 D23 ... D16 D15 ... D8 D7 ... D0
188 * little byte 3 byte 2 byte 1 byte 0
189 * big byte 0 byte 1 byte 2 byte 3
191 * This means that reading a 32-bit word at address 0 returns the same
192 * value irrespective of the endian mode bit.
194 * Peripheral devices should be connected with the data bus reversed in
195 * "Big Endian" mode. ARM Application Note 61 is applicable, and is
196 * available from http://www.arm.com/.
198 * The following assumes that the data bus connectivity for big endian
199 * mode has been followed.
201 * Note that bit 0 is defined to be 32-bit word bit 0, not byte 0 bit 0.
205 * Little endian assembly bitops. nr = 0 -> byte 0 bit 0.
207 extern void _set_bit_le(int nr, volatile unsigned long * p);
208 extern void _clear_bit_le(int nr, volatile unsigned long * p);
209 extern void _change_bit_le(int nr, volatile unsigned long * p);
210 extern int _test_and_set_bit_le(int nr, volatile unsigned long * p);
211 extern int _test_and_clear_bit_le(int nr, volatile unsigned long * p);
212 extern int _test_and_change_bit_le(int nr, volatile unsigned long * p);
213 extern int _find_first_zero_bit_le(const void * p, unsigned size);
214 extern int _find_next_zero_bit_le(const void * p, int size, int offset);
215 extern int _find_first_bit_le(const unsigned long *p, unsigned size);
216 extern int _find_next_bit_le(const unsigned long *p, int size, int offset);
219 * Big endian assembly bitops. nr = 0 -> byte 3 bit 0.
221 extern void _set_bit_be(int nr, volatile unsigned long * p);
222 extern void _clear_bit_be(int nr, volatile unsigned long * p);
223 extern void _change_bit_be(int nr, volatile unsigned long * p);
224 extern int _test_and_set_bit_be(int nr, volatile unsigned long * p);
225 extern int _test_and_clear_bit_be(int nr, volatile unsigned long * p);
226 extern int _test_and_change_bit_be(int nr, volatile unsigned long * p);
227 extern int _find_first_zero_bit_be(const void * p, unsigned size);
228 extern int _find_next_zero_bit_be(const void * p, int size, int offset);
229 extern int _find_first_bit_be(const unsigned long *p, unsigned size);
230 extern int _find_next_bit_be(const unsigned long *p, int size, int offset);
232 #ifndef CONFIG_SMP
234 * The __* form of bitops are non-atomic and may be reordered.
236 #define ATOMIC_BITOP_LE(name,nr,p) \
237 (__builtin_constant_p(nr) ? \
238 ____atomic_##name(nr, p) : \
239 _##name##_le(nr,p))
241 #define ATOMIC_BITOP_BE(name,nr,p) \
242 (__builtin_constant_p(nr) ? \
243 ____atomic_##name(nr, p) : \
244 _##name##_be(nr,p))
245 #else
246 #define ATOMIC_BITOP_LE(name,nr,p) _##name##_le(nr,p)
247 #define ATOMIC_BITOP_BE(name,nr,p) _##name##_be(nr,p)
248 #endif
250 #define NONATOMIC_BITOP(name,nr,p) \
251 (____nonatomic_##name(nr, p))
253 #ifndef __ARMEB__
255 * These are the little endian, atomic definitions.
257 #define set_bit(nr,p) ATOMIC_BITOP_LE(set_bit,nr,p)
258 #define clear_bit(nr,p) ATOMIC_BITOP_LE(clear_bit,nr,p)
259 #define change_bit(nr,p) ATOMIC_BITOP_LE(change_bit,nr,p)
260 #define test_and_set_bit(nr,p) ATOMIC_BITOP_LE(test_and_set_bit,nr,p)
261 #define test_and_clear_bit(nr,p) ATOMIC_BITOP_LE(test_and_clear_bit,nr,p)
262 #define test_and_change_bit(nr,p) ATOMIC_BITOP_LE(test_and_change_bit,nr,p)
263 #define test_bit(nr,p) __test_bit(nr,p)
264 #define find_first_zero_bit(p,sz) _find_first_zero_bit_le(p,sz)
265 #define find_next_zero_bit(p,sz,off) _find_next_zero_bit_le(p,sz,off)
266 #define find_first_bit(p,sz) _find_first_bit_le(p,sz)
267 #define find_next_bit(p,sz,off) _find_next_bit_le(p,sz,off)
269 #define WORD_BITOFF_TO_LE(x) ((x))
271 #else
274 * These are the big endian, atomic definitions.
276 #define set_bit(nr,p) ATOMIC_BITOP_BE(set_bit,nr,p)
277 #define clear_bit(nr,p) ATOMIC_BITOP_BE(clear_bit,nr,p)
278 #define change_bit(nr,p) ATOMIC_BITOP_BE(change_bit,nr,p)
279 #define test_and_set_bit(nr,p) ATOMIC_BITOP_BE(test_and_set_bit,nr,p)
280 #define test_and_clear_bit(nr,p) ATOMIC_BITOP_BE(test_and_clear_bit,nr,p)
281 #define test_and_change_bit(nr,p) ATOMIC_BITOP_BE(test_and_change_bit,nr,p)
282 #define test_bit(nr,p) __test_bit(nr,p)
283 #define find_first_zero_bit(p,sz) _find_first_zero_bit_be(p,sz)
284 #define find_next_zero_bit(p,sz,off) _find_next_zero_bit_be(p,sz,off)
285 #define find_first_bit(p,sz) _find_first_bit_be(p,sz)
286 #define find_next_bit(p,sz,off) _find_next_bit_be(p,sz,off)
288 #define WORD_BITOFF_TO_LE(x) ((x) ^ 0x18)
290 #endif
292 #if __LINUX_ARM_ARCH__ < 5
295 * ffz = Find First Zero in word. Undefined if no zero exists,
296 * so code should check against ~0UL first..
298 static inline unsigned long ffz(unsigned long word)
300 int k;
302 word = ~word;
303 k = 31;
304 if (word & 0x0000ffff) { k -= 16; word <<= 16; }
305 if (word & 0x00ff0000) { k -= 8; word <<= 8; }
306 if (word & 0x0f000000) { k -= 4; word <<= 4; }
307 if (word & 0x30000000) { k -= 2; word <<= 2; }
308 if (word & 0x40000000) { k -= 1; }
309 return k;
313 * ffz = Find First Zero in word. Undefined if no zero exists,
314 * so code should check against ~0UL first..
316 static inline unsigned long __ffs(unsigned long word)
318 int k;
320 k = 31;
321 if (word & 0x0000ffff) { k -= 16; word <<= 16; }
322 if (word & 0x00ff0000) { k -= 8; word <<= 8; }
323 if (word & 0x0f000000) { k -= 4; word <<= 4; }
324 if (word & 0x30000000) { k -= 2; word <<= 2; }
325 if (word & 0x40000000) { k -= 1; }
326 return k;
330 * fls: find last bit set.
333 #define fls(x) generic_fls(x)
336 * ffs: find first bit set. This is defined the same way as
337 * the libc and compiler builtin ffs routines, therefore
338 * differs in spirit from the above ffz (man ffs).
341 #define ffs(x) generic_ffs(x)
343 #else
346 * On ARMv5 and above those functions can be implemented around
347 * the clz instruction for much better code efficiency.
350 #define fls(x) \
351 ( __builtin_constant_p(x) ? generic_fls(x) : \
352 ({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) )
353 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
354 #define __ffs(x) (ffs(x) - 1)
355 #define ffz(x) __ffs( ~(x) )
357 #endif
360 * Find first bit set in a 168-bit bitmap, where the first
361 * 128 bits are unlikely to be set.
363 static inline int sched_find_first_bit(const unsigned long *b)
365 unsigned long v;
366 unsigned int off;
368 for (off = 0; v = b[off], off < 4; off++) {
369 if (unlikely(v))
370 break;
372 return __ffs(v) + off * 32;
376 * hweightN: returns the hamming weight (i.e. the number
377 * of bits set) of a N-bit word
380 #define hweight32(x) generic_hweight32(x)
381 #define hweight16(x) generic_hweight16(x)
382 #define hweight8(x) generic_hweight8(x)
385 * Ext2 is defined to use little-endian byte ordering.
386 * These do not need to be atomic.
388 #define ext2_set_bit(nr,p) \
389 __test_and_set_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
390 #define ext2_set_bit_atomic(lock,nr,p) \
391 test_and_set_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
392 #define ext2_clear_bit(nr,p) \
393 __test_and_clear_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
394 #define ext2_clear_bit_atomic(lock,nr,p) \
395 test_and_clear_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
396 #define ext2_test_bit(nr,p) \
397 __test_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
398 #define ext2_find_first_zero_bit(p,sz) \
399 _find_first_zero_bit_le(p,sz)
400 #define ext2_find_next_zero_bit(p,sz,off) \
401 _find_next_zero_bit_le(p,sz,off)
404 * Minix is defined to use little-endian byte ordering.
405 * These do not need to be atomic.
407 #define minix_set_bit(nr,p) \
408 __set_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
409 #define minix_test_bit(nr,p) \
410 __test_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
411 #define minix_test_and_set_bit(nr,p) \
412 __test_and_set_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
413 #define minix_test_and_clear_bit(nr,p) \
414 __test_and_clear_bit(WORD_BITOFF_TO_LE(nr), (unsigned long *)(p))
415 #define minix_find_first_zero_bit(p,sz) \
416 _find_first_zero_bit_le(p,sz)
418 #endif /* __KERNEL__ */
420 #endif /* _ARM_BITOPS_H */