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>
27 #include <asm/asm-compat.h>
28 #include <asm/synch.h>
29 #include <asm/ppc-opcode.h>
32 /* use 0x800000yy when locked, where yy == CPU number */
34 #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
36 #define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
42 #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)) { \
47 get_paca()->io_sync = 0; \
55 #ifdef CONFIG_PPC_PSERIES
56 #define vcpu_is_preempted vcpu_is_preempted
57 static inline bool vcpu_is_preempted(int cpu
)
59 return !!(be32_to_cpu(lppaca_of(cpu
).yield_count
) & 1);
63 static __always_inline
int arch_spin_value_unlocked(arch_spinlock_t lock
)
65 return lock
.slock
== 0;
68 static inline int arch_spin_is_locked(arch_spinlock_t
*lock
)
71 return !arch_spin_value_unlocked(*lock
);
75 * This returns the old value in the lock, so we succeeded
76 * in getting the lock if the return value is 0.
78 static inline unsigned long __arch_spin_trylock(arch_spinlock_t
*lock
)
80 unsigned long tmp
, token
;
84 "1: " PPC_LWARX(%0,0,%2,1) "\n\
92 : "r" (token
), "r" (&lock
->slock
)
98 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
101 return __arch_spin_trylock(lock
) == 0;
105 * On a system with shared processors (that is, where a physical
106 * processor is multiplexed between several virtual processors),
107 * there is no point spinning on a lock if the holder of the lock
108 * isn't currently scheduled on a physical processor. Instead
109 * we detect this situation and ask the hypervisor to give the
110 * rest of our timeslice to the lock holder.
112 * So that we can tell which virtual processor is holding a lock,
113 * we put 0x80000000 | smp_processor_id() in the lock when it is
114 * held. Conveniently, we have a word in the paca that holds this
118 #if defined(CONFIG_PPC_SPLPAR)
119 /* We only yield to the hypervisor if we are in shared processor mode */
120 #define SHARED_PROCESSOR (lppaca_shared_proc(local_paca->lppaca_ptr))
121 extern void __spin_yield(arch_spinlock_t
*lock
);
122 extern void __rw_yield(arch_rwlock_t
*lock
);
124 #define __spin_yield(x) barrier()
125 #define __rw_yield(x) barrier()
126 #define SHARED_PROCESSOR 0
129 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
133 if (likely(__arch_spin_trylock(lock
) == 0))
137 if (SHARED_PROCESSOR
)
139 } while (unlikely(lock
->slock
!= 0));
145 void arch_spin_lock_flags(arch_spinlock_t
*lock
, unsigned long flags
)
147 unsigned long flags_dis
;
151 if (likely(__arch_spin_trylock(lock
) == 0))
153 local_save_flags(flags_dis
);
154 local_irq_restore(flags
);
157 if (SHARED_PROCESSOR
)
159 } while (unlikely(lock
->slock
!= 0));
161 local_irq_restore(flags_dis
);
164 #define arch_spin_lock_flags arch_spin_lock_flags
166 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
169 __asm__
__volatile__("# arch_spin_unlock\n\t"
170 PPC_RELEASE_BARRIER
: : :"memory");
175 * Read-write spinlocks, allowing multiple readers
176 * but only one writer.
178 * NOTE! it is quite common to have readers in interrupts
179 * but no interrupt writers. For those circumstances we
180 * can "mix" irq-safe locks - any writer needs to get a
181 * irq-safe write-lock, but readers can get non-irqsafe
186 #define __DO_SIGN_EXTEND "extsw %0,%0\n"
187 #define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
189 #define __DO_SIGN_EXTEND
190 #define WRLOCK_TOKEN (-1)
194 * This returns the old value in the lock + 1,
195 * so we got a read lock if the return value is > 0.
197 static inline long __arch_read_trylock(arch_rwlock_t
*rw
)
201 __asm__
__volatile__(
202 "1: " PPC_LWARX(%0,0,%1,1) "\n"
212 : "cr0", "xer", "memory");
218 * This returns the old value in the lock,
219 * so we got the write lock if the return value is 0.
221 static inline long __arch_write_trylock(arch_rwlock_t
*rw
)
225 token
= WRLOCK_TOKEN
;
226 __asm__
__volatile__(
227 "1: " PPC_LWARX(%0,0,%2,1) "\n\
235 : "r" (token
), "r" (&rw
->lock
)
241 static inline void arch_read_lock(arch_rwlock_t
*rw
)
244 if (likely(__arch_read_trylock(rw
) > 0))
248 if (SHARED_PROCESSOR
)
250 } while (unlikely(rw
->lock
< 0));
255 static inline void arch_write_lock(arch_rwlock_t
*rw
)
258 if (likely(__arch_write_trylock(rw
) == 0))
262 if (SHARED_PROCESSOR
)
264 } while (unlikely(rw
->lock
!= 0));
269 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
271 return __arch_read_trylock(rw
) > 0;
274 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
276 return __arch_write_trylock(rw
) == 0;
279 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
283 __asm__
__volatile__(
293 : "cr0", "xer", "memory");
296 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
298 __asm__
__volatile__("# write_unlock\n\t"
299 PPC_RELEASE_BARRIER
: : :"memory");
303 #define arch_spin_relax(lock) __spin_yield(lock)
304 #define arch_read_relax(lock) __rw_yield(lock)
305 #define arch_write_relax(lock) __rw_yield(lock)
307 /* See include/linux/spinlock.h */
308 #define smp_mb__after_spinlock() smp_mb()
310 #endif /* __KERNEL__ */
311 #endif /* __ASM_SPINLOCK_H */