Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SPINLOCK_H |
| 2 | #define __ASM_SPINLOCK_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 3 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | /* |
| 6 | * Simple spin lock operations. |
| 7 | * |
| 8 | * Copyright (C) 2001-2004 Paul Mackerras <paulus@au.ibm.com>, IBM |
| 9 | * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM |
| 10 | * Copyright (C) 2002 Dave Engebretsen <engebret@us.ibm.com>, IBM |
| 11 | * Rework to support virtual processors |
| 12 | * |
| 13 | * Type of int is used as a full 64b word is not necessary. |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License |
| 17 | * as published by the Free Software Foundation; either version |
| 18 | * 2 of the License, or (at your option) any later version. |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 19 | * |
| 20 | * (the type definitions are in asm/spinlock_types.h) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | */ |
Benjamin Herrenschmidt | 945feb1 | 2008-04-17 14:35:01 +1000 | [diff] [blame] | 22 | #include <linux/irqflags.h> |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 23 | #ifdef CONFIG_PPC64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/paca.h> |
| 25 | #include <asm/hvcall.h> |
Kelly Daly | 1da4403 | 2005-11-01 16:59:20 +1100 | [diff] [blame] | 26 | #include <asm/iseries/hv_call.h> |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 27 | #endif |
| 28 | #include <asm/asm-compat.h> |
| 29 | #include <asm/synch.h> |
Anton Blanchard | 4e14a4d | 2010-02-10 00:57:28 +0000 | [diff] [blame] | 30 | #include <asm/ppc-opcode.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 32 | #define arch_spin_is_locked(x) ((x)->slock != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 34 | #ifdef CONFIG_PPC64 |
| 35 | /* use 0x800000yy when locked, where yy == CPU number */ |
| 36 | #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token)) |
| 37 | #else |
| 38 | #define LOCK_TOKEN 1 |
| 39 | #endif |
| 40 | |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 41 | #if defined(CONFIG_PPC64) && defined(CONFIG_SMP) |
| 42 | #define CLEAR_IO_SYNC (get_paca()->io_sync = 0) |
| 43 | #define SYNC_IO do { \ |
| 44 | if (unlikely(get_paca()->io_sync)) { \ |
| 45 | mb(); \ |
| 46 | get_paca()->io_sync = 0; \ |
| 47 | } \ |
| 48 | } while (0) |
| 49 | #else |
| 50 | #define CLEAR_IO_SYNC |
| 51 | #define SYNC_IO |
| 52 | #endif |
| 53 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 54 | /* |
| 55 | * This returns the old value in the lock, so we succeeded |
| 56 | * in getting the lock if the return value is 0. |
| 57 | */ |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 58 | static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 60 | unsigned long tmp, token; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 61 | |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 62 | token = LOCK_TOKEN; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 63 | __asm__ __volatile__( |
Anton Blanchard | 4e14a4d | 2010-02-10 00:57:28 +0000 | [diff] [blame] | 64 | "1: " PPC_LWARX(%0,0,%2,1) "\n\ |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 65 | cmpwi 0,%0,0\n\ |
| 66 | bne- 2f\n\ |
| 67 | stwcx. %1,0,%2\n\ |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 68 | bne- 1b\n" |
| 69 | PPC_ACQUIRE_BARRIER |
| 70 | "2:" |
| 71 | : "=&r" (tmp) |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 72 | : "r" (token), "r" (&lock->slock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 73 | : "cr0", "memory"); |
| 74 | |
| 75 | return tmp; |
| 76 | } |
| 77 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 78 | static inline int arch_spin_trylock(arch_spinlock_t *lock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 79 | { |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 80 | CLEAR_IO_SYNC; |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 81 | return __arch_spin_trylock(lock) == 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | /* |
| 85 | * On a system with shared processors (that is, where a physical |
| 86 | * processor is multiplexed between several virtual processors), |
| 87 | * there is no point spinning on a lock if the holder of the lock |
| 88 | * isn't currently scheduled on a physical processor. Instead |
| 89 | * we detect this situation and ask the hypervisor to give the |
| 90 | * rest of our timeslice to the lock holder. |
| 91 | * |
| 92 | * So that we can tell which virtual processor is holding a lock, |
| 93 | * we put 0x80000000 | smp_processor_id() in the lock when it is |
| 94 | * held. Conveniently, we have a word in the paca that holds this |
| 95 | * value. |
| 96 | */ |
| 97 | |
| 98 | #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES) |
| 99 | /* We only yield to the hypervisor if we are in shared processor mode */ |
David Gibson | 3356bb9 | 2006-01-13 10:26:42 +1100 | [diff] [blame] | 100 | #define SHARED_PROCESSOR (get_lppaca()->shared_proc) |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 101 | extern void __spin_yield(arch_spinlock_t *lock); |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 102 | extern void __rw_yield(arch_rwlock_t *lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | #else /* SPLPAR || ISERIES */ |
| 104 | #define __spin_yield(x) barrier() |
| 105 | #define __rw_yield(x) barrier() |
| 106 | #define SHARED_PROCESSOR 0 |
| 107 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 109 | static inline void arch_spin_lock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 111 | CLEAR_IO_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | while (1) { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 113 | if (likely(__arch_spin_trylock(lock) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | break; |
| 115 | do { |
| 116 | HMT_low(); |
| 117 | if (SHARED_PROCESSOR) |
| 118 | __spin_yield(lock); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 119 | } while (unlikely(lock->slock != 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | HMT_medium(); |
| 121 | } |
| 122 | } |
| 123 | |
Bart Van Assche | 89b5810 | 2008-06-28 16:51:35 +1000 | [diff] [blame] | 124 | static inline |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 125 | void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { |
| 127 | unsigned long flags_dis; |
| 128 | |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 129 | CLEAR_IO_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | while (1) { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 131 | if (likely(__arch_spin_trylock(lock) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | break; |
| 133 | local_save_flags(flags_dis); |
| 134 | local_irq_restore(flags); |
| 135 | do { |
| 136 | HMT_low(); |
| 137 | if (SHARED_PROCESSOR) |
| 138 | __spin_yield(lock); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 139 | } while (unlikely(lock->slock != 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | HMT_medium(); |
| 141 | local_irq_restore(flags_dis); |
| 142 | } |
| 143 | } |
| 144 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 145 | static inline void arch_spin_unlock(arch_spinlock_t *lock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 146 | { |
Paul Mackerras | f007cac | 2006-09-13 22:08:26 +1000 | [diff] [blame] | 147 | SYNC_IO; |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 148 | __asm__ __volatile__("# arch_spin_unlock\n\t" |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 149 | PPC_RELEASE_BARRIER: : :"memory"); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 150 | lock->slock = 0; |
| 151 | } |
| 152 | |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 153 | #ifdef CONFIG_PPC64 |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 154 | extern void arch_spin_unlock_wait(arch_spinlock_t *lock); |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 155 | #else |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 156 | #define arch_spin_unlock_wait(lock) \ |
| 157 | do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0) |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 158 | #endif |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* |
| 161 | * Read-write spinlocks, allowing multiple readers |
| 162 | * but only one writer. |
| 163 | * |
| 164 | * NOTE! it is quite common to have readers in interrupts |
| 165 | * but no interrupt writers. For those circumstances we |
| 166 | * can "mix" irq-safe locks - any writer needs to get a |
| 167 | * irq-safe write-lock, but readers can get non-irqsafe |
| 168 | * read-locks. |
| 169 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 171 | #define arch_read_can_lock(rw) ((rw)->lock >= 0) |
| 172 | #define arch_write_can_lock(rw) (!(rw)->lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 174 | #ifdef CONFIG_PPC64 |
| 175 | #define __DO_SIGN_EXTEND "extsw %0,%0\n" |
| 176 | #define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */ |
| 177 | #else |
| 178 | #define __DO_SIGN_EXTEND |
| 179 | #define WRLOCK_TOKEN (-1) |
| 180 | #endif |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /* |
| 183 | * This returns the old value in the lock + 1, |
| 184 | * so we got a read lock if the return value is > 0. |
| 185 | */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 186 | static inline long __arch_read_trylock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 188 | long tmp; |
| 189 | |
| 190 | __asm__ __volatile__( |
Anton Blanchard | 4e14a4d | 2010-02-10 00:57:28 +0000 | [diff] [blame] | 191 | "1: " PPC_LWARX(%0,0,%1,1) "\n" |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 192 | __DO_SIGN_EXTEND |
| 193 | " addic. %0,%0,1\n\ |
| 194 | ble- 2f\n" |
| 195 | PPC405_ERR77(0,%1) |
| 196 | " stwcx. %0,0,%1\n\ |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 197 | bne- 1b\n" |
| 198 | PPC_ACQUIRE_BARRIER |
| 199 | "2:" : "=&r" (tmp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | : "r" (&rw->lock) |
| 201 | : "cr0", "xer", "memory"); |
| 202 | |
| 203 | return tmp; |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | /* |
| 207 | * This returns the old value in the lock, |
| 208 | * so we got the write lock if the return value is 0. |
| 209 | */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 210 | static inline long __arch_write_trylock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 212 | long tmp, token; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 214 | token = WRLOCK_TOKEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | __asm__ __volatile__( |
Anton Blanchard | 4e14a4d | 2010-02-10 00:57:28 +0000 | [diff] [blame] | 216 | "1: " PPC_LWARX(%0,0,%2,1) "\n\ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | cmpwi 0,%0,0\n\ |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 218 | bne- 2f\n" |
| 219 | PPC405_ERR77(0,%1) |
| 220 | " stwcx. %1,0,%2\n\ |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 221 | bne- 1b\n" |
| 222 | PPC_ACQUIRE_BARRIER |
| 223 | "2:" : "=&r" (tmp) |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 224 | : "r" (token), "r" (&rw->lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | : "cr0", "memory"); |
| 226 | |
| 227 | return tmp; |
| 228 | } |
| 229 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 230 | static inline void arch_read_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 232 | while (1) { |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 233 | if (likely(__arch_read_trylock(rw) > 0)) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 234 | break; |
| 235 | do { |
| 236 | HMT_low(); |
| 237 | if (SHARED_PROCESSOR) |
| 238 | __rw_yield(rw); |
| 239 | } while (unlikely(rw->lock < 0)); |
| 240 | HMT_medium(); |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 244 | static inline void arch_write_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
| 246 | while (1) { |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 247 | if (likely(__arch_write_trylock(rw) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | break; |
| 249 | do { |
| 250 | HMT_low(); |
| 251 | if (SHARED_PROCESSOR) |
| 252 | __rw_yield(rw); |
Jake Moilanen | d637413 | 2005-05-01 08:58:47 -0700 | [diff] [blame] | 253 | } while (unlikely(rw->lock != 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | HMT_medium(); |
| 255 | } |
| 256 | } |
| 257 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 258 | static inline int arch_read_trylock(arch_rwlock_t *rw) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 259 | { |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 260 | return __arch_read_trylock(rw) > 0; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 263 | static inline int arch_write_trylock(arch_rwlock_t *rw) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 264 | { |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 265 | return __arch_write_trylock(rw) == 0; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 268 | static inline void arch_read_unlock(arch_rwlock_t *rw) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 269 | { |
| 270 | long tmp; |
| 271 | |
| 272 | __asm__ __volatile__( |
Anton Blanchard | 144b9c1 | 2006-01-13 15:37:17 +1100 | [diff] [blame] | 273 | "# read_unlock\n\t" |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 274 | PPC_RELEASE_BARRIER |
Anton Blanchard | 144b9c1 | 2006-01-13 15:37:17 +1100 | [diff] [blame] | 275 | "1: lwarx %0,0,%1\n\ |
Paul Mackerras | 0212ddd | 2005-11-19 20:50:46 +1100 | [diff] [blame] | 276 | addic %0,%0,-1\n" |
| 277 | PPC405_ERR77(0,%1) |
| 278 | " stwcx. %0,0,%1\n\ |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 279 | bne- 1b" |
| 280 | : "=&r"(tmp) |
| 281 | : "r"(&rw->lock) |
Paul Mackerras | efc3624 | 2008-11-05 18:39:27 +0000 | [diff] [blame] | 282 | : "cr0", "xer", "memory"); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 285 | static inline void arch_write_unlock(arch_rwlock_t *rw) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 286 | { |
Anton Blanchard | 144b9c1 | 2006-01-13 15:37:17 +1100 | [diff] [blame] | 287 | __asm__ __volatile__("# write_unlock\n\t" |
Anton Blanchard | f10e2e5 | 2010-02-10 01:04:06 +0000 | [diff] [blame] | 288 | PPC_RELEASE_BARRIER: : :"memory"); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 289 | rw->lock = 0; |
| 290 | } |
| 291 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 292 | #define arch_read_lock_flags(lock, flags) arch_read_lock(lock) |
| 293 | #define arch_write_lock_flags(lock, flags) arch_write_lock(lock) |
Robin Holt | f5f7eac | 2009-04-02 16:59:46 -0700 | [diff] [blame] | 294 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 295 | #define arch_spin_relax(lock) __spin_yield(lock) |
| 296 | #define arch_read_relax(lock) __rw_yield(lock) |
| 297 | #define arch_write_relax(lock) __rw_yield(lock) |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 298 | |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 299 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | #endif /* __ASM_SPINLOCK_H */ |