powerpc: Fix "attempt to move .org backwards" error
[deliverable/linux.git] / arch / powerpc / include / asm / spinlock.h
CommitLineData
1da177e4
LT
1#ifndef __ASM_SPINLOCK_H
2#define __ASM_SPINLOCK_H
88ced031 3#ifdef __KERNEL__
1da177e4
LT
4
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.
fb1c8f93
IM
19 *
20 * (the type definitions are in asm/spinlock_types.h)
1da177e4 21 */
945feb17 22#include <linux/irqflags.h>
0212ddd8 23#ifdef CONFIG_PPC64
1da177e4
LT
24#include <asm/paca.h>
25#include <asm/hvcall.h>
0212ddd8
PM
26#endif
27#include <asm/asm-compat.h>
28#include <asm/synch.h>
4e14a4d1 29#include <asm/ppc-opcode.h>
1da177e4 30
919fc6e3
PM
31#define smp_mb__after_unlock_lock() smp_mb() /* Full ordering for lock. */
32
0212ddd8
PM
33#ifdef CONFIG_PPC64
34/* use 0x800000yy when locked, where yy == CPU number */
54bb7f4b 35#ifdef __BIG_ENDIAN__
0212ddd8
PM
36#define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
37#else
54bb7f4b
AB
38#define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
39#endif
40#else
0212ddd8
PM
41#define LOCK_TOKEN 1
42#endif
43
f007cacf
PM
44#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
3405d230
ME
57static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
58{
59 return lock.slock == 0;
60}
61
7179ba52
ME
62static inline int arch_spin_is_locked(arch_spinlock_t *lock)
63{
64 return !arch_spin_value_unlocked(*lock);
65}
66
fb1c8f93
IM
67/*
68 * This returns the old value in the lock, so we succeeded
69 * in getting the lock if the return value is 0.
70 */
0199c4e6 71static inline unsigned long __arch_spin_trylock(arch_spinlock_t *lock)
fb1c8f93 72{
0212ddd8 73 unsigned long tmp, token;
1da177e4 74
0212ddd8 75 token = LOCK_TOKEN;
fb1c8f93 76 __asm__ __volatile__(
4e14a4d1 77"1: " PPC_LWARX(%0,0,%2,1) "\n\
fb1c8f93
IM
78 cmpwi 0,%0,0\n\
79 bne- 2f\n\
80 stwcx. %1,0,%2\n\
f10e2e5b
AB
81 bne- 1b\n"
82 PPC_ACQUIRE_BARRIER
83"2:"
84 : "=&r" (tmp)
0212ddd8 85 : "r" (token), "r" (&lock->slock)
fb1c8f93 86 : "cr0", "memory");
1da177e4 87
fb1c8f93
IM
88 return tmp;
89}
1da177e4 90
0199c4e6 91static inline int arch_spin_trylock(arch_spinlock_t *lock)
1da177e4 92{
f007cacf 93 CLEAR_IO_SYNC;
0199c4e6 94 return __arch_spin_trylock(lock) == 0;
1da177e4
LT
95}
96
97/*
98 * On a system with shared processors (that is, where a physical
99 * processor is multiplexed between several virtual processors),
100 * there is no point spinning on a lock if the holder of the lock
101 * isn't currently scheduled on a physical processor. Instead
102 * we detect this situation and ask the hypervisor to give the
103 * rest of our timeslice to the lock holder.
104 *
105 * So that we can tell which virtual processor is holding a lock,
106 * we put 0x80000000 | smp_processor_id() in the lock when it is
107 * held. Conveniently, we have a word in the paca that holds this
108 * value.
109 */
110
1b041885 111#if defined(CONFIG_PPC_SPLPAR)
1da177e4 112/* We only yield to the hypervisor if we are in shared processor mode */
f13c13a0 113#define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
445c8951 114extern void __spin_yield(arch_spinlock_t *lock);
fb3a6bbc 115extern void __rw_yield(arch_rwlock_t *lock);
1b041885 116#else /* SPLPAR */
1da177e4
LT
117#define __spin_yield(x) barrier()
118#define __rw_yield(x) barrier()
119#define SHARED_PROCESSOR 0
120#endif
1da177e4 121
0199c4e6 122static inline void arch_spin_lock(arch_spinlock_t *lock)
1da177e4 123{
f007cacf 124 CLEAR_IO_SYNC;
1da177e4 125 while (1) {
0199c4e6 126 if (likely(__arch_spin_trylock(lock) == 0))
1da177e4
LT
127 break;
128 do {
129 HMT_low();
130 if (SHARED_PROCESSOR)
131 __spin_yield(lock);
fb1c8f93 132 } while (unlikely(lock->slock != 0));
1da177e4
LT
133 HMT_medium();
134 }
135}
136
89b5810f 137static inline
0199c4e6 138void arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
1da177e4
LT
139{
140 unsigned long flags_dis;
141
f007cacf 142 CLEAR_IO_SYNC;
1da177e4 143 while (1) {
0199c4e6 144 if (likely(__arch_spin_trylock(lock) == 0))
1da177e4
LT
145 break;
146 local_save_flags(flags_dis);
147 local_irq_restore(flags);
148 do {
149 HMT_low();
150 if (SHARED_PROCESSOR)
151 __spin_yield(lock);
fb1c8f93 152 } while (unlikely(lock->slock != 0));
1da177e4
LT
153 HMT_medium();
154 local_irq_restore(flags_dis);
155 }
156}
157
0199c4e6 158static inline void arch_spin_unlock(arch_spinlock_t *lock)
fb1c8f93 159{
f007cacf 160 SYNC_IO;
0199c4e6 161 __asm__ __volatile__("# arch_spin_unlock\n\t"
f10e2e5b 162 PPC_RELEASE_BARRIER: : :"memory");
fb1c8f93
IM
163 lock->slock = 0;
164}
165
0212ddd8 166#ifdef CONFIG_PPC64
0199c4e6 167extern void arch_spin_unlock_wait(arch_spinlock_t *lock);
0212ddd8 168#else
0199c4e6
TG
169#define arch_spin_unlock_wait(lock) \
170 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
0212ddd8 171#endif
fb1c8f93 172
1da177e4
LT
173/*
174 * Read-write spinlocks, allowing multiple readers
175 * but only one writer.
176 *
177 * NOTE! it is quite common to have readers in interrupts
178 * but no interrupt writers. For those circumstances we
179 * can "mix" irq-safe locks - any writer needs to get a
180 * irq-safe write-lock, but readers can get non-irqsafe
181 * read-locks.
182 */
1da177e4 183
e5931943
TG
184#define arch_read_can_lock(rw) ((rw)->lock >= 0)
185#define arch_write_can_lock(rw) (!(rw)->lock)
1da177e4 186
0212ddd8
PM
187#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
1da177e4
LT
195/*
196 * This returns the old value in the lock + 1,
197 * so we got a read lock if the return value is > 0.
198 */
e5931943 199static inline long __arch_read_trylock(arch_rwlock_t *rw)
1da177e4
LT
200{
201 long tmp;
202
203 __asm__ __volatile__(
4e14a4d1 204"1: " PPC_LWARX(%0,0,%1,1) "\n"
0212ddd8
PM
205 __DO_SIGN_EXTEND
206" addic. %0,%0,1\n\
207 ble- 2f\n"
208 PPC405_ERR77(0,%1)
209" stwcx. %0,0,%1\n\
f10e2e5b
AB
210 bne- 1b\n"
211 PPC_ACQUIRE_BARRIER
212"2:" : "=&r" (tmp)
1da177e4
LT
213 : "r" (&rw->lock)
214 : "cr0", "xer", "memory");
215
216 return tmp;
217}
218
1da177e4
LT
219/*
220 * This returns the old value in the lock,
221 * so we got the write lock if the return value is 0.
222 */
e5931943 223static inline long __arch_write_trylock(arch_rwlock_t *rw)
1da177e4 224{
0212ddd8 225 long tmp, token;
1da177e4 226
0212ddd8 227 token = WRLOCK_TOKEN;
1da177e4 228 __asm__ __volatile__(
4e14a4d1 229"1: " PPC_LWARX(%0,0,%2,1) "\n\
1da177e4 230 cmpwi 0,%0,0\n\
0212ddd8
PM
231 bne- 2f\n"
232 PPC405_ERR77(0,%1)
233" stwcx. %1,0,%2\n\
f10e2e5b
AB
234 bne- 1b\n"
235 PPC_ACQUIRE_BARRIER
236"2:" : "=&r" (tmp)
0212ddd8 237 : "r" (token), "r" (&rw->lock)
1da177e4
LT
238 : "cr0", "memory");
239
240 return tmp;
241}
242
e5931943 243static inline void arch_read_lock(arch_rwlock_t *rw)
1da177e4 244{
fb1c8f93 245 while (1) {
e5931943 246 if (likely(__arch_read_trylock(rw) > 0))
fb1c8f93
IM
247 break;
248 do {
249 HMT_low();
250 if (SHARED_PROCESSOR)
251 __rw_yield(rw);
252 } while (unlikely(rw->lock < 0));
253 HMT_medium();
254 }
1da177e4
LT
255}
256
e5931943 257static inline void arch_write_lock(arch_rwlock_t *rw)
1da177e4
LT
258{
259 while (1) {
e5931943 260 if (likely(__arch_write_trylock(rw) == 0))
1da177e4
LT
261 break;
262 do {
263 HMT_low();
264 if (SHARED_PROCESSOR)
265 __rw_yield(rw);
d637413f 266 } while (unlikely(rw->lock != 0));
1da177e4
LT
267 HMT_medium();
268 }
269}
270
e5931943 271static inline int arch_read_trylock(arch_rwlock_t *rw)
fb1c8f93 272{
e5931943 273 return __arch_read_trylock(rw) > 0;
fb1c8f93
IM
274}
275
e5931943 276static inline int arch_write_trylock(arch_rwlock_t *rw)
fb1c8f93 277{
e5931943 278 return __arch_write_trylock(rw) == 0;
fb1c8f93
IM
279}
280
e5931943 281static inline void arch_read_unlock(arch_rwlock_t *rw)
fb1c8f93
IM
282{
283 long tmp;
284
285 __asm__ __volatile__(
144b9c13 286 "# read_unlock\n\t"
f10e2e5b 287 PPC_RELEASE_BARRIER
144b9c13 288"1: lwarx %0,0,%1\n\
0212ddd8
PM
289 addic %0,%0,-1\n"
290 PPC405_ERR77(0,%1)
291" stwcx. %0,0,%1\n\
fb1c8f93
IM
292 bne- 1b"
293 : "=&r"(tmp)
294 : "r"(&rw->lock)
efc3624c 295 : "cr0", "xer", "memory");
fb1c8f93
IM
296}
297
e5931943 298static inline void arch_write_unlock(arch_rwlock_t *rw)
fb1c8f93 299{
144b9c13 300 __asm__ __volatile__("# write_unlock\n\t"
f10e2e5b 301 PPC_RELEASE_BARRIER: : :"memory");
fb1c8f93
IM
302 rw->lock = 0;
303}
304
e5931943
TG
305#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
306#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
f5f7eac4 307
0199c4e6
TG
308#define arch_spin_relax(lock) __spin_yield(lock)
309#define arch_read_relax(lock) __rw_yield(lock)
310#define arch_write_relax(lock) __rw_yield(lock)
ef6edc97 311
88ced031 312#endif /* __KERNEL__ */
1da177e4 313#endif /* __ASM_SPINLOCK_H */
This page took 0.758124 seconds and 5 git commands to generate.