blob: 8c1b913de6d72ccb2a54759570fc8a511a4ea4e9 [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{
59 return !!(be32_to_cpu(lppaca_of(cpu).yield_count) & 1);
60}
61#endif
62
Michael Ellerman3405d232014-01-15 18:14:28 +110063static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
64{
65 return lock.slock == 0;
66}
67
Michael Ellerman7179ba52014-01-15 18:14:29 +110068static inline int arch_spin_is_locked(arch_spinlock_t *lock)
69{
Michael Ellerman51d7d522014-08-07 15:36:17 +100070 smp_mb();
Michael Ellerman7179ba52014-01-15 18:14:29 +110071 return !arch_spin_value_unlocked(*lock);
72}
73
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070074/*
75 * This returns the old value in the lock, so we succeeded
76 * in getting the lock if the return value is 0.
77 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010078static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110080 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070081
Paul Mackerras0212ddd2005-11-19 20:50:46 +110082 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070083 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000084"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070085 cmpwi 0,%0,0\n\
86 bne- 2f\n\
87 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000088 bne- 1b\n"
89 PPC_ACQUIRE_BARRIER
90"2:"
91 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110092 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070093 : "cr0", "memory");
94
95 return tmp;
96}
97
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010098static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070099{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000100 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100101 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104/*
105 * On a system with shared processors (that is, where a physical
106 * processor is multiplexed between several virtual processors),
107 * there is no point spinning on a lock if the holder of the lock
108 * isn't currently scheduled on a physical processor. Instead
109 * we detect this situation and ask the hypervisor to give the
110 * rest of our timeslice to the lock holder.
111 *
112 * So that we can tell which virtual processor is holding a lock,
113 * we put 0x80000000 | smp_processor_id() in the lock when it is
114 * held. Conveniently, we have a word in the paca that holds this
115 * value.
116 */
117
Stephen Rothwell1b041882012-03-15 18:20:13 +0000118#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000120#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100121extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100122extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000123#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define __spin_yield(x) barrier()
125#define __rw_yield(x) barrier()
126#define SHARED_PROCESSOR 0
127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100129static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000131 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100133 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 break;
135 do {
136 HMT_low();
137 if (SHARED_PROCESSOR)
138 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700139 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 HMT_medium();
141 }
142}
143
Bart Van Assche89b58102008-06-28 16:51:35 +1000144static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100145void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 unsigned long flags_dis;
148
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000149 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100151 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153 local_save_flags(flags_dis);
154 local_irq_restore(flags);
155 do {
156 HMT_low();
157 if (SHARED_PROCESSOR)
158 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700159 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 HMT_medium();
161 local_irq_restore(flags_dis);
162 }
163}
164
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100165static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700166{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000167 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100168 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000169 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700170 lock->slock = 0;
171}
172
Boqun Feng6262db72016-06-10 11:51:28 +0800173static inline void arch_spin_unlock_wait(arch_spinlock_t *lock)
174{
175 arch_spinlock_t lock_val;
176
177 smp_mb();
178
179 /*
180 * Atomically load and store back the lock value (unchanged). This
181 * ensures that our observation of the lock value is ordered with
182 * respect to other lock operations.
183 */
184 __asm__ __volatile__(
185"1: " PPC_LWARX(%0, 0, %2, 0) "\n"
186" stwcx. %0, 0, %2\n"
187" bne- 1b\n"
188 : "=&r" (lock_val), "+m" (*lock)
189 : "r" (lock)
190 : "cr0", "xer");
191
192 if (arch_spin_value_unlocked(lock_val))
193 goto out;
194
195 while (lock->slock) {
196 HMT_low();
197 if (SHARED_PROCESSOR)
198 __spin_yield(lock);
199 }
200 HMT_medium();
201
202out:
203 smp_mb();
204}
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*
207 * Read-write spinlocks, allowing multiple readers
208 * but only one writer.
209 *
210 * NOTE! it is quite common to have readers in interrupts
211 * but no interrupt writers. For those circumstances we
212 * can "mix" irq-safe locks - any writer needs to get a
213 * irq-safe write-lock, but readers can get non-irqsafe
214 * read-locks.
215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Thomas Gleixnere5931942009-12-03 20:08:46 +0100217#define arch_read_can_lock(rw) ((rw)->lock >= 0)
218#define arch_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100220#ifdef CONFIG_PPC64
221#define __DO_SIGN_EXTEND "extsw %0,%0\n"
222#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
223#else
224#define __DO_SIGN_EXTEND
225#define WRLOCK_TOKEN (-1)
226#endif
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*
229 * This returns the old value in the lock + 1,
230 * so we got a read lock if the return value is > 0.
231 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100232static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 long tmp;
235
236 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000237"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100238 __DO_SIGN_EXTEND
239" addic. %0,%0,1\n\
240 ble- 2f\n"
241 PPC405_ERR77(0,%1)
242" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000243 bne- 1b\n"
244 PPC_ACQUIRE_BARRIER
245"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 : "r" (&rw->lock)
247 : "cr0", "xer", "memory");
248
249 return tmp;
250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/*
253 * This returns the old value in the lock,
254 * so we got the write lock if the return value is 0.
255 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100256static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100258 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100260 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000262"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100264 bne- 2f\n"
265 PPC405_ERR77(0,%1)
266" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000267 bne- 1b\n"
268 PPC_ACQUIRE_BARRIER
269"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100270 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 : "cr0", "memory");
272
273 return tmp;
274}
275
Thomas Gleixnere5931942009-12-03 20:08:46 +0100276static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700278 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100279 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700280 break;
281 do {
282 HMT_low();
283 if (SHARED_PROCESSOR)
284 __rw_yield(rw);
285 } while (unlikely(rw->lock < 0));
286 HMT_medium();
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Thomas Gleixnere5931942009-12-03 20:08:46 +0100290static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100293 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
295 do {
296 HMT_low();
297 if (SHARED_PROCESSOR)
298 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700299 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 HMT_medium();
301 }
302}
303
Thomas Gleixnere5931942009-12-03 20:08:46 +0100304static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700305{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100306 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700307}
308
Thomas Gleixnere5931942009-12-03 20:08:46 +0100309static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700310{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100311 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700312}
313
Thomas Gleixnere5931942009-12-03 20:08:46 +0100314static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700315{
316 long tmp;
317
318 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100319 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000320 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100321"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100322 addic %0,%0,-1\n"
323 PPC405_ERR77(0,%1)
324" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700325 bne- 1b"
326 : "=&r"(tmp)
327 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000328 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700329}
330
Thomas Gleixnere5931942009-12-03 20:08:46 +0100331static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700332{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100333 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000334 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700335 rw->lock = 0;
336}
337
Thomas Gleixnere5931942009-12-03 20:08:46 +0100338#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
339#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700340
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100341#define arch_spin_relax(lock) __spin_yield(lock)
342#define arch_read_relax(lock) __rw_yield(lock)
343#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700344
Arnd Bergmann88ced032005-12-16 22:43:46 +0100345#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#endif /* __ASM_SPINLOCK_H */