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>
17 * Using a branch-likely instruction to check the result of an sc instruction
18 * works around a bug present in R10000 CPUs prior to revision 3.0 that could
19 * cause ll-sc sequences to execute non-atomically.
22 # define __scbeqz "beqzl"
24 # define __scbeqz "beqz"
28 * These functions doesn't exist, so if they are called you'll either:
30 * - Get an error at compile-time due to __compiletime_error, if supported by
35 * - Get an error at link-time due to the call to the missing function.
37 extern unsigned long __cmpxchg_called_with_bad_pointer(void)
38 __compiletime_error("Bad argument size for cmpxchg");
39 extern unsigned long __xchg_called_with_bad_pointer(void)
40 __compiletime_error("Bad argument size for xchg");
42 #define __xchg_asm(ld, st, m, val) \
44 __typeof(*(m)) __ret; \
46 if (kernel_uses_llsc) { \
47 __asm__ __volatile__( \
50 " .set " MIPS_ISA_ARCH_LEVEL " \n" \
51 "1: " ld " %0, %2 # __xchg_asm \n" \
54 " .set " MIPS_ISA_ARCH_LEVEL " \n" \
56 "\t" __scbeqz " $1, 1b \n" \
58 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
59 : GCC_OFF_SMALL_ASM() (*m), "Jr" (val) \
62 unsigned long __flags; \
64 raw_local_irq_save(__flags); \
67 raw_local_irq_restore(__flags); \
73 extern unsigned long __xchg_small(volatile void *ptr
, unsigned long val
,
76 static inline unsigned long __xchg(volatile void *ptr
, unsigned long x
,
82 return __xchg_small(ptr
, x
, size
);
85 return __xchg_asm("ll", "sc", (volatile u32
*)ptr
, x
);
88 if (!IS_ENABLED(CONFIG_64BIT
))
89 return __xchg_called_with_bad_pointer();
91 return __xchg_asm("lld", "scd", (volatile u64
*)ptr
, x
);
94 return __xchg_called_with_bad_pointer();
98 #define xchg(ptr, x) \
100 __typeof__(*(ptr)) __res; \
102 smp_mb__before_llsc(); \
104 __res = (__typeof__(*(ptr))) \
105 __xchg((ptr), (unsigned long)(x), sizeof(*(ptr))); \
112 #define __cmpxchg_asm(ld, st, m, old, new) \
114 __typeof(*(m)) __ret; \
116 if (kernel_uses_llsc) { \
117 __asm__ __volatile__( \
120 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
121 "1: " ld " %0, %2 # __cmpxchg_asm \n" \
122 " bne %0, %z3, 2f \n" \
125 " .set "MIPS_ISA_ARCH_LEVEL" \n" \
126 " " st " $1, %1 \n" \
127 "\t" __scbeqz " $1, 1b \n" \
130 : "=&r" (__ret), "=" GCC_OFF_SMALL_ASM() (*m) \
131 : GCC_OFF_SMALL_ASM() (*m), "Jr" (old), "Jr" (new) \
134 unsigned long __flags; \
136 raw_local_irq_save(__flags); \
140 raw_local_irq_restore(__flags); \
146 extern unsigned long __cmpxchg_small(volatile void *ptr
, unsigned long old
,
147 unsigned long new, unsigned int size
);
149 static inline unsigned long __cmpxchg(volatile void *ptr
, unsigned long old
,
150 unsigned long new, unsigned int size
)
155 return __cmpxchg_small(ptr
, old
, new, size
);
158 return __cmpxchg_asm("ll", "sc", (volatile u32
*)ptr
,
162 /* lld/scd are only available for MIPS64 */
163 if (!IS_ENABLED(CONFIG_64BIT
))
164 return __cmpxchg_called_with_bad_pointer();
166 return __cmpxchg_asm("lld", "scd", (volatile u64
*)ptr
,
170 return __cmpxchg_called_with_bad_pointer();
174 #define cmpxchg_local(ptr, old, new) \
175 ((__typeof__(*(ptr))) \
177 (unsigned long)(__typeof__(*(ptr)))(old), \
178 (unsigned long)(__typeof__(*(ptr)))(new), \
181 #define cmpxchg(ptr, old, new) \
183 __typeof__(*(ptr)) __res; \
185 smp_mb__before_llsc(); \
186 __res = cmpxchg_local((ptr), (old), (new)); \
193 #define cmpxchg64_local(ptr, o, n) \
195 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
196 cmpxchg_local((ptr), (o), (n)); \
199 #define cmpxchg64(ptr, o, n) \
201 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
202 cmpxchg((ptr), (o), (n)); \
205 #include <asm-generic/cmpxchg-local.h>
206 #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
208 #define cmpxchg64(ptr, o, n) cmpxchg64_local((ptr), (o), (n))
214 #endif /* __ASM_CMPXCHG_H */