bitops.h 3.7 KB
Newer Older
1 2 3 4 5 6
/*
 * Copyright 2004-2009 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

B
Bryan Wu 已提交
7 8 9
#ifndef _BLACKFIN_BITOPS_H
#define _BLACKFIN_BITOPS_H

10 11 12 13 14 15 16 17
#include <linux/compiler.h>

#include <asm-generic/bitops/__ffs.h>
#include <asm-generic/bitops/ffz.h>
#include <asm-generic/bitops/fls.h>
#include <asm-generic/bitops/__fls.h>
#include <asm-generic/bitops/fls64.h>
#include <asm-generic/bitops/find.h>
B
Bryan Wu 已提交
18

J
Jiri Slaby 已提交
19 20 21 22
#ifndef _LINUX_BITOPS_H
#error only <linux/bitops.h> can be included directly
#endif

B
Bryan Wu 已提交
23
#include <asm-generic/bitops/sched.h>
24
#include <asm-generic/bitops/ffs.h>
M
Mike Frysinger 已提交
25
#include <asm-generic/bitops/const_hweight.h>
26
#include <asm-generic/bitops/lock.h>
M
Mike Frysinger 已提交
27

28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#include <asm-generic/bitops/ext2-non-atomic.h>
#include <asm-generic/bitops/ext2-atomic.h>
#include <asm-generic/bitops/minix.h>

#ifndef CONFIG_SMP
#include <linux/irqflags.h>

/*
 * clear_bit may not imply a memory barrier
 */
#ifndef smp_mb__before_clear_bit
#define smp_mb__before_clear_bit()	smp_mb()
#define smp_mb__after_clear_bit()	smp_mb()
#endif
#include <asm-generic/bitops/atomic.h>
#include <asm-generic/bitops/non-atomic.h>
#else
B
Bryan Wu 已提交
45

46
#include <asm/byteorder.h>	/* swab32 */
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
#include <linux/linkage.h>

asmlinkage int __raw_bit_set_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_clear_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_toggle_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_test_set_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_test_clear_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_test_toggle_asm(volatile unsigned long *addr, int nr);

asmlinkage int __raw_bit_test_asm(const volatile unsigned long *addr, int nr);

static inline void set_bit(int nr, volatile unsigned long *addr)
B
Bryan Wu 已提交
64
{
65 66 67
	volatile unsigned long *a = addr + (nr >> 5);
	__raw_bit_set_asm(a, nr & 0x1f);
}
B
Bryan Wu 已提交
68

69 70 71 72
static inline void clear_bit(int nr, volatile unsigned long *addr)
{
	volatile unsigned long *a = addr + (nr >> 5);
	__raw_bit_clear_asm(a, nr & 0x1f);
B
Bryan Wu 已提交
73 74
}

75
static inline void change_bit(int nr, volatile unsigned long *addr)
B
Bryan Wu 已提交
76
{
77 78 79
	volatile unsigned long *a = addr + (nr >> 5);
	__raw_bit_toggle_asm(a, nr & 0x1f);
}
B
Bryan Wu 已提交
80

81 82 83 84
static inline int test_bit(int nr, const volatile unsigned long *addr)
{
	volatile const unsigned long *a = addr + (nr >> 5);
	return __raw_bit_test_asm(a, nr & 0x1f) != 0;
B
Bryan Wu 已提交
85 86
}

87 88 89 90 91
static inline int test_and_set_bit(int nr, volatile unsigned long *addr)
{
	volatile unsigned long *a = addr + (nr >> 5);
	return __raw_bit_test_set_asm(a, nr & 0x1f);
}
B
Bryan Wu 已提交
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
static inline int test_and_clear_bit(int nr, volatile unsigned long *addr)
{
	volatile unsigned long *a = addr + (nr >> 5);
	return __raw_bit_test_clear_asm(a, nr & 0x1f);
}

static inline int test_and_change_bit(int nr, volatile unsigned long *addr)
{
	volatile unsigned long *a = addr + (nr >> 5);
	return __raw_bit_test_toggle_asm(a, nr & 0x1f);
}

/*
 * clear_bit() doesn't provide any barrier for the compiler.
 */
#define smp_mb__before_clear_bit()	barrier()
#define smp_mb__after_clear_bit()	barrier()

111
#define test_bit __skip_test_bit
112
#include <asm-generic/bitops/non-atomic.h>
113
#undef test_bit
B
Bryan Wu 已提交
114

115
#endif /* CONFIG_SMP */
B
Bryan Wu 已提交
116

117 118 119 120
/*
 * hweightN: returns the hamming weight (i.e. the number
 * of bits set) of a N-bit word
 */
B
Bryan Wu 已提交
121

M
Mike Frysinger 已提交
122
static inline unsigned int __arch_hweight32(unsigned int w)
123 124
{
	unsigned int res;
B
Bryan Wu 已提交
125

126
	__asm__ ("%0.l = ONES %1;"
127 128 129 130
		"%0 = %0.l (Z);"
		: "=d" (res) : "d" (w));
	return res;
}
B
Bryan Wu 已提交
131

M
Mike Frysinger 已提交
132
static inline unsigned int __arch_hweight64(__u64 w)
133
{
M
Mike Frysinger 已提交
134 135
	return __arch_hweight32((unsigned int)(w >> 32)) +
	       __arch_hweight32((unsigned int)w);
136 137
}

M
Mike Frysinger 已提交
138
static inline unsigned int __arch_hweight16(unsigned int w)
139
{
M
Mike Frysinger 已提交
140
	return __arch_hweight32(w & 0xffff);
141 142
}

M
Mike Frysinger 已提交
143
static inline unsigned int __arch_hweight8(unsigned int w)
144
{
M
Mike Frysinger 已提交
145
	return __arch_hweight32(w & 0xff);
146
}
147

B
Bryan Wu 已提交
148
#endif				/* _BLACKFIN_BITOPS_H */