summaryrefslogtreecommitdiff
path: root/arch/metag/include/asm/bitops.h
blob: 2671134ee74593bc89eceafaa15ae8b5f4bff12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#ifndef __ASM_METAG_BITOPS_H
#define __ASM_METAG_BITOPS_H

#include <linux/compiler.h>
#include <asm/barrier.h>
#include <asm/global_lock.h>

#ifdef CONFIG_SMP
/*
 * These functions are the basis of our bit ops.
 */
static inline void set_bit(unsigned int bit, volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	fence();
	*p |= mask;
	__global_unlock1(flags);
}

static inline void clear_bit(unsigned int bit, volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	fence();
	*p &= ~mask;
	__global_unlock1(flags);
}

static inline void change_bit(unsigned int bit, volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	fence();
	*p ^= mask;
	__global_unlock1(flags);
}

static inline int test_and_set_bit(unsigned int bit, volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long old;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	old = *p;
	if (!(old & mask)) {
		fence();
		*p = old | mask;
	}
	__global_unlock1(flags);

	return (old & mask) != 0;
}

static inline int test_and_clear_bit(unsigned int bit,
				     volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long old;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	old = *p;
	if (old & mask) {
		fence();
		*p = old & ~mask;
	}
	__global_unlock1(flags);

	return (old & mask) != 0;
}

static inline int test_and_change_bit(unsigned int bit,
				      volatile unsigned long *p)
{
	unsigned long flags;
	unsigned long old;
	unsigned long mask = 1UL << (bit & 31);

	p += bit >> 5;

	__global_lock1(flags);
	fence();
	old = *p;
	*p = old ^ mask;
	__global_unlock1(flags);

	return (old & mask) != 0;
}

#else
#include <asm-generic/bitops/atomic.h>
#endif /* CONFIG_SMP */

#include <asm-generic/bitops/non-atomic.h>
#include <asm-generic/bitops/find.h>
#include <asm-generic/bitops/ffs.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/hweight.h>
#include <asm-generic/bitops/lock.h>
#include <asm-generic/bitops/sched.h>
#include <asm-generic/bitops/le.h>
#include <asm-generic/bitops/ext2-atomic.h>

#endif /* __ASM_METAG_BITOPS_H */