blob: 523673d7583c349a8ea95ec5c2f85cbf59f71339 [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
Michael Ellerman3405d232014-01-15 18:14:28 +110055static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
56{
57 return lock.slock == 0;
58}
59
Michael Ellerman7179ba52014-01-15 18:14:29 +110060static inline int arch_spin_is_locked(arch_spinlock_t *lock)
61{
Michael Ellerman51d7d522014-08-07 15:36:17 +100062 smp_mb();
Michael Ellerman7179ba52014-01-15 18:14:29 +110063 return !arch_spin_value_unlocked(*lock);
64}
65
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070066/*
67 * This returns the old value in the lock, so we succeeded
68 * in getting the lock if the return value is 0.
69 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010070static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110072 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070073
Paul Mackerras0212ddd2005-11-19 20:50:46 +110074 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070075 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +000076"1: " PPC_LWARX(%0,0,%2,1) "\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070077 cmpwi 0,%0,0\n\
78 bne- 2f\n\
79 stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +000080 bne- 1b\n"
81 PPC_ACQUIRE_BARRIER
82"2:"
83 : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +110084 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070085 : "cr0", "memory");
86
87 return tmp;
88}
89
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010090static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070091{
Paul Mackerrasf007cac2006-09-13 22:08:26 +100092 CLEAR_IO_SYNC;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010093 return __arch_spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/*
97 * On a system with shared processors (that is, where a physical
98 * processor is multiplexed between several virtual processors),
99 * there is no point spinning on a lock if the holder of the lock
100 * isn't currently scheduled on a physical processor. Instead
101 * we detect this situation and ask the hypervisor to give the
102 * rest of our timeslice to the lock holder.
103 *
104 * So that we can tell which virtual processor is holding a lock,
105 * we put 0x80000000 | smp_processor_id() in the lock when it is
106 * held. Conveniently, we have a word in the paca that holds this
107 * value.
108 */
109
Stephen Rothwell1b041882012-03-15 18:20:13 +0000110#if defined(CONFIG_PPC_SPLPAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* We only yield to the hypervisor if we are in shared processor mode */
Anton Blanchardf13c13a2013-08-07 02:01:26 +1000112#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
Thomas Gleixner445c8952009-12-02 19:49:50 +0100113extern void __spin_yield(arch_spinlock_t *lock);
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100114extern void __rw_yield(arch_rwlock_t *lock);
Stephen Rothwell1b041882012-03-15 18:20:13 +0000115#else /* SPLPAR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define __spin_yield(x) barrier()
117#define __rw_yield(x) barrier()
118#define SHARED_PROCESSOR 0
119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100121static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000123 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100125 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 break;
127 do {
128 HMT_low();
129 if (SHARED_PROCESSOR)
130 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700131 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 HMT_medium();
133 }
134}
135
Bart Van Assche89b58102008-06-28 16:51:35 +1000136static inline
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100137void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 unsigned long flags_dis;
140
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000141 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 while (1) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100143 if (likely(__arch_spin_trylock(lock) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 break;
145 local_save_flags(flags_dis);
146 local_irq_restore(flags);
147 do {
148 HMT_low();
149 if (SHARED_PROCESSOR)
150 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700151 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 HMT_medium();
153 local_irq_restore(flags_dis);
154 }
155}
156
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100157static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700158{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000159 SYNC_IO;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100160 __asm__ __volatile__("# arch_spin_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000161 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700162 lock->slock = 0;
163}
164
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100165#ifdef CONFIG_PPC64
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100166extern void arch_spin_unlock_wait(arch_spinlock_t *lock);
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100167#else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100168#define arch_spin_unlock_wait(lock) \
169 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100170#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * Read-write spinlocks, allowing multiple readers
174 * but only one writer.
175 *
176 * NOTE! it is quite common to have readers in interrupts
177 * but no interrupt writers. For those circumstances we
178 * can "mix" irq-safe locks - any writer needs to get a
179 * irq-safe write-lock, but readers can get non-irqsafe
180 * read-locks.
181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Thomas Gleixnere5931942009-12-03 20:08:46 +0100183#define arch_read_can_lock(rw) ((rw)->lock >= 0)
184#define arch_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100186#ifdef CONFIG_PPC64
187#define __DO_SIGN_EXTEND "extsw %0,%0\n"
188#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
189#else
190#define __DO_SIGN_EXTEND
191#define WRLOCK_TOKEN (-1)
192#endif
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
195 * This returns the old value in the lock + 1,
196 * so we got a read lock if the return value is > 0.
197 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100198static inline long __arch_read_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 long tmp;
201
202 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000203"1: " PPC_LWARX(%0,0,%1,1) "\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100204 __DO_SIGN_EXTEND
205" addic. %0,%0,1\n\
206 ble- 2f\n"
207 PPC405_ERR77(0,%1)
208" stwcx. %0,0,%1\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000209 bne- 1b\n"
210 PPC_ACQUIRE_BARRIER
211"2:" : "=&r" (tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 : "r" (&rw->lock)
213 : "cr0", "xer", "memory");
214
215 return tmp;
216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
219 * This returns the old value in the lock,
220 * so we got the write lock if the return value is 0.
221 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100222static inline long __arch_write_trylock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100224 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100226 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 __asm__ __volatile__(
Anton Blanchard4e14a4d2010-02-10 00:57:28 +0000228"1: " PPC_LWARX(%0,0,%2,1) "\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100230 bne- 2f\n"
231 PPC405_ERR77(0,%1)
232" stwcx. %1,0,%2\n\
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000233 bne- 1b\n"
234 PPC_ACQUIRE_BARRIER
235"2:" : "=&r" (tmp)
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100236 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 : "cr0", "memory");
238
239 return tmp;
240}
241
Thomas Gleixnere5931942009-12-03 20:08:46 +0100242static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700244 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100245 if (likely(__arch_read_trylock(rw) > 0))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700246 break;
247 do {
248 HMT_low();
249 if (SHARED_PROCESSOR)
250 __rw_yield(rw);
251 } while (unlikely(rw->lock < 0));
252 HMT_medium();
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Thomas Gleixnere5931942009-12-03 20:08:46 +0100256static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 while (1) {
Thomas Gleixnere5931942009-12-03 20:08:46 +0100259 if (likely(__arch_write_trylock(rw) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 break;
261 do {
262 HMT_low();
263 if (SHARED_PROCESSOR)
264 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700265 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 HMT_medium();
267 }
268}
269
Thomas Gleixnere5931942009-12-03 20:08:46 +0100270static inline int arch_read_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700271{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100272 return __arch_read_trylock(rw) > 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700273}
274
Thomas Gleixnere5931942009-12-03 20:08:46 +0100275static inline int arch_write_trylock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700276{
Thomas Gleixnere5931942009-12-03 20:08:46 +0100277 return __arch_write_trylock(rw) == 0;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700278}
279
Thomas Gleixnere5931942009-12-03 20:08:46 +0100280static inline void arch_read_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700281{
282 long tmp;
283
284 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100285 "# read_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000286 PPC_RELEASE_BARRIER
Anton Blanchard144b9c12006-01-13 15:37:17 +1100287"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100288 addic %0,%0,-1\n"
289 PPC405_ERR77(0,%1)
290" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700291 bne- 1b"
292 : "=&r"(tmp)
293 : "r"(&rw->lock)
Paul Mackerrasefc36242008-11-05 18:39:27 +0000294 : "cr0", "xer", "memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700295}
296
Thomas Gleixnere5931942009-12-03 20:08:46 +0100297static inline void arch_write_unlock(arch_rwlock_t *rw)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700298{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100299 __asm__ __volatile__("# write_unlock\n\t"
Anton Blanchardf10e2e52010-02-10 01:04:06 +0000300 PPC_RELEASE_BARRIER: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700301 rw->lock = 0;
302}
303
Thomas Gleixnere5931942009-12-03 20:08:46 +0100304#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
305#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700306
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100307#define arch_spin_relax(lock) __spin_yield(lock)
308#define arch_read_relax(lock) __rw_yield(lock)
309#define arch_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700310
Arnd Bergmann88ced032005-12-16 22:43:46 +0100311#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#endif /* __ASM_SPINLOCK_H */