Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_IA64_SPINLOCK_H |
| 2 | #define _ASM_IA64_SPINLOCK_H |
| 3 | |
| 4 | /* |
| 5 | * Copyright (C) 1998-2003 Hewlett-Packard Co |
| 6 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 7 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> |
| 8 | * |
| 9 | * This file is used for SMP configurations only. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/compiler.h> |
| 13 | #include <linux/kernel.h> |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 14 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Arun Sharma | 6006349 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 16 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/intrinsics.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 19 | #define arch_spin_lock_init(x) ((x)->lock = 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | /* |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 22 | * Ticket locks are conceptually two parts, one indicating the current head of |
| 23 | * the queue, and the other indicating the current tail. The lock is acquired |
| 24 | * by atomically noting the tail and incrementing it by one (thus adding |
| 25 | * ourself to the queue and noting our position), then waiting until the head |
| 26 | * becomes equal to the the initial value of the tail. |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 27 | * The pad bits in the middle are used to prevent the next_ticket number |
| 28 | * overflowing into the now_serving number. |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 29 | * |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 30 | * 31 17 16 15 14 0 |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 31 | * +----------------------------------------------------+ |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 32 | * | now_serving | padding | next_ticket | |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 33 | * +----------------------------------------------------+ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | */ |
| 35 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 36 | #define TICKET_SHIFT 17 |
| 37 | #define TICKET_BITS 15 |
| 38 | #define TICKET_MASK ((1 << TICKET_BITS) - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 40 | static __always_inline void __ticket_spin_lock(arch_spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 42 | int *p = (int *)&lock->lock, ticket, serve; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 44 | ticket = ia64_fetchadd(1, p, acq); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 45 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 46 | if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 47 | return; |
| 48 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 49 | ia64_invala(); |
| 50 | |
| 51 | for (;;) { |
| 52 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(serve) : "r"(p) : "memory"); |
| 53 | |
| 54 | if (!(((serve >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
| 55 | return; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 56 | cpu_relax(); |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 57 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 59 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 60 | static __always_inline int __ticket_spin_trylock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 61 | { |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 62 | int tmp = ACCESS_ONCE(lock->lock); |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 63 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 64 | if (!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK)) |
| 65 | return ia64_cmpxchg(acq, &lock->lock, tmp, tmp + 1, sizeof (tmp)) == tmp; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 66 | return 0; |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 69 | static __always_inline void __ticket_spin_unlock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 70 | { |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 71 | unsigned short *p = (unsigned short *)&lock->lock + 1, tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 73 | asm volatile ("ld2.bias %0=[%1]" : "=r"(tmp) : "r"(p)); |
| 74 | ACCESS_ONCE(*p) = (tmp + 2) & ~1; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 77 | static __always_inline void __ticket_spin_unlock_wait(arch_spinlock_t *lock) |
Tony Luck | 1502f08 | 2009-10-12 09:51:41 -0700 | [diff] [blame] | 78 | { |
| 79 | int *p = (int *)&lock->lock, ticket; |
| 80 | |
| 81 | ia64_invala(); |
| 82 | |
| 83 | for (;;) { |
| 84 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(ticket) : "r"(p) : "memory"); |
| 85 | if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
| 86 | return; |
| 87 | cpu_relax(); |
| 88 | } |
| 89 | } |
| 90 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 91 | static inline int __ticket_spin_is_locked(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 92 | { |
| 93 | long tmp = ACCESS_ONCE(lock->lock); |
| 94 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 95 | return !!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 98 | static inline int __ticket_spin_is_contended(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 99 | { |
| 100 | long tmp = ACCESS_ONCE(lock->lock); |
| 101 | |
Tony Luck | 9d40ee2 | 2009-10-07 10:54:19 -0700 | [diff] [blame] | 102 | return ((tmp - (tmp >> TICKET_SHIFT)) & TICKET_MASK) > 1; |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 105 | static inline int arch_spin_is_locked(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 106 | { |
| 107 | return __ticket_spin_is_locked(lock); |
| 108 | } |
| 109 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 110 | static inline int arch_spin_is_contended(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 111 | { |
| 112 | return __ticket_spin_is_contended(lock); |
| 113 | } |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 114 | #define arch_spin_is_contended arch_spin_is_contended |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 115 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 116 | static __always_inline void arch_spin_lock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 117 | { |
| 118 | __ticket_spin_lock(lock); |
| 119 | } |
| 120 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 121 | static __always_inline int arch_spin_trylock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 122 | { |
| 123 | return __ticket_spin_trylock(lock); |
| 124 | } |
| 125 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 126 | static __always_inline void arch_spin_unlock(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 127 | { |
| 128 | __ticket_spin_unlock(lock); |
| 129 | } |
| 130 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 131 | static __always_inline void arch_spin_lock_flags(arch_spinlock_t *lock, |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 132 | unsigned long flags) |
| 133 | { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 134 | arch_spin_lock(lock); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 137 | static inline void arch_spin_unlock_wait(arch_spinlock_t *lock) |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 138 | { |
Tony Luck | 1502f08 | 2009-10-12 09:51:41 -0700 | [diff] [blame] | 139 | __ticket_spin_unlock_wait(lock); |
Tony Luck | 2c86963 | 2009-09-25 08:42:16 -0700 | [diff] [blame] | 140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 142 | #define arch_read_can_lock(rw) (*(volatile int *)(rw) >= 0) |
| 143 | #define arch_write_can_lock(rw) (*(volatile int *)(rw) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 145 | #ifdef ASM_SUPPORTED |
| 146 | |
| 147 | static __always_inline void |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 148 | arch_read_lock_flags(arch_rwlock_t *lock, unsigned long flags) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 149 | { |
| 150 | __asm__ __volatile__ ( |
| 151 | "tbit.nz p6, p0 = %1,%2\n" |
| 152 | "br.few 3f\n" |
| 153 | "1:\n" |
| 154 | "fetchadd4.rel r2 = [%0], -1;;\n" |
| 155 | "(p6) ssm psr.i\n" |
| 156 | "2:\n" |
| 157 | "hint @pause\n" |
| 158 | "ld4 r2 = [%0];;\n" |
| 159 | "cmp4.lt p7,p0 = r2, r0\n" |
| 160 | "(p7) br.cond.spnt.few 2b\n" |
| 161 | "(p6) rsm psr.i\n" |
| 162 | ";;\n" |
| 163 | "3:\n" |
| 164 | "fetchadd4.acq r2 = [%0], 1;;\n" |
| 165 | "cmp4.lt p7,p0 = r2, r0\n" |
| 166 | "(p7) br.cond.spnt.few 1b\n" |
| 167 | : : "r"(lock), "r"(flags), "i"(IA64_PSR_I_BIT) |
| 168 | : "p6", "p7", "r2", "memory"); |
| 169 | } |
| 170 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 171 | #define arch_read_lock(lock) arch_read_lock_flags(lock, 0) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 172 | |
| 173 | #else /* !ASM_SUPPORTED */ |
| 174 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 175 | #define arch_read_lock_flags(rw, flags) arch_read_lock(rw) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 176 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 177 | #define arch_read_lock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | do { \ |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 179 | arch_rwlock_t *__read_lock_ptr = (rw); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | \ |
| 181 | while (unlikely(ia64_fetchadd(1, (int *) __read_lock_ptr, acq) < 0)) { \ |
| 182 | ia64_fetchadd(-1, (int *) __read_lock_ptr, rel); \ |
| 183 | while (*(volatile int *)__read_lock_ptr < 0) \ |
| 184 | cpu_relax(); \ |
| 185 | } \ |
| 186 | } while (0) |
| 187 | |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 188 | #endif /* !ASM_SUPPORTED */ |
| 189 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 190 | #define arch_read_unlock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | do { \ |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 192 | arch_rwlock_t *__read_lock_ptr = (rw); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | ia64_fetchadd(-1, (int *) __read_lock_ptr, rel); \ |
| 194 | } while (0) |
| 195 | |
| 196 | #ifdef ASM_SUPPORTED |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 197 | |
| 198 | static __always_inline void |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 199 | arch_write_lock_flags(arch_rwlock_t *lock, unsigned long flags) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 200 | { |
| 201 | __asm__ __volatile__ ( |
| 202 | "tbit.nz p6, p0 = %1, %2\n" |
| 203 | "mov ar.ccv = r0\n" |
| 204 | "dep r29 = -1, r0, 31, 1\n" |
| 205 | "br.few 3f;;\n" |
| 206 | "1:\n" |
| 207 | "(p6) ssm psr.i\n" |
| 208 | "2:\n" |
| 209 | "hint @pause\n" |
| 210 | "ld4 r2 = [%0];;\n" |
| 211 | "cmp4.eq p0,p7 = r0, r2\n" |
| 212 | "(p7) br.cond.spnt.few 2b\n" |
| 213 | "(p6) rsm psr.i\n" |
| 214 | ";;\n" |
| 215 | "3:\n" |
| 216 | "cmpxchg4.acq r2 = [%0], r29, ar.ccv;;\n" |
| 217 | "cmp4.eq p0,p7 = r0, r2\n" |
| 218 | "(p7) br.cond.spnt.few 1b;;\n" |
| 219 | : : "r"(lock), "r"(flags), "i"(IA64_PSR_I_BIT) |
| 220 | : "ar.ccv", "p6", "p7", "r2", "r29", "memory"); |
| 221 | } |
| 222 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 223 | #define arch_write_lock(rw) arch_write_lock_flags(rw, 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 225 | #define arch_write_trylock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | ({ \ |
| 227 | register long result; \ |
| 228 | \ |
| 229 | __asm__ __volatile__ ( \ |
| 230 | "mov ar.ccv = r0\n" \ |
| 231 | "dep r29 = -1, r0, 31, 1;;\n" \ |
| 232 | "cmpxchg4.acq %0 = [%1], r29, ar.ccv\n" \ |
| 233 | : "=r"(result) : "r"(rw) : "ar.ccv", "r29", "memory"); \ |
| 234 | (result == 0); \ |
| 235 | }) |
| 236 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 237 | static inline void arch_write_unlock(arch_rwlock_t *x) |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 238 | { |
| 239 | u8 *y = (u8 *)x; |
| 240 | barrier(); |
| 241 | asm volatile ("st1.rel.nta [%0] = r0\n\t" :: "r"(y+3) : "memory" ); |
| 242 | } |
| 243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | #else /* !ASM_SUPPORTED */ |
| 245 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 246 | #define arch_write_lock_flags(l, flags) arch_write_lock(l) |
Robin Holt | 2d09cde | 2009-04-02 16:59:47 -0700 | [diff] [blame] | 247 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 248 | #define arch_write_lock(l) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | ({ \ |
| 250 | __u64 ia64_val, ia64_set_val = ia64_dep_mi(-1, 0, 31, 1); \ |
| 251 | __u32 *ia64_write_lock_ptr = (__u32 *) (l); \ |
| 252 | do { \ |
| 253 | while (*ia64_write_lock_ptr) \ |
| 254 | ia64_barrier(); \ |
| 255 | ia64_val = ia64_cmpxchg4_acq(ia64_write_lock_ptr, ia64_set_val, 0); \ |
| 256 | } while (ia64_val); \ |
| 257 | }) |
| 258 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 259 | #define arch_write_trylock(rw) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | ({ \ |
| 261 | __u64 ia64_val; \ |
| 262 | __u64 ia64_set_val = ia64_dep_mi(-1, 0, 31,1); \ |
| 263 | ia64_val = ia64_cmpxchg4_acq((__u32 *)(rw), ia64_set_val, 0); \ |
| 264 | (ia64_val == 0); \ |
| 265 | }) |
| 266 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 267 | static inline void arch_write_unlock(arch_rwlock_t *x) |
Christoph Lameter | f521089 | 2005-08-05 08:02:00 -0700 | [diff] [blame] | 268 | { |
| 269 | barrier(); |
| 270 | x->write_lock = 0; |
| 271 | } |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | #endif /* !ASM_SUPPORTED */ |
| 274 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 275 | static inline int arch_read_trylock(arch_rwlock_t *x) |
Keith Owens | bf7ecec | 2005-12-10 14:24:28 +1100 | [diff] [blame] | 276 | { |
| 277 | union { |
Thomas Gleixner | fb3a6bb | 2009-12-03 20:01:19 +0100 | [diff] [blame] | 278 | arch_rwlock_t lock; |
Keith Owens | bf7ecec | 2005-12-10 14:24:28 +1100 | [diff] [blame] | 279 | __u32 word; |
| 280 | } old, new; |
| 281 | old.lock = new.lock = *x; |
| 282 | old.lock.write_lock = new.lock.write_lock = 0; |
| 283 | ++new.lock.read_counter; |
| 284 | return (u32)ia64_cmpxchg4_acq((__u32 *)(x), new.word, old.word) == old.word; |
| 285 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 287 | #define arch_spin_relax(lock) cpu_relax() |
| 288 | #define arch_read_relax(lock) cpu_relax() |
| 289 | #define arch_write_relax(lock) cpu_relax() |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | #endif /* _ASM_IA64_SPINLOCK_H */ |