blob: 7ec38f4ee927ba0566249c2ab456c72428ee2b7a [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>
Christophe Leroy36a7eea2018-07-05 16:24:55 +000030#include <asm/asm-405.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Paul Mackerras0212ddd2005-11-19 20:50:46 +110032#ifdef CONFIG_PPC64
33/* use 0x800000yy when locked, where yy == CPU number */
Anton Blanchard54bb7f42013-08-07 02:01:51 +100034#ifdef __BIG_ENDIAN__
Paul Mackerras0212ddd2005-11-19 20:50:46 +110035#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
36#else
Anton Blanchard54bb7f42013-08-07 02:01:51 +100037#define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
38#endif
39#else
Paul Mackerras0212ddd2005-11-19 20:50:46 +110040#define LOCK_TOKEN 1
41#endif
42
Paul Mackerrasf007cac2006-09-13 22:08:26 +100043#if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
44#define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
45#define SYNC_IO do { \
46 if (unlikely(get_paca()->io_sync)) { \
47 mb(); \
48 get_paca()->io_sync = 0; \
49 } \
50 } while (0)
51#else
52#define CLEAR_IO_SYNC
53#define SYNC_IO
54#endif
55
Pan Xinhui41946c82016-11-02 05:08:31 -040056#ifdef CONFIG_PPC_PSERIES
57#define vcpu_is_preempted vcpu_is_preempted
58static inline bool vcpu_is_preempted(int cpu)
59{
Aneesh Kumar K.Va6201da2018-04-02 13:03:37 +053060 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
61 return false;
Pan Xinhui41946c82016-11-02 05:08:31 -040062 return !!(be32_to_cpu(lppaca_of(cpu).yield_count) & 1);
63}
64#endif
65
Michael Ellerman3405d232014-01-15 18:14:28 +110066static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
67{
68 return lock.slock == 0;
69}
70
Michael Ellerman7179ba52014-01-15 18:14:29 +110071static inline int arch_spin_is_locked(arch_spinlock_t *lock)
72{
Michael Ellerman51d7d522014-08-07 15:36:17 +100073 smp_mb();
Michael Ellerman7179ba52014-01-15 18:14:29 +110074 return !arch_spin_value_unlocked(*lock);
75}
76
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070077/*
78 * This returns the old value in the lock, so we succeeded
79 * in getting the lock if the return value is 0.
80 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010081static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110083 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070084
Paul Mackerras0212ddd2005-11-19 20:50:46 +110085 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070086 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000087"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070088 cmpwi 0,%0,0\n\
89 bne- 2f\n\
90 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000091 bne- 1b\n"
92 PPC_ACQUIRE_BARRIER
93"2:"
94 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110095 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070096 : "cr0", "memory");
97
98 return tmp;
99}
100
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100101static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700102{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000103 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100104 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
108 * On a system with shared processors (that is, where a physical
109 * processor is multiplexed between several virtual processors),
110 * there is no point spinning on a lock if the holder of the lock
111 * isn't currently scheduled on a physical processor. Instead
112 * we detect this situation and ask the hypervisor to give the
113 * rest of our timeslice to the lock holder.
114 *
115 * So that we can tell which virtual processor is holding a lock,
116 * we put 0x80000000 | smp_processor_id() in the lock when it is
117 * held. Conveniently, we have a word in the paca that holds this
118 * value.
119 */
120
Stephen Rothwell1b041882012-03-15 18:20:13 +0000121#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000123#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100124extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100125extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000126#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define __spin_yield(x) barrier()
128#define __rw_yield(x) barrier()
129#define SHARED_PROCESSOR 0
130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100132static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
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 do {
139 HMT_low();
140 if (SHARED_PROCESSOR)
141 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700142 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 HMT_medium();
144 }
145}
146
Bart Van Assche89b58102008-06-28 16:51:35 +1000147static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100148void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 unsigned long flags_dis;
151
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000152 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100154 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156 local_save_flags(flags_dis);
157 local_irq_restore(flags);
158 do {
159 HMT_low();
160 if (SHARED_PROCESSOR)
161 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700162 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 HMT_medium();
164 local_irq_restore(flags_dis);
165 }
166}
Will Deacona4c18872017-10-03 19:25:29 +0100167#define arch_spin_lock_flags arch_spin_lock_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100169static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700170{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000171 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100172 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000173 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700174 lock->slock = 0;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
178 * Read-write spinlocks, allowing multiple readers
179 * but only one writer.
180 *
181 * NOTE! it is quite common to have readers in interrupts
182 * but no interrupt writers. For those circumstances we
183 * can "mix" irq-safe locks - any writer needs to get a
184 * irq-safe write-lock, but readers can get non-irqsafe
185 * read-locks.
186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100188#ifdef CONFIG_PPC64
189#define __DO_SIGN_EXTEND "extsw %0,%0\n"
190#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
191#else
192#define __DO_SIGN_EXTEND
193#define WRLOCK_TOKEN (-1)
194#endif
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * This returns the old value in the lock + 1,
198 * so we got a read lock if the return value is > 0.
199 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100200static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 long tmp;
203
204 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000205"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100206 __DO_SIGN_EXTEND
207" addic. %0,%0,1\n\
208 ble- 2f\n"
209 PPC405_ERR77(0,%1)
210" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000211 bne- 1b\n"
212 PPC_ACQUIRE_BARRIER
213"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 : "r" (&rw->lock)
215 : "cr0", "xer", "memory");
216
217 return tmp;
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*
221 * This returns the old value in the lock,
222 * so we got the write lock if the return value is 0.
223 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100224static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100226 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100228 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000230"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100232 bne- 2f\n"
233 PPC405_ERR77(0,%1)
234" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000235 bne- 1b\n"
236 PPC_ACQUIRE_BARRIER
237"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100238 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 : "cr0", "memory");
240
241 return tmp;
242}
243
Thomas Gleixnere5931942009-12-03 20:08:46 +0100244static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700246 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100247 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700248 break;
249 do {
250 HMT_low();
251 if (SHARED_PROCESSOR)
252 __rw_yield(rw);
253 } while (unlikely(rw->lock < 0));
254 HMT_medium();
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Thomas Gleixnere5931942009-12-03 20:08:46 +0100258static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100261 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 break;
263 do {
264 HMT_low();
265 if (SHARED_PROCESSOR)
266 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700267 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 HMT_medium();
269 }
270}
271
Thomas Gleixnere5931942009-12-03 20:08:46 +0100272static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700273{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100274 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700275}
276
Thomas Gleixnere5931942009-12-03 20:08:46 +0100277static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700278{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100279 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700280}
281
Thomas Gleixnere5931942009-12-03 20:08:46 +0100282static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700283{
284 long tmp;
285
286 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100287 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000288 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100289"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100290 addic %0,%0,-1\n"
291 PPC405_ERR77(0,%1)
292" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700293 bne- 1b"
294 : "=&r"(tmp)
295 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000296 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700297}
298
Thomas Gleixnere5931942009-12-03 20:08:46 +0100299static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700300{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100301 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000302 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700303 rw->lock = 0;
304}
305
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100306#define arch_spin_relax(lock) __spin_yield(lock)
307#define arch_read_relax(lock) __rw_yield(lock)
308#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700309
Peter Zijlstrad89e588c2016-09-05 11:37:53 +0200310/* See include/linux/spinlock.h */
311#define smp_mb__after_spinlock() smp_mb()
312
Arnd Bergmann88ced032005-12-16 22:43:46 +0100313#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#endif /* __ASM_SPINLOCK_H */