spinlock.h 4.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
#ifndef __ASM_SPINLOCK_H
#define __ASM_SPINLOCK_H

#if __LINUX_ARM_ARCH__ < 6
#error SMP not supported on pre-ARMv6 CPUs
#endif

/*
 * ARMv6 Spin-locking.
 *
11 12 13 14
 * We exclusively read the old value.  If it is zero, we may have
 * won the lock, so we try exclusively storing it.  A memory barrier
 * is required after we get a lock, and before we release it, because
 * V6 CPUs are assumed to have weakly ordered memory.
L
Linus Torvalds 已提交
15 16 17 18 19
 *
 * Unlocked value: 0
 * Locked value: 1
 */

I
Ingo Molnar 已提交
20 21 22
#define __raw_spin_is_locked(x)		((x)->lock != 0)
#define __raw_spin_unlock_wait(lock) \
	do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while (0)
L
Linus Torvalds 已提交
23

I
Ingo Molnar 已提交
24
#define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
L
Linus Torvalds 已提交
25

I
Ingo Molnar 已提交
26
static inline void __raw_spin_lock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
27 28 29 30 31 32
{
	unsigned long tmp;

	__asm__ __volatile__(
"1:	ldrex	%0, [%1]\n"
"	teq	%0, #0\n"
33 34 35
#ifdef CONFIG_CPU_32v6K
"	wfene\n"
#endif
L
Linus Torvalds 已提交
36 37 38 39 40
"	strexeq	%0, %2, [%1]\n"
"	teqeq	%0, #0\n"
"	bne	1b"
	: "=&r" (tmp)
	: "r" (&lock->lock), "r" (1)
41 42 43
	: "cc");

	smp_mb();
L
Linus Torvalds 已提交
44 45
}

I
Ingo Molnar 已提交
46
static inline int __raw_spin_trylock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55
{
	unsigned long tmp;

	__asm__ __volatile__(
"	ldrex	%0, [%1]\n"
"	teq	%0, #0\n"
"	strexeq	%0, %2, [%1]"
	: "=&r" (tmp)
	: "r" (&lock->lock), "r" (1)
56 57 58 59 60 61 62 63
	: "cc");

	if (tmp == 0) {
		smp_mb();
		return 1;
	} else {
		return 0;
	}
L
Linus Torvalds 已提交
64 65
}

I
Ingo Molnar 已提交
66
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
67
{
68 69
	smp_mb();

L
Linus Torvalds 已提交
70
	__asm__ __volatile__(
71 72 73 74 75
"	str	%1, [%0]\n"
#ifdef CONFIG_CPU_32v6K
"	mcr	p15, 0, %1, c7, c10, 4\n" /* DSB */
"	sev"
#endif
L
Linus Torvalds 已提交
76 77
	:
	: "r" (&lock->lock), "r" (0)
78
	: "cc");
L
Linus Torvalds 已提交
79 80 81 82
}

/*
 * RWLOCKS
I
Ingo Molnar 已提交
83 84
 *
 *
L
Linus Torvalds 已提交
85 86 87
 * Write locks are easy - we just set bit 31.  When unlocking, we can
 * just write zero since the lock is exclusively held.
 */
I
Ingo Molnar 已提交
88

89
static inline void __raw_write_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
90 91 92 93 94 95
{
	unsigned long tmp;

	__asm__ __volatile__(
"1:	ldrex	%0, [%1]\n"
"	teq	%0, #0\n"
96 97 98
#ifdef CONFIG_CPU_32v6K
"	wfene\n"
#endif
L
Linus Torvalds 已提交
99 100 101 102 103
"	strexeq	%0, %2, [%1]\n"
"	teq	%0, #0\n"
"	bne	1b"
	: "=&r" (tmp)
	: "r" (&rw->lock), "r" (0x80000000)
104 105 106
	: "cc");

	smp_mb();
L
Linus Torvalds 已提交
107 108
}

109
static inline int __raw_write_trylock(raw_rwlock_t *rw)
110 111 112 113 114 115 116 117 118
{
	unsigned long tmp;

	__asm__ __volatile__(
"1:	ldrex	%0, [%1]\n"
"	teq	%0, #0\n"
"	strexeq	%0, %2, [%1]"
	: "=&r" (tmp)
	: "r" (&rw->lock), "r" (0x80000000)
119 120 121 122 123 124 125 126
	: "cc");

	if (tmp == 0) {
		smp_mb();
		return 1;
	} else {
		return 0;
	}
127 128
}

