1 #ifndef __ASM_SPINLOCK_H
2 #define __ASM_SPINLOCK_H
4 #include <asm/atomic.h>
5 #include <asm/rwlock.h>
7 #include <linux/config.h>
8 #include <linux/compiler.h>
11 * Your basic SMP spinlocks, allowing only a single CPU anywhere
13 * Simple spin lock operations. There are two variants, one clears IRQ's
14 * on the local processor, one does not.
16 * We make no fairness assumptions. They have a cost.
18 * (the type definitions are in asm/spinlock_types.h)
21 #define __raw_spin_is_locked(x) \
22 (*(volatile signed char *)(&(x)->slock) <= 0)
24 #define __raw_spin_lock_string \
26 "lock ; decb %0\n\t" \
35 #define __raw_spin_lock_string_flags \
37 "lock ; decb %0\n\t" \
40 "testl $0x200, %1\n\t" \
51 static inline void __raw_spin_lock(raw_spinlock_t
*lock
)
54 __raw_spin_lock_string
55 :"=m" (lock
->slock
) : : "memory");
58 static inline void __raw_spin_lock_flags(raw_spinlock_t
*lock
, unsigned long flags
)
61 __raw_spin_lock_string_flags
62 :"=m" (lock
->slock
) : "r" (flags
) : "memory");
65 static inline int __raw_spin_trylock(raw_spinlock_t
*lock
)
70 :"=q" (oldval
), "=m" (lock
->slock
)
76 * __raw_spin_unlock based on writing $1 to the low byte.
77 * This method works. Despite all the confusion.
78 * (except on PPro SMP or if we are using OOSTORE, so we use xchgb there)
79 * (PPro errata 66, 92)
82 #if !defined(CONFIG_X86_OOSTORE) && !defined(CONFIG_X86_PPRO_FENCE)
84 #define __raw_spin_unlock_string \
86 :"=m" (lock->slock) : : "memory"
89 static inline void __raw_spin_unlock(raw_spinlock_t
*lock
)
92 __raw_spin_unlock_string
98 #define __raw_spin_unlock_string \
100 :"=q" (oldval), "=m" (lock->slock) \
101 :"0" (oldval) : "memory"
103 static inline void __raw_spin_unlock(raw_spinlock_t
*lock
)
107 __asm__
__volatile__(
108 __raw_spin_unlock_string
114 #define __raw_spin_unlock_wait(lock) \
115 do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while (0)
118 * Read-write spinlocks, allowing multiple readers
119 * but only one writer.
121 * NOTE! it is quite common to have readers in interrupts
122 * but no interrupt writers. For those circumstances we
123 * can "mix" irq-safe locks - any writer needs to get a
124 * irq-safe write-lock, but readers can get non-irqsafe
127 * On x86, we implement read-write locks as a 32-bit counter
128 * with the high bit (sign) being the "contended" bit.
130 * The inline assembly is non-obvious. Think about it.
132 * Changed to use the same technique as rw semaphores. See
133 * semaphore.h for details. -ben
135 * the helpers are in arch/i386/kernel/semaphore.c
139 * read_can_lock - would read_trylock() succeed?
140 * @lock: the rwlock in question.
142 #define __raw_read_can_lock(x) ((int)(x)->lock > 0)
145 * write_can_lock - would write_trylock() succeed?
146 * @lock: the rwlock in question.
148 #define __raw_write_can_lock(x) ((x)->lock == RW_LOCK_BIAS)
150 static inline void __raw_read_lock(raw_rwlock_t
*rw
)
152 __build_read_lock(rw
, "__read_lock_failed");
155 static inline void __raw_write_lock(raw_rwlock_t
*rw
)
157 __build_write_lock(rw
, "__write_lock_failed");
160 static inline int __raw_read_trylock(raw_rwlock_t
*lock
)
162 atomic_t
*count
= (atomic_t
*)lock
;
164 if (atomic_read(count
) >= 0)
170 static inline int __raw_write_trylock(raw_rwlock_t
*lock
)
172 atomic_t
*count
= (atomic_t
*)lock
;
173 if (atomic_sub_and_test(RW_LOCK_BIAS
, count
))
175 atomic_add(RW_LOCK_BIAS
, count
);
179 static inline void __raw_read_unlock(raw_rwlock_t
*rw
)
181 asm volatile("lock ; incl %0" :"=m" (rw
->lock
) : : "memory");
184 static inline void __raw_write_unlock(raw_rwlock_t
*rw
)
186 asm volatile("lock ; addl $" RW_LOCK_BIAS_STR
", %0"
187 : "=m" (rw
->lock
) : : "memory");
190 #endif /* __ASM_SPINLOCK_H */