1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_BITOPS_H 3 #define _LINUX_BITOPS_H 4 #include <asm/types.h> 5 #include <linux/bits.h> 6 7 /* Set bits in the first 'n' bytes when loaded from memory */ 8 #ifdef __LITTLE_ENDIAN 9 # define aligned_byte_mask(n) ((1UL << 8*(n))-1) 10 #else 11 # define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n))) 12 #endif 13 14 #define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE) 15 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(long)) 16 #define BITS_TO_BYTES(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(char)) 17 18 extern unsigned int __sw_hweight8(unsigned int w); 19 extern unsigned int __sw_hweight16(unsigned int w); 20 extern unsigned int __sw_hweight32(unsigned int w); 21 extern unsigned long __sw_hweight64(__u64 w); 22 23 /* 24 * Include this here because some architectures need generic_ffs/fls in 25 * scope 26 */ 27 #include <asm/bitops.h> 28 29 #define for_each_set_bit(bit, addr, size) \ 30 for ((bit) = find_first_bit((addr), (size)); \ 31 (bit) < (size); \ 32 (bit) = find_next_bit((addr), (size), (bit) + 1)) 33 34 /* same as for_each_set_bit() but use bit as value to start with */ 35 #define for_each_set_bit_from(bit, addr, size) \ 36 for ((bit) = find_next_bit((addr), (size), (bit)); \ 37 (bit) < (size); \ 38 (bit) = find_next_bit((addr), (size), (bit) + 1)) 39 40 #define for_each_clear_bit(bit, addr, size) \ 41 for ((bit) = find_first_zero_bit((addr), (size)); \ 42 (bit) < (size); \ 43 (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) 44 45 /* same as for_each_clear_bit() but use bit as value to start with */ 46 #define for_each_clear_bit_from(bit, addr, size) \ 47 for ((bit) = find_next_zero_bit((addr), (size), (bit)); \ 48 (bit) < (size); \ 49 (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) 50 51 /** 52 * for_each_set_clump8 - iterate over bitmap for each 8-bit clump with set bits 53 * @start: bit offset to start search and to store the current iteration offset 54 * @clump: location to store copy of current 8-bit clump 55 * @bits: bitmap address to base the search on 56 * @size: bitmap size in number of bits 57 */ 58 #define for_each_set_clump8(start, clump, bits, size) \ 59 for ((start) = find_first_clump8(&(clump), (bits), (size)); \ 60 (start) < (size); \ 61 (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8)) 62 63 static inline int get_bitmask_order(unsigned int count) 64 { 65 int order; 66 67 order = fls(count); 68 return order; /* We could be slightly more clever with -1 here... */ 69 } 70 71 static __always_inline unsigned long hweight_long(unsigned long w) 72 { 73 return sizeof(w) == 4 ? hweight32(w) : hweight64(w); 74 } 75 76 /** 77 * rol64 - rotate a 64-bit value left 78 * @word: value to rotate 79 * @shift: bits to roll 80 */ 81 static inline __u64 rol64(__u64 word, unsigned int shift) 82 { 83 return (word << (shift & 63)) | (word >> ((-shift) & 63)); 84 } 85 86 /** 87 * ror64 - rotate a 64-bit value right 88 * @word: value to rotate 89 * @shift: bits to roll 90 */ 91 static inline __u64 ror64(__u64 word, unsigned int shift) 92 { 93 return (word >> (shift & 63)) | (word << ((-shift) & 63)); 94 } 95 96 /** 97 * rol32 - rotate a 32-bit value left 98 * @word: value to rotate 99 * @shift: bits to roll 100 */ 101 static inline __u32 rol32(__u32 word, unsigned int shift) 102 { 103 return (word << (shift & 31)) | (word >> ((-shift) & 31)); 104 } 105 106 /** 107 * ror32 - rotate a 32-bit value right 108 * @word: value to rotate 109 * @shift: bits to roll 110 */ 111 static inline __u32 ror32(__u32 word, unsigned int shift) 112 { 113 return (word >> (shift & 31)) | (word << ((-shift) & 31)); 114 } 115 116 /** 117 * rol16 - rotate a 16-bit value left 118 * @word: value to rotate 119 * @shift: bits to roll 120 */ 121 static inline __u16 rol16(__u16 word, unsigned int shift) 122 { 123 return (word << (shift & 15)) | (word >> ((-shift) & 15)); 124 } 125 126 /** 127 * ror16 - rotate a 16-bit value right 128 * @word: value to rotate 129 * @shift: bits to roll 130 */ 131 static inline __u16 ror16(__u16 word, unsigned int shift) 132 { 133 return (word >> (shift & 15)) | (word << ((-shift) & 15)); 134 } 135 136 /** 137 * rol8 - rotate an 8-bit value left 138 * @word: value to rotate 139 * @shift: bits to roll 140 */ 141 static inline __u8 rol8(__u8 word, unsigned int shift) 142 { 143 return (word << (shift & 7)) | (word >> ((-shift) & 7)); 144 } 145 146 /** 147 * ror8 - rotate an 8-bit value right 148 * @word: value to rotate 149 * @shift: bits to roll 150 */ 151 static inline __u8 ror8(__u8 word, unsigned int shift) 152 { 153 return (word >> (shift & 7)) | (word << ((-shift) & 7)); 154 } 155 156 /** 157 * sign_extend32 - sign extend a 32-bit value using specified bit as sign-bit 158 * @value: value to sign extend 159 * @index: 0 based bit index (0<=index<32) to sign bit 160 * 161 * This is safe to use for 16- and 8-bit types as well. 162 */ 163 static inline __s32 sign_extend32(__u32 value, int index) 164 { 165 __u8 shift = 31 - index; 166 return (__s32)(value << shift) >> shift; 167 } 168 169 /** 170 * sign_extend64 - sign extend a 64-bit value using specified bit as sign-bit 171 * @value: value to sign extend 172 * @index: 0 based bit index (0<=index<64) to sign bit 173 */ 174 static inline __s64 sign_extend64(__u64 value, int index) 175 { 176 __u8 shift = 63 - index; 177 return (__s64)(value << shift) >> shift; 178 } 179 180 static inline unsigned fls_long(unsigned long l) 181 { 182 if (sizeof(l) == 4) 183 return fls(l); 184 return fls64(l); 185 } 186 187 static inline int get_count_order(unsigned int count) 188 { 189 int order; 190 191 order = fls(count) - 1; 192 if (count & (count - 1)) 193 order++; 194 return order; 195 } 196 197 /** 198 * get_count_order_long - get order after rounding @l up to power of 2 199 * @l: parameter 200 * 201 * it is same as get_count_order() but with long type parameter 202 */ 203 static inline int get_count_order_long(unsigned long l) 204 { 205 if (l == 0UL) 206 return -1; 207 else if (l & (l - 1UL)) 208 return (int)fls_long(l); 209 else 210 return (int)fls_long(l) - 1; 211 } 212 213 /** 214 * __ffs64 - find first set bit in a 64 bit word 215 * @word: The 64 bit word 216 * 217 * On 64 bit arches this is a synomyn for __ffs 218 * The result is not defined if no bits are set, so check that @word 219 * is non-zero before calling this. 220 */ 221 static inline unsigned long __ffs64(u64 word) 222 { 223 #if BITS_PER_LONG == 32 224 if (((u32)word) == 0UL) 225 return __ffs((u32)(word >> 32)) + 32; 226 #elif BITS_PER_LONG != 64 227 #error BITS_PER_LONG not 32 or 64 228 #endif 229 return __ffs((unsigned long)word); 230 } 231 232 /** 233 * assign_bit - Assign value to a bit in memory 234 * @nr: the bit to set 235 * @addr: the address to start counting from 236 * @value: the value to assign 237 */ 238 static __always_inline void assign_bit(long nr, volatile unsigned long *addr, 239 bool value) 240 { 241 if (value) 242 set_bit(nr, addr); 243 else 244 clear_bit(nr, addr); 245 } 246 247 static __always_inline void __assign_bit(long nr, volatile unsigned long *addr, 248 bool value) 249 { 250 if (value) 251 __set_bit(nr, addr); 252 else 253 __clear_bit(nr, addr); 254 } 255 256 #ifdef __KERNEL__ 257 258 #ifndef set_mask_bits 259 #define set_mask_bits(ptr, mask, bits) \ 260 ({ \ 261 const typeof(*(ptr)) mask__ = (mask), bits__ = (bits); \ 262 typeof(*(ptr)) old__, new__; \ 263 \ 264 do { \ 265 old__ = READ_ONCE(*(ptr)); \ 266 new__ = (old__ & ~mask__) | bits__; \ 267 } while (cmpxchg(ptr, old__, new__) != old__); \ 268 \ 269 old__; \ 270 }) 271 #endif 272 273 #ifndef bit_clear_unless 274 #define bit_clear_unless(ptr, clear, test) \ 275 ({ \ 276 const typeof(*(ptr)) clear__ = (clear), test__ = (test);\ 277 typeof(*(ptr)) old__, new__; \ 278 \ 279 do { \ 280 old__ = READ_ONCE(*(ptr)); \ 281 new__ = old__ & ~clear__; \ 282 } while (!(old__ & test__) && \ 283 cmpxchg(ptr, old__, new__) != old__); \ 284 \ 285 !(old__ & test__); \ 286 }) 287 #endif 288 289 #ifndef find_last_bit 290 /** 291 * find_last_bit - find the last set bit in a memory region 292 * @addr: The address to start the search at 293 * @size: The number of bits to search 294 * 295 * Returns the bit number of the last set bit, or size. 296 */ 297 extern unsigned long find_last_bit(const unsigned long *addr, 298 unsigned long size); 299 #endif 300 301 #endif /* __KERNEL__ */ 302 #endif 303