Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #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 Zyngier | 603605a | 2011-05-23 17:16:59 +0100 | [diff] [blame] | 8 | #include <asm/processor.h> |
| 9 | |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 10 | /* |
| 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 | */ |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 14 | #ifdef CONFIG_THUMB2_KERNEL |
Dave Martin | 917692f | 2011-02-09 12:06:59 +0100 | [diff] [blame] | 15 | /* |
| 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. |
| 21 | * |
| 22 | * To avoid this unpredictableness, an approprite IT is inserted explicitly: |
| 23 | * the assembler won't change IT instructions which are explicitly present |
| 24 | * in the input. |
| 25 | */ |
Will Deacon | 27a8479 | 2013-07-02 12:10:42 +0100 | [diff] [blame^] | 26 | #define WFE(cond) __ALT_SMP_ASM( \ |
Dave Martin | 917692f | 2011-02-09 12:06:59 +0100 | [diff] [blame] | 27 | "it " cond "\n\t" \ |
| 28 | "wfe" cond ".n", \ |
| 29 | \ |
| 30 | "nop.w" \ |
| 31 | ) |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 32 | #else |
Will Deacon | 27a8479 | 2013-07-02 12:10:42 +0100 | [diff] [blame^] | 33 | #define WFE(cond) __ALT_SMP_ASM("wfe" cond, "nop") |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 34 | #endif |
| 35 | |
Will Deacon | 27a8479 | 2013-07-02 12:10:42 +0100 | [diff] [blame^] | 36 | #define SEV __ALT_SMP_ASM(WASM(sev), WASM(nop)) |
| 37 | |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 38 | static inline void dsb_sev(void) |
| 39 | { |
| 40 | #if __LINUX_ARM_ARCH__ >= 7 |
| 41 | __asm__ __volatile__ ( |
Will Deacon | 73a6fdc | 2013-05-13 11:39:50 +0100 | [diff] [blame] | 42 | "dsb ishst\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 43 | SEV |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 44 | ); |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 45 | #else |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 46 | __asm__ __volatile__ ( |
| 47 | "mcr p15, 0, %0, c7, c10, 4\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 48 | SEV |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 49 | : : "r" (0) |
| 50 | ); |
| 51 | #endif |
| 52 | } |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 55 | * ARMv6 ticket-based spin-locking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 57 | * A memory barrier is required after we get a lock, and before we |
| 58 | * release it, because V6 CPUs are assumed to have weakly ordered |
| 59 | * memory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 62 | #define arch_spin_unlock_wait(lock) \ |
| 63 | do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 65 | #define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 67 | static inline void arch_spin_lock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | unsigned long tmp; |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 70 | u32 newval; |
| 71 | arch_spinlock_t lockval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | __asm__ __volatile__( |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 74 | "1: ldrex %0, [%3]\n" |
| 75 | " add %1, %0, %4\n" |
| 76 | " strex %2, %1, [%3]\n" |
| 77 | " teq %2, #0\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | " bne 1b" |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 79 | : "=&r" (lockval), "=&r" (newval), "=&r" (tmp) |
| 80 | : "r" (&lock->slock), "I" (1 << TICKET_SHIFT) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 81 | : "cc"); |
| 82 | |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 83 | while (lockval.tickets.next != lockval.tickets.owner) { |
| 84 | wfe(); |
| 85 | lockval.tickets.owner = ACCESS_ONCE(lock->tickets.owner); |
| 86 | } |
| 87 | |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 88 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 91 | static inline int arch_spin_trylock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
Will Deacon | 15e7e5c | 2013-06-05 11:27:26 +0100 | [diff] [blame] | 93 | unsigned long contended, res; |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 94 | u32 slock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Will Deacon | 15e7e5c | 2013-06-05 11:27:26 +0100 | [diff] [blame] | 96 | do { |
| 97 | __asm__ __volatile__( |
| 98 | " ldrex %0, [%3]\n" |
| 99 | " mov %2, #0\n" |
| 100 | " subs %1, %0, %0, ror #16\n" |
| 101 | " addeq %0, %0, %4\n" |
| 102 | " strexeq %2, %0, [%3]" |
Will Deacon | afa31d8 | 2013-08-12 18:03:26 +0100 | [diff] [blame] | 103 | : "=&r" (slock), "=&r" (contended), "=&r" (res) |
Will Deacon | 15e7e5c | 2013-06-05 11:27:26 +0100 | [diff] [blame] | 104 | : "r" (&lock->slock), "I" (1 << TICKET_SHIFT) |
| 105 | : "cc"); |
| 106 | } while (res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Will Deacon | 15e7e5c | 2013-06-05 11:27:26 +0100 | [diff] [blame] | 108 | if (!contended) { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 109 | smp_mb(); |
| 110 | return 1; |
| 111 | } else { |
| 112 | return 0; |
| 113 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 116 | static inline void arch_spin_unlock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 118 | smp_mb(); |
Will Deacon | 20e260b | 2013-01-24 14:47:38 +0100 | [diff] [blame] | 119 | lock->tickets.owner++; |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 120 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Will Deacon | 546c289 | 2012-07-06 15:43:41 +0100 | [diff] [blame] | 123 | static inline int arch_spin_is_locked(arch_spinlock_t *lock) |
| 124 | { |
| 125 | struct __raw_tickets tickets = ACCESS_ONCE(lock->tickets); |
| 126 | return tickets.owner != tickets.next; |
| 127 | } |
| 128 | |
| 129 | static inline int arch_spin_is_contended(arch_spinlock_t *lock) |
| 130 | { |
| 131 | struct __raw_tickets tickets = ACCESS_ONCE(lock->tickets); |
| 132 | return (tickets.next - tickets.owner) > 1; |
| 133 | } |
| 134 | #define arch_spin_is_contended arch_spin_is_contended |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | /* |
| 137 | * RWLOCKS |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 138 | * |
| 139 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | * Write locks are easy - we just set bit 31. When unlocking, we can |
| 141 | * just write zero since the lock is exclusively held. |
| 142 | */ |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 143 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 144 | static inline void arch_write_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
| 146 | unsigned long tmp; |
| 147 | |
| 148 | __asm__ __volatile__( |
| 149 | "1: ldrex %0, [%1]\n" |
| 150 | " teq %0, #0\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 151 | WFE("ne") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | " strexeq %0, %2, [%1]\n" |
| 153 | " teq %0, #0\n" |
| 154 | " bne 1b" |
| 155 | : "=&r" (tmp) |
| 156 | : "r" (&rw->lock), "r" (0x80000000) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 157 | : "cc"); |
| 158 | |
| 159 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 162 | static inline int arch_write_trylock(arch_rwlock_t *rw) |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 163 | { |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 164 | unsigned long contended, res; |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 165 | |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 166 | do { |
| 167 | __asm__ __volatile__( |
| 168 | " ldrex %0, [%2]\n" |
| 169 | " mov %1, #0\n" |
| 170 | " teq %0, #0\n" |
| 171 | " strexeq %1, %3, [%2]" |
| 172 | : "=&r" (contended), "=&r" (res) |
| 173 | : "r" (&rw->lock), "r" (0x80000000) |
| 174 | : "cc"); |
| 175 | } while (res); |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 176 | |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 177 | if (!contended) { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 178 | smp_mb(); |
| 179 | return 1; |
| 180 | } else { |
| 181 | return 0; |
| 182 | } |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 183 | } |
| 184 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 185 | static inline void arch_write_unlock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 187 | smp_mb(); |
| 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | __asm__ __volatile__( |
Russell King | 00b4c90 | 2005-12-01 15:47:24 +0000 | [diff] [blame] | 190 | "str %1, [%0]\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | : |
| 192 | : "r" (&rw->lock), "r" (0) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 193 | : "cc"); |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 194 | |
| 195 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 198 | /* write_can_lock - would write_trylock() succeed? */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 199 | #define arch_write_can_lock(x) ((x)->lock == 0) |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* |
| 202 | * Read locks are a bit more hairy: |
| 203 | * - Exclusively load the lock value. |
| 204 | * - Increment it. |
| 205 | * - Store new lock value if positive, and we still own this location. |
| 206 | * If the value is negative, we've already failed. |
| 207 | * - If we failed to store the value, we want a negative result. |
| 208 | * - If we failed, try again. |
| 209 | * Unlocking is similarly hairy. We may have multiple read locks |
| 210 | * currently active. However, we know we won't have any write |
| 211 | * locks. |
| 212 | */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 213 | static inline void arch_read_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | unsigned long tmp, tmp2; |
| 216 | |
| 217 | __asm__ __volatile__( |
| 218 | "1: ldrex %0, [%2]\n" |
| 219 | " adds %0, %0, #1\n" |
| 220 | " strexpl %1, %0, [%2]\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame] | 221 | WFE("mi") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | " rsbpls %0, %1, #0\n" |
| 223 | " bmi 1b" |
| 224 | : "=&r" (tmp), "=&r" (tmp2) |
| 225 | : "r" (&rw->lock) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 226 | : "cc"); |
| 227 | |
| 228 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 231 | static inline void arch_read_unlock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 233 | unsigned long tmp, tmp2; |
| 234 | |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 235 | smp_mb(); |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | __asm__ __volatile__( |
| 238 | "1: ldrex %0, [%2]\n" |
| 239 | " sub %0, %0, #1\n" |
| 240 | " strex %1, %0, [%2]\n" |
| 241 | " teq %1, #0\n" |
| 242 | " bne 1b" |
| 243 | : "=&r" (tmp), "=&r" (tmp2) |
| 244 | : "r" (&rw->lock) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 245 | : "cc"); |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 246 | |
| 247 | if (tmp == 0) |
| 248 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 251 | static inline int arch_read_trylock(arch_rwlock_t *rw) |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 252 | { |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 253 | unsigned long contended, res; |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 254 | |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 255 | do { |
| 256 | __asm__ __volatile__( |
| 257 | " ldrex %0, [%2]\n" |
| 258 | " mov %1, #0\n" |
| 259 | " adds %0, %0, #1\n" |
| 260 | " strexpl %1, %0, [%2]" |
| 261 | : "=&r" (contended), "=&r" (res) |
| 262 | : "r" (&rw->lock) |
| 263 | : "cc"); |
| 264 | } while (res); |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 265 | |
Will Deacon | 00efaa0 | 2013-08-12 18:04:05 +0100 | [diff] [blame] | 266 | /* If the lock is negative, then it is already held for write. */ |
| 267 | if (contended < 0x80000000) { |
| 268 | smp_mb(); |
| 269 | return 1; |
| 270 | } else { |
| 271 | return 0; |
| 272 | } |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 275 | /* read_can_lock - would read_trylock() succeed? */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 276 | #define arch_read_can_lock(x) ((x)->lock < 0x80000000) |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 277 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 278 | #define arch_read_lock_flags(lock, flags) arch_read_lock(lock) |
| 279 | #define arch_write_lock_flags(lock, flags) arch_write_lock(lock) |
Robin Holt | f5f7eac | 2009-04-02 16:59:46 -0700 | [diff] [blame] | 280 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 281 | #define arch_spin_relax(lock) cpu_relax() |
| 282 | #define arch_read_relax(lock) cpu_relax() |
| 283 | #define arch_write_relax(lock) cpu_relax() |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | #endif /* __ASM_SPINLOCK_H */ |