blob: 3198dde87d4db2a1f503546f2138b5e2b9554e06 [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 */
Jason A. Donenfeld0b9700d2019-12-23 14:31:47 +010022#include <linux/jump_label.h>
Benjamin Herrenschmidt945feb12008-04-17 14:35:01 +100023#include <linux/irqflags.h>
Paul Mackerras0212ddd2005-11-19 20:50:46 +110024#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/paca.h>
26#include <asm/hvcall.h>
Paul Mackerras0212ddd2005-11-19 20:50:46 +110027#endif
Paul Mackerras0212ddd2005-11-19 20:50:46 +110028#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
Srikar Dronamraju04a20962019-12-05 14:02:17 +053057DECLARE_STATIC_KEY_FALSE(shared_processor);
58
Pan Xinhui41946c82016-11-02 05:08:31 -040059#define vcpu_is_preempted vcpu_is_preempted
60static inline bool vcpu_is_preempted(int cpu)
61{
Srikar Dronamraju04a20962019-12-05 14:02:17 +053062 if (!static_branch_unlikely(&shared_processor))
Aneesh Kumar K.Va6201da2018-04-02 13:03:37 +053063 return false;
Pan Xinhui41946c82016-11-02 05:08:31 -040064 return !!(be32_to_cpu(lppaca_of(cpu).yield_count) & 1);
65}
66#endif
67
Michael Ellerman3405d232014-01-15 18:14:28 +110068static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
69{
70 return lock.slock == 0;
71}
72
Michael Ellerman7179ba52014-01-15 18:14:29 +110073static inline int arch_spin_is_locked(arch_spinlock_t *lock)
74{
Michael Ellerman51d7d522014-08-07 15:36:17 +100075 smp_mb();
Michael Ellerman7179ba52014-01-15 18:14:29 +110076 return !arch_spin_value_unlocked(*lock);
77}
78
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070079/*
80 * This returns the old value in the lock, so we succeeded
81 * in getting the lock if the return value is 0.
82 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010083static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110085 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070086
Paul Mackerras0212ddd2005-11-19 20:50:46 +110087 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070088 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000089"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070090 cmpwi 0,%0,0\n\
91 bne- 2f\n\
92 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000093 bne- 1b\n"
94 PPC_ACQUIRE_BARRIER
95"2:"
96 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110097 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070098 : "cr0", "memory");
99
100 return tmp;
101}
102
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100103static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700104{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000105 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100106 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/*
110 * On a system with shared processors (that is, where a physical
111 * processor is multiplexed between several virtual processors),
112 * there is no point spinning on a lock if the holder of the lock
113 * isn't currently scheduled on a physical processor. Instead
114 * we detect this situation and ask the hypervisor to give the
115 * rest of our timeslice to the lock holder.
116 *
117 * So that we can tell which virtual processor is holding a lock,
118 * we put 0x80000000 | smp_processor_id() in the lock when it is
119 * held. Conveniently, we have a word in the paca that holds this
120 * value.
121 */
122
Stephen Rothwell1b041882012-03-15 18:20:13 +0000123#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000125#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100126extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100127extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000128#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#define __spin_yield(x) barrier()
130#define __rw_yield(x) barrier()
131#define SHARED_PROCESSOR 0
132#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100134static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000136 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100138 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 break;
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 }
147}
148
Bart Van Assche89b58102008-06-28 16:51:35 +1000149static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100150void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 unsigned long flags_dis;
153
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000154 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100156 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158 local_save_flags(flags_dis);
159 local_irq_restore(flags);
160 do {
161 HMT_low();
162 if (SHARED_PROCESSOR)
163 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700164 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 HMT_medium();
166 local_irq_restore(flags_dis);
167 }
168}
Will Deacona4c18872017-10-03 19:25:29 +0100169#define arch_spin_lock_flags arch_spin_lock_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100171static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700172{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000173 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100174 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000175 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700176 lock->slock = 0;
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
180 * Read-write spinlocks, allowing multiple readers
181 * but only one writer.
182 *
183 * NOTE! it is quite common to have readers in interrupts
184 * but no interrupt writers. For those circumstances we
185 * can "mix" irq-safe locks - any writer needs to get a
186 * irq-safe write-lock, but readers can get non-irqsafe
187 * read-locks.
188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100190#ifdef CONFIG_PPC64
191#define __DO_SIGN_EXTEND "extsw %0,%0\n"
192#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
193#else
194#define __DO_SIGN_EXTEND
195#define WRLOCK_TOKEN (-1)
196#endif
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
199 * This returns the old value in the lock + 1,
200 * so we got a read lock if the return value is > 0.
201 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100202static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 long tmp;
205
206 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000207"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100208 __DO_SIGN_EXTEND
209" addic. %0,%0,1\n\
210 ble- 2f\n"
211 PPC405_ERR77(0,%1)
212" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000213 bne- 1b\n"
214 PPC_ACQUIRE_BARRIER
215"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 : "r" (&rw->lock)
217 : "cr0", "xer", "memory");
218
219 return tmp;
220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/*
223 * This returns the old value in the lock,
224 * so we got the write lock if the return value is 0.
225 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100226static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100228 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100230 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000232"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100234 bne- 2f\n"
235 PPC405_ERR77(0,%1)
236" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000237 bne- 1b\n"
238 PPC_ACQUIRE_BARRIER
239"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100240 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 : "cr0", "memory");
242
243 return tmp;
244}
245
Thomas Gleixnere5931942009-12-03 20:08:46 +0100246static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700248 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100249 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700250 break;
251 do {
252 HMT_low();
253 if (SHARED_PROCESSOR)
254 __rw_yield(rw);
255 } while (unlikely(rw->lock < 0));
256 HMT_medium();
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Thomas Gleixnere5931942009-12-03 20:08:46 +0100260static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100263 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
265 do {
266 HMT_low();
267 if (SHARED_PROCESSOR)
268 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700269 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 HMT_medium();
271 }
272}
273
Thomas Gleixnere5931942009-12-03 20:08:46 +0100274static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700275{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100276 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700277}
278
Thomas Gleixnere5931942009-12-03 20:08:46 +0100279static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700280{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100281 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700282}
283
Thomas Gleixnere5931942009-12-03 20:08:46 +0100284static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700285{
286 long tmp;
287
288 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100289 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000290 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100291"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100292 addic %0,%0,-1\n"
293 PPC405_ERR77(0,%1)
294" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700295 bne- 1b"
296 : "=&r"(tmp)
297 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000298 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700299}
300
Thomas Gleixnere5931942009-12-03 20:08:46 +0100301static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700302{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100303 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000304 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700305 rw->lock = 0;
306}
307
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100308#define arch_spin_relax(lock) __spin_yield(lock)
309#define arch_read_relax(lock) __rw_yield(lock)
310#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700311
Peter Zijlstrad89e588c2016-09-05 11:37:53 +0200312/* See include/linux/spinlock.h */
313#define smp_mb__after_spinlock() smp_mb()
314
Arnd Bergmann88ced032005-12-16 22:43:46 +0100315#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#endif /* __ASM_SPINLOCK_H */