init from v2.6.32.60
[mach-moxart.git] / include / linux / bitops.h
blob56835a7a3507252f92610a7a1dbb7cc0e5f222c5
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_PER_BYTE 8
10 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
11 #endif
14 * Include this here because some architectures need generic_ffs/fls in
15 * scope
17 #include <asm/bitops.h>
19 #define for_each_bit(bit, addr, size) \
20 for ((bit) = find_first_bit((addr), (size)); \
21 (bit) < (size); \
22 (bit) = find_next_bit((addr), (size), (bit) + 1))
25 static __inline__ int get_bitmask_order(unsigned int count)
27 int order;
29 order = fls(count);
30 return order; /* We could be slightly more clever with -1 here... */
33 static __inline__ int get_count_order(unsigned int count)
35 int order;
37 order = fls(count) - 1;
38 if (count & (count - 1))
39 order++;
40 return order;
43 static inline unsigned long hweight_long(unsigned long w)
45 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
48 /**
49 * rol64 - rotate a 64-bit value left
50 * @word: value to rotate
51 * @shift: bits to roll
53 static inline __u64 rol64(__u64 word, unsigned int shift)
55 return (word << shift) | (word >> (64 - shift));
58 /**
59 * ror64 - rotate a 64-bit value right
60 * @word: value to rotate
61 * @shift: bits to roll
63 static inline __u64 ror64(__u64 word, unsigned int shift)
65 return (word >> shift) | (word << (64 - shift));
68 /**
69 * rol32 - rotate a 32-bit value left
70 * @word: value to rotate
71 * @shift: bits to roll
73 static inline __u32 rol32(__u32 word, unsigned int shift)
75 return (word << shift) | (word >> (32 - shift));
78 /**
79 * ror32 - rotate a 32-bit value right
80 * @word: value to rotate
81 * @shift: bits to roll
83 static inline __u32 ror32(__u32 word, unsigned int shift)
85 return (word >> shift) | (word << (32 - shift));
88 /**
89 * rol16 - rotate a 16-bit value left
90 * @word: value to rotate
91 * @shift: bits to roll
93 static inline __u16 rol16(__u16 word, unsigned int shift)
95 return (word << shift) | (word >> (16 - shift));
98 /**
99 * ror16 - rotate a 16-bit value right
100 * @word: value to rotate
101 * @shift: bits to roll
103 static inline __u16 ror16(__u16 word, unsigned int shift)
105 return (word >> shift) | (word << (16 - shift));
109 * rol8 - rotate an 8-bit value left
110 * @word: value to rotate
111 * @shift: bits to roll
113 static inline __u8 rol8(__u8 word, unsigned int shift)
115 return (word << shift) | (word >> (8 - shift));
119 * ror8 - rotate an 8-bit value right
120 * @word: value to rotate
121 * @shift: bits to roll
123 static inline __u8 ror8(__u8 word, unsigned int shift)
125 return (word >> shift) | (word << (8 - shift));
128 static inline unsigned fls_long(unsigned long l)
130 if (sizeof(l) == 4)
131 return fls(l);
132 return fls64(l);
136 * __ffs64 - find first set bit in a 64 bit word
137 * @word: The 64 bit word
139 * On 64 bit arches this is a synomyn for __ffs
140 * The result is not defined if no bits are set, so check that @word
141 * is non-zero before calling this.
143 static inline unsigned long __ffs64(u64 word)
145 #if BITS_PER_LONG == 32
146 if (((u32)word) == 0UL)
147 return __ffs((u32)(word >> 32)) + 32;
148 #elif BITS_PER_LONG != 64
149 #error BITS_PER_LONG not 32 or 64
150 #endif
151 return __ffs((unsigned long)word);
154 #ifdef __KERNEL__
155 #ifdef CONFIG_GENERIC_FIND_FIRST_BIT
158 * find_first_bit - find the first set bit in a memory region
159 * @addr: The address to start the search at
160 * @size: The maximum size to search
162 * Returns the bit number of the first set bit.
164 extern unsigned long find_first_bit(const unsigned long *addr,
165 unsigned long size);
168 * find_first_zero_bit - find the first cleared bit in a memory region
169 * @addr: The address to start the search at
170 * @size: The maximum size to search
172 * Returns the bit number of the first cleared bit.
174 extern unsigned long find_first_zero_bit(const unsigned long *addr,
175 unsigned long size);
176 #endif /* CONFIG_GENERIC_FIND_FIRST_BIT */
178 #ifdef CONFIG_GENERIC_FIND_LAST_BIT
180 * find_last_bit - find the last set bit in a memory region
181 * @addr: The address to start the search at
182 * @size: The maximum size to search
184 * Returns the bit number of the first set bit, or size.
186 extern unsigned long find_last_bit(const unsigned long *addr,
187 unsigned long size);
188 #endif /* CONFIG_GENERIC_FIND_LAST_BIT */
190 #ifdef CONFIG_GENERIC_FIND_NEXT_BIT
193 * find_next_bit - find the next set bit in a memory region
194 * @addr: The address to base the search on
195 * @offset: The bitnumber to start searching at
196 * @size: The bitmap size in bits
198 extern unsigned long find_next_bit(const unsigned long *addr,
199 unsigned long size, unsigned long offset);
202 * find_next_zero_bit - find the next cleared bit in a memory region
203 * @addr: The address to base the search on
204 * @offset: The bitnumber to start searching at
205 * @size: The bitmap size in bits
208 extern unsigned long find_next_zero_bit(const unsigned long *addr,
209 unsigned long size,
210 unsigned long offset);
212 #endif /* CONFIG_GENERIC_FIND_NEXT_BIT */
213 #endif /* __KERNEL__ */
214 #endif