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

#include <asm/atomic.h>
#include <asm/rwlock.h>
#include <asm/page.h>
#include <linux/compiler.h>

/*
 * Your basic SMP spinlocks, allowing only a single CPU anywhere
I
Ingo Molnar 已提交
11
 *
L
Linus Torvalds 已提交
12 13 14 15
 * Simple spin lock operations.  There are two variants, one clears IRQ's
 * on the local processor, one does not.
 *
 * We make no fairness assumptions. They have a cost.
I
Ingo Molnar 已提交
16 17
 *
 * (the type definitions are in asm/spinlock_types.h)
L
Linus Torvalds 已提交
18 19
 */

I
Ingo Molnar 已提交
20 21
#define __raw_spin_is_locked(x) \
		(*(volatile signed char *)(&(x)->slock) <= 0)
L
Linus Torvalds 已提交
22

I
Ingo Molnar 已提交
23
#define __raw_spin_lock_string \
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33
	"\n1:\t" \
	"lock ; decb %0\n\t" \
	"jns 3f\n" \
	"2:\t" \
	"rep;nop\n\t" \
	"cmpb $0,%0\n\t" \
	"jle 2b\n\t" \
	"jmp 1b\n" \
	"3:\n\t"

I
Ingo Molnar 已提交
34
#define __raw_spin_lock_string_flags \
L
Linus Torvalds 已提交
35 36
	"\n1:\t" \
	"lock ; decb %0\n\t" \
37
	"jns 5f\n" \
L
Linus Torvalds 已提交
38 39
	"2:\t" \
	"testl $0x200, %1\n\t" \
40 41
	"jz 4f\n\t" \
	"sti\n" \
L
Linus Torvalds 已提交
42 43 44 45 46 47
	"3:\t" \
	"rep;nop\n\t" \
	"cmpb $0, %0\n\t" \
	"jle 3b\n\t" \
	"cli\n\t" \
	"jmp 1b\n" \
48 49 50 51 52 53
	"4:\t" \
	"rep;nop\n\t" \
	"cmpb $0, %0\n\t" \
	"jg 1b\n\t" \
	"jmp 4b\n" \
	"5:\n\t"
L
Linus Torvalds 已提交
54

G
Gerd Hoffmann 已提交
55 56 57
#define __raw_spin_lock_string_up \
	"\n\tdecb %0"

I
Ingo Molnar 已提交
58 59
static inline void __raw_spin_lock(raw_spinlock_t *lock)
{
G
Gerd Hoffmann 已提交
60 61 62 63
	alternative_smp(
		__raw_spin_lock_string,
		__raw_spin_lock_string_up,
		"=m" (lock->slock) : : "memory");
I
Ingo Molnar 已提交
64 65 66 67
}

static inline void __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
{
G
Gerd Hoffmann 已提交
68 69 70 71
	alternative_smp(
		__raw_spin_lock_string_flags,
		__raw_spin_lock_string_up,
		"=m" (lock->slock) : "r" (flags) : "memory");
I
Ingo Molnar 已提交
72 73 74 75 76 77 78 79 80 81 82 83
}

static inline int __raw_spin_trylock(raw_spinlock_t *lock)
{
	char oldval;
	__asm__ __volatile__(
		"xchgb %b0,%1"
		:"=q" (oldval), "=m" (lock->slock)
		:"0" (0) : "memory");
	return oldval > 0;
}

L
Linus Torvalds 已提交
84
/*
I
Ingo Molnar 已提交
85 86 87
 * __raw_spin_unlock based on writing $1 to the low byte.
 * This method works. Despite all the confusion.
 * (except on PPro SMP or if we are using OOSTORE, so we use xchgb there)
L
Linus Torvalds 已提交
88 89 90 91 92
 * (PPro errata 66, 92)
 */

#if !defined(CONFIG_X86_OOSTORE) && !defined(CONFIG_X86_PPRO_FENCE)

I
Ingo Molnar 已提交
93
#define __raw_spin_unlock_string \
L
Linus Torvalds 已提交
94 95 96 97
	"movb $1,%0" \
		:"=m" (lock->slock) : : "memory"


