1 #ifndef _LINUX_BITOPS_H
2 #define _LINUX_BITOPS_H
4 #if !defined(USE_HOSTCC) && !defined(__ASSEMBLY__)
7 #include <asm-generic/bitsperlong.h>
8 #include <linux/compiler.h>
11 #define BIT(nr) (1UL << (nr))
12 #define BIT_ULL(nr) (1ULL << (nr))
13 #define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
14 #define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
15 #define BIT_ULL_MASK(nr) (1ULL << ((nr) % BITS_PER_LONG_LONG))
16 #define BIT_ULL_WORD(nr) ((nr) / BITS_PER_LONG_LONG)
17 #define BITS_PER_BYTE 8
18 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
21 /* kernel.h includes log.h which include bitops.h */
22 #include <linux/kernel.h>
25 * Create a contiguous bitmask starting at bit position @l and ending at
26 * position @h. For example
27 * GENMASK_ULL(39, 21) gives us the 64bit vector 0x000000ffffe00000.
30 #define GENMASK(h, l) \
31 (((~0UL) << (l)) & (~0UL >> (CONFIG_SANDBOX_BITS_PER_LONG - 1 - (h))))
33 #define GENMASK(h, l) \
34 (((~0UL) << (l)) & (~0UL >> (BITS_PER_LONG - 1 - (h))))
37 #define GENMASK_ULL(h, l) \
38 (((~0ULL) << (l)) & (~0ULL >> (BITS_PER_LONG_LONG - 1 - (h))))
41 * ffs: find first bit set. This is defined the same way as
42 * the libc and compiler builtin ffs routines, therefore
43 * differs in spirit from the above ffz (man ffs).
46 static inline int generic_ffs(int x)
76 * fls - find last (most-significant) bit set
77 * @x: the word to search
79 * This is defined the same way as ffs.
80 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
82 static inline int generic_fls(int x)
88 if (!(x & 0xffff0000u)) {
92 if (!(x & 0xff000000u)) {
96 if (!(x & 0xf0000000u)) {
100 if (!(x & 0xc0000000u)) {
104 if (!(x & 0x80000000u)) {
113 * hweightN: returns the hamming weight (i.e. the number
114 * of bits set) of a N-bit word
117 static inline unsigned int generic_hweight32(unsigned int w)
119 unsigned int res = (w & 0x55555555) + ((w >> 1) & 0x55555555);
120 res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
121 res = (res & 0x0F0F0F0F) + ((res >> 4) & 0x0F0F0F0F);
122 res = (res & 0x00FF00FF) + ((res >> 8) & 0x00FF00FF);
123 return (res & 0x0000FFFF) + ((res >> 16) & 0x0000FFFF);
126 static inline unsigned int generic_hweight16(unsigned int w)
128 unsigned int res = (w & 0x5555) + ((w >> 1) & 0x5555);
129 res = (res & 0x3333) + ((res >> 2) & 0x3333);
130 res = (res & 0x0F0F) + ((res >> 4) & 0x0F0F);
131 return (res & 0x00FF) + ((res >> 8) & 0x00FF);
134 static inline unsigned int generic_hweight8(unsigned int w)
136 unsigned int res = (w & 0x55) + ((w >> 1) & 0x55);
137 res = (res & 0x33) + ((res >> 2) & 0x33);
138 return (res & 0x0F) + ((res >> 4) & 0x0F);
141 static inline unsigned long generic_hweight64(__u64 w)
143 return generic_hweight32((unsigned int)(w >> 32)) +
144 generic_hweight32((unsigned int)w);
147 static inline unsigned long hweight_long(unsigned long w)
149 return sizeof(w) == 4 ? generic_hweight32(w) : generic_hweight64(w);
152 #include <asm/bitops.h>
154 /* linux/include/asm-generic/bitops/non-atomic.h */
156 #ifndef PLATFORM__SET_BIT
157 # define __set_bit generic_set_bit
160 #ifndef PLATFORM__CLEAR_BIT
161 # define __clear_bit generic_clear_bit
165 # define ffs generic_ffs
169 # define fls generic_fls
172 static inline unsigned fls_long(unsigned long l)
180 * __ffs64 - find first set bit in a 64 bit word
181 * @word: The 64 bit word
183 * On 64 bit arches this is a synomyn for __ffs
184 * The result is not defined if no bits are set, so check that @word
185 * is non-zero before calling this.
187 static inline unsigned long __ffs64(u64 word)
189 #if BITS_PER_LONG == 32
190 if (((u32)word) == 0UL)
191 return __ffs((u32)(word >> 32)) + 32;
192 #elif BITS_PER_LONG != 64
193 #error BITS_PER_LONG not 32 or 64
195 return __ffs((unsigned long)word);
199 * __set_bit - Set a bit in memory
200 * @nr: the bit to set
201 * @addr: the address to start counting from
203 * Unlike set_bit(), this function is non-atomic and may be reordered.
204 * If it's called on the same region of memory simultaneously, the effect
205 * may be that only one operation succeeds.
207 static inline void generic_set_bit(int nr, volatile unsigned long *addr)
209 unsigned long mask = BIT_MASK(nr);
210 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
215 static inline void generic_clear_bit(int nr, volatile unsigned long *addr)
217 unsigned long mask = BIT_MASK(nr);
218 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
223 #endif /* !USE_HOSTCC && !__ASSEMBLY__ */