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 <asm/processor.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 #define ALT_SMP(smp, up) \
16 " .pushsection \".alt.smp.init\", \"a\"\n" \
21 #ifdef CONFIG_THUMB2_KERNEL
22 #define SEV ALT_SMP("sev.w", "nop.w")
24 * For Thumb-2, special care is needed to ensure that the conditional WFE
25 * instruction really does assemble to exactly 4 bytes (as required by
26 * the SMP_ON_UP fixup code). By itself "wfene" might cause the
27 * assembler to insert a extra (16-bit) IT instruction, depending on the
28 * presence or absence of neighbouring conditional instructions.
30 * To avoid this unpredictableness, an approprite IT is inserted explicitly:
31 * the assembler won't change IT instructions which are explicitly present
34 #define WFE(cond) ALT_SMP( \
41 #define SEV ALT_SMP("sev", "nop")
42 #define WFE(cond) ALT_SMP("wfe" cond, "nop")
45 static inline void dsb_sev(void)
47 #if __LINUX_ARM_ARCH__ >= 7
48 __asm__
__volatile__ (
53 __asm__
__volatile__ (
54 "mcr p15, 0, %0, c7, c10, 4\n"
62 * ARMv6 ticket-based spin-locking.
64 * A memory barrier is required after we get a lock, and before we
65 * release it, because V6 CPUs are assumed to have weakly ordered
69 #define arch_spin_unlock_wait(lock) \
70 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
72 #define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
74 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
78 arch_spinlock_t lockval
;
83 " strex %2, %1, [%3]\n"
86 : "=&r" (lockval
), "=&r" (newval
), "=&r" (tmp
)
87 : "r" (&lock
->slock
), "I" (1 << TICKET_SHIFT
)
90 while (lockval
.tickets
.next
!= lockval
.tickets
.owner
) {
92 lockval
.tickets
.owner
= ACCESS_ONCE(lock
->tickets
.owner
);
98 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
100 unsigned long contended
, res
;
104 __asm__
__volatile__(
107 " subs %1, %0, %0, ror #16\n"
108 " addeq %0, %0, %4\n"
109 " strexeq %2, %0, [%3]"
110 : "=&r" (slock
), "=&r" (contended
), "=r" (res
)
111 : "r" (&lock
->slock
), "I" (1 << TICKET_SHIFT
)
123 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
126 lock
->tickets
.owner
++;
130 static inline int arch_spin_is_locked(arch_spinlock_t
*lock
)
132 struct __raw_tickets tickets
= ACCESS_ONCE(lock
->tickets
);
133 return tickets
.owner
!= tickets
.next
;
136 static inline int arch_spin_is_contended(arch_spinlock_t
*lock
)
138 struct __raw_tickets tickets
= ACCESS_ONCE(lock
->tickets
);
139 return (tickets
.next
- tickets
.owner
) > 1;
141 #define arch_spin_is_contended arch_spin_is_contended
147 * Write locks are easy - we just set bit 31. When unlocking, we can
148 * just write zero since the lock is exclusively held.
151 static inline void arch_write_lock(arch_rwlock_t
*rw
)
155 __asm__
__volatile__(
156 "1: ldrex %0, [%1]\n"
159 " strexeq %0, %2, [%1]\n"
163 : "r" (&rw
->lock
), "r" (0x80000000)
169 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
173 __asm__
__volatile__(
176 " strexeq %0, %2, [%1]"
178 : "r" (&rw
->lock
), "r" (0x80000000)
189 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
193 __asm__
__volatile__(
196 : "r" (&rw
->lock
), "r" (0)
202 /* write_can_lock - would write_trylock() succeed? */
203 #define arch_write_can_lock(x) ((x)->lock == 0)
206 * Read locks are a bit more hairy:
207 * - Exclusively load the lock value.
209 * - Store new lock value if positive, and we still own this location.
210 * If the value is negative, we've already failed.
211 * - If we failed to store the value, we want a negative result.
212 * - If we failed, try again.
213 * Unlocking is similarly hairy. We may have multiple read locks
214 * currently active. However, we know we won't have any write
217 static inline void arch_read_lock(arch_rwlock_t
*rw
)
219 unsigned long tmp
, tmp2
;
221 __asm__
__volatile__(
222 "1: ldrex %0, [%2]\n"
224 " strexpl %1, %0, [%2]\n"
226 " rsbpls %0, %1, #0\n"
228 : "=&r" (tmp
), "=&r" (tmp2
)
235 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
237 unsigned long tmp
, tmp2
;
241 __asm__
__volatile__(
242 "1: ldrex %0, [%2]\n"
244 " strex %1, %0, [%2]\n"
247 : "=&r" (tmp
), "=&r" (tmp2
)
255 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
257 unsigned long tmp
, tmp2
= 1;
259 __asm__
__volatile__(
262 " strexpl %1, %0, [%2]\n"
263 : "=&r" (tmp
), "+r" (tmp2
)
271 /* read_can_lock - would read_trylock() succeed? */
272 #define arch_read_can_lock(x) ((x)->lock < 0x80000000)
274 #define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
275 #define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
277 #define arch_spin_relax(lock) cpu_relax()
278 #define arch_read_relax(lock) cpu_relax()
279 #define arch_write_relax(lock) cpu_relax()
281 #endif /* __ASM_SPINLOCK_H */