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
#define rwlock_is_locked(x)	(*((volatile unsigned int *)(x)) != 0)

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

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

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

110
static inline int __raw_write_trylock(raw_rwlock_t *rw)
111 112 113 114 115 116 117 118 119
{
	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)
120 121 122 123 124 125 126 127
	: "cc");

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

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

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

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

L
Linus Torvalds 已提交
148 149 150 151 152 153 154 155 156 157 158 159
/*
 * 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 已提交
160
static inline void __raw_read_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
161 162 163 164 165 166 167
{
	unsigned long tmp, tmp2;

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

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

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

184 185
	smp_mb();

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

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

	__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 已提交
217

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

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