blob: 21e89bf92f1c8cd547b697fcc37021388d8115e2 [file] [log] [blame]
Glauber de Oliveira Costa2fed0c52008-01-30 13:30:33 +01001#ifndef _X86_SPINLOCK_H_
2#define _X86_SPINLOCK_H_
3
Thomas Gleixner1075cf72008-01-30 13:30:34 +01004#include <asm/atomic.h>
5#include <asm/rwlock.h>
6#include <asm/page.h>
7#include <asm/processor.h>
Nick Piggin314cdbe2008-01-30 13:31:21 +01008#include <linux/compiler.h>
Thomas Gleixner1075cf72008-01-30 13:30:34 +01009
10/*
11 * Your basic SMP spinlocks, allowing only a single CPU anywhere
12 *
13 * Simple spin lock operations. There are two variants, one clears IRQ's
14 * on the local processor, one does not.
15 *
Nick Piggin314cdbe2008-01-30 13:31:21 +010016 * These are fair FIFO ticket locks, which are currently limited to 256
17 * CPUs.
Thomas Gleixner1075cf72008-01-30 13:30:34 +010018 *
19 * (the type definitions are in asm/spinlock_types.h)
20 */
21
Thomas Gleixner96a388d2007-10-11 11:20:03 +020022#ifdef CONFIG_X86_32
Thomas Gleixner1075cf72008-01-30 13:30:34 +010023# define LOCK_PTR_REG "a"
Thomas Gleixner96a388d2007-10-11 11:20:03 +020024#else
Thomas Gleixner1075cf72008-01-30 13:30:34 +010025# define LOCK_PTR_REG "D"
Thomas Gleixner96a388d2007-10-11 11:20:03 +020026#endif
Glauber de Oliveira Costa2fed0c52008-01-30 13:30:33 +010027
Nick Piggin3a556b22008-01-30 13:33:00 +010028#if defined(CONFIG_X86_32) && \
29 (defined(CONFIG_X86_OOSTORE) || defined(CONFIG_X86_PPRO_FENCE))
30/*
31 * On PPro SMP or if we are using OOSTORE, we use a locked operation to unlock
32 * (PPro errata 66, 92)
33 */
34# define UNLOCK_LOCK_PREFIX LOCK_PREFIX
35#else
36# define UNLOCK_LOCK_PREFIX
Nick Piggin314cdbe2008-01-30 13:31:21 +010037#endif
38
Nick Piggin3a556b22008-01-30 13:33:00 +010039/*
40 * Ticket locks are conceptually two parts, one indicating the current head of
41 * the queue, and the other indicating the current tail. The lock is acquired
42 * by atomically noting the tail and incrementing it by one (thus adding
43 * ourself to the queue and noting our position), then waiting until the head
44 * becomes equal to the the initial value of the tail.
45 *
46 * We use an xadd covering *both* parts of the lock, to increment the tail and
47 * also load the position of the head, which takes care of memory ordering
48 * issues and should be optimal for the uncontended case. Note the tail must be
49 * in the high part, because a wide xadd increment of the low part would carry
50 * up and contaminate the high part.
51 *
52 * With fewer than 2^8 possible CPUs, we can use x86's partial registers to
53 * save some instructions and make the code more elegant. There really isn't
54 * much between them in performance though, especially as locks are out of line.
55 */
56#if (NR_CPUS < 256)
Thomas Gleixner1075cf72008-01-30 13:30:34 +010057static inline int __raw_spin_is_locked(raw_spinlock_t *lock)
58{
Linus Torvalds39f004b2008-05-10 19:52:43 -070059 int tmp = ACCESS_ONCE(lock->slock);
Nick Piggin314cdbe2008-01-30 13:31:21 +010060
61 return (((tmp >> 8) & 0xff) != (tmp & 0xff));
62}
63
64static inline int __raw_spin_is_contended(raw_spinlock_t *lock)
65{
Linus Torvalds39f004b2008-05-10 19:52:43 -070066 int tmp = ACCESS_ONCE(lock->slock);
Nick Piggin314cdbe2008-01-30 13:31:21 +010067
68 return (((tmp >> 8) & 0xff) - (tmp & 0xff)) > 1;
Thomas Gleixner1075cf72008-01-30 13:30:34 +010069}
70
Ingo Molnar7fda20f2008-02-29 10:29:38 +010071static __always_inline void __raw_spin_lock(raw_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +010072{
Nick Piggin314cdbe2008-01-30 13:31:21 +010073 short inc = 0x0100;
74
Joe Perchesd3bf60a2008-03-23 01:03:31 -070075 asm volatile (
Nick Piggin314cdbe2008-01-30 13:31:21 +010076 LOCK_PREFIX "xaddw %w0, %1\n"
77 "1:\t"
78 "cmpb %h0, %b0\n\t"
79 "je 2f\n\t"
80 "rep ; nop\n\t"
81 "movb %1, %b0\n\t"
82 /* don't need lfence here, because loads are in-order */
Thomas Gleixner1075cf72008-01-30 13:30:34 +010083 "jmp 1b\n"
Nick Piggin314cdbe2008-01-30 13:31:21 +010084 "2:"
Joe Perchesd3bf60a2008-03-23 01:03:31 -070085 : "+Q" (inc), "+m" (lock->slock)
Nick Piggin314cdbe2008-01-30 13:31:21 +010086 :
Joe Perchesd3bf60a2008-03-23 01:03:31 -070087 : "memory", "cc");
Thomas Gleixner1075cf72008-01-30 13:30:34 +010088}
89
Nick Piggin314cdbe2008-01-30 13:31:21 +010090#define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +010091
Ingo Molnar7fda20f2008-02-29 10:29:38 +010092static __always_inline int __raw_spin_trylock(raw_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +010093{
Nick Piggin314cdbe2008-01-30 13:31:21 +010094 int tmp;
95 short new;
Thomas Gleixner1075cf72008-01-30 13:30:34 +010096
Joe Perchesd3bf60a2008-03-23 01:03:31 -070097 asm volatile("movw %2,%w0\n\t"
98 "cmpb %h0,%b0\n\t"
99 "jne 1f\n\t"
100 "movw %w0,%w1\n\t"
101 "incb %h1\n\t"
102 "lock ; cmpxchgw %w1,%2\n\t"
103 "1:"
104 "sete %b1\n\t"
105 "movzbl %b1,%0\n\t"
106 : "=&a" (tmp), "=Q" (new), "+m" (lock->slock)
107 :
108 : "memory", "cc");
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100109
Nick Piggin314cdbe2008-01-30 13:31:21 +0100110 return tmp;
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100111}
112
Ingo Molnar7fda20f2008-02-29 10:29:38 +0100113static __always_inline void __raw_spin_unlock(raw_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100114{
Joe Perchesd3bf60a2008-03-23 01:03:31 -0700115 asm volatile(UNLOCK_LOCK_PREFIX "incb %0"
116 : "+m" (lock->slock)
117 :
118 : "memory", "cc");
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100119}
Nick Piggin3a556b22008-01-30 13:33:00 +0100120#else
121static inline int __raw_spin_is_locked(raw_spinlock_t *lock)
122{
Linus Torvalds39f004b2008-05-10 19:52:43 -0700123 int tmp = ACCESS_ONCE(lock->slock);
Nick Piggin3a556b22008-01-30 13:33:00 +0100124
125 return (((tmp >> 16) & 0xffff) != (tmp & 0xffff));
126}
127
128static inline int __raw_spin_is_contended(raw_spinlock_t *lock)
129{
Linus Torvalds39f004b2008-05-10 19:52:43 -0700130 int tmp = ACCESS_ONCE(lock->slock);
Nick Piggin3a556b22008-01-30 13:33:00 +0100131
132 return (((tmp >> 16) & 0xffff) - (tmp & 0xffff)) > 1;
133}
134
Ingo Molnar7fda20f2008-02-29 10:29:38 +0100135static __always_inline void __raw_spin_lock(raw_spinlock_t *lock)
Nick Piggin3a556b22008-01-30 13:33:00 +0100136{
137 int inc = 0x00010000;
138 int tmp;
139
Joe Perchesd3bf60a2008-03-23 01:03:31 -0700140 asm volatile("lock ; xaddl %0, %1\n"
141 "movzwl %w0, %2\n\t"
142 "shrl $16, %0\n\t"
143 "1:\t"
144 "cmpl %0, %2\n\t"
145 "je 2f\n\t"
146 "rep ; nop\n\t"
147 "movzwl %1, %2\n\t"
148 /* don't need lfence here, because loads are in-order */
149 "jmp 1b\n"
150 "2:"
151 : "+Q" (inc), "+m" (lock->slock), "=r" (tmp)
152 :
153 : "memory", "cc");
Nick Piggin3a556b22008-01-30 13:33:00 +0100154}
155
156#define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
157
Ingo Molnar7fda20f2008-02-29 10:29:38 +0100158static __always_inline int __raw_spin_trylock(raw_spinlock_t *lock)
Nick Piggin3a556b22008-01-30 13:33:00 +0100159{
160 int tmp;
161 int new;
162
Joe Perchesd3bf60a2008-03-23 01:03:31 -0700163 asm volatile("movl %2,%0\n\t"
164 "movl %0,%1\n\t"
165 "roll $16, %0\n\t"
166 "cmpl %0,%1\n\t"
167 "jne 1f\n\t"
168 "addl $0x00010000, %1\n\t"
169 "lock ; cmpxchgl %1,%2\n\t"
170 "1:"
171 "sete %b1\n\t"
172 "movzbl %b1,%0\n\t"
173 : "=&a" (tmp), "=r" (new), "+m" (lock->slock)
174 :
175 : "memory", "cc");
Nick Piggin3a556b22008-01-30 13:33:00 +0100176
177 return tmp;
178}
179
Ingo Molnar7fda20f2008-02-29 10:29:38 +0100180static __always_inline void __raw_spin_unlock(raw_spinlock_t *lock)
Nick Piggin3a556b22008-01-30 13:33:00 +0100181{
Joe Perchesd3bf60a2008-03-23 01:03:31 -0700182 asm volatile(UNLOCK_LOCK_PREFIX "incw %0"
183 : "+m" (lock->slock)
184 :
185 : "memory", "cc");
Nick Piggin3a556b22008-01-30 13:33:00 +0100186}
187#endif
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100188
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100189static inline void __raw_spin_unlock_wait(raw_spinlock_t *lock)
190{
191 while (__raw_spin_is_locked(lock))
192 cpu_relax();
193}
194
195/*
196 * Read-write spinlocks, allowing multiple readers
197 * but only one writer.
198 *
199 * NOTE! it is quite common to have readers in interrupts
200 * but no interrupt writers. For those circumstances we
201 * can "mix" irq-safe locks - any writer needs to get a
202 * irq-safe write-lock, but readers can get non-irqsafe
203 * read-locks.
204 *
205 * On x86, we implement read-write locks as a 32-bit counter
206 * with the high bit (sign) being the "contended" bit.
207 */
208
Nick Piggin314cdbe2008-01-30 13:31:21 +0100209/**
210 * read_can_lock - would read_trylock() succeed?
211 * @lock: the rwlock in question.
212 */
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100213static inline int __raw_read_can_lock(raw_rwlock_t *lock)
214{
215 return (int)(lock)->lock > 0;
216}
217
Nick Piggin314cdbe2008-01-30 13:31:21 +0100218/**
219 * write_can_lock - would write_trylock() succeed?
220 * @lock: the rwlock in question.
221 */
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100222static inline int __raw_write_can_lock(raw_rwlock_t *lock)
223{
224 return (lock)->lock == RW_LOCK_BIAS;
225}
226
227static inline void __raw_read_lock(raw_rwlock_t *rw)
228{
229 asm volatile(LOCK_PREFIX " subl $1,(%0)\n\t"
230 "jns 1f\n"
231 "call __read_lock_failed\n\t"
232 "1:\n"
233 ::LOCK_PTR_REG (rw) : "memory");
234}
235
236static inline void __raw_write_lock(raw_rwlock_t *rw)
237{
238 asm volatile(LOCK_PREFIX " subl %1,(%0)\n\t"
239 "jz 1f\n"
240 "call __write_lock_failed\n\t"
241 "1:\n"
242 ::LOCK_PTR_REG (rw), "i" (RW_LOCK_BIAS) : "memory");
243}
244
245static inline int __raw_read_trylock(raw_rwlock_t *lock)
246{
247 atomic_t *count = (atomic_t *)lock;
248
249 atomic_dec(count);
250 if (atomic_read(count) >= 0)
251 return 1;
252 atomic_inc(count);
253 return 0;
254}
255
256static inline int __raw_write_trylock(raw_rwlock_t *lock)
257{
258 atomic_t *count = (atomic_t *)lock;
259
260 if (atomic_sub_and_test(RW_LOCK_BIAS, count))
261 return 1;
262 atomic_add(RW_LOCK_BIAS, count);
263 return 0;
264}
265
266static inline void __raw_read_unlock(raw_rwlock_t *rw)
267{
268 asm volatile(LOCK_PREFIX "incl %0" :"+m" (rw->lock) : : "memory");
269}
270
271static inline void __raw_write_unlock(raw_rwlock_t *rw)
272{
273 asm volatile(LOCK_PREFIX "addl %1, %0"
274 : "+m" (rw->lock) : "i" (RW_LOCK_BIAS) : "memory");
275}
276
277#define _raw_spin_relax(lock) cpu_relax()
278#define _raw_read_relax(lock) cpu_relax()
279#define _raw_write_relax(lock) cpu_relax()
280
Glauber de Oliveira Costa2fed0c52008-01-30 13:30:33 +0100281#endif