dea60709db29fe233285e01a1e733739bf98bd5a
[safe/jmp/linux-2.6] / include / asm-i386 / spinlock.h
1 #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>
7 #include <asm/processor.h>
8 #include <linux/compiler.h>
9
10 #ifdef CONFIG_PARAVIRT
11 #include <asm/paravirt.h>
12 #else
13 #define CLI_STRING      "cli"
14 #define STI_STRING      "sti"
15 #endif /* CONFIG_PARAVIRT */
16
17 /*
18  * Your basic SMP spinlocks, allowing only a single CPU anywhere
19  *
20  * Simple spin lock operations.  There are two variants, one clears IRQ's
21  * on the local processor, one does not.
22  *
23  * We make no fairness assumptions. They have a cost.
24  *
25  * (the type definitions are in asm/spinlock_types.h)
26  */
27
28 static inline int __raw_spin_is_locked(raw_spinlock_t *x)
29 {
30         return *(volatile signed char *)(&(x)->slock) <= 0;
31 }
32
33 static inline void __raw_spin_lock(raw_spinlock_t *lock)
34 {
35         asm volatile("\n1:\t"
36                      LOCK_PREFIX " ; decb %0\n\t"
37                      "jns 3f\n"
38                      "2:\t"
39                      "rep;nop\n\t"
40                      "cmpb $0,%0\n\t"
41                      "jle 2b\n\t"
42                      "jmp 1b\n"
43                      "3:\n\t"
44                      : "+m" (lock->slock) : : "memory");
45 }
46
47 /*
48  * It is easier for the lock validator if interrupts are not re-enabled
49  * in the middle of a lock-acquire. This is a performance feature anyway
50  * so we turn it off:
51  *
52  * NOTE: there's an irqs-on section here, which normally would have to be
53  * irq-traced, but on CONFIG_TRACE_IRQFLAGS we never use this variant.
54  */
55 #ifndef CONFIG_PROVE_LOCKING
56 static inline void __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
57 {
58         asm volatile(
59                 "\n1:\t"
60                 LOCK_PREFIX " ; decb %0\n\t"
61                 "jns 5f\n"
62                 "2:\t"
63                 "testl $0x200, %1\n\t"
64                 "jz 4f\n\t"
65                 STI_STRING "\n"
66                 "3:\t"
67                 "rep;nop\n\t"
68                 "cmpb $0, %0\n\t"
69                 "jle 3b\n\t"
70                 CLI_STRING "\n\t"
71                 "jmp 1b\n"
72                 "4:\t"
73                 "rep;nop\n\t"
74                 "cmpb $0, %0\n\t"
75                 "jg 1b\n\t"
76                 "jmp 4b\n"
77                 "5:\n\t"
78                 : "+m" (lock->slock) : "r" (flags) : "memory");
79 }
80 #endif
81
82 static inline int __raw_spin_trylock(raw_spinlock_t *lock)
83 {
84         char oldval;
85         asm volatile(
86                 "xchgb %b0,%1"
87                 :"=q" (oldval), "+m" (lock->slock)
88                 :"0" (0) : "memory");
89         return oldval > 0;
90 }
91
92 /*
93  * __raw_spin_unlock based on writing $1 to the low byte.
94  * This method works. Despite all the confusion.
95  * (except on PPro SMP or if we are using OOSTORE, so we use xchgb there)
96  * (PPro errata 66, 92)
97  */
98
99 #if !defined(CONFIG_X86_OOSTORE) && !defined(CONFIG_X86_PPRO_FENCE)
100
101 static inline void __raw_spin_unlock(raw_spinlock_t *lock)
102 {
103         asm volatile("movb $1,%0" : "+m" (lock->slock) :: "memory");
104 }
105
106 #else
107
108 static inline void __raw_spin_unlock(raw_spinlock_t *lock)
109 {
110         char oldval = 1;
111
112         asm volatile("xchgb %b0, %1"
113                      : "=q" (oldval), "+m" (lock->slock)
114                      : "0" (oldval) : "memory");
115 }
116
117 #endif
118
119 static inline void __raw_spin_unlock_wait(raw_spinlock_t *lock)
120 {
121         while (__raw_spin_is_locked(lock))
122                 cpu_relax();
123 }
124
125 /*
126  * Read-write spinlocks, allowing multiple readers
127  * but only one writer.
128  *
129  * NOTE! it is quite common to have readers in interrupts
130  * but no interrupt writers. For those circumstances we
131  * can "mix" irq-safe locks - any writer needs to get a
132  * irq-safe write-lock, but readers can get non-irqsafe
133  * read-locks.
134  *
135  * On x86, we implement read-write locks as a 32-bit counter
136  * with the high bit (sign) being the "contended" bit.
137  *
138  * The inline assembly is non-obvious. Think about it.
139  *
140  * Changed to use the same technique as rw semaphores.  See
141  * semaphore.h for details.  -ben
142  *
143  * the helpers are in arch/i386/kernel/semaphore.c
144  */
145
146 /**
147  * read_can_lock - would read_trylock() succeed?
148  * @lock: the rwlock in question.
149  */
150 static inline int __raw_read_can_lock(raw_rwlock_t *x)
151 {
152         return (int)(x)->lock > 0;
153 }
154
155 /**
156  * write_can_lock - would write_trylock() succeed?
157  * @lock: the rwlock in question.
158  */
159 static inline int __raw_write_can_lock(raw_rwlock_t *x)
160 {
161         return (x)->lock == RW_LOCK_BIAS;
162 }
163
164 static inline void __raw_read_lock(raw_rwlock_t *rw)
165 {
166         asm volatile(LOCK_PREFIX " subl $1,(%0)\n\t"
167                      "jns 1f\n"
168                      "call __read_lock_failed\n\t"
169                      "1:\n"
170                      ::"a" (rw) : "memory");
171 }
172
173 static inline void __raw_write_lock(raw_rwlock_t *rw)
174 {
175         asm volatile(LOCK_PREFIX " subl $" RW_LOCK_BIAS_STR ",(%0)\n\t"
176                      "jz 1f\n"
177                      "call __write_lock_failed\n\t"
178                      "1:\n"
179                      ::"a" (rw) : "memory");
180 }
181
182 static inline int __raw_read_trylock(raw_rwlock_t *lock)
183 {
184         atomic_t *count = (atomic_t *)lock;
185         atomic_dec(count);
186         if (atomic_read(count) >= 0)
187                 return 1;
188         atomic_inc(count);
189         return 0;
190 }
191
192 static inline int __raw_write_trylock(raw_rwlock_t *lock)
193 {
194         atomic_t *count = (atomic_t *)lock;
195         if (atomic_sub_and_test(RW_LOCK_BIAS, count))
196                 return 1;
197         atomic_add(RW_LOCK_BIAS, count);
198         return 0;
199 }
200
201 static inline void __raw_read_unlock(raw_rwlock_t *rw)
202 {
203         asm volatile(LOCK_PREFIX "incl %0" :"+m" (rw->lock) : : "memory");
204 }
205
206 static inline void __raw_write_unlock(raw_rwlock_t *rw)
207 {
208         asm volatile(LOCK_PREFIX "addl $" RW_LOCK_BIAS_STR ", %0"
209                                  : "+m" (rw->lock) : : "memory");
210 }
211
212 #define _raw_spin_relax(lock)   cpu_relax()
213 #define _raw_read_relax(lock)   cpu_relax()
214 #define _raw_write_relax(lock)  cpu_relax()
215
216 #endif /* __ASM_SPINLOCK_H */