blob: c94a9ff9f082e3301809eb5f47c0493bdbaddc7e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_BITOPS_H
3#define _LINUX_BITOPS_H
4#include <asm/types.h>
Will Deacon8bd9cb52018-06-19 13:53:08 +01005#include <linux/bits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Aleksa Saraif5a1a532019-10-01 11:10:52 +10007/* 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
Chris Wilson9144d752018-08-21 21:57:03 -070014#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
15#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_TYPE(long))
Chen, Gong10ef6b02013-10-18 14:29:07 -070016
Borislav Petkov4677d4a2010-05-03 14:57:11 +020017extern unsigned int __sw_hweight8(unsigned int w);
18extern unsigned int __sw_hweight16(unsigned int w);
19extern unsigned int __sw_hweight32(unsigned int w);
20extern unsigned long __sw_hweight64(__u64 w);
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Include this here because some architectures need generic_ffs/fls in
24 * scope
25 */
26#include <asm/bitops.h>
27
Akinobu Mita984b3f52010-03-05 13:41:37 -080028#define for_each_set_bit(bit, addr, size) \
Robert Richter1e2ad282011-11-18 12:35:21 +010029 for ((bit) = find_first_bit((addr), (size)); \
30 (bit) < (size); \
31 (bit) = find_next_bit((addr), (size), (bit) + 1))
32
33/* same as for_each_set_bit() but use bit as value to start with */
Akinobu Mita307b1cd2012-03-23 15:02:03 -070034#define for_each_set_bit_from(bit, addr, size) \
Robert Richter1e2ad282011-11-18 12:35:21 +010035 for ((bit) = find_next_bit((addr), (size), (bit)); \
36 (bit) < (size); \
Shannon Nelson3e037452007-10-16 01:27:40 -070037 (bit) = find_next_bit((addr), (size), (bit) + 1))
38
Akinobu Mita03f4a822012-03-23 15:02:04 -070039#define for_each_clear_bit(bit, addr, size) \
40 for ((bit) = find_first_zero_bit((addr), (size)); \
41 (bit) < (size); \
42 (bit) = find_next_zero_bit((addr), (size), (bit) + 1))
43
44/* same as for_each_clear_bit() but use bit as value to start with */
45#define for_each_clear_bit_from(bit, addr, size) \
46 for ((bit) = find_next_zero_bit((addr), (size), (bit)); \
47 (bit) < (size); \
48 (bit) = find_next_zero_bit((addr), (size), (bit) + 1))
49
Denys Vlasenko1a1d48a2015-08-04 16:15:14 +020050static inline int get_bitmask_order(unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 int order;
Peter Zijlstra9f416992010-01-22 15:59:29 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 order = fls(count);
55 return order; /* We could be slightly more clever with -1 here... */
56}
57
Denys Vlasenko1a1d48a2015-08-04 16:15:14 +020058static __always_inline unsigned long hweight_long(unsigned long w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Akinobu Mitae9bebd62006-03-26 01:39:55 -080060 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080063/**
Alexey Dobriyanf2ea0f52012-01-14 21:44:49 +030064 * rol64 - rotate a 64-bit value left
65 * @word: value to rotate
66 * @shift: bits to roll
67 */
68static inline __u64 rol64(__u64 word, unsigned int shift)
69{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -070070 return (word << (shift & 63)) | (word >> ((-shift) & 63));
Alexey Dobriyanf2ea0f52012-01-14 21:44:49 +030071}
72
73/**
74 * ror64 - rotate a 64-bit value right
75 * @word: value to rotate
76 * @shift: bits to roll
77 */
78static inline __u64 ror64(__u64 word, unsigned int shift)
79{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -070080 return (word >> (shift & 63)) | (word << ((-shift) & 63));
Alexey Dobriyanf2ea0f52012-01-14 21:44:49 +030081}
82
83/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * rol32 - rotate a 32-bit value left
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * @word: value to rotate
86 * @shift: bits to roll
87 */
88static inline __u32 rol32(__u32 word, unsigned int shift)
89{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -070090 return (word << (shift & 31)) | (word >> ((-shift) & 31));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080093/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * ror32 - rotate a 32-bit value right
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * @word: value to rotate
96 * @shift: bits to roll
97 */
98static inline __u32 ror32(__u32 word, unsigned int shift)
99{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -0700100 return (word >> (shift & 31)) | (word << ((-shift) & 31));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Harvey Harrison3afe3922008-03-28 14:16:01 -0700103/**
104 * rol16 - rotate a 16-bit value left
105 * @word: value to rotate
106 * @shift: bits to roll
107 */
108static inline __u16 rol16(__u16 word, unsigned int shift)
109{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -0700110 return (word << (shift & 15)) | (word >> ((-shift) & 15));
Harvey Harrison3afe3922008-03-28 14:16:01 -0700111}
112
113/**
114 * ror16 - rotate a 16-bit value right
115 * @word: value to rotate
116 * @shift: bits to roll
117 */
118static inline __u16 ror16(__u16 word, unsigned int shift)
119{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -0700120 return (word >> (shift & 15)) | (word << ((-shift) & 15));
Harvey Harrison3afe3922008-03-28 14:16:01 -0700121}
122
123/**
124 * rol8 - rotate an 8-bit value left
125 * @word: value to rotate
126 * @shift: bits to roll
127 */
128static inline __u8 rol8(__u8 word, unsigned int shift)
129{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -0700130 return (word << (shift & 7)) | (word >> ((-shift) & 7));
Harvey Harrison3afe3922008-03-28 14:16:01 -0700131}
132
133/**
134 * ror8 - rotate an 8-bit value right
135 * @word: value to rotate
136 * @shift: bits to roll
137 */
138static inline __u8 ror8(__u8 word, unsigned int shift)
139{
Rasmus Villemoesef4d6f62019-05-14 15:43:27 -0700140 return (word >> (shift & 7)) | (word << ((-shift) & 7));
Harvey Harrison3afe3922008-03-28 14:16:01 -0700141}
142
Andreas Herrmann7919a572010-08-30 19:04:01 +0000143/**
144 * sign_extend32 - sign extend a 32-bit value using specified bit as sign-bit
145 * @value: value to sign extend
146 * @index: 0 based bit index (0<=index<32) to sign bit
Martin Kepplingere2eb53a2015-11-06 16:30:58 -0800147 *
148 * This is safe to use for 16- and 8-bit types as well.
Andreas Herrmann7919a572010-08-30 19:04:01 +0000149 */
150static inline __s32 sign_extend32(__u32 value, int index)
151{
152 __u8 shift = 31 - index;
153 return (__s32)(value << shift) >> shift;
154}
155
Martin Kepplinger48e203e2015-11-06 16:31:02 -0800156/**
157 * sign_extend64 - sign extend a 64-bit value using specified bit as sign-bit
158 * @value: value to sign extend
159 * @index: 0 based bit index (0<=index<64) to sign bit
160 */
161static inline __s64 sign_extend64(__u64 value, int index)
162{
163 __u8 shift = 63 - index;
164 return (__s64)(value << shift) >> shift;
165}
166
Andrew Morton962749a2006-03-25 03:08:01 -0800167static inline unsigned fls_long(unsigned long l)
168{
169 if (sizeof(l) == 4)
170 return fls(l);
171 return fls64(l);
172}
173
zijun_hu252e5c62016-10-07 16:57:26 -0700174static inline int get_count_order(unsigned int count)
175{
176 int order;
177
178 order = fls(count) - 1;
179 if (count & (count - 1))
180 order++;
181 return order;
182}
183
184/**
185 * get_count_order_long - get order after rounding @l up to power of 2
186 * @l: parameter
187 *
188 * it is same as get_count_order() but with long type parameter
189 */
190static inline int get_count_order_long(unsigned long l)
191{
192 if (l == 0UL)
193 return -1;
194 else if (l & (l - 1UL))
195 return (int)fls_long(l);
196 else
197 return (int)fls_long(l) - 1;
198}
199
Steven Whitehouse952043a2009-04-23 08:48:15 +0100200/**
201 * __ffs64 - find first set bit in a 64 bit word
202 * @word: The 64 bit word
203 *
204 * On 64 bit arches this is a synomyn for __ffs
205 * The result is not defined if no bits are set, so check that @word
206 * is non-zero before calling this.
207 */
208static inline unsigned long __ffs64(u64 word)
209{
210#if BITS_PER_LONG == 32
211 if (((u32)word) == 0UL)
212 return __ffs((u32)(word >> 32)) + 32;
213#elif BITS_PER_LONG != 64
214#error BITS_PER_LONG not 32 or 64
215#endif
216 return __ffs((unsigned long)word);
217}
218
Lukas Wunner5307e2a2017-10-12 12:40:10 +0200219/**
220 * assign_bit - Assign value to a bit in memory
221 * @nr: the bit to set
222 * @addr: the address to start counting from
223 * @value: the value to assign
224 */
225static __always_inline void assign_bit(long nr, volatile unsigned long *addr,
226 bool value)
227{
228 if (value)
229 set_bit(nr, addr);
230 else
231 clear_bit(nr, addr);
232}
233
234static __always_inline void __assign_bit(long nr, volatile unsigned long *addr,
235 bool value)
236{
237 if (value)
238 __set_bit(nr, addr);
239 else
240 __clear_bit(nr, addr);
241}
242
Alexander van Heukelum64970b62008-03-11 16:17:19 +0100243#ifdef __KERNEL__
Alexander van Heukelum77b9bd92008-04-01 11:46:19 +0200244
Theodore Ts'o00a1a052014-03-30 10:20:01 -0400245#ifndef set_mask_bits
Miklos Szeredi18127422018-10-15 15:43:06 +0200246#define set_mask_bits(ptr, mask, bits) \
Theodore Ts'o00a1a052014-03-30 10:20:01 -0400247({ \
Miklos Szeredi18127422018-10-15 15:43:06 +0200248 const typeof(*(ptr)) mask__ = (mask), bits__ = (bits); \
249 typeof(*(ptr)) old__, new__; \
Theodore Ts'o00a1a052014-03-30 10:20:01 -0400250 \
251 do { \
Miklos Szeredi18127422018-10-15 15:43:06 +0200252 old__ = READ_ONCE(*(ptr)); \
253 new__ = (old__ & ~mask__) | bits__; \
254 } while (cmpxchg(ptr, old__, new__) != old__); \
Theodore Ts'o00a1a052014-03-30 10:20:01 -0400255 \
Vineet Gupta1db604f2019-03-07 16:28:14 -0800256 old__; \
Theodore Ts'o00a1a052014-03-30 10:20:01 -0400257})
258#endif
259
Guoqing Jiang85ad1d12016-05-03 22:22:13 -0400260#ifndef bit_clear_unless
Miklos Szerediedfa8722018-10-15 15:43:06 +0200261#define bit_clear_unless(ptr, clear, test) \
Guoqing Jiang85ad1d12016-05-03 22:22:13 -0400262({ \
Miklos Szerediedfa8722018-10-15 15:43:06 +0200263 const typeof(*(ptr)) clear__ = (clear), test__ = (test);\
264 typeof(*(ptr)) old__, new__; \
Guoqing Jiang85ad1d12016-05-03 22:22:13 -0400265 \
266 do { \
Miklos Szerediedfa8722018-10-15 15:43:06 +0200267 old__ = READ_ONCE(*(ptr)); \
268 new__ = old__ & ~clear__; \
269 } while (!(old__ & test__) && \
270 cmpxchg(ptr, old__, new__) != old__); \
Guoqing Jiang85ad1d12016-05-03 22:22:13 -0400271 \
Miklos Szerediedfa8722018-10-15 15:43:06 +0200272 !(old__ & test__); \
Guoqing Jiang85ad1d12016-05-03 22:22:13 -0400273})
274#endif
275
Akinobu Mita19de85e2011-05-26 16:26:09 -0700276#ifndef find_last_bit
Rusty Russellab53d472009-01-01 10:12:19 +1030277/**
278 * find_last_bit - find the last set bit in a memory region
279 * @addr: The address to start the search at
Yury Norov2c57a0e2015-04-16 12:43:13 -0700280 * @size: The number of bits to search
Rusty Russellab53d472009-01-01 10:12:19 +1030281 *
Yury Norov2c57a0e2015-04-16 12:43:13 -0700282 * Returns the bit number of the last set bit, or size.
Rusty Russellab53d472009-01-01 10:12:19 +1030283 */
284extern unsigned long find_last_bit(const unsigned long *addr,
285 unsigned long size);
Akinobu Mita19de85e2011-05-26 16:26:09 -0700286#endif
Rusty Russellab53d472009-01-01 10:12:19 +1030287
Alexander van Heukelum64970b62008-03-11 16:17:19 +0100288#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289#endif