blob: 7e29b51bcaa0393355bcac586e888b55509c37e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SPINLOCK_H
2#define __ASM_SPINLOCK_H
3
4#include <asm/atomic.h>
5#include <asm/rwlock.h>
6#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/compiler.h>
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009/*
10 * Your basic SMP spinlocks, allowing only a single CPU anywhere
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Simple spin lock operations. There are two variants, one clears IRQ's
13 * on the local processor, one does not.
14 *
15 * We make no fairness assumptions. They have a cost.
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070016 *
17 * (the type definitions are in asm/spinlock_types.h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070020#define __raw_spin_is_locked(x) \
21 (*(volatile signed char *)(&(x)->slock) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070023#define __raw_spin_lock_string \
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 "\n1:\t" \
25 "lock ; decb %0\n\t" \
26 "jns 3f\n" \
27 "2:\t" \
28 "rep;nop\n\t" \
29 "cmpb $0,%0\n\t" \
30 "jle 2b\n\t" \
31 "jmp 1b\n" \
32 "3:\n\t"
33
Ingo Molnar55f327f2006-07-03 00:24:43 -070034/*
35 * NOTE: there's an irqs-on section here, which normally would have to be
36 * irq-traced, but on CONFIG_TRACE_IRQFLAGS we never use
37 * __raw_spin_lock_string_flags().
38 */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070039#define __raw_spin_lock_string_flags \
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 "\n1:\t" \
41 "lock ; decb %0\n\t" \
Chuck Ebbert42c059e02006-03-23 02:59:55 -080042 "jns 5f\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 "2:\t" \
44 "testl $0x200, %1\n\t" \
Chuck Ebbert42c059e02006-03-23 02:59:55 -080045 "jz 4f\n\t" \
46 "sti\n" \
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 "3:\t" \
48 "rep;nop\n\t" \
49 "cmpb $0, %0\n\t" \
50 "jle 3b\n\t" \
51 "cli\n\t" \
52 "jmp 1b\n" \
Chuck Ebbert42c059e02006-03-23 02:59:55 -080053 "4:\t" \
54 "rep;nop\n\t" \
55 "cmpb $0, %0\n\t" \
56 "jg 1b\n\t" \
57 "jmp 4b\n" \
58 "5:\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080060#define __raw_spin_lock_string_up \
61 "\n\tdecb %0"
62
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070063static inline void __raw_spin_lock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080065 alternative_smp(
66 __raw_spin_lock_string,
67 __raw_spin_lock_string_up,
68 "=m" (lock->slock) : : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070071static inline void __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -080073 alternative_smp(
74 __raw_spin_lock_string_flags,
75 __raw_spin_lock_string_up,
76 "=m" (lock->slock) : "r" (flags) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070079static inline int __raw_spin_trylock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 char oldval;
82 __asm__ __volatile__(
83 "xchgb %b0,%1"
84 :"=q" (oldval), "=m" (lock->slock)
85 :"0" (0) : "memory");
86 return oldval > 0;
87}
88
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070089/*
90 * __raw_spin_unlock based on writing $1 to the low byte.
91 * This method works. Despite all the confusion.
92 * (except on PPro SMP or if we are using OOSTORE, so we use xchgb there)
93 * (PPro errata 66, 92)
94 */
95
96#if !defined(CONFIG_X86_OOSTORE) && !defined(CONFIG_X86_PPRO_FENCE)
97
98#define __raw_spin_unlock_string \
99 "movb $1,%0" \
100 :"=m" (lock->slock) : : "memory"
101
102
103static inline void __raw_spin_unlock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 __asm__ __volatile__(
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700106 __raw_spin_unlock_string
107 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700110#else
111
112#define __raw_spin_unlock_string \
113 "xchgb %b0, %1" \
114 :"=q" (oldval), "=m" (lock->slock) \
115 :"0" (oldval) : "memory"
116
117static inline void __raw_spin_unlock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700119 char oldval = 1;
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 __asm__ __volatile__(
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700122 __raw_spin_unlock_string
123 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700126#endif
127
128#define __raw_spin_unlock_wait(lock) \
129 do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while (0)
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/*
132 * Read-write spinlocks, allowing multiple readers
133 * but only one writer.
134 *
135 * NOTE! it is quite common to have readers in interrupts
136 * but no interrupt writers. For those circumstances we
137 * can "mix" irq-safe locks - any writer needs to get a
138 * irq-safe write-lock, but readers can get non-irqsafe
139 * read-locks.
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700140 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * On x86, we implement read-write locks as a 32-bit counter
142 * with the high bit (sign) being the "contended" bit.
143 *
144 * The inline assembly is non-obvious. Think about it.
145 *
146 * Changed to use the same technique as rw semaphores. See
147 * semaphore.h for details. -ben
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700148 *
149 * the helpers are in arch/i386/kernel/semaphore.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700152/**
153 * read_can_lock - would read_trylock() succeed?
154 * @lock: the rwlock in question.
155 */
156#define __raw_read_can_lock(x) ((int)(x)->lock > 0)
157
158/**
159 * write_can_lock - would write_trylock() succeed?
160 * @lock: the rwlock in question.
161 */
162#define __raw_write_can_lock(x) ((x)->lock == RW_LOCK_BIAS)
163
164static inline void __raw_read_lock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 __build_read_lock(rw, "__read_lock_failed");
167}
168
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700169static inline void __raw_write_lock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 __build_write_lock(rw, "__write_lock_failed");
172}
173
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700174static inline int __raw_read_trylock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 atomic_t *count = (atomic_t *)lock;
177 atomic_dec(count);
178 if (atomic_read(count) >= 0)
179 return 1;
180 atomic_inc(count);
181 return 0;
182}
183
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700184static inline int __raw_write_trylock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 atomic_t *count = (atomic_t *)lock;
187 if (atomic_sub_and_test(RW_LOCK_BIAS, count))
188 return 1;
189 atomic_add(RW_LOCK_BIAS, count);
190 return 0;
191}
192
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700193static inline void __raw_read_unlock(raw_rwlock_t *rw)
194{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800195 asm volatile(LOCK_PREFIX "incl %0" :"=m" (rw->lock) : : "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700196}
197
198static inline void __raw_write_unlock(raw_rwlock_t *rw)
199{
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -0800200 asm volatile(LOCK_PREFIX "addl $" RW_LOCK_BIAS_STR ", %0"
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700201 : "=m" (rw->lock) : : "memory");
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif /* __ASM_SPINLOCK_H */