1 #ifndef __ASM_SPINLOCK_H
2 #define __ASM_SPINLOCK_H
6 * Simple spin lock operations.
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
13 * Type of int is used as a full 64b word is not necessary.
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.
20 * (the type definitions are in asm/spinlock_types.h)
22 #include <linux/irqflags.h>
25 #include <asm/hvcall.h>
26 #include <asm/iseries/hv_call.h>
28 #include <asm/asm-compat.h>
29 #include <asm/synch.h>
30 #include <asm/ppc-opcode.h>
32 #define arch_spin_is_locked(x) ((x)->slock != 0)
35 /* use 0x800000yy when locked, where yy == CPU number */
36 #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
41 #if defined(CONFIG_PPC64) && defined(CONFIG_SMP)
42 #define CLEAR_IO_SYNC (get_paca()->io_sync = 0)
43 #define SYNC_IO do { \
44 if (unlikely(get_paca()->io_sync)) { \
46 get_paca()->io_sync = 0; \
55 * This returns the old value in the lock, so we succeeded
56 * in getting the lock if the return value is 0.
58 static inline unsigned long __arch_spin_trylock(arch_spinlock_t
*lock
)
60 unsigned long tmp
, token
;
64 "1: " PPC_LWARX(%0,0,%2,1) "\n\
72 : "r" (token
), "r" (&lock
->slock
)
78 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
81 return __arch_spin_trylock(lock
) == 0;
85 * On a system with shared processors (that is, where a physical
86 * processor is multiplexed between several virtual processors),
87 * there is no point spinning on a lock if the holder of the lock
88 * isn't currently scheduled on a physical processor. Instead
89 * we detect this situation and ask the hypervisor to give the
90 * rest of our timeslice to the lock holder.
92 * So that we can tell which virtual processor is holding a lock,
93 * we put 0x80000000 | smp_processor_id() in the lock when it is
94 * held. Conveniently, we have a word in the paca that holds this
98 #if defined(CONFIG_PPC_SPLPAR) || defined(CONFIG_PPC_ISERIES)
99 /* We only yield to the hypervisor if we are in shared processor mode */
100 #define SHARED_PROCESSOR (get_lppaca()->shared_proc)
101 extern void __spin_yield(arch_spinlock_t
*lock
);
102 extern void __rw_yield(arch_rwlock_t
*lock
);
103 #else /* SPLPAR || ISERIES */
104 #define __spin_yield(x) barrier()
105 #define __rw_yield(x) barrier()
106 #define SHARED_PROCESSOR 0
109 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
113 if (likely(__arch_spin_trylock(lock
) == 0))
117 if (SHARED_PROCESSOR
)
119 } while (unlikely(lock
->slock
!= 0));
125 void arch_spin_lock_flags(arch_spinlock_t
*lock
, unsigned long flags
)
127 unsigned long flags_dis
;
131 if (likely(__arch_spin_trylock(lock
) == 0))
133 local_save_flags(flags_dis
);
134 local_irq_restore(flags
);
137 if (SHARED_PROCESSOR
)
139 } while (unlikely(lock
->slock
!= 0));
141 local_irq_restore(flags_dis
);
145 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
148 __asm__
__volatile__("# arch_spin_unlock\n\t"
149 PPC_RELEASE_BARRIER
: : :"memory");
154 extern void arch_spin_unlock_wait(arch_spinlock_t
*lock
);
156 #define arch_spin_unlock_wait(lock) \
157 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
161 * Read-write spinlocks, allowing multiple readers
162 * but only one writer.
164 * NOTE! it is quite common to have readers in interrupts
165 * but no interrupt writers. For those circumstances we
166 * can "mix" irq-safe locks - any writer needs to get a
167 * irq-safe write-lock, but readers can get non-irqsafe
171 #define arch_read_can_lock(rw) ((rw)->lock >= 0)
172 #define arch_write_can_lock(rw) (!(rw)->lock)
175 #define __DO_SIGN_EXTEND "extsw %0,%0\n"
176 #define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
178 #define __DO_SIGN_EXTEND
179 #define WRLOCK_TOKEN (-1)
183 * This returns the old value in the lock + 1,
184 * so we got a read lock if the return value is > 0.
186 static inline long __arch_read_trylock(arch_rwlock_t
*rw
)
190 __asm__
__volatile__(
191 "1: " PPC_LWARX(%0,0,%1,1) "\n"
201 : "cr0", "xer", "memory");
207 * This returns the old value in the lock,
208 * so we got the write lock if the return value is 0.
210 static inline long __arch_write_trylock(arch_rwlock_t
*rw
)
214 token
= WRLOCK_TOKEN
;
215 __asm__
__volatile__(
216 "1: " PPC_LWARX(%0,0,%2,1) "\n\
224 : "r" (token
), "r" (&rw
->lock
)
230 static inline void arch_read_lock(arch_rwlock_t
*rw
)
233 if (likely(__arch_read_trylock(rw
) > 0))
237 if (SHARED_PROCESSOR
)
239 } while (unlikely(rw
->lock
< 0));
244 static inline void arch_write_lock(arch_rwlock_t
*rw
)
247 if (likely(__arch_write_trylock(rw
) == 0))
251 if (SHARED_PROCESSOR
)
253 } while (unlikely(rw
->lock
!= 0));
258 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
260 return __arch_read_trylock(rw
) > 0;
263 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
265 return __arch_write_trylock(rw
) == 0;
268 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
272 __asm__
__volatile__(
282 : "cr0", "xer", "memory");
285 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
287 __asm__
__volatile__("# write_unlock\n\t"
288 PPC_RELEASE_BARRIER
: : :"memory");
292 #define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
293 #define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
295 #define arch_spin_relax(lock) __spin_yield(lock)
296 #define arch_read_relax(lock) __rw_yield(lock)
297 #define arch_write_relax(lock) __rw_yield(lock)
299 #endif /* __KERNEL__ */
300 #endif /* __ASM_SPINLOCK_H */