I
Ingo Molnar 已提交
129
static inline void __raw_write_unlock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
130
{
131 132
	smp_mb();

L
Linus Torvalds 已提交
133
	__asm__ __volatile__(
134 135 136 137 138
	"str	%1, [%0]\n"
#ifdef CONFIG_CPU_32v6K
"	mcr	p15, 0, %1, c7, c10, 4\n" /* DSB */
"	sev\n"
#endif
L
Linus Torvalds 已提交
139 140
	:
	: "r" (&rw->lock), "r" (0)
141
	: "cc");
L
Linus Torvalds 已提交
142 143
}

144
/* write_can_lock - would write_trylock() succeed? */
145
#define __raw_write_can_lock(x)		((x)->lock == 0)
146

L
Linus Torvalds 已提交
147 148 149 150 151 152 153 154 155 156 157 158
/*
 * Read locks are a bit more hairy:
 *  - Exclusively load the lock value.
 *  - Increment it.
 *  - Store new lock value if positive, and we still own this location.
 *    If the value is negative, we've already failed.
 *  - If we failed to store the value, we want a negative result.
 *  - If we failed, try again.
 * Unlocking is similarly hairy.  We may have multiple read locks
 * currently active.  However, we know we won't have any write
 * locks.
 */
I
Ingo Molnar 已提交
159
static inline void __raw_read_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
160 161 162 163 164 165 166
{
	unsigned long tmp, tmp2;

	__asm__ __volatile__(
"1:	ldrex	%0, [%2]\n"
"	adds	%0, %0, #1\n"
"	strexpl	%1, %0, [%2]\n"
167 168 169
#ifdef CONFIG_CPU_32v6K
"	wfemi\n"
#endif
L
Linus Torvalds 已提交
170 171 172 173
"	rsbpls	%0, %1, #0\n"
"	bmi	1b"
	: "=&r" (tmp), "=&r" (tmp2)
	: "r" (&rw->lock)
174 175 176
	: "cc");

	smp_mb();
L
Linus Torvalds 已提交
177 178
}

179
static inline void __raw_read_unlock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
180
{
181 182
	unsigned long tmp, tmp2;

183 184
	smp_mb();

L
Linus Torvalds 已提交
185 186 187 188 189 190
	__asm__ __volatile__(
"1:	ldrex	%0, [%2]\n"
"	sub	%0, %0, #1\n"
"	strex	%1, %0, [%2]\n"
"	teq	%1, #0\n"
"	bne	1b"
191 192 193 194 195
#ifdef CONFIG_CPU_32v6K
"\n	cmp	%0, #0\n"
"	mcreq   p15, 0, %0, c7, c10, 4\n"
"	seveq"
#endif
L
Linus Torvalds 已提交
196 197
	: "=&r" (tmp), "=&r" (tmp2)
	: "r" (&rw->lock)
198
	: "cc");
L
Linus Torvalds 已提交
199 200
}

201 202
static inline int __raw_read_trylock(raw_rwlock_t *rw)
{
203
	unsigned long tmp, tmp2 = 1;
204 205 206 207 208 209 210 211 212 213 214 215

	__asm__ __volatile__(
"1:	ldrex	%0, [%2]\n"
"	adds	%0, %0, #1\n"
"	strexpl	%1, %0, [%2]\n"
	: "=&r" (tmp), "+r" (tmp2)
	: "r" (&rw->lock)
	: "cc");

	smp_mb();
	return tmp2 == 0;
}
L
Linus Torvalds 已提交
216

217 218 219
/* read_can_lock - would read_trylock() succeed? */
#define __raw_read_can_lock(x)		((x)->lock < 0x80000000)

220 221 222 223
#define _raw_spin_relax(lock)	cpu_relax()
#define _raw_read_relax(lock)	cpu_relax()
#define _raw_write_relax(lock)	cpu_relax()

L
Linus Torvalds 已提交
224
#endif /* __ASM_SPINLOCK_H */