1 #ifndef __ASM_SPINLOCK_H
2 #define __ASM_SPINLOCK_H
4 #if __LINUX_ARM_ARCH__ < 6
5 #error SMP not supported on pre-ARMv6 CPUs
8 #include <linux/prefetch.h>
11 * sev and wfe are ARMv6K extensions. Uniprocessor ARMv6 may not have the K
12 * extensions, so when running on UP, we have to patch these instructions away.
14 #ifdef CONFIG_THUMB2_KERNEL
16 * For Thumb-2, special care is needed to ensure that the conditional WFE
17 * instruction really does assemble to exactly 4 bytes (as required by
18 * the SMP_ON_UP fixup code). By itself "wfene" might cause the
19 * assembler to insert a extra (16-bit) IT instruction, depending on the
20 * presence or absence of neighbouring conditional instructions.
22 * To avoid this unpredictableness, an approprite IT is inserted explicitly:
23 * the assembler won't change IT instructions which are explicitly present
26 #define WFE(cond) __ALT_SMP_ASM( \
33 #define WFE(cond) __ALT_SMP_ASM("wfe" cond, "nop")
36 #define SEV __ALT_SMP_ASM(WASM(sev), WASM(nop))
38 static inline void dsb_sev(void)
46 * ARMv6 ticket-based spin-locking.
48 * A memory barrier is required after we get a lock, and before we
49 * release it, because V6 CPUs are assumed to have weakly ordered
53 #define arch_spin_unlock_wait(lock) \
54 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
56 #define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
58 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
62 arch_spinlock_t lockval
;
64 prefetchw(&lock
->slock
);
68 " strex %2, %1, [%3]\n"
71 : "=&r" (lockval
), "=&r" (newval
), "=&r" (tmp
)
72 : "r" (&lock
->slock
), "I" (1 << TICKET_SHIFT
)
75 while (lockval
.tickets
.next
!= lockval
.tickets
.owner
) {
77 lockval
.tickets
.owner
= ACCESS_ONCE(lock
->tickets
.owner
);
83 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
85 unsigned long contended
, res
;
88 prefetchw(&lock
->slock
);
93 " subs %1, %0, %0, ror #16\n"
95 " strexeq %2, %0, [%3]"
96 : "=&r" (slock
), "=&r" (contended
), "=&r" (res
)
97 : "r" (&lock
->slock
), "I" (1 << TICKET_SHIFT
)
109 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
112 lock
->tickets
.owner
++;
116 static inline int arch_spin_value_unlocked(arch_spinlock_t lock
)
118 return lock
.tickets
.owner
== lock
.tickets
.next
;
121 static inline int arch_spin_is_locked(arch_spinlock_t
*lock
)
123 return !arch_spin_value_unlocked(READ_ONCE(*lock
));
126 static inline int arch_spin_is_contended(arch_spinlock_t
*lock
)
128 struct __raw_tickets tickets
= READ_ONCE(lock
->tickets
);
129 return (tickets
.next
- tickets
.owner
) > 1;
131 #define arch_spin_is_contended arch_spin_is_contended
137 * Write locks are easy - we just set bit 31. When unlocking, we can
138 * just write zero since the lock is exclusively held.
141 static inline void arch_write_lock(arch_rwlock_t
*rw
)
145 prefetchw(&rw
->lock
);
146 __asm__
__volatile__(
147 "1: ldrex %0, [%1]\n"
150 " strexeq %0, %2, [%1]\n"
154 : "r" (&rw
->lock
), "r" (0x80000000)
160 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
162 unsigned long contended
, res
;
164 prefetchw(&rw
->lock
);
166 __asm__
__volatile__(
170 " strexeq %1, %3, [%2]"
171 : "=&r" (contended
), "=&r" (res
)
172 : "r" (&rw
->lock
), "r" (0x80000000)
184 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
188 __asm__
__volatile__(
191 : "r" (&rw
->lock
), "r" (0)
197 /* write_can_lock - would write_trylock() succeed? */
198 #define arch_write_can_lock(x) (ACCESS_ONCE((x)->lock) == 0)
201 * Read locks are a bit more hairy:
202 * - Exclusively load the lock value.
204 * - Store new lock value if positive, and we still own this location.
205 * If the value is negative, we've already failed.
206 * - If we failed to store the value, we want a negative result.
207 * - If we failed, try again.
208 * Unlocking is similarly hairy. We may have multiple read locks
209 * currently active. However, we know we won't have any write
212 static inline void arch_read_lock(arch_rwlock_t
*rw
)
214 unsigned long tmp
, tmp2
;
216 prefetchw(&rw
->lock
);
217 __asm__
__volatile__(
218 "1: ldrex %0, [%2]\n"
220 " strexpl %1, %0, [%2]\n"
222 " rsbpls %0, %1, #0\n"
224 : "=&r" (tmp
), "=&r" (tmp2
)
231 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
233 unsigned long tmp
, tmp2
;
237 prefetchw(&rw
->lock
);
238 __asm__
__volatile__(
239 "1: ldrex %0, [%2]\n"
241 " strex %1, %0, [%2]\n"
244 : "=&r" (tmp
), "=&r" (tmp2
)
252 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
254 unsigned long contended
, res
;
256 prefetchw(&rw
->lock
);
258 __asm__
__volatile__(
262 " strexpl %1, %0, [%2]"
263 : "=&r" (contended
), "=&r" (res
)
268 /* If the lock is negative, then it is already held for write. */
269 if (contended
< 0x80000000) {
277 /* read_can_lock - would read_trylock() succeed? */
278 #define arch_read_can_lock(x) (ACCESS_ONCE((x)->lock) < 0x80000000)
280 #define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
281 #define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
283 #define arch_spin_relax(lock) cpu_relax()
284 #define arch_read_relax(lock) cpu_relax()
285 #define arch_write_relax(lock) cpu_relax()
287 #endif /* __ASM_SPINLOCK_H */