blob: 7fc90d7cd0c90892050d5734710d676e5b9c18f7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_BITOPS_H
2#define _LINUX_BITOPS_H
3#include <asm/types.h>
4
Jiri Slabyd05be132007-10-18 23:40:31 -07005#ifdef __KERNEL__
Jiri Slaby93043ec2007-10-18 23:40:35 -07006#define BIT(nr) (1UL << (nr))
Jiri Slabyd05be132007-10-18 23:40:31 -07007#define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
8#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
9#define BITS_TO_TYPE(nr, t) (((nr)+(t)-1)/(t))
10#define BITS_TO_LONGS(nr) BITS_TO_TYPE(nr, BITS_PER_LONG)
11#define BITS_PER_BYTE 8
12#endif
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Include this here because some architectures need generic_ffs/fls in
16 * scope
17 */
18#include <asm/bitops.h>
19
Shannon Nelson3e037452007-10-16 01:27:40 -070020#define for_each_bit(bit, addr, size) \
21 for ((bit) = find_first_bit((addr), (size)); \
22 (bit) < (size); \
23 (bit) = find_next_bit((addr), (size), (bit) + 1))
24
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static __inline__ int get_bitmask_order(unsigned int count)
27{
28 int order;
29
30 order = fls(count);
31 return order; /* We could be slightly more clever with -1 here... */
32}
33
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010034static __inline__ int get_count_order(unsigned int count)
35{
36 int order;
37
38 order = fls(count) - 1;
39 if (count & (count - 1))
40 order++;
41 return order;
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static inline unsigned long hweight_long(unsigned long w)
45{
Akinobu Mitae9bebd62006-03-26 01:39:55 -080046 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080049/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * rol32 - rotate a 32-bit value left
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * @word: value to rotate
52 * @shift: bits to roll
53 */
54static inline __u32 rol32(__u32 word, unsigned int shift)
55{
56 return (word << shift) | (word >> (32 - shift));
57}
58
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080059/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * ror32 - rotate a 32-bit value right
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * @word: value to rotate
62 * @shift: bits to roll
63 */
64static inline __u32 ror32(__u32 word, unsigned int shift)
65{
66 return (word >> shift) | (word << (32 - shift));
67}
68
Andrew Morton962749a2006-03-25 03:08:01 -080069static inline unsigned fls_long(unsigned long l)
70{
71 if (sizeof(l) == 4)
72 return fls(l);
73 return fls64(l);
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#endif