blob: 72dc4ddc2972a06539e41bf9bd51fb7c407b8049 [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 Mackerras0212ddd2005-11-19 20:50:46 +110031#ifdef CONFIG_PPC64
32/* use 0x800000yy when locked, where yy == CPU number */
Anton Blanchard54bb7f42013-08-07 02:01:51 +100033#ifdef __BIG_ENDIAN__
Paul Mackerras0212ddd2005-11-19 20:50:46 +110034#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
35#else
Anton Blanchard54bb7f42013-08-07 02:01:51 +100036#define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
37#endif
38#else
Paul Mackerras0212ddd2005-11-19 20:50:46 +110039#define LOCK_TOKEN 1
40#endif
41
Paul Mackerrasf007cac2006-09-13 22:08:26 +100042#if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
43#define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
44#define SYNC_IO do { \
45 if (unlikely(get_paca()->io_sync)) { \
46 mb(); \
47 get_paca()->io_sync = 0; \
48 } \
49 } while (0)
50#else
51#define CLEAR_IO_SYNC
52#define SYNC_IO
53#endif
54
Pan Xinhui41946c82016-11-02 05:08:31 -040055#ifdef CONFIG_PPC_PSERIES
56#define vcpu_is_preempted vcpu_is_preempted
57static inline bool vcpu_is_preempted(int cpu)
58{
Aneesh Kumar K.Va6201da2018-04-02 13:03:37 +053059 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
60 return false;
Pan Xinhui41946c82016-11-02 05:08:31 -040061 return !!(be32_to_cpu(lppaca_of(cpu).yield_count) & 1);
62}
63#endif
64
Michael Ellerman3405d232014-01-15 18:14:28 +110065static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
66{
67 return lock.slock == 0;
68}
69
Michael Ellerman7179ba52014-01-15 18:14:29 +110070static inline int arch_spin_is_locked(arch_spinlock_t *lock)
71{
Michael Ellerman51d7d522014-08-07 15:36:17 +100072 smp_mb();
Michael Ellerman7179ba52014-01-15 18:14:29 +110073 return !arch_spin_value_unlocked(*lock);
74}
75
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070076/*
77 * This returns the old value in the lock, so we succeeded
78 * in getting the lock if the return value is 0.
79 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010080static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110082 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070083
Paul Mackerras0212ddd2005-11-19 20:50:46 +110084 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070085 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000086"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070087 cmpwi 0,%0,0\n\
88 bne- 2f\n\
89 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000090 bne- 1b\n"
91 PPC_ACQUIRE_BARRIER
92"2:"
93 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110094 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070095 : "cr0", "memory");
96
97 return tmp;
98}
99
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100100static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700101{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000102 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100103 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106/*
107 * On a system with shared processors (that is, where a physical
108 * processor is multiplexed between several virtual processors),
109 * there is no point spinning on a lock if the holder of the lock
110 * isn't currently scheduled on a physical processor. Instead
111 * we detect this situation and ask the hypervisor to give the
112 * rest of our timeslice to the lock holder.
113 *
114 * So that we can tell which virtual processor is holding a lock,
115 * we put 0x80000000 | smp_processor_id() in the lock when it is
116 * held. Conveniently, we have a word in the paca that holds this
117 * value.
118 */
119
Stephen Rothwell1b041882012-03-15 18:20:13 +0000120#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000122#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100123extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100124extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000125#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define __spin_yield(x) barrier()
127#define __rw_yield(x) barrier()
128#define SHARED_PROCESSOR 0
129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100131static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000133 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100135 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 break;
137 do {
138 HMT_low();
139 if (SHARED_PROCESSOR)
140 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700141 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 HMT_medium();
143 }
144}
145
Bart Van Assche89b58102008-06-28 16:51:35 +1000146static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100147void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 unsigned long flags_dis;
150
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000151 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100153 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155 local_save_flags(flags_dis);
156 local_irq_restore(flags);
157 do {
158 HMT_low();
159 if (SHARED_PROCESSOR)
160 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700161 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 HMT_medium();
163 local_irq_restore(flags_dis);
164 }
165}
Will Deacona4c18872017-10-03 19:25:29 +0100166#define arch_spin_lock_flags arch_spin_lock_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100168static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700169{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000170 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100171 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000172 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700173 lock->slock = 0;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
177 * Read-write spinlocks, allowing multiple readers
178 * but only one writer.
179 *
180 * NOTE! it is quite common to have readers in interrupts
181 * but no interrupt writers. For those circumstances we
182 * can "mix" irq-safe locks - any writer needs to get a
183 * irq-safe write-lock, but readers can get non-irqsafe
184 * read-locks.
185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100187#ifdef CONFIG_PPC64
188#define __DO_SIGN_EXTEND "extsw %0,%0\n"
189#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
190#else
191#define __DO_SIGN_EXTEND
192#define WRLOCK_TOKEN (-1)
193#endif
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * This returns the old value in the lock + 1,
197 * so we got a read lock if the return value is > 0.
198 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100199static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 long tmp;
202
203 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000204"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100205 __DO_SIGN_EXTEND
206" addic. %0,%0,1\n\
207 ble- 2f\n"
208 PPC405_ERR77(0,%1)
209" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000210 bne- 1b\n"
211 PPC_ACQUIRE_BARRIER
212"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 : "r" (&rw->lock)
214 : "cr0", "xer", "memory");
215
216 return tmp;
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*
220 * This returns the old value in the lock,
221 * so we got the write lock if the return value is 0.
222 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100223static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100225 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100227 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000229"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100231 bne- 2f\n"
232 PPC405_ERR77(0,%1)
233" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000234 bne- 1b\n"
235 PPC_ACQUIRE_BARRIER
236"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100237 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 : "cr0", "memory");
239
240 return tmp;
241}
242
Thomas Gleixnere5931942009-12-03 20:08:46 +0100243static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700245 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100246 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700247 break;
248 do {
249 HMT_low();
250 if (SHARED_PROCESSOR)
251 __rw_yield(rw);
252 } while (unlikely(rw->lock < 0));
253 HMT_medium();
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Thomas Gleixnere5931942009-12-03 20:08:46 +0100257static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100260 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
262 do {
263 HMT_low();
264 if (SHARED_PROCESSOR)
265 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700266 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 HMT_medium();
268 }
269}
270
Thomas Gleixnere5931942009-12-03 20:08:46 +0100271static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700272{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100273 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700274}
275
Thomas Gleixnere5931942009-12-03 20:08:46 +0100276static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700277{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100278 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700279}
280
Thomas Gleixnere5931942009-12-03 20:08:46 +0100281static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700282{
283 long tmp;
284
285 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100286 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000287 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100288"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100289 addic %0,%0,-1\n"
290 PPC405_ERR77(0,%1)
291" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700292 bne- 1b"
293 : "=&r"(tmp)
294 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000295 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700296}
297
Thomas Gleixnere5931942009-12-03 20:08:46 +0100298static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700299{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100300 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000301 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700302 rw->lock = 0;
303}
304
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100305#define arch_spin_relax(lock) __spin_yield(lock)
306#define arch_read_relax(lock) __rw_yield(lock)
307#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700308
Peter Zijlstrad89e588c2016-09-05 11:37:53 +0200309/* See include/linux/spinlock.h */
310#define smp_mb__after_spinlock() smp_mb()
311
Arnd Bergmann88ced032005-12-16 22:43:46 +0100312#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#endif /* __ASM_SPINLOCK_H */