H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_SYSTEM_H |
| 2 | #define _ASM_X86_SYSTEM_H |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 3 | |
| 4 | #include <asm/asm.h> |
Glauber de Oliveira Costa | d46d7d7 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 5 | #include <asm/segment.h> |
| 6 | #include <asm/cpufeature.h> |
| 7 | #include <asm/cmpxchg.h> |
Andi Kleen | fde1b3f | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 8 | #include <asm/nops.h> |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 9 | |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 10 | #include <linux/kernel.h> |
Glauber de Oliveira Costa | d46d7d7 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 11 | #include <linux/irqflags.h> |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 12 | |
Jan Beulich | ded9aa0 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 13 | /* entries in ARCH_DLINFO: */ |
Serge E. Hallyn | cf9db6c | 2010-02-08 20:35:02 -0600 | [diff] [blame] | 14 | #if defined(CONFIG_IA32_EMULATION) || !defined(CONFIG_X86_64) |
Jan Beulich | ded9aa0 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 15 | # define AT_VECTOR_SIZE_ARCH 2 |
Serge E. Hallyn | cf9db6c | 2010-02-08 20:35:02 -0600 | [diff] [blame] | 16 | #else /* else it's non-compat x86-64 */ |
Jan Beulich | ded9aa0 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 17 | # define AT_VECTOR_SIZE_ARCH 1 |
| 18 | #endif |
| 19 | |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 20 | struct task_struct; /* one of the stranger aspects of C forward declarations */ |
Harvey Harrison | 599db4f | 2008-02-04 16:48:03 +0100 | [diff] [blame] | 21 | struct task_struct *__switch_to(struct task_struct *prev, |
| 22 | struct task_struct *next); |
Jeremy Fitzhardinge | 2fb6b2a0 | 2009-02-27 13:25:33 -0800 | [diff] [blame] | 23 | struct tss_struct; |
Jeremy Fitzhardinge | 389d1fb | 2009-02-27 13:25:28 -0800 | [diff] [blame] | 24 | void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p, |
| 25 | struct tss_struct *tss); |
Andy Isaacson | 814e2c8 | 2009-12-08 00:29:42 -0800 | [diff] [blame] | 26 | extern void show_regs_common(void); |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 27 | |
Jaswinder Singh | aab02f0 | 2008-12-15 22:23:54 +0530 | [diff] [blame] | 28 | #ifdef CONFIG_X86_32 |
| 29 | |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 30 | #ifdef CONFIG_CC_STACKPROTECTOR |
| 31 | #define __switch_canary \ |
Tejun Heo | 5c79d2a | 2009-02-11 16:31:00 +0900 | [diff] [blame] | 32 | "movl %P[task_canary](%[next]), %%ebx\n\t" \ |
| 33 | "movl %%ebx, "__percpu_arg([stack_canary])"\n\t" |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 34 | #define __switch_canary_oparam \ |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 35 | , [stack_canary] "=m" (stack_canary.canary) |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 36 | #define __switch_canary_iparam \ |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 37 | , [task_canary] "i" (offsetof(struct task_struct, stack_canary)) |
| 38 | #else /* CC_STACKPROTECTOR */ |
| 39 | #define __switch_canary |
| 40 | #define __switch_canary_oparam |
| 41 | #define __switch_canary_iparam |
| 42 | #endif /* CC_STACKPROTECTOR */ |
| 43 | |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 44 | /* |
| 45 | * Saving eflags is important. It switches not only IOPL between tasks, |
| 46 | * it also protects other tasks from NT leaking through sysenter etc. |
| 47 | */ |
Ingo Molnar | 23b55bd | 2008-03-05 10:24:37 +0100 | [diff] [blame] | 48 | #define switch_to(prev, next, last) \ |
| 49 | do { \ |
Ingo Molnar | 8b6451f | 2008-03-05 10:46:38 +0100 | [diff] [blame] | 50 | /* \ |
| 51 | * Context-switching clobbers all registers, so we clobber \ |
| 52 | * them explicitly, via unused output variables. \ |
| 53 | * (EAX and EBP is not listed because EBP is saved/restored \ |
| 54 | * explicitly for wchan access and EAX is the return value of \ |
| 55 | * __switch_to()) \ |
| 56 | */ \ |
| 57 | unsigned long ebx, ecx, edx, esi, edi; \ |
Ingo Molnar | 23b55bd | 2008-03-05 10:24:37 +0100 | [diff] [blame] | 58 | \ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 59 | asm volatile("pushfl\n\t" /* save flags */ \ |
| 60 | "pushl %%ebp\n\t" /* save EBP */ \ |
| 61 | "movl %%esp,%[prev_sp]\n\t" /* save ESP */ \ |
| 62 | "movl %[next_sp],%%esp\n\t" /* restore ESP */ \ |
| 63 | "movl $1f,%[prev_ip]\n\t" /* save EIP */ \ |
| 64 | "pushl %[next_ip]\n\t" /* restore EIP */ \ |
Tejun Heo | 5c79d2a | 2009-02-11 16:31:00 +0900 | [diff] [blame] | 65 | __switch_canary \ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 66 | "jmp __switch_to\n" /* regparm call */ \ |
| 67 | "1:\t" \ |
| 68 | "popl %%ebp\n\t" /* restore EBP */ \ |
| 69 | "popfl\n" /* restore flags */ \ |
Ingo Molnar | 23b55bd | 2008-03-05 10:24:37 +0100 | [diff] [blame] | 70 | \ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 71 | /* output parameters */ \ |
| 72 | : [prev_sp] "=m" (prev->thread.sp), \ |
| 73 | [prev_ip] "=m" (prev->thread.ip), \ |
| 74 | "=a" (last), \ |
Ingo Molnar | 23b55bd | 2008-03-05 10:24:37 +0100 | [diff] [blame] | 75 | \ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 76 | /* clobbered output registers: */ \ |
| 77 | "=b" (ebx), "=c" (ecx), "=d" (edx), \ |
| 78 | "=S" (esi), "=D" (edi) \ |
| 79 | \ |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 80 | __switch_canary_oparam \ |
| 81 | \ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 82 | /* input parameters: */ \ |
| 83 | : [next_sp] "m" (next->thread.sp), \ |
| 84 | [next_ip] "m" (next->thread.ip), \ |
| 85 | \ |
| 86 | /* regparm parameters for __switch_to(): */ \ |
| 87 | [prev] "a" (prev), \ |
Vegard Nossum | 33f8c40 | 2008-09-14 19:03:53 +0200 | [diff] [blame] | 88 | [next] "d" (next) \ |
| 89 | \ |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 90 | __switch_canary_iparam \ |
| 91 | \ |
Vegard Nossum | 33f8c40 | 2008-09-14 19:03:53 +0200 | [diff] [blame] | 92 | : /* reloaded segment registers */ \ |
| 93 | "memory"); \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 94 | } while (0) |
| 95 | |
Glauber de Oliveira Costa | d46d7d7 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 96 | /* |
| 97 | * disable hlt during certain critical i/o operations |
| 98 | */ |
| 99 | #define HAVE_DISABLE_HLT |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 100 | #else |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 101 | |
| 102 | /* frame pointer must be last for get_wchan */ |
| 103 | #define SAVE_CONTEXT "pushf ; pushq %%rbp ; movq %%rsi,%%rbp\n\t" |
| 104 | #define RESTORE_CONTEXT "movq %%rbp,%%rsi ; popq %%rbp ; popf\t" |
| 105 | |
| 106 | #define __EXTRA_CLOBBER \ |
| 107 | , "rcx", "rbx", "rdx", "r8", "r9", "r10", "r11", \ |
| 108 | "r12", "r13", "r14", "r15" |
| 109 | |
Tejun Heo | b4a8f7a | 2009-01-20 12:29:19 +0900 | [diff] [blame] | 110 | #ifdef CONFIG_CC_STACKPROTECTOR |
| 111 | #define __switch_canary \ |
| 112 | "movq %P[task_canary](%%rsi),%%r8\n\t" \ |
Tejun Heo | 67e68bd | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 113 | "movq %%r8,"__percpu_arg([gs_canary])"\n\t" |
| 114 | #define __switch_canary_oparam \ |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 115 | , [gs_canary] "=m" (irq_stack_union.stack_canary) |
Tejun Heo | 67e68bd | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 116 | #define __switch_canary_iparam \ |
| 117 | , [task_canary] "i" (offsetof(struct task_struct, stack_canary)) |
Tejun Heo | b4a8f7a | 2009-01-20 12:29:19 +0900 | [diff] [blame] | 118 | #else /* CC_STACKPROTECTOR */ |
| 119 | #define __switch_canary |
Tejun Heo | 67e68bd | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 120 | #define __switch_canary_oparam |
| 121 | #define __switch_canary_iparam |
Tejun Heo | b4a8f7a | 2009-01-20 12:29:19 +0900 | [diff] [blame] | 122 | #endif /* CC_STACKPROTECTOR */ |
| 123 | |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 124 | /* Save restore flags to clear handle leaking NT */ |
| 125 | #define switch_to(prev, next, last) \ |
Tejun Heo | b4a8f7a | 2009-01-20 12:29:19 +0900 | [diff] [blame] | 126 | asm volatile(SAVE_CONTEXT \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 127 | "movq %%rsp,%P[threadrsp](%[prev])\n\t" /* save RSP */ \ |
| 128 | "movq %P[threadrsp](%[next]),%%rsp\n\t" /* restore RSP */ \ |
| 129 | "call __switch_to\n\t" \ |
Brian Gerst | 87b2640 | 2009-01-19 00:38:59 +0900 | [diff] [blame] | 130 | "movq "__percpu_arg([current_task])",%%rsi\n\t" \ |
Tejun Heo | b4a8f7a | 2009-01-20 12:29:19 +0900 | [diff] [blame] | 131 | __switch_canary \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 132 | "movq %P[thread_info](%%rsi),%%r8\n\t" \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 133 | "movq %%rax,%%rdi\n\t" \ |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 134 | "testl %[_tif_fork],%P[ti_flags](%%r8)\n\t" \ |
Benjamin LaHaise | 7106a5a | 2009-01-10 23:00:22 -0500 | [diff] [blame] | 135 | "jnz ret_from_fork\n\t" \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 136 | RESTORE_CONTEXT \ |
| 137 | : "=a" (last) \ |
Tejun Heo | 67e68bd | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 138 | __switch_canary_oparam \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 139 | : [next] "S" (next), [prev] "D" (prev), \ |
| 140 | [threadrsp] "i" (offsetof(struct task_struct, thread.sp)), \ |
| 141 | [ti_flags] "i" (offsetof(struct thread_info, flags)), \ |
Benjamin LaHaise | 7106a5a | 2009-01-10 23:00:22 -0500 | [diff] [blame] | 142 | [_tif_fork] "i" (_TIF_FORK), \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 143 | [thread_info] "i" (offsetof(struct task_struct, stack)), \ |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 144 | [current_task] "m" (current_task) \ |
Tejun Heo | 67e68bd | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 145 | __switch_canary_iparam \ |
Glauber de Oliveira Costa | 0a3b4d1 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 146 | : "memory", "cc" __EXTRA_CLOBBER) |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 147 | #endif |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 148 | |
| 149 | #ifdef __KERNEL__ |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 150 | |
Jeremy Fitzhardinge | 9f9d489 | 2008-06-25 00:19:32 -0400 | [diff] [blame] | 151 | extern void native_load_gs_index(unsigned); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 152 | |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 153 | /* |
Glauber de Oliveira Costa | a6b4655 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 154 | * Load a segment. Fall back on loading the zero |
| 155 | * segment if something goes wrong.. |
| 156 | */ |
Ingo Molnar | 64b028b | 2009-11-26 10:37:55 +0100 | [diff] [blame] | 157 | #define loadsegment(seg, value) \ |
| 158 | do { \ |
| 159 | unsigned short __val = (value); \ |
| 160 | \ |
| 161 | asm volatile(" \n" \ |
| 162 | "1: movl %k0,%%" #seg " \n" \ |
| 163 | \ |
| 164 | ".section .fixup,\"ax\" \n" \ |
| 165 | "2: xorl %k0,%k0 \n" \ |
| 166 | " jmp 1b \n" \ |
| 167 | ".previous \n" \ |
| 168 | \ |
| 169 | _ASM_EXTABLE(1b, 2b) \ |
| 170 | \ |
| 171 | : "+r" (__val) : : "memory"); \ |
Brian Gerst | 79b0379 | 2009-11-25 14:18:26 -0500 | [diff] [blame] | 172 | } while (0) |
Glauber de Oliveira Costa | a6b4655 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 173 | |
| 174 | /* |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 175 | * Save a segment register away |
| 176 | */ |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 177 | #define savesegment(seg, value) \ |
Ingo Molnar | d9fc3fd | 2008-07-11 19:41:19 +0200 | [diff] [blame] | 178 | asm("mov %%" #seg ",%0":"=r" (value) : : "memory") |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 179 | |
Tejun Heo | d9a89a2 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 180 | /* |
| 181 | * x86_32 user gs accessors. |
| 182 | */ |
| 183 | #ifdef CONFIG_X86_32 |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 184 | #ifdef CONFIG_X86_32_LAZY_GS |
Tejun Heo | d9a89a2 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 185 | #define get_user_gs(regs) (u16)({unsigned long v; savesegment(gs, v); v;}) |
| 186 | #define set_user_gs(regs, v) loadsegment(gs, (unsigned long)(v)) |
| 187 | #define task_user_gs(tsk) ((tsk)->thread.gs) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 188 | #define lazy_save_gs(v) savesegment(gs, (v)) |
| 189 | #define lazy_load_gs(v) loadsegment(gs, (v)) |
| 190 | #else /* X86_32_LAZY_GS */ |
| 191 | #define get_user_gs(regs) (u16)((regs)->gs) |
| 192 | #define set_user_gs(regs, v) do { (regs)->gs = (v); } while (0) |
| 193 | #define task_user_gs(tsk) (task_pt_regs(tsk)->gs) |
| 194 | #define lazy_save_gs(v) do { } while (0) |
| 195 | #define lazy_load_gs(v) do { } while (0) |
| 196 | #endif /* X86_32_LAZY_GS */ |
| 197 | #endif /* X86_32 */ |
Tejun Heo | d9a89a2 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 198 | |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 199 | static inline unsigned long get_limit(unsigned long segment) |
| 200 | { |
| 201 | unsigned long __limit; |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 202 | asm("lsll %1,%0" : "=r" (__limit) : "r" (segment)); |
| 203 | return __limit + 1; |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 204 | } |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 205 | |
| 206 | static inline void native_clts(void) |
| 207 | { |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 208 | asm volatile("clts"); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /* |
| 212 | * Volatile isn't enough to prevent the compiler from reordering the |
| 213 | * read/write functions for the control registers and messing everything up. |
| 214 | * A memory clobber would solve the problem, but would prevent reordering of |
| 215 | * all loads stores around it, which can hurt performance. Solution is to |
| 216 | * use a variable and mimic reads and writes to it to enforce serialization |
| 217 | */ |
| 218 | static unsigned long __force_order; |
| 219 | |
| 220 | static inline unsigned long native_read_cr0(void) |
| 221 | { |
| 222 | unsigned long val; |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 223 | asm volatile("mov %%cr0,%0\n\t" : "=r" (val), "=m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 224 | return val; |
| 225 | } |
| 226 | |
| 227 | static inline void native_write_cr0(unsigned long val) |
| 228 | { |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 229 | asm volatile("mov %0,%%cr0": : "r" (val), "m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | static inline unsigned long native_read_cr2(void) |
| 233 | { |
| 234 | unsigned long val; |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 235 | asm volatile("mov %%cr2,%0\n\t" : "=r" (val), "=m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 236 | return val; |
| 237 | } |
| 238 | |
| 239 | static inline void native_write_cr2(unsigned long val) |
| 240 | { |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 241 | asm volatile("mov %0,%%cr2": : "r" (val), "m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | static inline unsigned long native_read_cr3(void) |
| 245 | { |
| 246 | unsigned long val; |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 247 | asm volatile("mov %%cr3,%0\n\t" : "=r" (val), "=m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 248 | return val; |
| 249 | } |
| 250 | |
| 251 | static inline void native_write_cr3(unsigned long val) |
| 252 | { |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 253 | asm volatile("mov %0,%%cr3": : "r" (val), "m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static inline unsigned long native_read_cr4(void) |
| 257 | { |
| 258 | unsigned long val; |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 259 | asm volatile("mov %%cr4,%0\n\t" : "=r" (val), "=m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 260 | return val; |
| 261 | } |
| 262 | |
| 263 | static inline unsigned long native_read_cr4_safe(void) |
| 264 | { |
| 265 | unsigned long val; |
| 266 | /* This could fault if %cr4 does not exist. In x86_64, a cr4 always |
| 267 | * exists, so it will never fail. */ |
| 268 | #ifdef CONFIG_X86_32 |
H. Peter Anvin | 88976ee | 2008-02-04 16:47:58 +0100 | [diff] [blame] | 269 | asm volatile("1: mov %%cr4, %0\n" |
| 270 | "2:\n" |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 271 | _ASM_EXTABLE(1b, 2b) |
H. Peter Anvin | 88976ee | 2008-02-04 16:47:58 +0100 | [diff] [blame] | 272 | : "=r" (val), "=m" (__force_order) : "0" (0)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 273 | #else |
| 274 | val = native_read_cr4(); |
| 275 | #endif |
| 276 | return val; |
| 277 | } |
| 278 | |
| 279 | static inline void native_write_cr4(unsigned long val) |
| 280 | { |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 281 | asm volatile("mov %0,%%cr4": : "r" (val), "m" (__force_order)); |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 282 | } |
| 283 | |
Glauber de Oliveira Costa | 94ea03c | 2008-01-30 13:33:19 +0100 | [diff] [blame] | 284 | #ifdef CONFIG_X86_64 |
| 285 | static inline unsigned long native_read_cr8(void) |
| 286 | { |
| 287 | unsigned long cr8; |
| 288 | asm volatile("movq %%cr8,%0" : "=r" (cr8)); |
| 289 | return cr8; |
| 290 | } |
| 291 | |
| 292 | static inline void native_write_cr8(unsigned long val) |
| 293 | { |
| 294 | asm volatile("movq %0,%%cr8" :: "r" (val) : "memory"); |
| 295 | } |
| 296 | #endif |
| 297 | |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 298 | static inline void native_wbinvd(void) |
| 299 | { |
| 300 | asm volatile("wbinvd": : :"memory"); |
| 301 | } |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 302 | |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 303 | #ifdef CONFIG_PARAVIRT |
| 304 | #include <asm/paravirt.h> |
| 305 | #else |
Avi Kivity | 15d6aba | 2011-04-24 11:11:51 +0300 | [diff] [blame] | 306 | |
| 307 | static inline unsigned long read_cr0(void) |
| 308 | { |
| 309 | return native_read_cr0(); |
| 310 | } |
| 311 | |
| 312 | static inline void write_cr0(unsigned long x) |
| 313 | { |
| 314 | native_write_cr0(x); |
| 315 | } |
| 316 | |
| 317 | static inline unsigned long read_cr2(void) |
| 318 | { |
| 319 | return native_read_cr2(); |
| 320 | } |
| 321 | |
| 322 | static inline void write_cr2(unsigned long x) |
| 323 | { |
| 324 | native_write_cr2(x); |
| 325 | } |
| 326 | |
| 327 | static inline unsigned long read_cr3(void) |
| 328 | { |
| 329 | return native_read_cr3(); |
| 330 | } |
| 331 | |
| 332 | static inline void write_cr3(unsigned long x) |
| 333 | { |
| 334 | native_write_cr3(x); |
| 335 | } |
| 336 | |
| 337 | static inline unsigned long read_cr4(void) |
| 338 | { |
| 339 | return native_read_cr4(); |
| 340 | } |
| 341 | |
| 342 | static inline unsigned long read_cr4_safe(void) |
| 343 | { |
| 344 | return native_read_cr4_safe(); |
| 345 | } |
| 346 | |
| 347 | static inline void write_cr4(unsigned long x) |
| 348 | { |
| 349 | native_write_cr4(x); |
| 350 | } |
| 351 | |
| 352 | static inline void wbinvd(void) |
| 353 | { |
| 354 | native_wbinvd(); |
| 355 | } |
| 356 | |
Glauber de Oliveira Costa | d46d7d7 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 357 | #ifdef CONFIG_X86_64 |
Avi Kivity | 15d6aba | 2011-04-24 11:11:51 +0300 | [diff] [blame] | 358 | |
| 359 | static inline unsigned long read_cr8(void) |
| 360 | { |
| 361 | return native_read_cr8(); |
| 362 | } |
| 363 | |
| 364 | static inline void write_cr8(unsigned long x) |
| 365 | { |
| 366 | native_write_cr8(x); |
| 367 | } |
| 368 | |
| 369 | static inline void load_gs_index(unsigned selector) |
| 370 | { |
| 371 | native_load_gs_index(selector); |
| 372 | } |
| 373 | |
Glauber de Oliveira Costa | d46d7d7 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 374 | #endif |
| 375 | |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 376 | /* Clear the 'TS' bit */ |
Avi Kivity | 15d6aba | 2011-04-24 11:11:51 +0300 | [diff] [blame] | 377 | static inline void clts(void) |
| 378 | { |
| 379 | native_clts(); |
| 380 | } |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 381 | |
| 382 | #endif/* CONFIG_PARAVIRT */ |
| 383 | |
Jeremy Fitzhardinge | 4e09e21 | 2008-05-26 23:31:03 +0100 | [diff] [blame] | 384 | #define stts() write_cr0(read_cr0() | X86_CR0_TS) |
Glauber de Oliveira Costa | d3ca901 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 385 | |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 386 | #endif /* __KERNEL__ */ |
| 387 | |
H. Peter Anvin | 84fb144 | 2008-02-04 16:48:00 +0100 | [diff] [blame] | 388 | static inline void clflush(volatile void *__p) |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 389 | { |
H. Peter Anvin | 84fb144 | 2008-02-04 16:48:00 +0100 | [diff] [blame] | 390 | asm volatile("clflush %0" : "+m" (*(volatile char __force *)__p)); |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 391 | } |
| 392 | |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 393 | #define nop() asm volatile ("nop") |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 394 | |
| 395 | void disable_hlt(void); |
| 396 | void enable_hlt(void); |
| 397 | |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 398 | void cpu_idle_wait(void); |
| 399 | |
| 400 | extern unsigned long arch_align_stack(unsigned long sp); |
| 401 | extern void free_init_pages(char *what, unsigned long begin, unsigned long end); |
| 402 | |
| 403 | void default_idle(void); |
Konrad Rzeszutek Wilk | e5fd47b | 2011-11-21 18:02:02 -0500 | [diff] [blame] | 404 | bool set_pm_idle_to_default(void); |
Glauber de Oliveira Costa | d895422 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 405 | |
Ivan Vecera | d3ec5ca | 2008-11-11 14:33:44 +0100 | [diff] [blame] | 406 | void stop_this_cpu(void *dummy); |
| 407 | |
Glauber de Oliveira Costa | 833d846 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 408 | /* |
| 409 | * Force strict CPU ordering. |
| 410 | * And yes, this is required on UP too when we're talking |
| 411 | * to devices. |
| 412 | */ |
| 413 | #ifdef CONFIG_X86_32 |
| 414 | /* |
Pavel Machek | 0d7a181 | 2008-03-03 12:49:09 +0100 | [diff] [blame] | 415 | * Some non-Intel clones support out of order store. wmb() ceases to be a |
Glauber de Oliveira Costa | 833d846 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 416 | * nop for these. |
| 417 | */ |
| 418 | #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2) |
| 419 | #define rmb() alternative("lock; addl $0,0(%%esp)", "lfence", X86_FEATURE_XMM2) |
| 420 | #define wmb() alternative("lock; addl $0,0(%%esp)", "sfence", X86_FEATURE_XMM) |
| 421 | #else |
| 422 | #define mb() asm volatile("mfence":::"memory") |
| 423 | #define rmb() asm volatile("lfence":::"memory") |
| 424 | #define wmb() asm volatile("sfence" ::: "memory") |
| 425 | #endif |
| 426 | |
| 427 | /** |
| 428 | * read_barrier_depends - Flush all pending reads that subsequents reads |
| 429 | * depend on. |
| 430 | * |
| 431 | * No data-dependent reads from memory-like regions are ever reordered |
| 432 | * over this barrier. All reads preceding this primitive are guaranteed |
| 433 | * to access memory (but not necessarily other CPUs' caches) before any |
| 434 | * reads following this primitive that depend on the data return by |
| 435 | * any of the preceding reads. This primitive is much lighter weight than |
| 436 | * rmb() on most CPUs, and is never heavier weight than is |
| 437 | * rmb(). |
| 438 | * |
| 439 | * These ordering constraints are respected by both the local CPU |
| 440 | * and the compiler. |
| 441 | * |
| 442 | * Ordering is not guaranteed by anything other than these primitives, |
| 443 | * not even by data dependencies. See the documentation for |
| 444 | * memory_barrier() for examples and URLs to more information. |
| 445 | * |
| 446 | * For example, the following code would force ordering (the initial |
| 447 | * value of "a" is zero, "b" is one, and "p" is "&a"): |
| 448 | * |
| 449 | * <programlisting> |
| 450 | * CPU 0 CPU 1 |
| 451 | * |
| 452 | * b = 2; |
| 453 | * memory_barrier(); |
| 454 | * p = &b; q = p; |
| 455 | * read_barrier_depends(); |
| 456 | * d = *q; |
| 457 | * </programlisting> |
| 458 | * |
| 459 | * because the read of "*q" depends on the read of "p" and these |
| 460 | * two reads are separated by a read_barrier_depends(). However, |
| 461 | * the following code, with the same initial values for "a" and "b": |
| 462 | * |
| 463 | * <programlisting> |
| 464 | * CPU 0 CPU 1 |
| 465 | * |
| 466 | * a = 2; |
| 467 | * memory_barrier(); |
| 468 | * b = 3; y = b; |
| 469 | * read_barrier_depends(); |
| 470 | * x = a; |
| 471 | * </programlisting> |
| 472 | * |
| 473 | * does not enforce ordering, since there is no data dependency between |
| 474 | * the read of "a" and the read of "b". Therefore, on some CPUs, such |
| 475 | * as Alpha, "y" could be set to 3 and "x" to 0. Use rmb() |
| 476 | * in cases like this where there are no data dependencies. |
| 477 | **/ |
| 478 | |
| 479 | #define read_barrier_depends() do { } while (0) |
| 480 | |
| 481 | #ifdef CONFIG_SMP |
| 482 | #define smp_mb() mb() |
| 483 | #ifdef CONFIG_X86_PPRO_FENCE |
| 484 | # define smp_rmb() rmb() |
| 485 | #else |
| 486 | # define smp_rmb() barrier() |
| 487 | #endif |
| 488 | #ifdef CONFIG_X86_OOSTORE |
| 489 | # define smp_wmb() wmb() |
| 490 | #else |
| 491 | # define smp_wmb() barrier() |
| 492 | #endif |
| 493 | #define smp_read_barrier_depends() read_barrier_depends() |
Joe Perches | c5386c2 | 2008-03-23 01:03:39 -0700 | [diff] [blame] | 494 | #define set_mb(var, value) do { (void)xchg(&var, value); } while (0) |
Glauber de Oliveira Costa | 833d846 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 495 | #else |
| 496 | #define smp_mb() barrier() |
| 497 | #define smp_rmb() barrier() |
| 498 | #define smp_wmb() barrier() |
| 499 | #define smp_read_barrier_depends() do { } while (0) |
| 500 | #define set_mb(var, value) do { var = value; barrier(); } while (0) |
| 501 | #endif |
| 502 | |
Andi Kleen | fde1b3f | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 503 | /* |
| 504 | * Stop RDTSC speculation. This is needed when you need to use RDTSC |
| 505 | * (or get_cycles or vread that possibly accesses the TSC) in a defined |
| 506 | * code region. |
| 507 | * |
| 508 | * (Could use an alternative three way for this if there was one.) |
| 509 | */ |
Andi Kleen | 1244829 | 2010-06-18 23:09:00 +0200 | [diff] [blame] | 510 | static __always_inline void rdtsc_barrier(void) |
Andi Kleen | fde1b3f | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 511 | { |
| 512 | alternative(ASM_NOP3, "mfence", X86_FEATURE_MFENCE_RDTSC); |
| 513 | alternative(ASM_NOP3, "lfence", X86_FEATURE_LFENCE_RDTSC); |
| 514 | } |
Glauber de Oliveira Costa | 833d846 | 2008-01-30 13:31:08 +0100 | [diff] [blame] | 515 | |
Alexander Duyck | ea812ca | 2010-06-29 18:38:00 +0000 | [diff] [blame] | 516 | /* |
| 517 | * We handle most unaligned accesses in hardware. On the other hand |
| 518 | * unaligned DMA can be quite expensive on some Nehalem processors. |
| 519 | * |
| 520 | * Based on this we disable the IP header alignment in network drivers. |
| 521 | */ |
| 522 | #define NET_IP_ALIGN 0 |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 523 | #endif /* _ASM_X86_SYSTEM_H */ |