blob: 65fa3c88095c3c7b324a5027610133dc1f825d4b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SPINLOCK_H
2#define __ASM_SPINLOCK_H
3
4#if __LINUX_ARM_ARCH__ < 6
5#error SMP not supported on pre-ARMv6 CPUs
6#endif
7
Marc Zyngier603605a2011-05-23 17:16:59 +01008#include <asm/processor.h>
9
Russell King000d9c72011-01-15 16:22:12 +000010/*
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.
13 */
14#define ALT_SMP(smp, up) \
15 "9998: " smp "\n" \
16 " .pushsection \".alt.smp.init\", \"a\"\n" \
17 " .long 9998b\n" \
18 " " up "\n" \
19 " .popsection\n"
20
21#ifdef CONFIG_THUMB2_KERNEL
22#define SEV ALT_SMP("sev.w", "nop.w")
Dave Martin917692f2011-02-09 12:06:59 +010023/*
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.
29 *
30 * To avoid this unpredictableness, an approprite IT is inserted explicitly:
31 * the assembler won't change IT instructions which are explicitly present
32 * in the input.
33 */
34#define WFE(cond) ALT_SMP( \
35 "it " cond "\n\t" \
36 "wfe" cond ".n", \
37 \
38 "nop.w" \
39)
Russell King000d9c72011-01-15 16:22:12 +000040#else
41#define SEV ALT_SMP("sev", "nop")
42#define WFE(cond) ALT_SMP("wfe" cond, "nop")
43#endif
44
Rabin Vincentc5113b62010-01-25 19:43:03 +010045static inline void dsb_sev(void)
46{
47#if __LINUX_ARM_ARCH__ >= 7
48 __asm__ __volatile__ (
49 "dsb\n"
Russell King000d9c72011-01-15 16:22:12 +000050 SEV
Rabin Vincentc5113b62010-01-25 19:43:03 +010051 );
Russell King000d9c72011-01-15 16:22:12 +000052#else
Rabin Vincentc5113b62010-01-25 19:43:03 +010053 __asm__ __volatile__ (
54 "mcr p15, 0, %0, c7, c10, 4\n"
Russell King000d9c72011-01-15 16:22:12 +000055 SEV
Rabin Vincentc5113b62010-01-25 19:43:03 +010056 : : "r" (0)
57 );
58#endif
59}
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
62 * ARMv6 Spin-locking.
63 *
Russell King6d9b37a2005-07-26 19:44:26 +010064 * We exclusively read the old value. If it is zero, we may have
65 * won the lock, so we try exclusively storing it. A memory barrier
66 * is required after we get a lock, and before we release it, because
67 * V6 CPUs are assumed to have weakly ordered memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *
69 * Unlocked value: 0
70 * Locked value: 1
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010073#define arch_spin_is_locked(x) ((x)->lock != 0)
74#define arch_spin_unlock_wait(lock) \
75 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010077#define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010079static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 unsigned long tmp;
82
83 __asm__ __volatile__(
84"1: ldrex %0, [%1]\n"
85" teq %0, #0\n"
Russell King000d9c72011-01-15 16:22:12 +000086 WFE("ne")
Linus Torvalds1da177e2005-04-16 15:20:36 -070087" strexeq %0, %2, [%1]\n"
88" teqeq %0, #0\n"
89" bne 1b"
90 : "=&r" (tmp)
91 : "r" (&lock->lock), "r" (1)
Russell King6d9b37a2005-07-26 19:44:26 +010092 : "cc");
93
94 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010097static inline int arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 unsigned long tmp;
100
101 __asm__ __volatile__(
102" ldrex %0, [%1]\n"
103" teq %0, #0\n"
104" strexeq %0, %2, [%1]"
105 : "=&r" (tmp)
106 : "r" (&lock->lock), "r" (1)
Russell King6d9b37a2005-07-26 19:44:26 +0100107 : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Russell King6d9b37a2005-07-26 19:44:26 +0100109 if (tmp == 0) {
110 smp_mb();
111 return 1;
112 } else {
113 return 0;
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100117static inline void arch_spin_unlock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Russell King6d9b37a2005-07-26 19:44:26 +0100119 smp_mb();
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 __asm__ __volatile__(
Russell King00b4c902005-12-01 15:47:24 +0000122" str %1, [%0]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 :
124 : "r" (&lock->lock), "r" (0)
Russell King6d9b37a2005-07-26 19:44:26 +0100125 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100126
127 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130/*
131 * RWLOCKS
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700132 *
133 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * Write locks are easy - we just set bit 31. When unlocking, we can
135 * just write zero since the lock is exclusively held.
136 */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700137
Thomas Gleixnere5931942009-12-03 20:08:46 +0100138static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 unsigned long tmp;
141
142 __asm__ __volatile__(
143"1: ldrex %0, [%1]\n"
144" teq %0, #0\n"
Russell King000d9c72011-01-15 16:22:12 +0000145 WFE("ne")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146" strexeq %0, %2, [%1]\n"
147" teq %0, #0\n"
148" bne 1b"
149 : "=&r" (tmp)
150 : "r" (&rw->lock), "r" (0x80000000)
Russell King6d9b37a2005-07-26 19:44:26 +0100151 : "cc");
152
153 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Thomas Gleixnere5931942009-12-03 20:08:46 +0100156static inline int arch_write_trylock(arch_rwlock_t *rw)
Russell King4e8fd222005-07-24 12:13:40 +0100157{
158 unsigned long tmp;
159
160 __asm__ __volatile__(
161"1: ldrex %0, [%1]\n"
162" teq %0, #0\n"
163" strexeq %0, %2, [%1]"
164 : "=&r" (tmp)
165 : "r" (&rw->lock), "r" (0x80000000)
Russell King6d9b37a2005-07-26 19:44:26 +0100166 : "cc");
Russell King4e8fd222005-07-24 12:13:40 +0100167
Russell King6d9b37a2005-07-26 19:44:26 +0100168 if (tmp == 0) {
169 smp_mb();
170 return 1;
171 } else {
172 return 0;
173 }
Russell King4e8fd222005-07-24 12:13:40 +0100174}
175
Thomas Gleixnere5931942009-12-03 20:08:46 +0100176static inline void arch_write_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Russell King6d9b37a2005-07-26 19:44:26 +0100178 smp_mb();
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 __asm__ __volatile__(
Russell King00b4c902005-12-01 15:47:24 +0000181 "str %1, [%0]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 :
183 : "r" (&rw->lock), "r" (0)
Russell King6d9b37a2005-07-26 19:44:26 +0100184 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100185
186 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100189/* write_can_lock - would write_trylock() succeed? */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100190#define arch_write_can_lock(x) ((x)->lock == 0)
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
193 * Read locks are a bit more hairy:
194 * - Exclusively load the lock value.
195 * - Increment it.
196 * - Store new lock value if positive, and we still own this location.
197 * If the value is negative, we've already failed.
198 * - If we failed to store the value, we want a negative result.
199 * - If we failed, try again.
200 * Unlocking is similarly hairy. We may have multiple read locks
201 * currently active. However, we know we won't have any write
202 * locks.
203 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100204static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 unsigned long tmp, tmp2;
207
208 __asm__ __volatile__(
209"1: ldrex %0, [%2]\n"
210" adds %0, %0, #1\n"
211" strexpl %1, %0, [%2]\n"
Russell King000d9c72011-01-15 16:22:12 +0000212 WFE("mi")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213" rsbpls %0, %1, #0\n"
214" bmi 1b"
215 : "=&r" (tmp), "=&r" (tmp2)
216 : "r" (&rw->lock)
Russell King6d9b37a2005-07-26 19:44:26 +0100217 : "cc");
218
219 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Thomas Gleixnere5931942009-12-03 20:08:46 +0100222static inline void arch_read_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Russell King4e8fd222005-07-24 12:13:40 +0100224 unsigned long tmp, tmp2;
225
Russell King6d9b37a2005-07-26 19:44:26 +0100226 smp_mb();
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 __asm__ __volatile__(
229"1: ldrex %0, [%2]\n"
230" sub %0, %0, #1\n"
231" strex %1, %0, [%2]\n"
232" teq %1, #0\n"
233" bne 1b"
234 : "=&r" (tmp), "=&r" (tmp2)
235 : "r" (&rw->lock)
Russell King6d9b37a2005-07-26 19:44:26 +0100236 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100237
238 if (tmp == 0)
239 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Thomas Gleixnere5931942009-12-03 20:08:46 +0100242static inline int arch_read_trylock(arch_rwlock_t *rw)
Russell King8e347032006-08-31 15:09:30 +0100243{
Catalin Marinase89bc812006-09-06 19:03:14 +0100244 unsigned long tmp, tmp2 = 1;
Russell King8e347032006-08-31 15:09:30 +0100245
246 __asm__ __volatile__(
247"1: ldrex %0, [%2]\n"
248" adds %0, %0, #1\n"
249" strexpl %1, %0, [%2]\n"
250 : "=&r" (tmp), "+r" (tmp2)
251 : "r" (&rw->lock)
252 : "cc");
253
254 smp_mb();
255 return tmp2 == 0;
256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100258/* read_can_lock - would read_trylock() succeed? */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100259#define arch_read_can_lock(x) ((x)->lock < 0x80000000)
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100260
Thomas Gleixnere5931942009-12-03 20:08:46 +0100261#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
262#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700263
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100264#define arch_spin_relax(lock) cpu_relax()
265#define arch_read_relax(lock) cpu_relax()
266#define arch_write_relax(lock) cpu_relax()
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#endif /* __ASM_SPINLOCK_H */