H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_CMPXCHG_32_H |
| 2 | #define _ASM_X86_CMPXCHG_32_H |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 3 | |
Avi Kivity | 2d9ce17 | 2007-07-19 14:30:14 +0300 | [diff] [blame] | 4 | /* |
| 5 | * Note: if you use set64_bit(), __cmpxchg64(), or their variants, you |
| 6 | * you need to test for the feature in boot_cpu_data. |
| 7 | */ |
| 8 | |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 9 | /* |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 10 | * CMPXCHG8B only writes to the target if we had the previous |
| 11 | * value in registers, otherwise it acts as a read and gives us the |
| 12 | * "new previous" value. That is why there is a loop. Preloading |
| 13 | * EDX:EAX is a performance optimization: in the common case it means |
| 14 | * we need only one locked operation. |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 15 | * |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 16 | * A SIMD/3DNOW!/MMX/FPU 64-bit store here would require at the very |
| 17 | * least an FPU save and/or %cr0.ts manipulation. |
| 18 | * |
| 19 | * cmpxchg8b must be used with the lock prefix here to allow the |
| 20 | * instruction to be executed atomically. We need to have the reader |
| 21 | * side to see the coherent 64bit value. |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 22 | */ |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 23 | static inline void set_64bit(volatile u64 *ptr, u64 value) |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 24 | { |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 25 | u32 low = value; |
| 26 | u32 high = value >> 32; |
| 27 | u64 prev = *ptr; |
| 28 | |
Joe Perches | 8121019 | 2008-03-23 01:01:51 -0700 | [diff] [blame] | 29 | asm volatile("\n1:\t" |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 30 | LOCK_PREFIX "cmpxchg8b %0\n\t" |
Joe Perches | 8121019 | 2008-03-23 01:01:51 -0700 | [diff] [blame] | 31 | "jnz 1b" |
H. Peter Anvin | 69309a0 | 2010-07-27 23:29:52 -0700 | [diff] [blame] | 32 | : "=m" (*ptr), "+A" (prev) |
| 33 | : "b" (low), "c" (high) |
| 34 | : "memory"); |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Mathieu Desnoyers | 2c0b8a7 | 2008-01-30 13:30:47 +0100 | [diff] [blame] | 37 | #ifdef CONFIG_X86_CMPXCHG64 |
Joe Perches | 8121019 | 2008-03-23 01:01:51 -0700 | [diff] [blame] | 38 | #define cmpxchg64(ptr, o, n) \ |
| 39 | ((__typeof__(*(ptr)))__cmpxchg64((ptr), (unsigned long long)(o), \ |
| 40 | (unsigned long long)(n))) |
| 41 | #define cmpxchg64_local(ptr, o, n) \ |
| 42 | ((__typeof__(*(ptr)))__cmpxchg64_local((ptr), (unsigned long long)(o), \ |
| 43 | (unsigned long long)(n))) |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 44 | #endif |
| 45 | |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 46 | static inline u64 __cmpxchg64(volatile u64 *ptr, u64 old, u64 new) |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 47 | { |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 48 | u64 prev; |
H. Peter Anvin | 113fc5a | 2010-07-27 17:01:49 -0700 | [diff] [blame] | 49 | asm volatile(LOCK_PREFIX "cmpxchg8b %1" |
| 50 | : "=A" (prev), |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 51 | "+m" (*ptr) |
| 52 | : "b" ((u32)new), |
| 53 | "c" ((u32)(new >> 32)), |
H. Peter Anvin | 113fc5a | 2010-07-27 17:01:49 -0700 | [diff] [blame] | 54 | "0" (old) |
Joe Perches | 8121019 | 2008-03-23 01:01:51 -0700 | [diff] [blame] | 55 | : "memory"); |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 56 | return prev; |
| 57 | } |
| 58 | |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 59 | static inline u64 __cmpxchg64_local(volatile u64 *ptr, u64 old, u64 new) |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 60 | { |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 61 | u64 prev; |
H. Peter Anvin | 113fc5a | 2010-07-27 17:01:49 -0700 | [diff] [blame] | 62 | asm volatile("cmpxchg8b %1" |
| 63 | : "=A" (prev), |
H. Peter Anvin | 4532b30 | 2010-07-28 15:18:35 -0700 | [diff] [blame] | 64 | "+m" (*ptr) |
| 65 | : "b" ((u32)new), |
| 66 | "c" ((u32)(new >> 32)), |
H. Peter Anvin | 113fc5a | 2010-07-27 17:01:49 -0700 | [diff] [blame] | 67 | "0" (old) |
Joe Perches | 8121019 | 2008-03-23 01:01:51 -0700 | [diff] [blame] | 68 | : "memory"); |
Jeff Dike | a436ed9 | 2007-05-08 00:35:02 -0700 | [diff] [blame] | 69 | return prev; |
| 70 | } |
| 71 | |
Mathieu Desnoyers | 2c0b8a7 | 2008-01-30 13:30:47 +0100 | [diff] [blame] | 72 | #ifndef CONFIG_X86_CMPXCHG64 |
| 73 | /* |
| 74 | * Building a kernel capable running on 80386 and 80486. It may be necessary |
| 75 | * to simulate the cmpxchg8b on the 80386 and 80486 CPU. |
| 76 | */ |
| 77 | |
Arjan van de Ven | 79e1dd0 | 2009-09-30 17:07:54 +0200 | [diff] [blame] | 78 | #define cmpxchg64(ptr, o, n) \ |
| 79 | ({ \ |
| 80 | __typeof__(*(ptr)) __ret; \ |
| 81 | __typeof__(*(ptr)) __old = (o); \ |
| 82 | __typeof__(*(ptr)) __new = (n); \ |
Luca Barbieri | 9c76b38 | 2010-02-24 10:54:23 +0100 | [diff] [blame] | 83 | alternative_io(LOCK_PREFIX_HERE \ |
| 84 | "call cmpxchg8b_emu", \ |
Arjan van de Ven | 79e1dd0 | 2009-09-30 17:07:54 +0200 | [diff] [blame] | 85 | "lock; cmpxchg8b (%%esi)" , \ |
| 86 | X86_FEATURE_CX8, \ |
| 87 | "=A" (__ret), \ |
| 88 | "S" ((ptr)), "0" (__old), \ |
| 89 | "b" ((unsigned int)__new), \ |
| 90 | "c" ((unsigned int)(__new>>32)) \ |
| 91 | : "memory"); \ |
| 92 | __ret; }) |
| 93 | |
| 94 | |
H. Peter Anvin | a378d93 | 2010-07-28 17:05:11 -0700 | [diff] [blame] | 95 | #define cmpxchg64_local(ptr, o, n) \ |
| 96 | ({ \ |
| 97 | __typeof__(*(ptr)) __ret; \ |
| 98 | __typeof__(*(ptr)) __old = (o); \ |
| 99 | __typeof__(*(ptr)) __new = (n); \ |
| 100 | alternative_io("call cmpxchg8b_emu", \ |
| 101 | "cmpxchg8b (%%esi)" , \ |
| 102 | X86_FEATURE_CX8, \ |
| 103 | "=A" (__ret), \ |
| 104 | "S" ((ptr)), "0" (__old), \ |
| 105 | "b" ((unsigned int)__new), \ |
| 106 | "c" ((unsigned int)(__new>>32)) \ |
| 107 | : "memory"); \ |
| 108 | __ret; }) |
Mathieu Desnoyers | 2c0b8a7 | 2008-01-30 13:30:47 +0100 | [diff] [blame] | 109 | |
| 110 | #endif |
| 111 | |
Christoph Lameter | 3824abd | 2011-06-01 12:25:47 -0500 | [diff] [blame] | 112 | #define system_has_cmpxchg_double() cpu_has_cx8 |
| 113 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 114 | #endif /* _ASM_X86_CMPXCHG_32_H */ |