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 | |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 8 | /* |
| 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 Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 27 | static inline void dsb_sev(void) |
| 28 | { |
| 29 | #if __LINUX_ARM_ARCH__ >= 7 |
| 30 | __asm__ __volatile__ ( |
| 31 | "dsb\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 32 | SEV |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 33 | ); |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 34 | #else |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 35 | __asm__ __volatile__ ( |
| 36 | "mcr p15, 0, %0, c7, c10, 4\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 37 | SEV |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 38 | : : "r" (0) |
| 39 | ); |
| 40 | #endif |
| 41 | } |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* |
| 44 | * ARMv6 Spin-locking. |
| 45 | * |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 46 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * |
| 51 | * Unlocked value: 0 |
| 52 | * Locked value: 1 |
| 53 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 55 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 59 | #define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 61 | static inline void arch_spin_lock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
| 63 | unsigned long tmp; |
| 64 | |
| 65 | __asm__ __volatile__( |
| 66 | "1: ldrex %0, [%1]\n" |
| 67 | " teq %0, #0\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 68 | WFE("ne") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | " strexeq %0, %2, [%1]\n" |
| 70 | " teqeq %0, #0\n" |
| 71 | " bne 1b" |
| 72 | : "=&r" (tmp) |
| 73 | : "r" (&lock->lock), "r" (1) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 74 | : "cc"); |
| 75 | |
| 76 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 79 | static inline int arch_spin_trylock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
| 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 King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 89 | : "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 91 | if (tmp == 0) { |
| 92 | smp_mb(); |
| 93 | return 1; |
| 94 | } else { |
| 95 | return 0; |
| 96 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 99 | static inline void arch_spin_unlock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 101 | smp_mb(); |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | __asm__ __volatile__( |
Russell King | 00b4c90 | 2005-12-01 15:47:24 +0000 | [diff] [blame] | 104 | " str %1, [%0]\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | : |
| 106 | : "r" (&lock->lock), "r" (0) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 107 | : "cc"); |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 108 | |
| 109 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | /* |
| 113 | * RWLOCKS |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 114 | * |
| 115 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | * 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 Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 119 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 120 | static inline void arch_write_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
| 122 | unsigned long tmp; |
| 123 | |
| 124 | __asm__ __volatile__( |
| 125 | "1: ldrex %0, [%1]\n" |
| 126 | " teq %0, #0\n" |
Russell King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 127 | WFE("ne") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | " strexeq %0, %2, [%1]\n" |
| 129 | " teq %0, #0\n" |
| 130 | " bne 1b" |
| 131 | : "=&r" (tmp) |
| 132 | : "r" (&rw->lock), "r" (0x80000000) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 133 | : "cc"); |
| 134 | |
| 135 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 138 | static inline int arch_write_trylock(arch_rwlock_t *rw) |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 139 | { |
| 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 King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 148 | : "cc"); |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 149 | |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 150 | if (tmp == 0) { |
| 151 | smp_mb(); |
| 152 | return 1; |
| 153 | } else { |
| 154 | return 0; |
| 155 | } |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 156 | } |
| 157 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 158 | static inline void arch_write_unlock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 160 | smp_mb(); |
| 161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | __asm__ __volatile__( |
Russell King | 00b4c90 | 2005-12-01 15:47:24 +0000 | [diff] [blame] | 163 | "str %1, [%0]\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | : |
| 165 | : "r" (&rw->lock), "r" (0) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 166 | : "cc"); |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 167 | |
| 168 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 171 | /* write_can_lock - would write_trylock() succeed? */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 172 | #define arch_write_can_lock(x) ((x)->lock == 0) |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* |
| 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 Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 186 | static inline void arch_read_lock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 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 King | 000d9c7 | 2011-01-15 16:22:12 +0000 | [diff] [blame^] | 194 | WFE("mi") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | " rsbpls %0, %1, #0\n" |
| 196 | " bmi 1b" |
| 197 | : "=&r" (tmp), "=&r" (tmp2) |
| 198 | : "r" (&rw->lock) |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 199 | : "cc"); |
| 200 | |
| 201 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 204 | static inline void arch_read_unlock(arch_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
Russell King | 4e8fd22 | 2005-07-24 12:13:40 +0100 | [diff] [blame] | 206 | unsigned long tmp, tmp2; |
| 207 | |
Russell King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 208 | smp_mb(); |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | __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 King | 6d9b37a | 2005-07-26 19:44:26 +0100 | [diff] [blame] | 218 | : "cc"); |
Rabin Vincent | c5113b6 | 2010-01-25 19:43:03 +0100 | [diff] [blame] | 219 | |
| 220 | if (tmp == 0) |
| 221 | dsb_sev(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 224 | static inline int arch_read_trylock(arch_rwlock_t *rw) |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 225 | { |
Catalin Marinas | e89bc81 | 2006-09-06 19:03:14 +0100 | [diff] [blame] | 226 | unsigned long tmp, tmp2 = 1; |
Russell King | 8e34703 | 2006-08-31 15:09:30 +0100 | [diff] [blame] | 227 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 240 | /* read_can_lock - would read_trylock() succeed? */ |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 241 | #define arch_read_can_lock(x) ((x)->lock < 0x80000000) |
Catalin Marinas | c2a4c40 | 2006-05-19 21:55:35 +0100 | [diff] [blame] | 242 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 243 | #define arch_read_lock_flags(lock, flags) arch_read_lock(lock) |
| 244 | #define arch_write_lock_flags(lock, flags) arch_write_lock(lock) |
Robin Holt | f5f7eac | 2009-04-02 16:59:46 -0700 | [diff] [blame] | 245 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 246 | #define arch_spin_relax(lock) cpu_relax() |
| 247 | #define arch_read_relax(lock) cpu_relax() |
| 248 | #define arch_write_relax(lock) cpu_relax() |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | #endif /* __ASM_SPINLOCK_H */ |