blob: 5f54a744dcc5e26921ddafe1d267985f71dd8540 [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
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070057/*
58 * This returns the old value in the lock, so we succeeded
59 * in getting the lock if the return value is 0.
60 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010061static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110063 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070064
Paul Mackerras0212ddd2005-11-19 20:50:46 +110065 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070066 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000067"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070068 cmpwi 0,%0,0\n\
69 bne- 2f\n\
70 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000071 bne- 1b\n"
72 PPC_ACQUIRE_BARRIER
73"2:"
74 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110075 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070076 : "cr0", "memory");
77
78 return tmp;
79}
80
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010081static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070082{
Paul Mackerrasf007cac2006-09-13 22:08:26 +100083 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010084 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87/*
88 * On a system with shared processors (that is, where a physical
89 * processor is multiplexed between several virtual processors),
90 * there is no point spinning on a lock if the holder of the lock
91 * isn't currently scheduled on a physical processor. Instead
92 * we detect this situation and ask the hypervisor to give the
93 * rest of our timeslice to the lock holder.
94 *
95 * So that we can tell which virtual processor is holding a lock,
96 * we put 0x80000000 | smp_processor_id() in the lock when it is
97 * held. Conveniently, we have a word in the paca that holds this
98 * value.
99 */
100
Stephen Rothwell1b041882012-03-15 18:20:13 +0000101#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000103#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100104extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100105extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000106#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define __spin_yield(x) barrier()
108#define __rw_yield(x) barrier()
109#define SHARED_PROCESSOR 0
110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100112static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000114 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100116 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 break;
118 do {
119 HMT_low();
120 if (SHARED_PROCESSOR)
121 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700122 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 HMT_medium();
124 }
125}
126
Bart Van Assche89b58102008-06-28 16:51:35 +1000127static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100128void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 unsigned long flags_dis;
131
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000132 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100134 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 break;
136 local_save_flags(flags_dis);
137 local_irq_restore(flags);
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 local_irq_restore(flags_dis);
145 }
146}
147
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100148static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700149{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000150 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100151 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000152 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700153 lock->slock = 0;
154}
155
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100156#ifdef CONFIG_PPC64
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100157extern void arch_spin_unlock_wait(arch_spinlock_t *lock);
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100158#else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100159#define arch_spin_unlock_wait(lock) \
160 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100161#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * Read-write spinlocks, allowing multiple readers
165 * but only one writer.
166 *
167 * NOTE! it is quite common to have readers in interrupts
168 * but no interrupt writers. For those circumstances we
169 * can "mix" irq-safe locks - any writer needs to get a
170 * irq-safe write-lock, but readers can get non-irqsafe
171 * read-locks.
172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Thomas Gleixnere5931942009-12-03 20:08:46 +0100174#define arch_read_can_lock(rw) ((rw)->lock >= 0)
175#define arch_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100177#ifdef CONFIG_PPC64
178#define __DO_SIGN_EXTEND "extsw %0,%0\n"
179#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
180#else
181#define __DO_SIGN_EXTEND
182#define WRLOCK_TOKEN (-1)
183#endif
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
186 * This returns the old value in the lock + 1,
187 * so we got a read lock if the return value is > 0.
188 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100189static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 long tmp;
192
193 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000194"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100195 __DO_SIGN_EXTEND
196" addic. %0,%0,1\n\
197 ble- 2f\n"
198 PPC405_ERR77(0,%1)
199" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000200 bne- 1b\n"
201 PPC_ACQUIRE_BARRIER
202"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 : "r" (&rw->lock)
204 : "cr0", "xer", "memory");
205
206 return tmp;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
210 * This returns the old value in the lock,
211 * so we got the write lock if the return value is 0.
212 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100213static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100215 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100217 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000219"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100221 bne- 2f\n"
222 PPC405_ERR77(0,%1)
223" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000224 bne- 1b\n"
225 PPC_ACQUIRE_BARRIER
226"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100227 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 : "cr0", "memory");
229
230 return tmp;
231}
232
Thomas Gleixnere5931942009-12-03 20:08:46 +0100233static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700235 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100236 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700237 break;
238 do {
239 HMT_low();
240 if (SHARED_PROCESSOR)
241 __rw_yield(rw);
242 } while (unlikely(rw->lock < 0));
243 HMT_medium();
244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Thomas Gleixnere5931942009-12-03 20:08:46 +0100247static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100250 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252 do {
253 HMT_low();
254 if (SHARED_PROCESSOR)
255 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700256 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 HMT_medium();
258 }
259}
260
Thomas Gleixnere5931942009-12-03 20:08:46 +0100261static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700262{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100263 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700264}
265
Thomas Gleixnere5931942009-12-03 20:08:46 +0100266static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700267{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100268 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700269}
270
Thomas Gleixnere5931942009-12-03 20:08:46 +0100271static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700272{
273 long tmp;
274
275 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100276 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000277 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100278"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100279 addic %0,%0,-1\n"
280 PPC405_ERR77(0,%1)
281" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700282 bne- 1b"
283 : "=&r"(tmp)
284 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000285 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700286}
287
Thomas Gleixnere5931942009-12-03 20:08:46 +0100288static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700289{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100290 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000291 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700292 rw->lock = 0;
293}
294
Thomas Gleixnere5931942009-12-03 20:08:46 +0100295#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
296#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700297
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100298#define arch_spin_relax(lock) __spin_yield(lock)
299#define arch_read_relax(lock) __rw_yield(lock)
300#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700301
Arnd Bergmann88ced032005-12-16 22:43:46 +0100302#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303#endif /* __ASM_SPINLOCK_H */