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