blob: 258c939931902c91fcd28f345220c6254aa747c2 [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>
Kelly Daly1da44032005-11-01 16:59:20 +110026#include <asm/iseries/hv_call.h>
Paul Mackerras0212ddd2005-11-19 20:50:46 +110027#endif
28#include <asm/asm-compat.h>
29#include <asm/synch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070031#define __raw_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 */
35#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
36#else
37#define LOCK_TOKEN 1
38#endif
39
Paul Mackerrasf007cac2006-09-13 22:08:26 +100040#if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
41#define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
42#define SYNC_IO do { \
43 if (unlikely(get_paca()->io_sync)) { \
44 mb(); \
45 get_paca()->io_sync = 0; \
46 } \
47 } while (0)
48#else
49#define CLEAR_IO_SYNC
50#define SYNC_IO
51#endif
52
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070053/*
54 * This returns the old value in the lock, so we succeeded
55 * in getting the lock if the return value is 0.
56 */
57static __inline__ unsigned long __spin_trylock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Paul Mackerras0212ddd2005-11-19 20:50:46 +110059 unsigned long tmp, token;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070060
Paul Mackerras0212ddd2005-11-19 20:50:46 +110061 token = LOCK_TOKEN;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070062 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +110063"1: lwarx %0,0,%2\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070064 cmpwi 0,%0,0\n\
65 bne- 2f\n\
66 stwcx. %1,0,%2\n\
67 bne- 1b\n\
68 isync\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100692:" : "=&r" (tmp)
70 : "r" (token), "r" (&lock->slock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070071 : "cr0", "memory");
72
73 return tmp;
74}
75
76static int __inline__ __raw_spin_trylock(raw_spinlock_t *lock)
77{
Paul Mackerrasf007cac2006-09-13 22:08:26 +100078 CLEAR_IO_SYNC;
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070079 return __spin_trylock(lock) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82/*
83 * On a system with shared processors (that is, where a physical
84 * processor is multiplexed between several virtual processors),
85 * there is no point spinning on a lock if the holder of the lock
86 * isn't currently scheduled on a physical processor. Instead
87 * we detect this situation and ask the hypervisor to give the
88 * rest of our timeslice to the lock holder.
89 *
90 * So that we can tell which virtual processor is holding a lock,
91 * we put 0x80000000 | smp_processor_id() in the lock when it is
92 * held. Conveniently, we have a word in the paca that holds this
93 * value.
94 */
95
96#if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES)
97/* We only yield to the hypervisor if we are in shared processor mode */
David Gibson3356bb9f72006-01-13 10:26:42 +110098#define SHARED_PROCESSOR (get_lppaca()->shared_proc)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070099extern void __spin_yield(raw_spinlock_t *lock);
100extern void __rw_yield(raw_rwlock_t *lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#else /* SPLPAR || ISERIES */
102#define __spin_yield(x) barrier()
103#define __rw_yield(x) barrier()
104#define SHARED_PROCESSOR 0
105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700107static void __inline__ __raw_spin_lock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000109 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 while (1) {
111 if (likely(__spin_trylock(lock) == 0))
112 break;
113 do {
114 HMT_low();
115 if (SHARED_PROCESSOR)
116 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700117 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 HMT_medium();
119 }
120}
121
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700122static void __inline__ __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 unsigned long flags_dis;
125
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000126 CLEAR_IO_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 while (1) {
128 if (likely(__spin_trylock(lock) == 0))
129 break;
130 local_save_flags(flags_dis);
131 local_irq_restore(flags);
132 do {
133 HMT_low();
134 if (SHARED_PROCESSOR)
135 __spin_yield(lock);
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700136 } while (unlikely(lock->slock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 HMT_medium();
138 local_irq_restore(flags_dis);
139 }
140}
141
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700142static __inline__ void __raw_spin_unlock(raw_spinlock_t *lock)
143{
Paul Mackerrasf007cac2006-09-13 22:08:26 +1000144 SYNC_IO;
Anton Blanchard144b9c12006-01-13 15:37:17 +1100145 __asm__ __volatile__("# __raw_spin_unlock\n\t"
146 LWSYNC_ON_SMP: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700147 lock->slock = 0;
148}
149
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100150#ifdef CONFIG_PPC64
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700151extern void __raw_spin_unlock_wait(raw_spinlock_t *lock);
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100152#else
153#define __raw_spin_unlock_wait(lock) \
154 do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while (0)
155#endif
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * Read-write spinlocks, allowing multiple readers
159 * but only one writer.
160 *
161 * NOTE! it is quite common to have readers in interrupts
162 * but no interrupt writers. For those circumstances we
163 * can "mix" irq-safe locks - any writer needs to get a
164 * irq-safe write-lock, but readers can get non-irqsafe
165 * read-locks.
166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700168#define __raw_read_can_lock(rw) ((rw)->lock >= 0)
169#define __raw_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100171#ifdef CONFIG_PPC64
172#define __DO_SIGN_EXTEND "extsw %0,%0\n"
173#define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
174#else
175#define __DO_SIGN_EXTEND
176#define WRLOCK_TOKEN (-1)
177#endif
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
180 * This returns the old value in the lock + 1,
181 * so we got a read lock if the return value is > 0.
182 */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700183static long __inline__ __read_trylock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 long tmp;
186
187 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100188"1: lwarx %0,0,%1\n"
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100189 __DO_SIGN_EXTEND
190" addic. %0,%0,1\n\
191 ble- 2f\n"
192 PPC405_ERR77(0,%1)
193" stwcx. %0,0,%1\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 bne- 1b\n\
195 isync\n\
1962:" : "=&r" (tmp)
197 : "r" (&rw->lock)
198 : "cr0", "xer", "memory");
199
200 return tmp;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
204 * This returns the old value in the lock,
205 * so we got the write lock if the return value is 0.
206 */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700207static __inline__ long __write_trylock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100209 long tmp, token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100211 token = WRLOCK_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100213"1: lwarx %0,0,%2\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 cmpwi 0,%0,0\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100215 bne- 2f\n"
216 PPC405_ERR77(0,%1)
217" stwcx. %1,0,%2\n\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 bne- 1b\n\
219 isync\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +11002202:" : "=&r" (tmp)
221 : "r" (token), "r" (&rw->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 : "cr0", "memory");
223
224 return tmp;
225}
226
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700227static void __inline__ __raw_read_lock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700229 while (1) {
230 if (likely(__read_trylock(rw) > 0))
231 break;
232 do {
233 HMT_low();
234 if (SHARED_PROCESSOR)
235 __rw_yield(rw);
236 } while (unlikely(rw->lock < 0));
237 HMT_medium();
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700241static void __inline__ __raw_write_lock(raw_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 while (1) {
244 if (likely(__write_trylock(rw) == 0))
245 break;
246 do {
247 HMT_low();
248 if (SHARED_PROCESSOR)
249 __rw_yield(rw);
Jake Moilanend6374132005-05-01 08:58:47 -0700250 } while (unlikely(rw->lock != 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 HMT_medium();
252 }
253}
254
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700255static int __inline__ __raw_read_trylock(raw_rwlock_t *rw)
256{
257 return __read_trylock(rw) > 0;
258}
259
260static int __inline__ __raw_write_trylock(raw_rwlock_t *rw)
261{
262 return __write_trylock(rw) == 0;
263}
264
265static void __inline__ __raw_read_unlock(raw_rwlock_t *rw)
266{
267 long tmp;
268
269 __asm__ __volatile__(
Anton Blanchard144b9c12006-01-13 15:37:17 +1100270 "# read_unlock\n\t"
271 LWSYNC_ON_SMP
272"1: lwarx %0,0,%1\n\
Paul Mackerras0212ddd2005-11-19 20:50:46 +1100273 addic %0,%0,-1\n"
274 PPC405_ERR77(0,%1)
275" stwcx. %0,0,%1\n\
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700276 bne- 1b"
277 : "=&r"(tmp)
278 : "r"(&rw->lock)
279 : "cr0", "memory");
280}
281
282static __inline__ void __raw_write_unlock(raw_rwlock_t *rw)
283{
Anton Blanchard144b9c12006-01-13 15:37:17 +1100284 __asm__ __volatile__("# write_unlock\n\t"
285 LWSYNC_ON_SMP: : :"memory");
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700286 rw->lock = 0;
287}
288
Martin Schwidefskycdc39362006-09-30 23:27:44 -0700289#define _raw_spin_relax(lock) __spin_yield(lock)
290#define _raw_read_relax(lock) __rw_yield(lock)
291#define _raw_write_relax(lock) __rw_yield(lock)
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700292
Arnd Bergmann88ced032005-12-16 22:43:46 +0100293#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#endif /* __ASM_SPINLOCK_H */