initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / asm-x86_64 / spinlock.h
blob185e087e88ab821acd287082ecd506a4335691e9
1 #ifndef __ASM_SPINLOCK_H
2 #define __ASM_SPINLOCK_H
4 #include <asm/atomic.h>
5 #include <asm/rwlock.h>
6 #include <asm/page.h>
7 #include <linux/config.h>
9 extern int printk(const char * fmt, ...)
10 __attribute__ ((format (printf, 1, 2)));
13 * Your basic SMP spinlocks, allowing only a single CPU anywhere
16 typedef struct {
17 volatile unsigned int lock;
18 #ifdef CONFIG_DEBUG_SPINLOCK
19 unsigned magic;
20 #endif
21 } spinlock_t;
23 #define SPINLOCK_MAGIC 0xdead4ead
25 #ifdef CONFIG_DEBUG_SPINLOCK
26 #define SPINLOCK_MAGIC_INIT , SPINLOCK_MAGIC
27 #else
28 #define SPINLOCK_MAGIC_INIT /* */
29 #endif
31 #define SPIN_LOCK_UNLOCKED (spinlock_t) { 1 SPINLOCK_MAGIC_INIT }
33 #define spin_lock_init(x) do { *(x) = SPIN_LOCK_UNLOCKED; } while(0)
36 * Simple spin lock operations. There are two variants, one clears IRQ's
37 * on the local processor, one does not.
39 * We make no fairness assumptions. They have a cost.
42 #define spin_is_locked(x) (*(volatile signed char *)(&(x)->lock) <= 0)
43 #define spin_unlock_wait(x) do { barrier(); } while(spin_is_locked(x))
44 #define _raw_spin_lock_flags(lock, flags) _raw_spin_lock(lock)
46 #define spin_lock_string \
47 "\n1:\t" \
48 "lock ; decb %0\n\t" \
49 "js 2f\n" \
50 LOCK_SECTION_START("") \
51 "2:\t" \
52 "rep;nop\n\t" \
53 "cmpb $0,%0\n\t" \
54 "jle 2b\n\t" \
55 "jmp 1b\n" \
56 LOCK_SECTION_END
59 * This works. Despite all the confusion.
60 * (except on PPro SMP or if we are using OOSTORE)
61 * (PPro errata 66, 92)
64 #if !defined(CONFIG_X86_OOSTORE) && !defined(CONFIG_X86_PPRO_FENCE)
66 #define spin_unlock_string \
67 "movb $1,%0" \
68 :"=m" (lock->lock) : : "memory"
71 static inline void _raw_spin_unlock(spinlock_t *lock)
73 #ifdef CONFIG_DEBUG_SPINLOCK
74 BUG_ON(lock->magic != SPINLOCK_MAGIC);
75 BUG_ON(!spin_is_locked(lock));
76 #endif
77 __asm__ __volatile__(
78 spin_unlock_string
82 #else
84 #define spin_unlock_string \
85 "xchgb %b0, %1" \
86 :"=q" (oldval), "=m" (lock->lock) \
87 :"0" (oldval) : "memory"
89 static inline void _raw_spin_unlock(spinlock_t *lock)
91 char oldval = 1;
92 #ifdef CONFIG_DEBUG_SPINLOCK
93 BUG_ON(lock->magic != SPINLOCK_MAGIC);
94 BUG_ON(!spin_is_locked(lock));
95 #endif
96 __asm__ __volatile__(
97 spin_unlock_string
101 #endif
103 static inline int _raw_spin_trylock(spinlock_t *lock)
105 char oldval;
106 __asm__ __volatile__(
107 "xchgb %b0,%1"
108 :"=q" (oldval), "=m" (lock->lock)
109 :"0" (0) : "memory");
110 return oldval > 0;
113 static inline void _raw_spin_lock(spinlock_t *lock)
115 #ifdef CONFIG_DEBUG_SPINLOCK
116 if (lock->magic != SPINLOCK_MAGIC) {
117 printk("eip: %p\n", __builtin_return_address(0));
118 BUG();
120 #endif
121 __asm__ __volatile__(
122 spin_lock_string
123 :"=m" (lock->lock) : : "memory");
128 * Read-write spinlocks, allowing multiple readers
129 * but only one writer.
131 * NOTE! it is quite common to have readers in interrupts
132 * but no interrupt writers. For those circumstances we
133 * can "mix" irq-safe locks - any writer needs to get a
134 * irq-safe write-lock, but readers can get non-irqsafe
135 * read-locks.
137 typedef struct {
138 volatile unsigned int lock;
139 #ifdef CONFIG_DEBUG_SPINLOCK
140 unsigned magic;
141 #endif
142 } rwlock_t;
144 #define RWLOCK_MAGIC 0xdeaf1eed
146 #ifdef CONFIG_DEBUG_SPINLOCK
147 #define RWLOCK_MAGIC_INIT , RWLOCK_MAGIC
148 #else
149 #define RWLOCK_MAGIC_INIT /* */
150 #endif
152 #define RW_LOCK_UNLOCKED (rwlock_t) { RW_LOCK_BIAS RWLOCK_MAGIC_INIT }
154 #define rwlock_init(x) do { *(x) = RW_LOCK_UNLOCKED; } while(0)
156 #define rwlock_is_locked(x) ((x)->lock != RW_LOCK_BIAS)
159 * On x86, we implement read-write locks as a 32-bit counter
160 * with the high bit (sign) being the "contended" bit.
162 * The inline assembly is non-obvious. Think about it.
164 * Changed to use the same technique as rw semaphores. See
165 * semaphore.h for details. -ben
167 /* the spinlock helpers are in arch/i386/kernel/semaphore.c */
169 static inline void _raw_read_lock(rwlock_t *rw)
171 #ifdef CONFIG_DEBUG_SPINLOCK
172 BUG_ON(rw->magic != RWLOCK_MAGIC);
173 #endif
174 __build_read_lock(rw, "__read_lock_failed");
177 static inline void _raw_write_lock(rwlock_t *rw)
179 #ifdef CONFIG_DEBUG_SPINLOCK
180 BUG_ON(rw->magic != RWLOCK_MAGIC);
181 #endif
182 __build_write_lock(rw, "__write_lock_failed");
185 #define _raw_read_unlock(rw) asm volatile("lock ; incl %0" :"=m" ((rw)->lock) : : "memory")
186 #define _raw_write_unlock(rw) asm volatile("lock ; addl $" RW_LOCK_BIAS_STR ",%0":"=m" ((rw)->lock) : : "memory")
188 static inline int _raw_write_trylock(rwlock_t *lock)
190 atomic_t *count = (atomic_t *)lock;
191 if (atomic_sub_and_test(RW_LOCK_BIAS, count))
192 return 1;
193 atomic_add(RW_LOCK_BIAS, count);
194 return 0;
197 #endif /* __ASM_SPINLOCK_H */