I
Ingo Molnar 已提交
98
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
99 100
{
	__asm__ __volatile__(
I
Ingo Molnar 已提交
101
		__raw_spin_unlock_string
L
Linus Torvalds 已提交
102 103 104 105 106
	);
}

#else

I
Ingo Molnar 已提交
107
#define __raw_spin_unlock_string \
L
Linus Torvalds 已提交
108 109 110 111
	"xchgb %b0, %1" \
		:"=q" (oldval), "=m" (lock->slock) \
		:"0" (oldval) : "memory"

I
Ingo Molnar 已提交
112
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
113 114 115 116
{
	char oldval = 1;

	__asm__ __volatile__(
I
Ingo Molnar 已提交
117 118
		__raw_spin_unlock_string
	);
L
Linus Torvalds 已提交
119 120 121 122
}

#endif

I
Ingo Molnar 已提交
123 124
#define __raw_spin_unlock_wait(lock) \
	do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while (0)
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132 133 134

/*
 * Read-write spinlocks, allowing multiple readers
 * but only one writer.
 *
 * NOTE! it is quite common to have readers in interrupts
 * but no interrupt writers. For those circumstances we
 * can "mix" irq-safe locks - any writer needs to get a
 * irq-safe write-lock, but readers can get non-irqsafe
 * read-locks.
I
Ingo Molnar 已提交
135 136 137 138 139 140 141 142 143 144
 *
 * On x86, we implement read-write locks as a 32-bit counter
 * with the high bit (sign) being the "contended" bit.
 *
 * The inline assembly is non-obvious. Think about it.
 *
 * Changed to use the same technique as rw semaphores.  See
 * semaphore.h for details.  -ben
 *
 * the helpers are in arch/i386/kernel/semaphore.c
L
Linus Torvalds 已提交
145 146 147 148 149 150
 */

/**
 * read_can_lock - would read_trylock() succeed?
 * @lock: the rwlock in question.
 */
I
Ingo Molnar 已提交
151
#define __raw_read_can_lock(x)		((int)(x)->lock > 0)
L
Linus Torvalds 已提交
152 153 154 155 156

/**
 * write_can_lock - would write_trylock() succeed?
 * @lock: the rwlock in question.
 */
I
Ingo Molnar 已提交
157
#define __raw_write_can_lock(x)		((x)->lock == RW_LOCK_BIAS)
L
Linus Torvalds 已提交
158

I
Ingo Molnar 已提交
159
static inline void __raw_read_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
160 161 162 163
{
	__build_read_lock(rw, "__read_lock_failed");
}

I
Ingo Molnar 已提交
164
static inline void __raw_write_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
165 166 167 168
{
	__build_write_lock(rw, "__write_lock_failed");
}

I
Ingo Molnar 已提交
169
static inline int __raw_read_trylock(raw_rwlock_t *lock)
L
Linus Torvalds 已提交
170 171 172 173 174 175 176 177 178
{
	atomic_t *count = (atomic_t *)lock;
	atomic_dec(count);
	if (atomic_read(count) >= 0)
		return 1;
	atomic_inc(count);
	return 0;
}

I
Ingo Molnar 已提交
179
static inline int __raw_write_trylock(raw_rwlock_t *lock)
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187
{
	atomic_t *count = (atomic_t *)lock;
	if (atomic_sub_and_test(RW_LOCK_BIAS, count))
		return 1;
	atomic_add(RW_LOCK_BIAS, count);
	return 0;
}

I
Ingo Molnar 已提交
188 189
static inline void __raw_read_unlock(raw_rwlock_t *rw)
{
G
Gerd Hoffmann 已提交
190
	asm volatile(LOCK_PREFIX "incl %0" :"=m" (rw->lock) : : "memory");
I
Ingo Molnar 已提交
191 192 193 194
}

static inline void __raw_write_unlock(raw_rwlock_t *rw)
{
G
Gerd Hoffmann 已提交
195
	asm volatile(LOCK_PREFIX "addl $" RW_LOCK_BIAS_STR ", %0"
I
Ingo Molnar 已提交
196 197 198
				 : "=m" (rw->lock) : : "memory");
}

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