blob: 69c1edb9fe54a345f061cf983fe8311805c83154 [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)
Jiri Slaby14ed9d22007-10-18 23:40:37 -07009#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_LONG)
Jiri Slabyd05be132007-10-18 23:40:31 -070010#define BITS_PER_BYTE 8
11#endif
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Include this here because some architectures need generic_ffs/fls in
15 * scope
16 */
17#include <asm/bitops.h>
18
Shannon Nelson3e037452007-10-16 01:27:40 -070019#define for_each_bit(bit, addr, size) \
20 for ((bit) = find_first_bit((addr), (size)); \
21 (bit) < (size); \
22 (bit) = find_next_bit((addr), (size), (bit) + 1))
23
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static __inline__ int get_bitmask_order(unsigned int count)
26{
27 int order;
28
29 order = fls(count);
30 return order; /* We could be slightly more clever with -1 here... */
31}
32
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010033static __inline__ int get_count_order(unsigned int count)
34{
35 int order;
36
37 order = fls(count) - 1;
38 if (count & (count - 1))
39 order++;
40 return order;
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static inline unsigned long hweight_long(unsigned long w)
44{
Akinobu Mitae9bebd62006-03-26 01:39:55 -080045 return sizeof(w) == 4 ? hweight32(w) : hweight64(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080048/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * rol32 - rotate a 32-bit value left
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * @word: value to rotate
51 * @shift: bits to roll
52 */
53static inline __u32 rol32(__u32 word, unsigned int shift)
54{
55 return (word << shift) | (word >> (32 - shift));
56}
57
Robert P. J. Day45f8bde2007-01-26 00:57:09 -080058/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * ror32 - rotate a 32-bit value right
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * @word: value to rotate
61 * @shift: bits to roll
62 */
63static inline __u32 ror32(__u32 word, unsigned int shift)
64{
65 return (word >> shift) | (word << (32 - shift));
66}
67
Andrew Morton962749a2006-03-25 03:08:01 -080068static inline unsigned fls_long(unsigned long l)
69{
70 if (sizeof(l) == 4)
71 return fls(l);
72 return fls64(l);
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif