blob: f6e78d63fb6accd584e71cd5ebe7b26c5dae2916 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SPINLOCK_H
2#define __ASM_SPINLOCK_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
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 Molnarfb1c8f92005-09-10 00:25:56 -070019 *
20 * (the type definitions are in asm/spinlock_types.h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
Benjamin Herrenschmidt945feb12008-04-17 14:35:01 +100022#include <linux/irqflags.h>
Paul Mackerras0212ddd2005-11-19 20:50:46 +110023#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/paca.h>
25#include <asm/hvcall.h>
Paul Mackerras0212ddd2005-11-19 20:50:46 +110026#endif
27#include <asm/asm-compat.h>
28#include <asm/synch.h>
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000029#include <asm/ppc-opcode.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Paul E. McKenney919fc6e2013-12-11 13:59:11 -080031#define smp_mb__after_unlock_lock() smp_mb() /* Full ordering for lock. */
32
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010033#define arch_spin_is_locked(x) ((x)->slock != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Paul Mackerras0212ddd2005-11-19 20:50:46 +110035#ifdef CONFIG_PPC64
36/* use 0x800000yy when locked, where yy == CPU number */
Anton Blanchard54bb7f42013-08-07 02:01:51 +100037#ifdef __BIG_ENDIAN__
Paul Mackerras0212ddd2005-11-19 20:50:46 +110038#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
39#else
Anton Blanchard54bb7f42013-08-07 02:01:51 +100040#define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
41#endif
42#else
Paul Mackerras0212ddd2005-11-19 20:50:46 +110043#define LOCK_TOKEN 1
44#endif
45
Paul Mackerrasf007cac2006-09-13 22:08:26 +100046#if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
47#define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
48#define SYNC_IO do { \
49 if (unlikely(get_paca()->io_sync)) { \
50 mb(); \
51 get_paca()->io_sync = 0; \
52 } \
53 } while (0)
54#else
55#define CLEAR_IO_SYNC
56#define SYNC_IO
57#endif
58
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070059/*
60 * This returns the old value in the lock, so we succeeded
61 * in getting the lock if the return value is 0.
62 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010063static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110065 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070066
Paul Mackerras0212ddd2005-11-19 20:50:46 +110067 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070068 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000069"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070070 cmpwi 0,%0,0\n\
71 bne- 2f\n\
72 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000073 bne- 1b\n"
74 PPC_ACQUIRE_BARRIER
75"2:"
76 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110077 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070078 : "cr0", "memory");
79
80 return tmp;
81}
82
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010083static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070084{
Paul Mackerrasf007cac2006-09-13 22:08:26 +100085 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010086 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/*
90 * On a system with shared processors (that is, where a physical
91 * processor is multiplexed between several virtual processors),
92 * there is no point spinning on a lock if the holder of the lock
93 * isn't currently scheduled on a physical processor. Instead
94 * we detect this situation and ask the hypervisor to give the
95 * rest of our timeslice to the lock holder.
96 *
97 * So that we can tell which virtual processor is holding a lock,
98 * we put 0x80000000 | smp_processor_id() in the lock when it is
99 * held. Conveniently, we have a word in the paca that holds this
100 * value.
101 */
102
Stephen Rothwell1b041882012-03-15 18:20:13 +0000103#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000105#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100106extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100107extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000108#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define __spin_yield(x) barrier()
110#define __rw_yield(x) barrier()
111#define SHARED_PROCESSOR 0
112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100114static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000116 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100118 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120 do {
121 HMT_low();
122 if (SHARED_PROCESSOR)
123 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700124 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 HMT_medium();
126 }
127}
128
Bart Van Assche89b58102008-06-28 16:51:35 +1000129static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100130void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 unsigned long flags_dis;
133
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000134 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100136 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 break;
138 local_save_flags(flags_dis);
139 local_irq_restore(flags);
140 do {
141 HMT_low();
142 if (SHARED_PROCESSOR)
143 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700144 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 HMT_medium();
146 local_irq_restore(flags_dis);
147 }
148}
149
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100150static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700151{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000152 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100153 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000154 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700155 lock->slock = 0;
156}
157
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100158#ifdef CONFIG_PPC64
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100159extern void arch_spin_unlock_wait(arch_spinlock_t *lock);
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100160#else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100161#define arch_spin_unlock_wait(lock) \
162 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100163#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
166 * Read-write spinlocks, allowing multiple readers
167 * but only one writer.
168 *
169 * NOTE! it is quite common to have readers in interrupts
170 * but no interrupt writers. For those circumstances we
171 * can "mix" irq-safe locks - any writer needs to get a
172 * irq-safe write-lock, but readers can get non-irqsafe
173 * read-locks.
174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Thomas Gleixnere5931942009-12-03 20:08:46 +0100176#define arch_read_can_lock(rw) ((rw)->lock >= 0)
177#define arch_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100179#ifdef CONFIG_PPC64
180#define __DO_SIGN_EXTEND "extsw %0,%0\n"
181#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
182#else
183#define __DO_SIGN_EXTEND
184#define WRLOCK_TOKEN (-1)
185#endif
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
188 * This returns the old value in the lock + 1,
189 * so we got a read lock if the return value is > 0.
190 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100191static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 long tmp;
194
195 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000196"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100197 __DO_SIGN_EXTEND
198" addic. %0,%0,1\n\
199 ble- 2f\n"
200 PPC405_ERR77(0,%1)
201" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000202 bne- 1b\n"
203 PPC_ACQUIRE_BARRIER
204"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 : "r" (&rw->lock)
206 : "cr0", "xer", "memory");
207
208 return tmp;
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/*
212 * This returns the old value in the lock,
213 * so we got the write lock if the return value is 0.
214 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100215static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100217 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100219 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000221"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100223 bne- 2f\n"
224 PPC405_ERR77(0,%1)
225" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000226 bne- 1b\n"
227 PPC_ACQUIRE_BARRIER
228"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100229 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 : "cr0", "memory");
231
232 return tmp;
233}
234
Thomas Gleixnere5931942009-12-03 20:08:46 +0100235static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700237 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100238 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700239 break;
240 do {
241 HMT_low();
242 if (SHARED_PROCESSOR)
243 __rw_yield(rw);
244 } while (unlikely(rw->lock < 0));
245 HMT_medium();
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Thomas Gleixnere5931942009-12-03 20:08:46 +0100249static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100252 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
254 do {
255 HMT_low();
256 if (SHARED_PROCESSOR)
257 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700258 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 HMT_medium();
260 }
261}
262
Thomas Gleixnere5931942009-12-03 20:08:46 +0100263static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700264{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100265 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700266}
267
Thomas Gleixnere5931942009-12-03 20:08:46 +0100268static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700269{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100270 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700271}
272
Thomas Gleixnere5931942009-12-03 20:08:46 +0100273static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700274{
275 long tmp;
276
277 __asm__ __volatile__(
Anton Blanchard144b9c132006-01-13 15:37:17 +1100278 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000279 PPC_RELEASE_BARRIER
Anton Blanchard144b9c132006-01-13 15:37:17 +1100280"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100281 addic %0,%0,-1\n"
282 PPC405_ERR77(0,%1)
283" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700284 bne- 1b"
285 : "=&r"(tmp)
286 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000287 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700288}
289
Thomas Gleixnere5931942009-12-03 20:08:46 +0100290static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700291{
Anton Blanchard144b9c132006-01-13 15:37:17 +1100292 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000293 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700294 rw->lock = 0;
295}
296
Thomas Gleixnere5931942009-12-03 20:08:46 +0100297#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
298#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700299
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100300#define arch_spin_relax(lock) __spin_yield(lock)
301#define arch_read_relax(lock) __rw_yield(lock)
302#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700303
Arnd Bergmann88ced032005-12-16 22:43:46 +0100304#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305#endif /* __ASM_SPINLOCK_H */