spinlock.h 4.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 * include/asm-sh/spinlock.h
 *
 * Copyright (C) 2002, 2003 Paul Mundt
5
 * Copyright (C) 2006, 2007 Akio Idehara
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#ifndef __ASM_SH_SPINLOCK_H
#define __ASM_SH_SPINLOCK_H

14 15 16 17 18 19 20
/*
 * The only locking implemented here uses SH-4A opcodes. For others,
 * split this out as per atomic-*.h.
 */
#ifndef CONFIG_CPU_SH4A
#error "Need movli.l/movco.l for spinlocks"
#endif
L
Linus Torvalds 已提交
21 22 23 24 25

/*
 * Your basic SMP spinlocks, allowing only a single CPU anywhere
 */

26
#define __raw_spin_is_locked(x)		((x)->lock <= 0)
I
Ingo Molnar 已提交
27 28
#define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
#define __raw_spin_unlock_wait(x) \
29
	do { cpu_relax(); } while ((x)->lock)
L
Linus Torvalds 已提交
30 31 32 33 34 35 36

/*
 * 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 已提交
37
static inline void __raw_spin_lock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
38
{
39 40 41
	unsigned long tmp;
	unsigned long oldval;

L
Linus Torvalds 已提交
42
	__asm__ __volatile__ (
43 44 45 46 47 48 49 50 51
		"1:						\n\t"
		"movli.l	@%2, %0	! __raw_spin_lock	\n\t"
		"mov		%0, %1				\n\t"
		"mov		#0, %0				\n\t"
		"movco.l	%0, @%2				\n\t"
		"bf		1b				\n\t"
		"cmp/pl		%1				\n\t"
		"bf		1b				\n\t"
		: "=&z" (tmp), "=&r" (oldval)
L
Linus Torvalds 已提交
52 53 54 55 56
		: "r" (&lock->lock)
		: "t", "memory"
	);
}

I
Ingo Molnar 已提交
57
static inline void __raw_spin_unlock(raw_spinlock_t *lock)
L
Linus Torvalds 已提交
58
{
59
	unsigned long tmp;
L
Linus Torvalds 已提交
60

61 62 63 64 65 66 67
	__asm__ __volatile__ (
		"mov		#1, %0 ! __raw_spin_unlock	\n\t"
		"mov.l		%0, @%1				\n\t"
		: "=&z" (tmp)
		: "r" (&lock->lock)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
68 69
}

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
static inline int __raw_spin_trylock(raw_spinlock_t *lock)
{
	unsigned long tmp, oldval;

	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%2, %0	! __raw_spin_trylock	\n\t"
		"mov		%0, %1				\n\t"
		"mov		#0, %0				\n\t"
		"movco.l	%0, @%2				\n\t"
		"bf		1b				\n\t"
		"synco						\n\t"
		: "=&z" (tmp), "=&r" (oldval)
		: "r" (&lock->lock)
		: "t", "memory"
	);

	return oldval;
}
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97

/*
 * 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 已提交
98

99 100 101 102 103 104 105 106 107 108 109 110
/**
 * read_can_lock - would read_trylock() succeed?
 * @lock: the rwlock in question.
 */
#define __raw_read_can_lock(x)	((x)->lock > 0)

/**
 * write_can_lock - would write_trylock() succeed?
 * @lock: the rwlock in question.
 */
#define __raw_write_can_lock(x)	((x)->lock == RW_LOCK_BIAS)

I
Ingo Molnar 已提交
111
static inline void __raw_read_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
112
{
113
	unsigned long tmp;
L
Linus Torvalds 已提交
114

115 116 117 118 119 120 121 122 123 124 125 126
	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%1, %0	! __raw_read_lock	\n\t"
		"cmp/pl		%0				\n\t"
		"bf		1b				\n\t"
		"add		#-1, %0				\n\t"
		"movco.l	%0, @%1				\n\t"
		"bf		1b				\n\t"
		: "=&z" (tmp)
		: "r" (&rw->lock)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
127 128
}

I
Ingo Molnar 已提交
129
static inline void __raw_read_unlock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
130
{
131
	unsigned long tmp;
L
Linus Torvalds 已提交
132

133 134 135 136 137 138 139 140 141 142
	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%1, %0	! __raw_read_unlock	\n\t"
		"add		#1, %0				\n\t"
		"movco.l	%0, @%1				\n\t"
		"bf		1b				\n\t"
		: "=&z" (tmp)
		: "r" (&rw->lock)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
143 144
}

I
Ingo Molnar 已提交
145
static inline void __raw_write_lock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
146
{
147 148 149 150 151 152 153 154 155 156 157 158 159 160
	unsigned long tmp;

	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%1, %0	! __raw_write_lock	\n\t"
		"cmp/hs		%2, %0				\n\t"
		"bf		1b				\n\t"
		"sub		%2, %0				\n\t"
		"movco.l	%0, @%1				\n\t"
		"bf		1b				\n\t"
		: "=&z" (tmp)
		: "r" (&rw->lock), "r" (RW_LOCK_BIAS)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
161 162
}

I
Ingo Molnar 已提交
163
static inline void __raw_write_unlock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
164
{
165 166 167 168 169 170
	__asm__ __volatile__ (
		"mov.l		%1, @%0 ! __raw_write_unlock	\n\t"
		:
		: "r" (&rw->lock), "r" (RW_LOCK_BIAS)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
171 172
}

173
static inline int __raw_read_trylock(raw_rwlock_t *rw)
E
Evgeniy Polyakov 已提交
174
{
175
	unsigned long tmp, oldval;
E
Evgeniy Polyakov 已提交
176

177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%2, %0	! __raw_read_trylock	\n\t"
		"mov		%0, %1				\n\t"
		"cmp/pl		%0				\n\t"
		"bf		2f				\n\t"
		"add		#-1, %0				\n\t"
		"movco.l	%0, @%2				\n\t"
		"bf		1b				\n\t"
		"2:						\n\t"
		"synco						\n\t"
		: "=&z" (tmp), "=&r" (oldval)
		: "r" (&rw->lock)
		: "t", "memory"
	);

	return (oldval > 0);
P
Paul Mundt 已提交
194
}
L
Linus Torvalds 已提交
195

I
Ingo Molnar 已提交
196
static inline int __raw_write_trylock(raw_rwlock_t *rw)
L
Linus Torvalds 已提交
197
{
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
	unsigned long tmp, oldval;

	__asm__ __volatile__ (
		"1:						\n\t"
		"movli.l	@%2, %0	! __raw_write_trylock	\n\t"
		"mov		%0, %1				\n\t"
		"cmp/hs		%3, %0				\n\t"
		"bf		2f				\n\t"
		"sub		%3, %0				\n\t"
		"2:						\n\t"
		"movco.l	%0, @%2				\n\t"
		"bf		1b				\n\t"
		"synco						\n\t"
		: "=&z" (tmp), "=&r" (oldval)
		: "r" (&rw->lock), "r" (RW_LOCK_BIAS)
		: "t", "memory"
	);
L
Linus Torvalds 已提交
215

216
	return (oldval > (RW_LOCK_BIAS - 1));
L
Linus Torvalds 已提交
217 218
}

219 220 221
#define __raw_read_lock_flags(lock, flags) __raw_read_lock(lock)
#define __raw_write_lock_flags(lock, flags) __raw_write_lock(lock)

222 223 224 225
#define _raw_spin_relax(lock)	cpu_relax()
#define _raw_read_relax(lock)	cpu_relax()
#define _raw_write_relax(lock)	cpu_relax()

L
Linus Torvalds 已提交
226
#endif /* __ASM_SH_SPINLOCK_H */