1 #ifndef _ASM_IA64_SPINLOCK_H
2 #define _ASM_IA64_SPINLOCK_H
5 * Copyright (C) 1998-2003 Hewlett-Packard Co
9 * This file is used for SMP configurations only.
12 #include <linux/compiler.h>
13 #include <linux/kernel.h>
14 #include <linux/bitops.h>
16 #include <linux/atomic.h>
17 #include <asm/intrinsics.h>
19 #define arch_spin_lock_init(x) ((x)->lock = 0)
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.
27 * The pad bits in the middle are used to prevent the next_ticket number
28 * overflowing into the now_serving number.
31 * +----------------------------------------------------+
32 * | now_serving | padding | next_ticket |
33 * +----------------------------------------------------+
36 #define TICKET_SHIFT 17
37 #define TICKET_BITS 15
38 #define TICKET_MASK ((1 << TICKET_BITS) - 1)
40 static __always_inline void __ticket_spin_lock(arch_spinlock_t *lock)
42 int *p = (int *)&lock->lock, ticket, serve;
44 ticket = ia64_fetchadd(1, p, acq);
46 if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK))
52 asm volatile ("ld4.c.nc %0=[%1]" : "=r"(serve) : "r"(p) : "memory");
54 if (!(((serve >> TICKET_SHIFT) ^ ticket) & TICKET_MASK))
60 static __always_inline int __ticket_spin_trylock(arch_spinlock_t *lock)
62 int tmp = ACCESS_ONCE(lock->lock);
64 if (!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK))
65 return ia64_cmpxchg(acq, &lock->lock, tmp, tmp + 1, sizeof (tmp)) == tmp;
69 static __always_inline void __ticket_spin_unlock(arch_spinlock_t *lock)
71 unsigned short *p = (unsigned short *)&lock->lock + 1, tmp;
73 asm volatile ("ld2.bias %0=[%1]" : "=r"(tmp) : "r"(p));
74 ACCESS_ONCE(*p) = (tmp + 2) & ~1;
77 static __always_inline void __ticket_spin_unlock_wait(arch_spinlock_t *lock)
79 int *p = (int *)&lock->lock, ticket;
84 asm volatile ("ld4.c.nc %0=[%1]" : "=r"(ticket) : "r"(p) : "memory");
85 if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK))
91 static inline int __ticket_spin_is_locked(arch_spinlock_t *lock)
93 long tmp = ACCESS_ONCE(lock->lock);
95 return !!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK);
98 static inline int __ticket_spin_is_contended(arch_spinlock_t *lock)
100 long tmp = ACCESS_ONCE(lock->lock);
102 return ((tmp - (tmp >> TICKET_SHIFT)) & TICKET_MASK) > 1;
105 static inline int arch_spin_is_locked(arch_spinlock_t *lock)
107 return __ticket_spin_is_locked(lock);
110 static inline int arch_spin_is_contended(arch_spinlock_t *lock)
112 return __ticket_spin_is_contended(lock);
114 #define arch_spin_is_contended arch_spin_is_contended
116 static __always_inline void arch_spin_lock(arch_spinlock_t *lock)
118 __ticket_spin_lock(lock);
121 static __always_inline int arch_spin_trylock(arch_spinlock_t *lock)
123 return __ticket_spin_trylock(lock);
126 static __always_inline void arch_spin_unlock(arch_spinlock_t *lock)
128 __ticket_spin_unlock(lock);
131 static __always_inline void arch_spin_lock_flags(arch_spinlock_t *lock,
134 arch_spin_lock(lock);
137 static inline void arch_spin_unlock_wait(arch_spinlock_t *lock)
139 __ticket_spin_unlock_wait(lock);
142 #define arch_read_can_lock(rw) (*(volatile int *)(rw) >= 0)
143 #define arch_write_can_lock(rw) (*(volatile int *)(rw) == 0)
147 static __always_inline void
148 arch_read_lock_flags(arch_rwlock_t *lock, unsigned long flags)
150 __asm__ __volatile__ (
151 "tbit.nz p6, p0 = %1,%2\n"
154 "fetchadd4.rel r2 = [%0], -1;;\n"
159 "cmp4.lt p7,p0 = r2, r0\n"
160 "(p7) br.cond.spnt.few 2b\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");
171 #define arch_read_lock(lock) arch_read_lock_flags(lock, 0)
173 #else /* !ASM_SUPPORTED */
175 #define arch_read_lock_flags(rw, flags) arch_read_lock(rw)
177 #define arch_read_lock(rw) \
179 arch_rwlock_t *__read_lock_ptr = (rw); \
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) \
188 #endif /* !ASM_SUPPORTED */
190 #define arch_read_unlock(rw) \
192 arch_rwlock_t *__read_lock_ptr = (rw); \
193 ia64_fetchadd(-1, (int *) __read_lock_ptr, rel); \
198 static __always_inline void
199 arch_write_lock_flags(arch_rwlock_t *lock, unsigned long flags)
201 __asm__ __volatile__ (
202 "tbit.nz p6, p0 = %1, %2\n"
204 "dep r29 = -1, r0, 31, 1\n"
211 "cmp4.eq p0,p7 = r0, r2\n"
212 "(p7) br.cond.spnt.few 2b\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");
223 #define arch_write_lock(rw) arch_write_lock_flags(rw, 0)
225 #define arch_write_trylock(rw) \
227 register long result; \
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"); \
237 static inline void arch_write_unlock(arch_rwlock_t *x)
241 asm volatile ("st1.rel.nta [%0] = r0\n\t" :: "r"(y+3) : "memory" );
244 #else /* !ASM_SUPPORTED */
246 #define arch_write_lock_flags(l, flags) arch_write_lock(l)
248 #define arch_write_lock(l) \
250 __u64 ia64_val, ia64_set_val = ia64_dep_mi(-1, 0, 31, 1); \
251 __u32 *ia64_write_lock_ptr = (__u32 *) (l); \
253 while (*ia64_write_lock_ptr) \
255 ia64_val = ia64_cmpxchg4_acq(ia64_write_lock_ptr, ia64_set_val, 0); \
256 } while (ia64_val); \
259 #define arch_write_trylock(rw) \
262 __u64 ia64_set_val = ia64_dep_mi(-1, 0, 31,1); \
263 ia64_val = ia64_cmpxchg4_acq((__u32 *)(rw), ia64_set_val, 0); \
267 static inline void arch_write_unlock(arch_rwlock_t *x)
273 #endif /* !ASM_SUPPORTED */
275 static inline int arch_read_trylock(arch_rwlock_t *x)
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;
287 #define arch_spin_relax(lock) cpu_relax()
288 #define arch_read_relax(lock) cpu_relax()
289 #define arch_write_relax(lock) cpu_relax()
291 #endif /* _ASM_IA64_SPINLOCK_H */