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 __HAVE_ARCH_CMPXCHG 1
143 #define __cmpxchg_asm(ld, st, m, old, new) \
145 __typeof(*(m)) __ret; \
147 if (kernel_uses_llsc && R10000_LLSC_WAR) { \
148 __asm__ __volatile__( \
151 " .set arch=r4000 \n" \
152 "1: " ld " %0, %2 # __cmpxchg_asm \n" \
153 " bne %0, %z3, 2f \n" \
156 " .set arch=r4000 \n" \
157 " " st " $1, %1 \n" \
161 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
162 : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \
164 } else if (kernel_uses_llsc) { \
165 __asm__ __volatile__( \
168 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
169 "1: " ld " %0, %2 # __cmpxchg_asm \n" \
170 " bne %0, %z3, 2f \n" \
173 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
174 " " st " $1, %1 \n" \
178 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
179 : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \
182 unsigned long __flags; \
184 raw_local_irq_save(__flags); \
188 raw_local_irq_restore(__flags); \
195 * This function doesn't exist, so you'll get a linker error
196 * if something tries to do an invalid cmpxchg().
198 extern void __cmpxchg_called_with_bad_pointer(void);
200 #define __cmpxchg(ptr, old, new, pre_barrier, post_barrier) \
202 __typeof__(ptr) __ptr = (ptr); \
203 __typeof__(*(ptr)) __old = (old); \
204 __typeof__(*(ptr)) __new = (new); \
205 __typeof__(*(ptr)) __res = 0; \
209 switch (sizeof(*(__ptr))) { \
211 __res = __cmpxchg_asm("ll", "sc", __ptr, __old, __new); \
214 if (sizeof(long) == 8) { \
215 __res = __cmpxchg_asm("lld", "scd", __ptr, \
220 __cmpxchg_called_with_bad_pointer(); \
229 #define cmpxchg(ptr, old, new) __cmpxchg(ptr, old, new, smp_mb__before_llsc(), smp_llsc_mb())
230 #define cmpxchg_local(ptr, old, new) __cmpxchg(ptr, old, new, , )
233 #define cmpxchg64_local(ptr, o, n) \
235 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
236 cmpxchg_local((ptr), (o), (n)); \
239 #define cmpxchg64(ptr, o, n) \
241 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
242 cmpxchg((ptr), (o), (n)); \
245 #include <asm-generic/cmpxchg-local.h>
246 #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
247 #define cmpxchg64(ptr, o, n) cmpxchg64_local((ptr), (o), (n))
250 #endif /* __ASM_CMPXCHG_H */