]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - include/asm-x86_64/spinlock.h
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[mirror_ubuntu-artful-kernel.git] / include / asm-x86_64 / 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
9 /*
10 * Your basic SMP spinlocks, allowing only a single CPU anywhere
11 *
12 * 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.
16 *
17 * (the type definitions are in asm/spinlock_types.h)
18 */
19
20 static inline int __raw_spin_is_locked(raw_spinlock_t *lock)
21 {
22 return *(volatile signed int *)(&(lock)->slock) <= 0;
23 }
24
25 static inline void __raw_spin_lock(raw_spinlock_t *lock)
26 {
27 asm volatile(
28 "\n1:\t"
29 LOCK_PREFIX " ; decl %0\n\t"
30 "jns 2f\n"
31 "3:\n"
32 "rep;nop\n\t"
33 "cmpl $0,%0\n\t"
34 "jle 3b\n\t"
35 "jmp 1b\n"
36 "2:\t" : "=m" (lock->slock) : : "memory");
37 }
38
39 #define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
40
41 static inline int __raw_spin_trylock(raw_spinlock_t *lock)
42 {
43 int oldval;
44
45 asm volatile(
46 "xchgl %0,%1"
47 :"=q" (oldval), "=m" (lock->slock)
48 :"0" (0) : "memory");
49
50 return oldval > 0;
51 }
52
53 static inline void __raw_spin_unlock(raw_spinlock_t *lock)
54 {
55 asm volatile("movl $1,%0" :"=m" (lock->slock) :: "memory");
56 }
57
58 static inline void __raw_spin_unlock_wait(raw_spinlock_t *lock)
59 {
60 while (__raw_spin_is_locked(lock))
61 cpu_relax();
62 }
63
64 /*
65 * Read-write spinlocks, allowing multiple readers
66 * but only one writer.
67 *
68 * NOTE! it is quite common to have readers in interrupts
69 * but no interrupt writers. For those circumstances we
70 * can "mix" irq-safe locks - any writer needs to get a
71 * irq-safe write-lock, but readers can get non-irqsafe
72 * read-locks.
73 *
74 * On x86, we implement read-write locks as a 32-bit counter
75 * with the high bit (sign) being the "contended" bit.
76 */
77
78 static inline int __raw_read_can_lock(raw_rwlock_t *lock)
79 {
80 return (int)(lock)->lock > 0;
81 }
82
83 static inline int __raw_write_can_lock(raw_rwlock_t *lock)
84 {
85 return (lock)->lock == RW_LOCK_BIAS;
86 }
87
88 static inline void __raw_read_lock(raw_rwlock_t *rw)
89 {
90 asm volatile(LOCK_PREFIX "subl $1,(%0)\n\t"
91 "jns 1f\n"
92 "call __read_lock_failed\n"
93 "1:\n"
94 ::"D" (rw), "i" (RW_LOCK_BIAS) : "memory");
95 }
96
97 static inline void __raw_write_lock(raw_rwlock_t *rw)
98 {
99 asm volatile(LOCK_PREFIX "subl %1,(%0)\n\t"
100 "jz 1f\n"
101 "\tcall __write_lock_failed\n\t"
102 "1:\n"
103 ::"D" (rw), "i" (RW_LOCK_BIAS) : "memory");
104 }
105
106 static inline int __raw_read_trylock(raw_rwlock_t *lock)
107 {
108 atomic_t *count = (atomic_t *)lock;
109 atomic_dec(count);
110 if (atomic_read(count) >= 0)
111 return 1;
112 atomic_inc(count);
113 return 0;
114 }
115
116 static inline int __raw_write_trylock(raw_rwlock_t *lock)
117 {
118 atomic_t *count = (atomic_t *)lock;
119 if (atomic_sub_and_test(RW_LOCK_BIAS, count))
120 return 1;
121 atomic_add(RW_LOCK_BIAS, count);
122 return 0;
123 }
124
125 static inline void __raw_read_unlock(raw_rwlock_t *rw)
126 {
127 asm volatile(LOCK_PREFIX " ; incl %0" :"=m" (rw->lock) : : "memory");
128 }
129
130 static inline void __raw_write_unlock(raw_rwlock_t *rw)
131 {
132 asm volatile(LOCK_PREFIX " ; addl $" RW_LOCK_BIAS_STR ",%0"
133 : "=m" (rw->lock) : : "memory");
134 }
135
136 #define _raw_spin_relax(lock) cpu_relax()
137 #define _raw_read_relax(lock) cpu_relax()
138 #define _raw_write_relax(lock) cpu_relax()
139
140 #endif /* __ASM_SPINLOCK_H */