BCM WL 6.30.102.9 (r366174)
[tomato.git] / release / src-rt / linux / linux-2.6 / include / linux / bitops.h
blob8b5ecf8299569556d70228802382ee91ee01d88b
1 #ifndef _LINUX_BITOPS_H
2 #define _LINUX_BITOPS_H
3 #include <asm/types.h>
5 #ifdef __KERNEL__
6 #define BIT(nr) (1UL << (nr))
7 #define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
8 #define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
9 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_LONG)
10 #define BITS_PER_BYTE 8
11 #endif
14 * Include this here because some architectures need generic_ffs/fls in
15 * scope
17 #include <asm/bitops.h>
19 static __inline__ int get_bitmask_order(unsigned int count)
21 int order;
23 order = fls(count);
24 return order; /* We could be slightly more clever with -1 here... */
27 static __inline__ int get_count_order(unsigned int count)
29 int order;
31 order = fls(count) - 1;
32 if (count & (count - 1))
33 order++;
34 return order;
37 static inline unsigned long hweight_long(unsigned long w)
39 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
42 /**
43 * rol32 - rotate a 32-bit value left
44 * @word: value to rotate
45 * @shift: bits to roll
47 static inline __u32 rol32(__u32 word, unsigned int shift)
49 return (word << shift) | (word >> (32 - shift));
52 /**
53 * ror32 - rotate a 32-bit value right
54 * @word: value to rotate
55 * @shift: bits to roll
57 static inline __u32 ror32(__u32 word, unsigned int shift)
59 return (word >> shift) | (word << (32 - shift));
62 static inline unsigned fls_long(unsigned long l)
64 if (sizeof(l) == 4)
65 return fls(l);
66 return fls64(l);
69 #endif