blob: da1af524015902ecc5d7446093da5137809f807b [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
Russell King000d9c72011-01-15 16:22:12 +00008/*
9 * sev and wfe are ARMv6K extensions. Uniprocessor ARMv6 may not have the K
10 * extensions, so when running on UP, we have to patch these instructions away.
11 */
12#define ALT_SMP(smp, up) \
13 "9998: " smp "\n" \
14 " .pushsection \".alt.smp.init\", \"a\"\n" \
15 " .long 9998b\n" \
16 " " up "\n" \
17 " .popsection\n"
18
19#ifdef CONFIG_THUMB2_KERNEL
20#define SEV ALT_SMP("sev.w", "nop.w")
21#define WFE(cond) ALT_SMP("wfe" cond ".w", "nop.w")
22#else
23#define SEV ALT_SMP("sev", "nop")
24#define WFE(cond) ALT_SMP("wfe" cond, "nop")
25#endif
26
Rabin Vincentc5113b62010-01-25 19:43:03 +010027static inline void dsb_sev(void)
28{
29#if __LINUX_ARM_ARCH__ >= 7
30 __asm__ __volatile__ (
31 "dsb\n"
Russell King000d9c72011-01-15 16:22:12 +000032 SEV
Rabin Vincentc5113b62010-01-25 19:43:03 +010033 );
Russell King000d9c72011-01-15 16:22:12 +000034#else
Rabin Vincentc5113b62010-01-25 19:43:03 +010035 __asm__ __volatile__ (
36 "mcr p15, 0, %0, c7, c10, 4\n"
Russell King000d9c72011-01-15 16:22:12 +000037 SEV
Rabin Vincentc5113b62010-01-25 19:43:03 +010038 : : "r" (0)
39 );
40#endif
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * ARMv6 Spin-locking.
45 *
Russell King6d9b37a2005-07-26 19:44:26 +010046 * We exclusively read the old value. If it is zero, we may have
47 * won the lock, so we try exclusively storing it. A memory barrier
48 * is required after we get a lock, and before we release it, because
49 * V6 CPUs are assumed to have weakly ordered memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 *
51 * Unlocked value: 0
52 * Locked value: 1
53 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010055#define arch_spin_is_locked(x) ((x)->lock != 0)
56#define arch_spin_unlock_wait(lock) \
57 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010059#define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010061static inline void arch_spin_lock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 unsigned long tmp;
64
65 __asm__ __volatile__(
66"1: ldrex %0, [%1]\n"
67" teq %0, #0\n"
Russell King000d9c72011-01-15 16:22:12 +000068 WFE("ne")
Linus Torvalds1da177e2005-04-16 15:20:36 -070069" strexeq %0, %2, [%1]\n"
70" teqeq %0, #0\n"
71" bne 1b"
72 : "=&r" (tmp)
73 : "r" (&lock->lock), "r" (1)
Russell King6d9b37a2005-07-26 19:44:26 +010074 : "cc");
75
76 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010079static inline int arch_spin_trylock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 unsigned long tmp;
82
83 __asm__ __volatile__(
84" ldrex %0, [%1]\n"
85" teq %0, #0\n"
86" strexeq %0, %2, [%1]"
87 : "=&r" (tmp)
88 : "r" (&lock->lock), "r" (1)
Russell King6d9b37a2005-07-26 19:44:26 +010089 : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Russell King6d9b37a2005-07-26 19:44:26 +010091 if (tmp == 0) {
92 smp_mb();
93 return 1;
94 } else {
95 return 0;
96 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010099static inline void arch_spin_unlock(arch_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Russell King6d9b37a2005-07-26 19:44:26 +0100101 smp_mb();
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 __asm__ __volatile__(
Russell King00b4c902005-12-01 15:47:24 +0000104" str %1, [%0]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 :
106 : "r" (&lock->lock), "r" (0)
Russell King6d9b37a2005-07-26 19:44:26 +0100107 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100108
109 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112/*
113 * RWLOCKS
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700114 *
115 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * Write locks are easy - we just set bit 31. When unlocking, we can
117 * just write zero since the lock is exclusively held.
118 */
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700119
Thomas Gleixnere5931942009-12-03 20:08:46 +0100120static inline void arch_write_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 unsigned long tmp;
123
124 __asm__ __volatile__(
125"1: ldrex %0, [%1]\n"
126" teq %0, #0\n"
Russell King000d9c72011-01-15 16:22:12 +0000127 WFE("ne")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128" strexeq %0, %2, [%1]\n"
129" teq %0, #0\n"
130" bne 1b"
131 : "=&r" (tmp)
132 : "r" (&rw->lock), "r" (0x80000000)
Russell King6d9b37a2005-07-26 19:44:26 +0100133 : "cc");
134
135 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Thomas Gleixnere5931942009-12-03 20:08:46 +0100138static inline int arch_write_trylock(arch_rwlock_t *rw)
Russell King4e8fd222005-07-24 12:13:40 +0100139{
140 unsigned long tmp;
141
142 __asm__ __volatile__(
143"1: ldrex %0, [%1]\n"
144" teq %0, #0\n"
145" strexeq %0, %2, [%1]"
146 : "=&r" (tmp)
147 : "r" (&rw->lock), "r" (0x80000000)
Russell King6d9b37a2005-07-26 19:44:26 +0100148 : "cc");
Russell King4e8fd222005-07-24 12:13:40 +0100149
Russell King6d9b37a2005-07-26 19:44:26 +0100150 if (tmp == 0) {
151 smp_mb();
152 return 1;
153 } else {
154 return 0;
155 }
Russell King4e8fd222005-07-24 12:13:40 +0100156}
157
Thomas Gleixnere5931942009-12-03 20:08:46 +0100158static inline void arch_write_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Russell King6d9b37a2005-07-26 19:44:26 +0100160 smp_mb();
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 __asm__ __volatile__(
Russell King00b4c902005-12-01 15:47:24 +0000163 "str %1, [%0]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 :
165 : "r" (&rw->lock), "r" (0)
Russell King6d9b37a2005-07-26 19:44:26 +0100166 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100167
168 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100171/* write_can_lock - would write_trylock() succeed? */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100172#define arch_write_can_lock(x) ((x)->lock == 0)
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * Read locks are a bit more hairy:
176 * - Exclusively load the lock value.
177 * - Increment it.
178 * - Store new lock value if positive, and we still own this location.
179 * If the value is negative, we've already failed.
180 * - If we failed to store the value, we want a negative result.
181 * - If we failed, try again.
182 * Unlocking is similarly hairy. We may have multiple read locks
183 * currently active. However, we know we won't have any write
184 * locks.
185 */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100186static inline void arch_read_lock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 unsigned long tmp, tmp2;
189
190 __asm__ __volatile__(
191"1: ldrex %0, [%2]\n"
192" adds %0, %0, #1\n"
193" strexpl %1, %0, [%2]\n"
Russell King000d9c72011-01-15 16:22:12 +0000194 WFE("mi")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195" rsbpls %0, %1, #0\n"
196" bmi 1b"
197 : "=&r" (tmp), "=&r" (tmp2)
198 : "r" (&rw->lock)
Russell King6d9b37a2005-07-26 19:44:26 +0100199 : "cc");
200
201 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Thomas Gleixnere5931942009-12-03 20:08:46 +0100204static inline void arch_read_unlock(arch_rwlock_t *rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Russell King4e8fd222005-07-24 12:13:40 +0100206 unsigned long tmp, tmp2;
207
Russell King6d9b37a2005-07-26 19:44:26 +0100208 smp_mb();
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 __asm__ __volatile__(
211"1: ldrex %0, [%2]\n"
212" sub %0, %0, #1\n"
213" strex %1, %0, [%2]\n"
214" teq %1, #0\n"
215" bne 1b"
216 : "=&r" (tmp), "=&r" (tmp2)
217 : "r" (&rw->lock)
Russell King6d9b37a2005-07-26 19:44:26 +0100218 : "cc");
Rabin Vincentc5113b62010-01-25 19:43:03 +0100219
220 if (tmp == 0)
221 dsb_sev();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Thomas Gleixnere5931942009-12-03 20:08:46 +0100224static inline int arch_read_trylock(arch_rwlock_t *rw)
Russell King8e347032006-08-31 15:09:30 +0100225{
Catalin Marinase89bc812006-09-06 19:03:14 +0100226 unsigned long tmp, tmp2 = 1;
Russell King8e347032006-08-31 15:09:30 +0100227
228 __asm__ __volatile__(
229"1: ldrex %0, [%2]\n"
230" adds %0, %0, #1\n"
231" strexpl %1, %0, [%2]\n"
232 : "=&r" (tmp), "+r" (tmp2)
233 : "r" (&rw->lock)
234 : "cc");
235
236 smp_mb();
237 return tmp2 == 0;
238}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100240/* read_can_lock - would read_trylock() succeed? */
Thomas Gleixnere5931942009-12-03 20:08:46 +0100241#define arch_read_can_lock(x) ((x)->lock < 0x80000000)
Catalin Marinasc2a4c402006-05-19 21:55:35 +0100242
Thomas Gleixnere5931942009-12-03 20:08:46 +0100243#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
244#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700245
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100246#define arch_spin_relax(lock) cpu_relax()
247#define arch_read_relax(lock) cpu_relax()
248#define arch_write_relax(lock) cpu_relax()
Martin Schwidefskyef6edc92006-09-30 23:27:43 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#endif /* __ASM_SPINLOCK_H */