1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _ASM_POWERPC_SIMPLE_SPINLOCK_H
3 #define _ASM_POWERPC_SIMPLE_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 * (the type definitions are in asm/simple_spinlock_types.h)
17 #include <linux/irqflags.h>
18 #include <asm/paravirt.h>
20 #include <asm/synch.h>
21 #include <asm/ppc-opcode.h>
24 /* use 0x800000yy when locked, where yy == CPU number */
26 #define LOCK_TOKEN (*(u32 *)(&get_paca()->lock_token))
28 #define LOCK_TOKEN (*(u32 *)(&get_paca()->paca_index))
34 static __always_inline
int arch_spin_value_unlocked(arch_spinlock_t lock
)
36 return lock
.slock
== 0;
39 static inline int arch_spin_is_locked(arch_spinlock_t
*lock
)
42 return !arch_spin_value_unlocked(*lock
);
46 * This returns the old value in the lock, so we succeeded
47 * in getting the lock if the return value is 0.
49 static inline unsigned long __arch_spin_trylock(arch_spinlock_t
*lock
)
51 unsigned long tmp
, token
;
55 "1: " PPC_LWARX(%0,0,%2,1) "\n\
63 : "r" (token
), "r" (&lock
->slock
)
69 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
71 return __arch_spin_trylock(lock
) == 0;
75 * On a system with shared processors (that is, where a physical
76 * processor is multiplexed between several virtual processors),
77 * there is no point spinning on a lock if the holder of the lock
78 * isn't currently scheduled on a physical processor. Instead
79 * we detect this situation and ask the hypervisor to give the
80 * rest of our timeslice to the lock holder.
82 * So that we can tell which virtual processor is holding a lock,
83 * we put 0x80000000 | smp_processor_id() in the lock when it is
84 * held. Conveniently, we have a word in the paca that holds this
88 #if defined(CONFIG_PPC_SPLPAR)
89 /* We only yield to the hypervisor if we are in shared processor mode */
90 void splpar_spin_yield(arch_spinlock_t
*lock
);
91 void splpar_rw_yield(arch_rwlock_t
*lock
);
93 static inline void splpar_spin_yield(arch_spinlock_t
*lock
) {};
94 static inline void splpar_rw_yield(arch_rwlock_t
*lock
) {};
97 static inline void spin_yield(arch_spinlock_t
*lock
)
99 if (is_shared_processor())
100 splpar_spin_yield(lock
);
105 static inline void rw_yield(arch_rwlock_t
*lock
)
107 if (is_shared_processor())
108 splpar_rw_yield(lock
);
113 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
116 if (likely(__arch_spin_trylock(lock
) == 0))
120 if (is_shared_processor())
121 splpar_spin_yield(lock
);
122 } while (unlikely(lock
->slock
!= 0));
128 void arch_spin_lock_flags(arch_spinlock_t
*lock
, unsigned long flags
)
130 unsigned long flags_dis
;
133 if (likely(__arch_spin_trylock(lock
) == 0))
135 local_save_flags(flags_dis
);
136 local_irq_restore(flags
);
139 if (is_shared_processor())
140 splpar_spin_yield(lock
);
141 } while (unlikely(lock
->slock
!= 0));
143 local_irq_restore(flags_dis
);
146 #define arch_spin_lock_flags arch_spin_lock_flags
148 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
150 __asm__
__volatile__("# arch_spin_unlock\n\t"
151 PPC_RELEASE_BARRIER
: : :"memory");
156 * Read-write spinlocks, allowing multiple readers
157 * but only one writer.
159 * NOTE! it is quite common to have readers in interrupts
160 * but no interrupt writers. For those circumstances we
161 * can "mix" irq-safe locks - any writer needs to get a
162 * irq-safe write-lock, but readers can get non-irqsafe
167 #define __DO_SIGN_EXTEND "extsw %0,%0\n"
168 #define WRLOCK_TOKEN LOCK_TOKEN /* it's negative */
170 #define __DO_SIGN_EXTEND
171 #define WRLOCK_TOKEN (-1)
175 * This returns the old value in the lock + 1,
176 * so we got a read lock if the return value is > 0.
178 static inline long __arch_read_trylock(arch_rwlock_t
*rw
)
182 __asm__
__volatile__(
183 "1: " PPC_LWARX(%0,0,%1,1) "\n"
192 : "cr0", "xer", "memory");
198 * This returns the old value in the lock,
199 * so we got the write lock if the return value is 0.
201 static inline long __arch_write_trylock(arch_rwlock_t
*rw
)
205 token
= WRLOCK_TOKEN
;
206 __asm__
__volatile__(
207 "1: " PPC_LWARX(%0,0,%2,1) "\n\
214 : "r" (token
), "r" (&rw
->lock
)
220 static inline void arch_read_lock(arch_rwlock_t
*rw
)
223 if (likely(__arch_read_trylock(rw
) > 0))
227 if (is_shared_processor())
229 } while (unlikely(rw
->lock
< 0));
234 static inline void arch_write_lock(arch_rwlock_t
*rw
)
237 if (likely(__arch_write_trylock(rw
) == 0))
241 if (is_shared_processor())
243 } while (unlikely(rw
->lock
!= 0));
248 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
250 return __arch_read_trylock(rw
) > 0;
253 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
255 return __arch_write_trylock(rw
) == 0;
258 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
262 __asm__
__volatile__(
271 : "cr0", "xer", "memory");
274 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
276 __asm__
__volatile__("# write_unlock\n\t"
277 PPC_RELEASE_BARRIER
: : :"memory");
281 #define arch_spin_relax(lock) spin_yield(lock)
282 #define arch_read_relax(lock) rw_yield(lock)
283 #define arch_write_relax(lock) rw_yield(lock)
285 /* See include/linux/spinlock.h */
286 #define smp_mb__after_spinlock() smp_mb()
288 #endif /* _ASM_POWERPC_SIMPLE_SPINLOCK_H */