blob: 5162f8cd18c090d0b50cafa295c24035fc60c6e7 [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
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010031#define arch_spin_is_locked(x) ((x)->slock != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paul Mackerras0212ddd2005-11-19 20:50:46 +110033#ifdef CONFIG_PPC64
34/* use 0x800000yy when locked, where yy == CPU number */
Anton Blanchard54bb7f42013-08-07 02:01:51 +100035#ifdef __BIG_ENDIAN__
Paul Mackerras0212ddd2005-11-19 20:50:46 +110036#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
37#else
Anton Blanchard54bb7f42013-08-07 02:01:51 +100038#define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
39#endif
40#else
Paul Mackerras0212ddd2005-11-19 20:50:46 +110041#define LOCK_TOKEN 1
42#endif
43
Paul Mackerrasf007cac2006-09-13 22:08:26 +100044#if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
45#define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
46#define SYNC_IO do { \
47 if (unlikely(get_paca()->io_sync)) { \
48 mb(); \
49 get_paca()->io_sync = 0; \
50 } \
51 } while (0)
52#else
53#define CLEAR_IO_SYNC
54#define SYNC_IO
55#endif
56
Michael Ellerman3405d232014-01-15 18:14:28 +110057static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
58{
59 return lock.slock == 0;
60}
61
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070062/*
63 * This returns the old value in the lock, so we succeeded
64 * in getting the lock if the return value is 0.
65 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010066static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110068 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070069
Paul Mackerras0212ddd2005-11-19 20:50:46 +110070 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070071 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000072"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070073 cmpwi 0,%0,0\n\
74 bne- 2f\n\
75 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000076 bne- 1b\n"
77 PPC_ACQUIRE_BARRIER
78"2:"
79 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110080 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070081 : "cr0", "memory");
82
83 return tmp;
84}
85
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010086static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070087{
Paul Mackerrasf007cac2006-09-13 22:08:26 +100088 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010089 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/*
93 * On a system with shared processors (that is, where a physical
94 * processor is multiplexed between several virtual processors),
95 * there is no point spinning on a lock if the holder of the lock
96 * isn't currently scheduled on a physical processor. Instead
97 * we detect this situation and ask the hypervisor to give the
98 * rest of our timeslice to the lock holder.
99 *
100 * So that we can tell which virtual processor is holding a lock,
101 * we put 0x80000000 | smp_processor_id() in the lock when it is
102 * held. Conveniently, we have a word in the paca that holds this
103 * value.
104 */
105
Stephen Rothwell1b041882012-03-15 18:20:13 +0000106#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000108#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100109extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100110extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000111#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define __spin_yield(x) barrier()
113#define __rw_yield(x) barrier()
114#define SHARED_PROCESSOR 0
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100117static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000119 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100121 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 break;
123 do {
124 HMT_low();
125 if (SHARED_PROCESSOR)
126 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700127 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 HMT_medium();
129 }
130}
131
Bart Van Assche89b58102008-06-28 16:51:35 +1000132static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100133void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 unsigned long flags_dis;
136
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000137 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100139 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 break;
141 local_save_flags(flags_dis);
142 local_irq_restore(flags);
143 do {
144 HMT_low();
145 if (SHARED_PROCESSOR)
146 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700147 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 HMT_medium();
149 local_irq_restore(flags_dis);
150 }
151}
152
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100153static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700154{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000155 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100156 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000157 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700158 lock->slock = 0;
159}
160
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100161#ifdef CONFIG_PPC64
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100162extern void arch_spin_unlock_wait(arch_spinlock_t *lock);
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100163#else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100164#define arch_spin_unlock_wait(lock) \
165 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100166#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * Read-write spinlocks, allowing multiple readers
170 * but only one writer.
171 *
172 * NOTE! it is quite common to have readers in interrupts
173 * but no interrupt writers. For those circumstances we
174 * can "mix" irq-safe locks - any writer needs to get a
175 * irq-safe write-lock, but readers can get non-irqsafe
176 * read-locks.
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Thomas Gleixnere5931942009-12-03 20:08:46 +0100179#define arch_read_can_lock(rw) ((rw)->lock >= 0)
180#define arch_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100182#ifdef CONFIG_PPC64
183#define __DO_SIGN_EXTEND "extsw %0,%0\n"
184#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
185#else
186#define __DO_SIGN_EXTEND
187#define WRLOCK_TOKEN (-1)
188#endif
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
191 * This returns the old value in the lock + 1,
192 * so we got a read lock if the return value is > 0.
193 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100194static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 long tmp;
197
198 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000199"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100200 __DO_SIGN_EXTEND
201" addic. %0,%0,1\n\
202 ble- 2f\n"
203 PPC405_ERR77(0,%1)
204" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000205 bne- 1b\n"
206 PPC_ACQUIRE_BARRIER
207"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 : "r" (&rw->lock)
209 : "cr0", "xer", "memory");
210
211 return tmp;
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
215 * This returns the old value in the lock,
216 * so we got the write lock if the return value is 0.
217 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100218static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100220 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100222 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000224"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100226 bne- 2f\n"
227 PPC405_ERR77(0,%1)
228" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000229 bne- 1b\n"
230 PPC_ACQUIRE_BARRIER
231"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100232 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 : "cr0", "memory");
234
235 return tmp;
236}
237
Thomas Gleixnere5931942009-12-03 20:08:46 +0100238static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700240 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100241 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700242 break;
243 do {
244 HMT_low();
245 if (SHARED_PROCESSOR)
246 __rw_yield(rw);
247 } while (unlikely(rw->lock < 0));
248 HMT_medium();
249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Thomas Gleixnere5931942009-12-03 20:08:46 +0100252static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100255 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257 do {
258 HMT_low();
259 if (SHARED_PROCESSOR)
260 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700261 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 HMT_medium();
263 }
264}
265
Thomas Gleixnere5931942009-12-03 20:08:46 +0100266static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700267{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100268 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700269}
270
Thomas Gleixnere5931942009-12-03 20:08:46 +0100271static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700272{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100273 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700274}
275
Thomas Gleixnere5931942009-12-03 20:08:46 +0100276static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700277{
278 long tmp;
279
280 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100281 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000282 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100283"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100284 addic %0,%0,-1\n"
285 PPC405_ERR77(0,%1)
286" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700287 bne- 1b"
288 : "=&r"(tmp)
289 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000290 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700291}
292
Thomas Gleixnere5931942009-12-03 20:08:46 +0100293static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700294{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100295 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000296 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700297 rw->lock = 0;
298}
299
Thomas Gleixnere5931942009-12-03 20:08:46 +0100300#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
301#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700302
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100303#define arch_spin_relax(lock) __spin_yield(lock)
304#define arch_read_relax(lock) __rw_yield(lock)
305#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700306
Arnd Bergmann88ced032005-12-16 22:43:46 +0100307#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif /* __ASM_SPINLOCK_H */