blob: 537395a2877a12d7d82d4f70ab7d29f762544b34 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_SYSTEM_H
2#define _ASM_X86_SYSTEM_H
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +01003
4#include <asm/asm.h>
Glauber de Oliveira Costad46d7d72008-01-30 13:31:08 +01005#include <asm/segment.h>
6#include <asm/cpufeature.h>
7#include <asm/cmpxchg.h>
Andi Kleenfde1b3f2008-01-30 13:32:38 +01008#include <asm/nops.h>
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +01009
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +010010#include <linux/kernel.h>
Glauber de Oliveira Costad46d7d72008-01-30 13:31:08 +010011#include <linux/irqflags.h>
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +010012
Jan Beulichded9aa02008-01-30 13:31:24 +010013/* entries in ARCH_DLINFO: */
14#ifdef CONFIG_IA32_EMULATION
15# define AT_VECTOR_SIZE_ARCH 2
16#else
17# define AT_VECTOR_SIZE_ARCH 1
18#endif
19
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +010020struct task_struct; /* one of the stranger aspects of C forward declarations */
Harvey Harrison599db4f2008-02-04 16:48:03 +010021struct task_struct *__switch_to(struct task_struct *prev,
22 struct task_struct *next);
Jeremy Fitzhardinge2fb6b2a2009-02-27 13:25:33 -080023struct tss_struct;
Jeremy Fitzhardinge389d1fb2009-02-27 13:25:28 -080024void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
25 struct tss_struct *tss);
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +010026
Jaswinder Singhaab02f02008-12-15 22:23:54 +053027#ifdef CONFIG_X86_32
28
Tejun Heo60a53172009-02-09 22:17:40 +090029#ifdef CONFIG_CC_STACKPROTECTOR
30#define __switch_canary \
Tejun Heo5c79d2a2009-02-11 16:31:00 +090031 "movl %P[task_canary](%[next]), %%ebx\n\t" \
32 "movl %%ebx, "__percpu_arg([stack_canary])"\n\t"
Tejun Heo60a53172009-02-09 22:17:40 +090033#define __switch_canary_oparam \
Jeremy Fitzhardinge1ea0d142009-09-03 12:27:15 -070034 , [stack_canary] "=m" (per_cpu_var(stack_canary.canary))
Tejun Heo60a53172009-02-09 22:17:40 +090035#define __switch_canary_iparam \
Tejun Heo60a53172009-02-09 22:17:40 +090036 , [task_canary] "i" (offsetof(struct task_struct, stack_canary))
37#else /* CC_STACKPROTECTOR */
38#define __switch_canary
39#define __switch_canary_oparam
40#define __switch_canary_iparam
41#endif /* CC_STACKPROTECTOR */
42
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +010043/*
44 * Saving eflags is important. It switches not only IOPL between tasks,
45 * it also protects other tasks from NT leaking through sysenter etc.
46 */
Ingo Molnar23b55bd2008-03-05 10:24:37 +010047#define switch_to(prev, next, last) \
48do { \
Ingo Molnar8b6451f2008-03-05 10:46:38 +010049 /* \
50 * Context-switching clobbers all registers, so we clobber \
51 * them explicitly, via unused output variables. \
52 * (EAX and EBP is not listed because EBP is saved/restored \
53 * explicitly for wchan access and EAX is the return value of \
54 * __switch_to()) \
55 */ \
56 unsigned long ebx, ecx, edx, esi, edi; \
Ingo Molnar23b55bd2008-03-05 10:24:37 +010057 \
Joe Perchesc5386c22008-03-23 01:03:39 -070058 asm volatile("pushfl\n\t" /* save flags */ \
59 "pushl %%ebp\n\t" /* save EBP */ \
60 "movl %%esp,%[prev_sp]\n\t" /* save ESP */ \
61 "movl %[next_sp],%%esp\n\t" /* restore ESP */ \
62 "movl $1f,%[prev_ip]\n\t" /* save EIP */ \
63 "pushl %[next_ip]\n\t" /* restore EIP */ \
Tejun Heo5c79d2a2009-02-11 16:31:00 +090064 __switch_canary \
Joe Perchesc5386c22008-03-23 01:03:39 -070065 "jmp __switch_to\n" /* regparm call */ \
66 "1:\t" \
67 "popl %%ebp\n\t" /* restore EBP */ \
68 "popfl\n" /* restore flags */ \
Ingo Molnar23b55bd2008-03-05 10:24:37 +010069 \
Joe Perchesc5386c22008-03-23 01:03:39 -070070 /* output parameters */ \
71 : [prev_sp] "=m" (prev->thread.sp), \
72 [prev_ip] "=m" (prev->thread.ip), \
73 "=a" (last), \
Ingo Molnar23b55bd2008-03-05 10:24:37 +010074 \
Joe Perchesc5386c22008-03-23 01:03:39 -070075 /* clobbered output registers: */ \
76 "=b" (ebx), "=c" (ecx), "=d" (edx), \
77 "=S" (esi), "=D" (edi) \
78 \
Tejun Heo60a53172009-02-09 22:17:40 +090079 __switch_canary_oparam \
80 \
Joe Perchesc5386c22008-03-23 01:03:39 -070081 /* input parameters: */ \
82 : [next_sp] "m" (next->thread.sp), \
83 [next_ip] "m" (next->thread.ip), \
84 \
85 /* regparm parameters for __switch_to(): */ \
86 [prev] "a" (prev), \
Vegard Nossum33f8c402008-09-14 19:03:53 +020087 [next] "d" (next) \
88 \
Tejun Heo60a53172009-02-09 22:17:40 +090089 __switch_canary_iparam \
90 \
Vegard Nossum33f8c402008-09-14 19:03:53 +020091 : /* reloaded segment registers */ \
92 "memory"); \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +010093} while (0)
94
Glauber de Oliveira Costad46d7d72008-01-30 13:31:08 +010095/*
96 * disable hlt during certain critical i/o operations
97 */
98#define HAVE_DISABLE_HLT
Thomas Gleixner96a388d2007-10-11 11:20:03 +020099#else
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100100#define __SAVE(reg, offset) "movq %%" #reg ",(14-" #offset ")*8(%%rsp)\n\t"
101#define __RESTORE(reg, offset) "movq (14-" #offset ")*8(%%rsp),%%" #reg "\n\t"
102
103/* frame pointer must be last for get_wchan */
104#define SAVE_CONTEXT "pushf ; pushq %%rbp ; movq %%rsi,%%rbp\n\t"
105#define RESTORE_CONTEXT "movq %%rbp,%%rsi ; popq %%rbp ; popf\t"
106
107#define __EXTRA_CLOBBER \
108 , "rcx", "rbx", "rdx", "r8", "r9", "r10", "r11", \
109 "r12", "r13", "r14", "r15"
110
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900111#ifdef CONFIG_CC_STACKPROTECTOR
112#define __switch_canary \
113 "movq %P[task_canary](%%rsi),%%r8\n\t" \
Tejun Heo67e68bd2009-01-21 17:26:05 +0900114 "movq %%r8,"__percpu_arg([gs_canary])"\n\t"
115#define __switch_canary_oparam \
116 , [gs_canary] "=m" (per_cpu_var(irq_stack_union.stack_canary))
117#define __switch_canary_iparam \
118 , [task_canary] "i" (offsetof(struct task_struct, stack_canary))
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900119#else /* CC_STACKPROTECTOR */
120#define __switch_canary
Tejun Heo67e68bd2009-01-21 17:26:05 +0900121#define __switch_canary_oparam
122#define __switch_canary_iparam
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900123#endif /* CC_STACKPROTECTOR */
124
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100125/* Save restore flags to clear handle leaking NT */
126#define switch_to(prev, next, last) \
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900127 asm volatile(SAVE_CONTEXT \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100128 "movq %%rsp,%P[threadrsp](%[prev])\n\t" /* save RSP */ \
129 "movq %P[threadrsp](%[next]),%%rsp\n\t" /* restore RSP */ \
130 "call __switch_to\n\t" \
Brian Gerst87b26402009-01-19 00:38:59 +0900131 "movq "__percpu_arg([current_task])",%%rsi\n\t" \
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900132 __switch_canary \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100133 "movq %P[thread_info](%%rsi),%%r8\n\t" \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100134 "movq %%rax,%%rdi\n\t" \
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500135 "testl %[_tif_fork],%P[ti_flags](%%r8)\n\t" \
136 "jnz ret_from_fork\n\t" \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100137 RESTORE_CONTEXT \
138 : "=a" (last) \
Tejun Heo67e68bd2009-01-21 17:26:05 +0900139 __switch_canary_oparam \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100140 : [next] "S" (next), [prev] "D" (prev), \
141 [threadrsp] "i" (offsetof(struct task_struct, thread.sp)), \
142 [ti_flags] "i" (offsetof(struct thread_info, flags)), \
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500143 [_tif_fork] "i" (_TIF_FORK), \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100144 [thread_info] "i" (offsetof(struct task_struct, stack)), \
Tejun Heob4a8f7a2009-01-20 12:29:19 +0900145 [current_task] "m" (per_cpu_var(current_task)) \
Tejun Heo67e68bd2009-01-21 17:26:05 +0900146 __switch_canary_iparam \
Glauber de Oliveira Costa0a3b4d12008-01-30 13:31:08 +0100147 : "memory", "cc" __EXTRA_CLOBBER)
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200148#endif
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100149
150#ifdef __KERNEL__
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100151
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -0400152extern void native_load_gs_index(unsigned);
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100153
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100154/*
Glauber de Oliveira Costaa6b46552008-01-30 13:31:08 +0100155 * Load a segment. Fall back on loading the zero
156 * segment if something goes wrong..
157 */
158#define loadsegment(seg, value) \
Brian Gerst79b03792009-11-25 14:18:26 -0500159do { \
160 unsigned short __val = value; \
Glauber de Oliveira Costaa6b46552008-01-30 13:31:08 +0100161 asm volatile("\n" \
Joe Perchesc5386c22008-03-23 01:03:39 -0700162 "1:\t" \
163 "movl %k0,%%" #seg "\n" \
Joe Perchesc5386c22008-03-23 01:03:39 -0700164 ".section .fixup,\"ax\"\n" \
Brian Gerst79b03792009-11-25 14:18:26 -0500165 "2:\t" \
166 "xorl %k0,%k0\n\t" \
167 "jmp 1b\n" \
Joe Perchesc5386c22008-03-23 01:03:39 -0700168 ".previous\n" \
Brian Gerst79b03792009-11-25 14:18:26 -0500169 _ASM_EXTABLE(1b, 2b) \
170 : "+r" (__val) : : "memory"); \
171} while (0)
Glauber de Oliveira Costaa6b46552008-01-30 13:31:08 +0100172
173/*
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100174 * Save a segment register away
175 */
Joe Perchesc5386c22008-03-23 01:03:39 -0700176#define savesegment(seg, value) \
Ingo Molnard9fc3fd2008-07-11 19:41:19 +0200177 asm("mov %%" #seg ",%0":"=r" (value) : : "memory")
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100178
Tejun Heod9a89a22009-02-09 22:17:40 +0900179/*
180 * x86_32 user gs accessors.
181 */
182#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900183#ifdef CONFIG_X86_32_LAZY_GS
Tejun Heod9a89a22009-02-09 22:17:40 +0900184#define get_user_gs(regs) (u16)({unsigned long v; savesegment(gs, v); v;})
185#define set_user_gs(regs, v) loadsegment(gs, (unsigned long)(v))
186#define task_user_gs(tsk) ((tsk)->thread.gs)
Tejun Heoccbeed32009-02-09 22:17:40 +0900187#define lazy_save_gs(v) savesegment(gs, (v))
188#define lazy_load_gs(v) loadsegment(gs, (v))
189#else /* X86_32_LAZY_GS */
190#define get_user_gs(regs) (u16)((regs)->gs)
191#define set_user_gs(regs, v) do { (regs)->gs = (v); } while (0)
192#define task_user_gs(tsk) (task_pt_regs(tsk)->gs)
193#define lazy_save_gs(v) do { } while (0)
194#define lazy_load_gs(v) do { } while (0)
195#endif /* X86_32_LAZY_GS */
196#endif /* X86_32 */
Tejun Heod9a89a22009-02-09 22:17:40 +0900197
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100198static inline unsigned long get_limit(unsigned long segment)
199{
200 unsigned long __limit;
Joe Perchesc5386c22008-03-23 01:03:39 -0700201 asm("lsll %1,%0" : "=r" (__limit) : "r" (segment));
202 return __limit + 1;
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100203}
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100204
205static inline void native_clts(void)
206{
Joe Perchesc5386c22008-03-23 01:03:39 -0700207 asm volatile("clts");
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100208}
209
210/*
211 * Volatile isn't enough to prevent the compiler from reordering the
212 * read/write functions for the control registers and messing everything up.
213 * A memory clobber would solve the problem, but would prevent reordering of
214 * all loads stores around it, which can hurt performance. Solution is to
215 * use a variable and mimic reads and writes to it to enforce serialization
216 */
217static unsigned long __force_order;
218
219static inline unsigned long native_read_cr0(void)
220{
221 unsigned long val;
Joe Perchesc5386c22008-03-23 01:03:39 -0700222 asm volatile("mov %%cr0,%0\n\t" : "=r" (val), "=m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100223 return val;
224}
225
226static inline void native_write_cr0(unsigned long val)
227{
Joe Perchesc5386c22008-03-23 01:03:39 -0700228 asm volatile("mov %0,%%cr0": : "r" (val), "m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100229}
230
231static inline unsigned long native_read_cr2(void)
232{
233 unsigned long val;
Joe Perchesc5386c22008-03-23 01:03:39 -0700234 asm volatile("mov %%cr2,%0\n\t" : "=r" (val), "=m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100235 return val;
236}
237
238static inline void native_write_cr2(unsigned long val)
239{
Joe Perchesc5386c22008-03-23 01:03:39 -0700240 asm volatile("mov %0,%%cr2": : "r" (val), "m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100241}
242
243static inline unsigned long native_read_cr3(void)
244{
245 unsigned long val;
Joe Perchesc5386c22008-03-23 01:03:39 -0700246 asm volatile("mov %%cr3,%0\n\t" : "=r" (val), "=m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100247 return val;
248}
249
250static inline void native_write_cr3(unsigned long val)
251{
Joe Perchesc5386c22008-03-23 01:03:39 -0700252 asm volatile("mov %0,%%cr3": : "r" (val), "m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100253}
254
255static inline unsigned long native_read_cr4(void)
256{
257 unsigned long val;
Joe Perchesc5386c22008-03-23 01:03:39 -0700258 asm volatile("mov %%cr4,%0\n\t" : "=r" (val), "=m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100259 return val;
260}
261
262static inline unsigned long native_read_cr4_safe(void)
263{
264 unsigned long val;
265 /* This could fault if %cr4 does not exist. In x86_64, a cr4 always
266 * exists, so it will never fail. */
267#ifdef CONFIG_X86_32
H. Peter Anvin88976ee2008-02-04 16:47:58 +0100268 asm volatile("1: mov %%cr4, %0\n"
269 "2:\n"
Joe Perchesc5386c22008-03-23 01:03:39 -0700270 _ASM_EXTABLE(1b, 2b)
H. Peter Anvin88976ee2008-02-04 16:47:58 +0100271 : "=r" (val), "=m" (__force_order) : "0" (0));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100272#else
273 val = native_read_cr4();
274#endif
275 return val;
276}
277
278static inline void native_write_cr4(unsigned long val)
279{
Joe Perchesc5386c22008-03-23 01:03:39 -0700280 asm volatile("mov %0,%%cr4": : "r" (val), "m" (__force_order));
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100281}
282
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100283#ifdef CONFIG_X86_64
284static inline unsigned long native_read_cr8(void)
285{
286 unsigned long cr8;
287 asm volatile("movq %%cr8,%0" : "=r" (cr8));
288 return cr8;
289}
290
291static inline void native_write_cr8(unsigned long val)
292{
293 asm volatile("movq %0,%%cr8" :: "r" (val) : "memory");
294}
295#endif
296
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100297static inline void native_wbinvd(void)
298{
299 asm volatile("wbinvd": : :"memory");
300}
Joe Perchesc5386c22008-03-23 01:03:39 -0700301
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100302#ifdef CONFIG_PARAVIRT
303#include <asm/paravirt.h>
304#else
305#define read_cr0() (native_read_cr0())
306#define write_cr0(x) (native_write_cr0(x))
307#define read_cr2() (native_read_cr2())
308#define write_cr2(x) (native_write_cr2(x))
309#define read_cr3() (native_read_cr3())
310#define write_cr3(x) (native_write_cr3(x))
311#define read_cr4() (native_read_cr4())
312#define read_cr4_safe() (native_read_cr4_safe())
313#define write_cr4(x) (native_write_cr4(x))
314#define wbinvd() (native_wbinvd())
Glauber de Oliveira Costad46d7d72008-01-30 13:31:08 +0100315#ifdef CONFIG_X86_64
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100316#define read_cr8() (native_read_cr8())
317#define write_cr8(x) (native_write_cr8(x))
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -0400318#define load_gs_index native_load_gs_index
Glauber de Oliveira Costad46d7d72008-01-30 13:31:08 +0100319#endif
320
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100321/* Clear the 'TS' bit */
322#define clts() (native_clts())
323
324#endif/* CONFIG_PARAVIRT */
325
Jeremy Fitzhardinge4e09e212008-05-26 23:31:03 +0100326#define stts() write_cr0(read_cr0() | X86_CR0_TS)
Glauber de Oliveira Costad3ca9012008-01-30 13:31:08 +0100327
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100328#endif /* __KERNEL__ */
329
H. Peter Anvin84fb1442008-02-04 16:48:00 +0100330static inline void clflush(volatile void *__p)
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100331{
H. Peter Anvin84fb1442008-02-04 16:48:00 +0100332 asm volatile("clflush %0" : "+m" (*(volatile char __force *)__p));
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100333}
334
Joe Perchesc5386c22008-03-23 01:03:39 -0700335#define nop() asm volatile ("nop")
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100336
337void disable_hlt(void);
338void enable_hlt(void);
339
Glauber de Oliveira Costad8954222008-01-30 13:31:08 +0100340void cpu_idle_wait(void);
341
342extern unsigned long arch_align_stack(unsigned long sp);
343extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
344
345void default_idle(void);
346
Ivan Vecerad3ec5ca2008-11-11 14:33:44 +0100347void stop_this_cpu(void *dummy);
348
Glauber de Oliveira Costa833d8462008-01-30 13:31:08 +0100349/*
350 * Force strict CPU ordering.
351 * And yes, this is required on UP too when we're talking
352 * to devices.
353 */
354#ifdef CONFIG_X86_32
355/*
Pavel Machek0d7a1812008-03-03 12:49:09 +0100356 * Some non-Intel clones support out of order store. wmb() ceases to be a
Glauber de Oliveira Costa833d8462008-01-30 13:31:08 +0100357 * nop for these.
358 */
359#define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
360#define rmb() alternative("lock; addl $0,0(%%esp)", "lfence", X86_FEATURE_XMM2)
361#define wmb() alternative("lock; addl $0,0(%%esp)", "sfence", X86_FEATURE_XMM)
362#else
363#define mb() asm volatile("mfence":::"memory")
364#define rmb() asm volatile("lfence":::"memory")
365#define wmb() asm volatile("sfence" ::: "memory")
366#endif
367
368/**
369 * read_barrier_depends - Flush all pending reads that subsequents reads
370 * depend on.
371 *
372 * No data-dependent reads from memory-like regions are ever reordered
373 * over this barrier. All reads preceding this primitive are guaranteed
374 * to access memory (but not necessarily other CPUs' caches) before any
375 * reads following this primitive that depend on the data return by
376 * any of the preceding reads. This primitive is much lighter weight than
377 * rmb() on most CPUs, and is never heavier weight than is
378 * rmb().
379 *
380 * These ordering constraints are respected by both the local CPU
381 * and the compiler.
382 *
383 * Ordering is not guaranteed by anything other than these primitives,
384 * not even by data dependencies. See the documentation for
385 * memory_barrier() for examples and URLs to more information.
386 *
387 * For example, the following code would force ordering (the initial
388 * value of "a" is zero, "b" is one, and "p" is "&a"):
389 *
390 * <programlisting>
391 * CPU 0 CPU 1
392 *
393 * b = 2;
394 * memory_barrier();
395 * p = &b; q = p;
396 * read_barrier_depends();
397 * d = *q;
398 * </programlisting>
399 *
400 * because the read of "*q" depends on the read of "p" and these
401 * two reads are separated by a read_barrier_depends(). However,
402 * the following code, with the same initial values for "a" and "b":
403 *
404 * <programlisting>
405 * CPU 0 CPU 1
406 *
407 * a = 2;
408 * memory_barrier();
409 * b = 3; y = b;
410 * read_barrier_depends();
411 * x = a;
412 * </programlisting>
413 *
414 * does not enforce ordering, since there is no data dependency between
415 * the read of "a" and the read of "b". Therefore, on some CPUs, such
416 * as Alpha, "y" could be set to 3 and "x" to 0. Use rmb()
417 * in cases like this where there are no data dependencies.
418 **/
419
420#define read_barrier_depends() do { } while (0)
421
422#ifdef CONFIG_SMP
423#define smp_mb() mb()
424#ifdef CONFIG_X86_PPRO_FENCE
425# define smp_rmb() rmb()
426#else
427# define smp_rmb() barrier()
428#endif
429#ifdef CONFIG_X86_OOSTORE
430# define smp_wmb() wmb()
431#else
432# define smp_wmb() barrier()
433#endif
434#define smp_read_barrier_depends() read_barrier_depends()
Joe Perchesc5386c22008-03-23 01:03:39 -0700435#define set_mb(var, value) do { (void)xchg(&var, value); } while (0)
Glauber de Oliveira Costa833d8462008-01-30 13:31:08 +0100436#else
437#define smp_mb() barrier()
438#define smp_rmb() barrier()
439#define smp_wmb() barrier()
440#define smp_read_barrier_depends() do { } while (0)
441#define set_mb(var, value) do { var = value; barrier(); } while (0)
442#endif
443
Andi Kleenfde1b3f2008-01-30 13:32:38 +0100444/*
445 * Stop RDTSC speculation. This is needed when you need to use RDTSC
446 * (or get_cycles or vread that possibly accesses the TSC) in a defined
447 * code region.
448 *
449 * (Could use an alternative three way for this if there was one.)
450 */
451static inline void rdtsc_barrier(void)
452{
453 alternative(ASM_NOP3, "mfence", X86_FEATURE_MFENCE_RDTSC);
454 alternative(ASM_NOP3, "lfence", X86_FEATURE_LFENCE_RDTSC);
455}
Glauber de Oliveira Costa833d8462008-01-30 13:31:08 +0100456
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700457#endif /* _ASM_X86_SYSTEM_H */