Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_BITOPS_H |
| 3 | #define _LINUX_BITOPS_H |
| 4 | #include <asm/types.h> |
Will Deacon | 8bd9cb5 | 2018-06-19 13:53:08 +0100 | [diff] [blame] | 5 | #include <linux/bits.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Aleksa Sarai | f5a1a53 | 2019-10-01 11:10:52 +1000 | [diff] [blame] | 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 | |
Yury Norov | 0bddc1b | 2020-02-03 17:37:24 -0800 | [diff] [blame] | 14 | #define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE) |
Chris Wilson | 9144d75 | 2018-08-21 21:57:03 -0700 | [diff] [blame] | 15 | #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(long)) |
Yury Norov | 0bddc1b | 2020-02-03 17:37:24 -0800 | [diff] [blame] | 16 | #define BITS_TO_U64(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(u64)) |
| 17 | #define BITS_TO_U32(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(u32)) |
Andy Shevchenko | dd3e7cb | 2020-01-30 22:11:47 -0800 | [diff] [blame] | 18 | #define BITS_TO_BYTES(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(char)) |
Chen, Gong | 10ef6b0 | 2013-10-18 14:29:07 -0700 | [diff] [blame] | 19 | |
Borislav Petkov | 4677d4a | 2010-05-03 14:57:11 +0200 | [diff] [blame] | 20 | extern unsigned int __sw_hweight8(unsigned int w); |
| 21 | extern unsigned int __sw_hweight16(unsigned int w); |
| 22 | extern unsigned int __sw_hweight32(unsigned int w); |
| 23 | extern unsigned long __sw_hweight64(__u64 w); |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | * Include this here because some architectures need generic_ffs/fls in |
| 27 | * scope |
| 28 | */ |
| 29 | #include <asm/bitops.h> |
| 30 | |
Akinobu Mita | 984b3f5 | 2010-03-05 13:41:37 -0800 | [diff] [blame] | 31 | #define for_each_set_bit(bit, addr, size) \ |
Robert Richter | 1e2ad28 | 2011-11-18 12:35:21 +0100 | [diff] [blame] | 32 | for ((bit) = find_first_bit((addr), (size)); \ |
| 33 | (bit) < (size); \ |
| 34 | (bit) = find_next_bit((addr), (size), (bit) + 1)) |
| 35 | |
| 36 | /* same as for_each_set_bit() but use bit as value to start with */ |
Akinobu Mita | 307b1cd | 2012-03-23 15:02:03 -0700 | [diff] [blame] | 37 | #define for_each_set_bit_from(bit, addr, size) \ |
Robert Richter | 1e2ad28 | 2011-11-18 12:35:21 +0100 | [diff] [blame] | 38 | for ((bit) = find_next_bit((addr), (size), (bit)); \ |
| 39 | (bit) < (size); \ |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 40 | (bit) = find_next_bit((addr), (size), (bit) + 1)) |
| 41 | |
Akinobu Mita | 03f4a82 | 2012-03-23 15:02:04 -0700 | [diff] [blame] | 42 | #define for_each_clear_bit(bit, addr, size) \ |
| 43 | for ((bit) = find_first_zero_bit((addr), (size)); \ |
| 44 | (bit) < (size); \ |
| 45 | (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) |
| 46 | |
| 47 | /* same as for_each_clear_bit() but use bit as value to start with */ |
| 48 | #define for_each_clear_bit_from(bit, addr, size) \ |
| 49 | for ((bit) = find_next_zero_bit((addr), (size), (bit)); \ |
| 50 | (bit) < (size); \ |
| 51 | (bit) = find_next_zero_bit((addr), (size), (bit) + 1)) |
| 52 | |
William Breathitt Gray | 169c474 | 2019-12-04 16:50:57 -0800 | [diff] [blame] | 53 | /** |
| 54 | * for_each_set_clump8 - iterate over bitmap for each 8-bit clump with set bits |
| 55 | * @start: bit offset to start search and to store the current iteration offset |
| 56 | * @clump: location to store copy of current 8-bit clump |
| 57 | * @bits: bitmap address to base the search on |
| 58 | * @size: bitmap size in number of bits |
| 59 | */ |
| 60 | #define for_each_set_clump8(start, clump, bits, size) \ |
| 61 | for ((start) = find_first_clump8(&(clump), (bits), (size)); \ |
| 62 | (start) < (size); \ |
| 63 | (start) = find_next_clump8(&(clump), (bits), (size), (start) + 8)) |
| 64 | |
Denys Vlasenko | 1a1d48a | 2015-08-04 16:15:14 +0200 | [diff] [blame] | 65 | static inline int get_bitmask_order(unsigned int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | int order; |
Peter Zijlstra | 9f41699 | 2010-01-22 15:59:29 +0100 | [diff] [blame] | 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | order = fls(count); |
| 70 | return order; /* We could be slightly more clever with -1 here... */ |
| 71 | } |
| 72 | |
Denys Vlasenko | 1a1d48a | 2015-08-04 16:15:14 +0200 | [diff] [blame] | 73 | static __always_inline unsigned long hweight_long(unsigned long w) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Akinobu Mita | e9bebd6 | 2006-03-26 01:39:55 -0800 | [diff] [blame] | 75 | return sizeof(w) == 4 ? hweight32(w) : hweight64(w); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Robert P. J. Day | 45f8bde | 2007-01-26 00:57:09 -0800 | [diff] [blame] | 78 | /** |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 79 | * rol64 - rotate a 64-bit value left |
| 80 | * @word: value to rotate |
| 81 | * @shift: bits to roll |
| 82 | */ |
| 83 | static inline __u64 rol64(__u64 word, unsigned int shift) |
| 84 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 85 | return (word << (shift & 63)) | (word >> ((-shift) & 63)); |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | /** |
| 89 | * ror64 - rotate a 64-bit value right |
| 90 | * @word: value to rotate |
| 91 | * @shift: bits to roll |
| 92 | */ |
| 93 | static inline __u64 ror64(__u64 word, unsigned int shift) |
| 94 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 95 | return (word >> (shift & 63)) | (word << ((-shift) & 63)); |
Alexey Dobriyan | f2ea0f5 | 2012-01-14 21:44:49 +0300 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | * rol32 - rotate a 32-bit value left |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * @word: value to rotate |
| 101 | * @shift: bits to roll |
| 102 | */ |
| 103 | static inline __u32 rol32(__u32 word, unsigned int shift) |
| 104 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 105 | return (word << (shift & 31)) | (word >> ((-shift) & 31)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Robert P. J. Day | 45f8bde | 2007-01-26 00:57:09 -0800 | [diff] [blame] | 108 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | * ror32 - rotate a 32-bit value right |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * @word: value to rotate |
| 111 | * @shift: bits to roll |
| 112 | */ |
| 113 | static inline __u32 ror32(__u32 word, unsigned int shift) |
| 114 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 115 | return (word >> (shift & 31)) | (word << ((-shift) & 31)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 118 | /** |
| 119 | * rol16 - rotate a 16-bit value left |
| 120 | * @word: value to rotate |
| 121 | * @shift: bits to roll |
| 122 | */ |
| 123 | static inline __u16 rol16(__u16 word, unsigned int shift) |
| 124 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 125 | return (word << (shift & 15)) | (word >> ((-shift) & 15)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /** |
| 129 | * ror16 - rotate a 16-bit value right |
| 130 | * @word: value to rotate |
| 131 | * @shift: bits to roll |
| 132 | */ |
| 133 | static inline __u16 ror16(__u16 word, unsigned int shift) |
| 134 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 135 | return (word >> (shift & 15)) | (word << ((-shift) & 15)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /** |
| 139 | * rol8 - rotate an 8-bit value left |
| 140 | * @word: value to rotate |
| 141 | * @shift: bits to roll |
| 142 | */ |
| 143 | static inline __u8 rol8(__u8 word, unsigned int shift) |
| 144 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 145 | return (word << (shift & 7)) | (word >> ((-shift) & 7)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /** |
| 149 | * ror8 - rotate an 8-bit value right |
| 150 | * @word: value to rotate |
| 151 | * @shift: bits to roll |
| 152 | */ |
| 153 | static inline __u8 ror8(__u8 word, unsigned int shift) |
| 154 | { |
Rasmus Villemoes | ef4d6f6 | 2019-05-14 15:43:27 -0700 | [diff] [blame] | 155 | return (word >> (shift & 7)) | (word << ((-shift) & 7)); |
Harvey Harrison | 3afe392 | 2008-03-28 14:16:01 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 158 | /** |
| 159 | * sign_extend32 - sign extend a 32-bit value using specified bit as sign-bit |
| 160 | * @value: value to sign extend |
| 161 | * @index: 0 based bit index (0<=index<32) to sign bit |
Martin Kepplinger | e2eb53a | 2015-11-06 16:30:58 -0800 | [diff] [blame] | 162 | * |
| 163 | * This is safe to use for 16- and 8-bit types as well. |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 164 | */ |
Josh Poimboeuf | f80ac98 | 2020-04-06 20:09:43 -0700 | [diff] [blame] | 165 | static __always_inline __s32 sign_extend32(__u32 value, int index) |
Andreas Herrmann | 7919a57 | 2010-08-30 19:04:01 +0000 | [diff] [blame] | 166 | { |
| 167 | __u8 shift = 31 - index; |
| 168 | return (__s32)(value << shift) >> shift; |
| 169 | } |
| 170 | |
Martin Kepplinger | 48e203e | 2015-11-06 16:31:02 -0800 | [diff] [blame] | 171 | /** |
| 172 | * sign_extend64 - sign extend a 64-bit value using specified bit as sign-bit |
| 173 | * @value: value to sign extend |
| 174 | * @index: 0 based bit index (0<=index<64) to sign bit |
| 175 | */ |
Josh Poimboeuf | f80ac98 | 2020-04-06 20:09:43 -0700 | [diff] [blame] | 176 | static __always_inline __s64 sign_extend64(__u64 value, int index) |
Martin Kepplinger | 48e203e | 2015-11-06 16:31:02 -0800 | [diff] [blame] | 177 | { |
| 178 | __u8 shift = 63 - index; |
| 179 | return (__s64)(value << shift) >> shift; |
| 180 | } |
| 181 | |
Andrew Morton | 962749a | 2006-03-25 03:08:01 -0800 | [diff] [blame] | 182 | static inline unsigned fls_long(unsigned long l) |
| 183 | { |
| 184 | if (sizeof(l) == 4) |
| 185 | return fls(l); |
| 186 | return fls64(l); |
| 187 | } |
| 188 | |
zijun_hu | 252e5c6 | 2016-10-07 16:57:26 -0700 | [diff] [blame] | 189 | static inline int get_count_order(unsigned int count) |
| 190 | { |
| 191 | int order; |
| 192 | |
| 193 | order = fls(count) - 1; |
| 194 | if (count & (count - 1)) |
| 195 | order++; |
| 196 | return order; |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * get_count_order_long - get order after rounding @l up to power of 2 |
| 201 | * @l: parameter |
| 202 | * |
| 203 | * it is same as get_count_order() but with long type parameter |
| 204 | */ |
| 205 | static inline int get_count_order_long(unsigned long l) |
| 206 | { |
| 207 | if (l == 0UL) |
| 208 | return -1; |
| 209 | else if (l & (l - 1UL)) |
| 210 | return (int)fls_long(l); |
| 211 | else |
| 212 | return (int)fls_long(l) - 1; |
| 213 | } |
| 214 | |
Steven Whitehouse | 952043a | 2009-04-23 08:48:15 +0100 | [diff] [blame] | 215 | /** |
| 216 | * __ffs64 - find first set bit in a 64 bit word |
| 217 | * @word: The 64 bit word |
| 218 | * |
| 219 | * On 64 bit arches this is a synomyn for __ffs |
| 220 | * The result is not defined if no bits are set, so check that @word |
| 221 | * is non-zero before calling this. |
| 222 | */ |
| 223 | static inline unsigned long __ffs64(u64 word) |
| 224 | { |
| 225 | #if BITS_PER_LONG == 32 |
| 226 | if (((u32)word) == 0UL) |
| 227 | return __ffs((u32)(word >> 32)) + 32; |
| 228 | #elif BITS_PER_LONG != 64 |
| 229 | #error BITS_PER_LONG not 32 or 64 |
| 230 | #endif |
| 231 | return __ffs((unsigned long)word); |
| 232 | } |
| 233 | |
Lukas Wunner | 5307e2a | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 234 | /** |
| 235 | * assign_bit - Assign value to a bit in memory |
| 236 | * @nr: the bit to set |
| 237 | * @addr: the address to start counting from |
| 238 | * @value: the value to assign |
| 239 | */ |
| 240 | static __always_inline void assign_bit(long nr, volatile unsigned long *addr, |
| 241 | bool value) |
| 242 | { |
| 243 | if (value) |
| 244 | set_bit(nr, addr); |
| 245 | else |
| 246 | clear_bit(nr, addr); |
| 247 | } |
| 248 | |
| 249 | static __always_inline void __assign_bit(long nr, volatile unsigned long *addr, |
| 250 | bool value) |
| 251 | { |
| 252 | if (value) |
| 253 | __set_bit(nr, addr); |
| 254 | else |
| 255 | __clear_bit(nr, addr); |
| 256 | } |
| 257 | |
Alexander van Heukelum | 64970b6 | 2008-03-11 16:17:19 +0100 | [diff] [blame] | 258 | #ifdef __KERNEL__ |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 259 | |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 260 | #ifndef set_mask_bits |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 261 | #define set_mask_bits(ptr, mask, bits) \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 262 | ({ \ |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 263 | const typeof(*(ptr)) mask__ = (mask), bits__ = (bits); \ |
| 264 | typeof(*(ptr)) old__, new__; \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 265 | \ |
| 266 | do { \ |
Miklos Szeredi | 1812742 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 267 | old__ = READ_ONCE(*(ptr)); \ |
| 268 | new__ = (old__ & ~mask__) | bits__; \ |
| 269 | } while (cmpxchg(ptr, old__, new__) != old__); \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 270 | \ |
Vineet Gupta | 1db604f | 2019-03-07 16:28:14 -0800 | [diff] [blame] | 271 | old__; \ |
Theodore Ts'o | 00a1a05 | 2014-03-30 10:20:01 -0400 | [diff] [blame] | 272 | }) |
| 273 | #endif |
| 274 | |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 275 | #ifndef bit_clear_unless |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 276 | #define bit_clear_unless(ptr, clear, test) \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 277 | ({ \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 278 | const typeof(*(ptr)) clear__ = (clear), test__ = (test);\ |
| 279 | typeof(*(ptr)) old__, new__; \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 280 | \ |
| 281 | do { \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 282 | old__ = READ_ONCE(*(ptr)); \ |
| 283 | new__ = old__ & ~clear__; \ |
| 284 | } while (!(old__ & test__) && \ |
| 285 | cmpxchg(ptr, old__, new__) != old__); \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 286 | \ |
Miklos Szeredi | edfa872 | 2018-10-15 15:43:06 +0200 | [diff] [blame] | 287 | !(old__ & test__); \ |
Guoqing Jiang | 85ad1d1 | 2016-05-03 22:22:13 -0400 | [diff] [blame] | 288 | }) |
| 289 | #endif |
| 290 | |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 291 | #ifndef find_last_bit |
Rusty Russell | ab53d47 | 2009-01-01 10:12:19 +1030 | [diff] [blame] | 292 | /** |
| 293 | * find_last_bit - find the last set bit in a memory region |
| 294 | * @addr: The address to start the search at |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 295 | * @size: The number of bits to search |
Rusty Russell | ab53d47 | 2009-01-01 10:12:19 +1030 | [diff] [blame] | 296 | * |
Yury Norov | 2c57a0e | 2015-04-16 12:43:13 -0700 | [diff] [blame] | 297 | * Returns the bit number of the last set bit, or size. |
Rusty Russell | ab53d47 | 2009-01-01 10:12:19 +1030 | [diff] [blame] | 298 | */ |
| 299 | extern unsigned long find_last_bit(const unsigned long *addr, |
| 300 | unsigned long size); |
Akinobu Mita | 19de85e | 2011-05-26 16:26:09 -0700 | [diff] [blame] | 301 | #endif |
Rusty Russell | ab53d47 | 2009-01-01 10:12:19 +1030 | [diff] [blame] | 302 | |
Alexander van Heukelum | 64970b6 | 2008-03-11 16:17:19 +0100 | [diff] [blame] | 303 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | #endif |