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

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

/*
 * Your basic SMP spinlocks, allowing only a single CPU anywhere
I
Ingo Molnar 已提交
12
 *
L
Linus Torvalds 已提交
13 14 15 16
 * 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 已提交
17 18
 *
 * (the type definitions are in asm/spinlock_types.h)
L
Linus Torvalds 已提交
19 20
 */

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

I
Ingo Molnar 已提交
24
#define __raw_spin_lock_string \
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32 33 34
	"\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 已提交
35
#define __raw_spin_lock_string_flags \
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
	"\n1:\t" \
	"lock ; decb %0\n\t" \
	"jns 4f\n\t" \
	"2:\t" \
	"testl $0x200, %1\n\t" \
	"jz 3f\n\t" \
	"sti\n\t" \
	"3:\t" \
	"rep;nop\n\t" \
	"cmpb $0, %0\n\t" \
	"jle 3b\n\t" \
	"cli\n\t" \
	"jmp 1b\n" \
	"4:\n\t"

G
Gerd Hoffmann 已提交
51 52 53
#define __raw_spin_lock_string_up \
	"\n\tdecb %0"

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

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

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 已提交
80
/*
I
Ingo Molnar 已提交
81 82 83
 * __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 已提交
84 85 86 87 88
 * (PPro errata 66, 92)
 */

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

I
Ingo Molnar 已提交
89
#define __raw_spin_unlock_string \
L
Linus Torvalds 已提交
90 91 92 93
	"movb $1,%0" \
		:"=m" (lock->slock) : : "memory"


I
Ingo Molnar 已提交
94
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
95 96
{
	__asm__ __volatile__(
I
Ingo Molnar 已提交
97
		__raw_spin_unlock_string
L
Linus Torvalds 已提交
98 99 100 101 102
	);
}

#else

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

I
Ingo Molnar 已提交
108
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
109 110 111 112
{
	char oldval = 1;

	__asm__ __volatile__(
I
Ingo Molnar 已提交
113 114
		__raw_spin_unlock_string
	);
L
Linus Torvalds 已提交
115 116 117 118
}

#endif

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

/*
 * 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 已提交
131 132 133 134 135 136 137 138 139 140
 *
 * 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 已提交
141 142 143 144 145 146
 */

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

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

I
Ingo Molnar 已提交
155
static inline void __raw_read_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
156 157 158 159
{
	__build_read_lock(rw, "__read_lock_failed");
}

I
Ingo Molnar 已提交
160
static inline void __raw_write_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
161 162 163 164
{
	__build_write_lock(rw, "__write_lock_failed");
}

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

I
Ingo Molnar 已提交
175
static inline int __raw_write_trylock(raw_rwlock_t *lock)
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183
{
	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 已提交
184 185
static inline void __raw_read_unlock(raw_rwlock_t *rw)
{
G
Gerd Hoffmann 已提交
186
	asm volatile(LOCK_PREFIX "incl %0" :"=m" (rw->lock) : : "memory");
I
Ingo Molnar 已提交
187 188 189 190
}

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

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