1 #ifndef __ASM_CMPXCHG_H
2 #define __ASM_CMPXCHG_H
4 #include <linux/bitops.h> /* for LOCK_PREFIX */
7 * Note: if you use set64_bit(), __cmpxchg64(), or their variants, you
8 * you need to test for the feature in boot_cpu_data.
11 #define xchg(ptr,v) ((__typeof__(*(ptr)))__xchg((unsigned long)(v),(ptr),sizeof(*(ptr))))
13 struct __xchg_dummy
{ unsigned long a
[100]; };
14 #define __xg(x) ((struct __xchg_dummy *)(x))
17 * The semantics of XCHGCMP8B are a bit strange, this is why
18 * there is a loop and the loading of %%eax and %%edx has to
19 * be inside. This inlines well in most cases, the cached
20 * cost is around ~38 cycles. (in the future we might want
21 * to do an SIMD/3DNOW!/MMX/FPU 64-bit store here, but that
22 * might have an implicit FPU-save as a cost, so it's not
23 * clear which path to go.)
25 * cmpxchg8b must be used with the lock prefix here to allow
26 * the instruction to be executed atomically, see page 3-102
27 * of the instruction set reference 24319102.pdf. We need
28 * the reader side to see the coherent 64bit value.
30 static inline void __set_64bit (unsigned long long * ptr
,
31 unsigned int low
, unsigned int high
)
33 __asm__
__volatile__ (
35 "movl (%0), %%eax\n\t"
36 "movl 4(%0), %%edx\n\t"
37 LOCK_PREFIX
"cmpxchg8b (%0)\n\t"
43 : "ax","dx","memory");
46 static inline void __set_64bit_constant (unsigned long long *ptr
,
47 unsigned long long value
)
49 __set_64bit(ptr
,(unsigned int)(value
), (unsigned int)((value
)>>32ULL));
51 #define ll_low(x) *(((unsigned int*)&(x))+0)
52 #define ll_high(x) *(((unsigned int*)&(x))+1)
54 static inline void __set_64bit_var (unsigned long long *ptr
,
55 unsigned long long value
)
57 __set_64bit(ptr
,ll_low(value
), ll_high(value
));
60 #define set_64bit(ptr,value) \
61 (__builtin_constant_p(value) ? \
62 __set_64bit_constant(ptr, value) : \
63 __set_64bit_var(ptr, value) )
65 #define _set_64bit(ptr,value) \
66 (__builtin_constant_p(value) ? \
67 __set_64bit(ptr, (unsigned int)(value), (unsigned int)((value)>>32ULL) ) : \
68 __set_64bit(ptr, ll_low(value), ll_high(value)) )
71 * Note: no "lock" prefix even on SMP: xchg always implies lock anyway
72 * Note 2: xchg has side effect, so that attribute volatile is necessary,
73 * but generally the primitive is invalid, *ptr is output argument. --ANK
75 static inline unsigned long __xchg(unsigned long x
, volatile void * ptr
, int size
)
79 __asm__
__volatile__("xchgb %b0,%1"
81 :"m" (*__xg(ptr
)), "0" (x
)
85 __asm__
__volatile__("xchgw %w0,%1"
87 :"m" (*__xg(ptr
)), "0" (x
)
91 __asm__
__volatile__("xchgl %0,%1"
93 :"m" (*__xg(ptr
)), "0" (x
)
101 * Atomic compare and exchange. Compare OLD with MEM, if identical,
102 * store NEW in MEM. Return the initial value in MEM. Success is
103 * indicated by comparing RETURN with OLD.
106 #ifdef CONFIG_X86_CMPXCHG
107 #define __HAVE_ARCH_CMPXCHG 1
108 #define cmpxchg(ptr,o,n)\
109 ((__typeof__(*(ptr)))__cmpxchg((ptr),(unsigned long)(o),\
110 (unsigned long)(n),sizeof(*(ptr))))
111 #define sync_cmpxchg(ptr,o,n)\
112 ((__typeof__(*(ptr)))__sync_cmpxchg((ptr),(unsigned long)(o),\
113 (unsigned long)(n),sizeof(*(ptr))))
114 #define cmpxchg_local(ptr,o,n)\
115 ((__typeof__(*(ptr)))__cmpxchg_local((ptr),(unsigned long)(o),\
116 (unsigned long)(n),sizeof(*(ptr))))
119 static inline unsigned long __cmpxchg(volatile void *ptr
, unsigned long old
,
120 unsigned long new, int size
)
125 __asm__
__volatile__(LOCK_PREFIX
"cmpxchgb %b1,%2"
127 : "q"(new), "m"(*__xg(ptr
)), "0"(old
)
131 __asm__
__volatile__(LOCK_PREFIX
"cmpxchgw %w1,%2"
133 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
137 __asm__
__volatile__(LOCK_PREFIX
"cmpxchgl %1,%2"
139 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
147 * Always use locked operations when touching memory shared with a
148 * hypervisor, since the system may be SMP even if the guest kernel
151 static inline unsigned long __sync_cmpxchg(volatile void *ptr
,
153 unsigned long new, int size
)
158 __asm__
__volatile__("lock; cmpxchgb %b1,%2"
160 : "q"(new), "m"(*__xg(ptr
)), "0"(old
)
164 __asm__
__volatile__("lock; cmpxchgw %w1,%2"
166 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
170 __asm__
__volatile__("lock; cmpxchgl %1,%2"
172 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
179 static inline unsigned long __cmpxchg_local(volatile void *ptr
,
180 unsigned long old
, unsigned long new, int size
)
185 __asm__
__volatile__("cmpxchgb %b1,%2"
187 : "q"(new), "m"(*__xg(ptr
)), "0"(old
)
191 __asm__
__volatile__("cmpxchgw %w1,%2"
193 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
197 __asm__
__volatile__("cmpxchgl %1,%2"
199 : "r"(new), "m"(*__xg(ptr
)), "0"(old
)
206 #ifndef CONFIG_X86_CMPXCHG
208 * Building a kernel capable running on 80386. It may be necessary to
209 * simulate the cmpxchg on the 80386 CPU. For that purpose we define
210 * a function for each of the sizes we support.
213 extern unsigned long cmpxchg_386_u8(volatile void *, u8
, u8
);
214 extern unsigned long cmpxchg_386_u16(volatile void *, u16
, u16
);
215 extern unsigned long cmpxchg_386_u32(volatile void *, u32
, u32
);
217 static inline unsigned long cmpxchg_386(volatile void *ptr
, unsigned long old
,
218 unsigned long new, int size
)
222 return cmpxchg_386_u8(ptr
, old
, new);
224 return cmpxchg_386_u16(ptr
, old
, new);
226 return cmpxchg_386_u32(ptr
, old
, new);
231 #define cmpxchg(ptr,o,n) \
233 __typeof__(*(ptr)) __ret; \
234 if (likely(boot_cpu_data.x86 > 3)) \
235 __ret = __cmpxchg((ptr), (unsigned long)(o), \
236 (unsigned long)(n), sizeof(*(ptr))); \
238 __ret = cmpxchg_386((ptr), (unsigned long)(o), \
239 (unsigned long)(n), sizeof(*(ptr))); \
242 #define cmpxchg_local(ptr,o,n) \
244 __typeof__(*(ptr)) __ret; \
245 if (likely(boot_cpu_data.x86 > 3)) \
246 __ret = __cmpxchg_local((ptr), (unsigned long)(o), \
247 (unsigned long)(n), sizeof(*(ptr))); \
249 __ret = cmpxchg_386((ptr), (unsigned long)(o), \
250 (unsigned long)(n), sizeof(*(ptr))); \
255 static inline unsigned long long __cmpxchg64(volatile void *ptr
, unsigned long long old
,
256 unsigned long long new)
258 unsigned long long prev
;
259 __asm__
__volatile__(LOCK_PREFIX
"cmpxchg8b %3"
261 : "b"((unsigned long)new),
262 "c"((unsigned long)(new >> 32)),
269 static inline unsigned long long __cmpxchg64_local(volatile void *ptr
,
270 unsigned long long old
, unsigned long long new)
272 unsigned long long prev
;
273 __asm__
__volatile__("cmpxchg8b %3"
275 : "b"((unsigned long)new),
276 "c"((unsigned long)(new >> 32)),
283 #define cmpxchg64(ptr,o,n)\
284 ((__typeof__(*(ptr)))__cmpxchg64((ptr),(unsigned long long)(o),\
285 (unsigned long long)(n)))
286 #define cmpxchg64_local(ptr,o,n)\
287 ((__typeof__(*(ptr)))__cmpxchg64_local((ptr),(unsigned long long)(o),\
288 (unsigned long long)(n)))