2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2003, 06, 07 by Ralf Baechle (ralf@linux-mips.org)
8 #ifndef __ASM_CMPXCHG_H
9 #define __ASM_CMPXCHG_H
11 #include <linux/bug.h>
12 #include <linux/irqflags.h>
13 #include <asm/compiler.h>
16 static inline unsigned long __xchg_u32(volatile int * m
, unsigned int val
)
20 smp_mb__before_llsc();
22 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
27 "1: ll %0, %3 # xchg_u32 \n"
34 : "=&r" (retval
), "=" GCC_OFF_SMALL_ASM() (*m
), "=&r" (dummy
)
35 : GCC_OFF_SMALL_ASM() (*m
), "Jr" (val
)
37 } else if (kernel_uses_llsc
) {
42 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
43 " ll %0, %3 # xchg_u32 \n"
46 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
49 : "=&r" (retval
), "=" GCC_OFF_SMALL_ASM() (*m
),
51 : GCC_OFF_SMALL_ASM() (*m
), "Jr" (val
)
53 } while (unlikely(!dummy
));
57 raw_local_irq_save(flags
);
60 raw_local_irq_restore(flags
); /* implies memory barrier */
69 static inline __u64
__xchg_u64(volatile __u64
* m
, __u64 val
)
73 smp_mb__before_llsc();
75 if (kernel_uses_llsc
&& R10000_LLSC_WAR
) {
80 "1: lld %0, %3 # xchg_u64 \n"
85 : "=&r" (retval
), "=" GCC_OFF_SMALL_ASM() (*m
), "=&r" (dummy
)
86 : GCC_OFF_SMALL_ASM() (*m
), "Jr" (val
)
88 } else if (kernel_uses_llsc
) {
93 " .set "MIPS_ISA_ARCH_LEVEL
" \n"
94 " lld %0, %3 # xchg_u64 \n"
98 : "=&r" (retval
), "=" GCC_OFF_SMALL_ASM() (*m
),
100 : GCC_OFF_SMALL_ASM() (*m
), "Jr" (val
)
102 } while (unlikely(!dummy
));
106 raw_local_irq_save(flags
);
109 raw_local_irq_restore(flags
); /* implies memory barrier */
117 extern __u64
__xchg_u64_unsupported_on_32bit_kernels(volatile __u64
* m
, __u64 val
);
118 #define __xchg_u64 __xchg_u64_unsupported_on_32bit_kernels
121 static inline unsigned long __xchg(unsigned long x
, volatile void * ptr
, int size
)
125 return __xchg_u32(ptr
, x
);
127 return __xchg_u64(ptr
, x
);
133 #define xchg(ptr, x) \
135 BUILD_BUG_ON(sizeof(*(ptr)) & ~0xc); \
137 ((__typeof__(*(ptr))) \
138 __xchg((unsigned long)(x), (ptr), sizeof(*(ptr)))); \
141 #define __cmpxchg_asm(ld, st, m, old, new) \
143 __typeof(*(m)) __ret; \
145 if (kernel_uses_llsc && R10000_LLSC_WAR) { \
146 __asm__ __volatile__( \
149 " .set arch=r4000 \n" \
150 "1: " ld " %0, %2 # __cmpxchg_asm \n" \
151 " bne %0, %z3, 2f \n" \
154 " .set arch=r4000 \n" \
155 " " st " $1, %1 \n" \
159 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
160 : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \
162 } else if (kernel_uses_llsc) { \
163 __asm__ __volatile__( \
166 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
167 "1: " ld " %0, %2 # __cmpxchg_asm \n" \
168 " bne %0, %z3, 2f \n" \
171 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
172 " " st " $1, %1 \n" \
176 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
177 : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \
180 unsigned long __flags; \
182 raw_local_irq_save(__flags); \
186 raw_local_irq_restore(__flags); \
193 * This function doesn't exist, so you'll get a linker error
194 * if something tries to do an invalid cmpxchg().
196 extern void __cmpxchg_called_with_bad_pointer(void);
198 #define __cmpxchg(ptr, old, new, pre_barrier, post_barrier) \
200 __typeof__(ptr) __ptr = (ptr); \
201 __typeof__(*(ptr)) __old = (old); \
202 __typeof__(*(ptr)) __new = (new); \
203 __typeof__(*(ptr)) __res = 0; \
207 switch (sizeof(*(__ptr))) { \
209 __res = __cmpxchg_asm("ll", "sc", __ptr, __old, __new); \
212 if (sizeof(long) == 8) { \
213 __res = __cmpxchg_asm("lld", "scd", __ptr, \
218 __cmpxchg_called_with_bad_pointer(); \
227 #define cmpxchg(ptr, old, new) __cmpxchg(ptr, old, new, smp_mb__before_llsc(), smp_llsc_mb())
228 #define cmpxchg_local(ptr, old, new) __cmpxchg(ptr, old, new, , )
231 #define cmpxchg64_local(ptr, o, n) \
233 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
234 cmpxchg_local((ptr), (o), (n)); \
237 #define cmpxchg64(ptr, o, n) \
239 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
240 cmpxchg((ptr), (o), (n)); \
243 #include <asm-generic/cmpxchg-local.h>
244 #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
245 #define cmpxchg64(ptr, o, n) cmpxchg64_local((ptr), (o), (n))
248 #endif /* __ASM_CMPXCHG_H */