H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_PROCESSOR_H |
| 2 | #define _ASM_X86_PROCESSOR_H |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 3 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 4 | #include <asm/processor-flags.h> |
| 5 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 6 | /* Forward declaration, a strange C thing */ |
| 7 | struct task_struct; |
| 8 | struct mm_struct; |
| 9 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 10 | #include <asm/vm86.h> |
| 11 | #include <asm/math_emu.h> |
| 12 | #include <asm/segment.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 13 | #include <asm/types.h> |
| 14 | #include <asm/sigcontext.h> |
| 15 | #include <asm/current.h> |
| 16 | #include <asm/cpufeature.h> |
Glauber de Oliveira Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 17 | #include <asm/page.h> |
Jeremy Fitzhardinge | 54321d9 | 2009-02-11 10:20:05 -0800 | [diff] [blame] | 18 | #include <asm/pgtable_types.h> |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 19 | #include <asm/percpu.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 20 | #include <asm/msr.h> |
| 21 | #include <asm/desc_defs.h> |
Andi Kleen | bd61643 | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 22 | #include <asm/nops.h> |
David Howells | f05e798 | 2012-03-28 18:11:12 +0100 | [diff] [blame] | 23 | #include <asm/special_insns.h> |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 24 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 25 | #include <linux/personality.h> |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 26 | #include <linux/cpumask.h> |
| 27 | #include <linux/cache.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 28 | #include <linux/threads.h> |
Peter Zijlstra | 5cbc19a | 2009-09-02 11:49:52 +0200 | [diff] [blame] | 29 | #include <linux/math64.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 30 | #include <linux/init.h> |
Peter Zijlstra | faa4602 | 2010-03-25 14:51:50 +0100 | [diff] [blame] | 31 | #include <linux/err.h> |
David Howells | f05e798 | 2012-03-28 18:11:12 +0100 | [diff] [blame] | 32 | #include <linux/irqflags.h> |
| 33 | |
| 34 | /* |
| 35 | * We handle most unaligned accesses in hardware. On the other hand |
| 36 | * unaligned DMA can be quite expensive on some Nehalem processors. |
| 37 | * |
| 38 | * Based on this we disable the IP header alignment in network drivers. |
| 39 | */ |
| 40 | #define NET_IP_ALIGN 0 |
Glauber de Oliveira Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 41 | |
K.Prasad | b332828c | 2009-06-01 23:43:10 +0530 | [diff] [blame] | 42 | #define HBP_NUM 4 |
Glauber de Oliveira Costa | 0ccb8ac | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 43 | /* |
| 44 | * Default implementation of macro that returns current |
| 45 | * instruction pointer ("program counter"). |
| 46 | */ |
| 47 | static inline void *current_text_addr(void) |
| 48 | { |
| 49 | void *pc; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 50 | |
| 51 | asm volatile("mov $1f, %0; 1:":"=r" (pc)); |
| 52 | |
Glauber de Oliveira Costa | 0ccb8ac | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 53 | return pc; |
| 54 | } |
| 55 | |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 56 | #ifdef CONFIG_X86_VSMP |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 57 | # define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT) |
| 58 | # define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT) |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 59 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 60 | # define ARCH_MIN_TASKALIGN 16 |
| 61 | # define ARCH_MIN_MMSTRUCT_ALIGN 0 |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 62 | #endif |
| 63 | |
Alex Shi | e0ba94f | 2012-06-28 09:02:16 +0800 | [diff] [blame] | 64 | enum tlb_infos { |
| 65 | ENTRIES, |
| 66 | NR_INFO |
| 67 | }; |
| 68 | |
| 69 | extern u16 __read_mostly tlb_lli_4k[NR_INFO]; |
| 70 | extern u16 __read_mostly tlb_lli_2m[NR_INFO]; |
| 71 | extern u16 __read_mostly tlb_lli_4m[NR_INFO]; |
| 72 | extern u16 __read_mostly tlb_lld_4k[NR_INFO]; |
| 73 | extern u16 __read_mostly tlb_lld_2m[NR_INFO]; |
| 74 | extern u16 __read_mostly tlb_lld_4m[NR_INFO]; |
Alex Shi | c4211f4 | 2012-06-28 09:02:19 +0800 | [diff] [blame] | 75 | extern s8 __read_mostly tlb_flushall_shift; |
| 76 | |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 77 | /* |
| 78 | * CPU type and hardware bug flags. Kept separately for each CPU. |
| 79 | * Members of this structure are referenced in head.S, so think twice |
| 80 | * before touching them. [mj] |
| 81 | */ |
| 82 | |
| 83 | struct cpuinfo_x86 { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 84 | __u8 x86; /* CPU family */ |
| 85 | __u8 x86_vendor; /* CPU vendor */ |
| 86 | __u8 x86_model; |
| 87 | __u8 x86_mask; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 88 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 89 | char wp_works_ok; /* It doesn't on 386's */ |
| 90 | |
| 91 | /* Problems on some 486Dx4's and old 386's: */ |
| 92 | char hlt_works_ok; |
| 93 | char hard_math; |
| 94 | char rfu; |
| 95 | char fdiv_bug; |
| 96 | char f00f_bug; |
| 97 | char coma_bug; |
| 98 | char pad0; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 99 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 100 | /* Number of 4K pages in DTLB/ITLB combined(in pages): */ |
H. Peter Anvin | b1882e6 | 2009-01-23 17:18:52 -0800 | [diff] [blame] | 101 | int x86_tlbsize; |
Jan Beulich | 13c6c53 | 2009-03-12 12:37:34 +0000 | [diff] [blame] | 102 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 103 | __u8 x86_virt_bits; |
| 104 | __u8 x86_phys_bits; |
| 105 | /* CPUID returned core id bits: */ |
| 106 | __u8 x86_coreid_bits; |
| 107 | /* Max extended CPUID function supported: */ |
| 108 | __u32 extended_cpuid_level; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 109 | /* Maximum supported CPUID level, -1=no CPUID: */ |
| 110 | int cpuid_level; |
| 111 | __u32 x86_capability[NCAPINTS]; |
| 112 | char x86_vendor_id[16]; |
| 113 | char x86_model_id[64]; |
| 114 | /* in KB - valid for CPUS which support this call: */ |
| 115 | int x86_cache_size; |
| 116 | int x86_cache_alignment; /* In bytes */ |
| 117 | int x86_power; |
| 118 | unsigned long loops_per_jiffy; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 119 | /* cpuid returned max cores value: */ |
| 120 | u16 x86_max_cores; |
| 121 | u16 apicid; |
Yinghai Lu | 01aaea1 | 2008-03-06 13:46:39 -0800 | [diff] [blame] | 122 | u16 initial_apicid; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 123 | u16 x86_clflush_size; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 124 | /* number of cores as seen by the OS: */ |
| 125 | u16 booted_cores; |
| 126 | /* Physical processor id: */ |
| 127 | u16 phys_proc_id; |
| 128 | /* Core id: */ |
| 129 | u16 cpu_core_id; |
Andreas Herrmann | 6057b4d | 2010-09-30 14:38:57 +0200 | [diff] [blame] | 130 | /* Compute unit id */ |
| 131 | u8 compute_unit_id; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 132 | /* Index into per_cpu list: */ |
| 133 | u16 cpu_index; |
Andi Kleen | 506ed6b | 2011-10-12 17:46:33 -0700 | [diff] [blame] | 134 | u32 microcode; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 135 | } __attribute__((__aligned__(SMP_CACHE_BYTES))); |
| 136 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 137 | #define X86_VENDOR_INTEL 0 |
| 138 | #define X86_VENDOR_CYRIX 1 |
| 139 | #define X86_VENDOR_AMD 2 |
| 140 | #define X86_VENDOR_UMC 3 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 141 | #define X86_VENDOR_CENTAUR 5 |
| 142 | #define X86_VENDOR_TRANSMETA 7 |
| 143 | #define X86_VENDOR_NSC 8 |
| 144 | #define X86_VENDOR_NUM 9 |
| 145 | |
| 146 | #define X86_VENDOR_UNKNOWN 0xff |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 147 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 148 | /* |
| 149 | * capabilities of CPUs |
| 150 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 151 | extern struct cpuinfo_x86 boot_cpu_data; |
| 152 | extern struct cpuinfo_x86 new_cpu_data; |
| 153 | |
| 154 | extern struct tss_struct doublefault_tss; |
Yinghai Lu | 3e0c373 | 2009-05-09 23:47:42 -0700 | [diff] [blame] | 155 | extern __u32 cpu_caps_cleared[NCAPINTS]; |
| 156 | extern __u32 cpu_caps_set[NCAPINTS]; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 157 | |
| 158 | #ifdef CONFIG_SMP |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 159 | DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info); |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 160 | #define cpu_data(cpu) per_cpu(cpu_info, cpu) |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 161 | #else |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame] | 162 | #define cpu_info boot_cpu_data |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 163 | #define cpu_data(cpu) boot_cpu_data |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 164 | #endif |
| 165 | |
Jaswinder Singh | 1c6c727 | 2008-07-21 22:40:37 +0530 | [diff] [blame] | 166 | extern const struct seq_operations cpuinfo_op; |
| 167 | |
Glauber Costa | 3d3f487 | 2008-03-03 14:12:48 -0300 | [diff] [blame] | 168 | static inline int hlt_works(int cpu) |
| 169 | { |
| 170 | #ifdef CONFIG_X86_32 |
| 171 | return cpu_data(cpu).hlt_works_ok; |
| 172 | #else |
| 173 | return 1; |
| 174 | #endif |
| 175 | } |
| 176 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 177 | #define cache_line_size() (boot_cpu_data.x86_cache_alignment) |
| 178 | |
| 179 | extern void cpu_detect(struct cpuinfo_x86 *c); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 180 | |
Jaswinder Singh | 8fd329a | 2008-07-21 22:54:56 +0530 | [diff] [blame] | 181 | extern struct pt_regs *idle_regs(struct pt_regs *); |
| 182 | |
Yinghai Lu | f580366 | 2008-06-21 03:24:19 -0700 | [diff] [blame] | 183 | extern void early_cpu_init(void); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 184 | extern void identify_boot_cpu(void); |
| 185 | extern void identify_secondary_cpu(struct cpuinfo_x86 *); |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 186 | extern void print_cpu_info(struct cpuinfo_x86 *); |
Yinghai Lu | 21c3fcf | 2012-02-12 09:53:57 -0800 | [diff] [blame] | 187 | void print_cpu_msr(struct cpuinfo_x86 *); |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 188 | extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); |
| 189 | extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); |
| 190 | extern unsigned short num_cache_leaves; |
| 191 | |
Suresh Siddha | bbb65d2 | 2008-08-23 17:47:10 +0200 | [diff] [blame] | 192 | extern void detect_extended_topology(struct cpuinfo_x86 *c); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 193 | extern void detect_ht(struct cpuinfo_x86 *c); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 194 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 195 | static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 196 | unsigned int *ecx, unsigned int *edx) |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 197 | { |
| 198 | /* ecx is often an input as well as an output. */ |
Suresh Siddha | 45a94d7 | 2009-12-16 16:25:42 -0800 | [diff] [blame] | 199 | asm volatile("cpuid" |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 200 | : "=a" (*eax), |
| 201 | "=b" (*ebx), |
| 202 | "=c" (*ecx), |
| 203 | "=d" (*edx) |
Andi Kleen | 506ed6b | 2011-10-12 17:46:33 -0700 | [diff] [blame] | 204 | : "0" (*eax), "2" (*ecx) |
| 205 | : "memory"); |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 206 | } |
| 207 | |
Glauber de Oliveira Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 208 | static inline void load_cr3(pgd_t *pgdir) |
| 209 | { |
| 210 | write_cr3(__pa(pgdir)); |
| 211 | } |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 212 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 213 | #ifdef CONFIG_X86_32 |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 214 | /* This is the TSS defined by the hardware. */ |
| 215 | struct x86_hw_tss { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 216 | unsigned short back_link, __blh; |
| 217 | unsigned long sp0; |
| 218 | unsigned short ss0, __ss0h; |
| 219 | unsigned long sp1; |
| 220 | /* ss1 caches MSR_IA32_SYSENTER_CS: */ |
| 221 | unsigned short ss1, __ss1h; |
| 222 | unsigned long sp2; |
| 223 | unsigned short ss2, __ss2h; |
| 224 | unsigned long __cr3; |
| 225 | unsigned long ip; |
| 226 | unsigned long flags; |
| 227 | unsigned long ax; |
| 228 | unsigned long cx; |
| 229 | unsigned long dx; |
| 230 | unsigned long bx; |
| 231 | unsigned long sp; |
| 232 | unsigned long bp; |
| 233 | unsigned long si; |
| 234 | unsigned long di; |
| 235 | unsigned short es, __esh; |
| 236 | unsigned short cs, __csh; |
| 237 | unsigned short ss, __ssh; |
| 238 | unsigned short ds, __dsh; |
| 239 | unsigned short fs, __fsh; |
| 240 | unsigned short gs, __gsh; |
| 241 | unsigned short ldt, __ldth; |
| 242 | unsigned short trace; |
| 243 | unsigned short io_bitmap_base; |
| 244 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 245 | } __attribute__((packed)); |
| 246 | #else |
| 247 | struct x86_hw_tss { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 248 | u32 reserved1; |
| 249 | u64 sp0; |
| 250 | u64 sp1; |
| 251 | u64 sp2; |
| 252 | u64 reserved2; |
| 253 | u64 ist[7]; |
| 254 | u32 reserved3; |
| 255 | u32 reserved4; |
| 256 | u16 reserved5; |
| 257 | u16 io_bitmap_base; |
| 258 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 259 | } __attribute__((packed)) ____cacheline_aligned; |
| 260 | #endif |
| 261 | |
| 262 | /* |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 263 | * IO-bitmap sizes: |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 264 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 265 | #define IO_BITMAP_BITS 65536 |
| 266 | #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8) |
| 267 | #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long)) |
| 268 | #define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap) |
| 269 | #define INVALID_IO_BITMAP_OFFSET 0x8000 |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 270 | |
| 271 | struct tss_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 272 | /* |
| 273 | * The hardware state: |
| 274 | */ |
| 275 | struct x86_hw_tss x86_tss; |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 276 | |
| 277 | /* |
| 278 | * The extra 1 is there because the CPU will access an |
| 279 | * additional byte beyond the end of the IO permission |
| 280 | * bitmap. The extra byte must be all 1 bits, and must |
| 281 | * be within the limit. |
| 282 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 283 | unsigned long io_bitmap[IO_BITMAP_LONGS + 1]; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 284 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 285 | /* |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 286 | * .. and then another 0x100 bytes for the emergency kernel stack: |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 287 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 288 | unsigned long stack[64]; |
| 289 | |
Richard Kennedy | 84e65b0 | 2008-07-04 13:56:16 +0100 | [diff] [blame] | 290 | } ____cacheline_aligned; |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 291 | |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 292 | DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss); |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 293 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 294 | /* |
| 295 | * Save the original ist values for checking stack pointers during debugging |
| 296 | */ |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 297 | struct orig_ist { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 298 | unsigned long ist[7]; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 299 | }; |
| 300 | |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 301 | #define MXCSR_DEFAULT 0x1f80 |
| 302 | |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 303 | struct i387_fsave_struct { |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 304 | u32 cwd; /* FPU Control Word */ |
| 305 | u32 swd; /* FPU Status Word */ |
| 306 | u32 twd; /* FPU Tag Word */ |
| 307 | u32 fip; /* FPU IP Offset */ |
| 308 | u32 fcs; /* FPU IP Selector */ |
| 309 | u32 foo; /* FPU Operand Pointer Offset */ |
| 310 | u32 fos; /* FPU Operand Pointer Selector */ |
| 311 | |
| 312 | /* 8*10 bytes for each FP-reg = 80 bytes: */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 313 | u32 st_space[20]; |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 314 | |
| 315 | /* Software status information [not touched by FSAVE ]: */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 316 | u32 status; |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 317 | }; |
| 318 | |
| 319 | struct i387_fxsave_struct { |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 320 | u16 cwd; /* Control Word */ |
| 321 | u16 swd; /* Status Word */ |
| 322 | u16 twd; /* Tag Word */ |
| 323 | u16 fop; /* Last Instruction Opcode */ |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 324 | union { |
| 325 | struct { |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 326 | u64 rip; /* Instruction Pointer */ |
| 327 | u64 rdp; /* Data Pointer */ |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 328 | }; |
| 329 | struct { |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 330 | u32 fip; /* FPU IP Offset */ |
| 331 | u32 fcs; /* FPU IP Selector */ |
| 332 | u32 foo; /* FPU Operand Offset */ |
| 333 | u32 fos; /* FPU Operand Selector */ |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 334 | }; |
| 335 | }; |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 336 | u32 mxcsr; /* MXCSR Register State */ |
| 337 | u32 mxcsr_mask; /* MXCSR Mask */ |
| 338 | |
| 339 | /* 8*16 bytes for each FP-reg = 128 bytes: */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 340 | u32 st_space[32]; |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 341 | |
| 342 | /* 16*16 bytes for each XMM-reg = 256 bytes: */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 343 | u32 xmm_space[64]; |
Ingo Molnar | ca9cda2 | 2008-03-05 15:15:42 +0100 | [diff] [blame] | 344 | |
Suresh Siddha | bdd8cab | 2008-07-29 10:29:24 -0700 | [diff] [blame] | 345 | u32 padding[12]; |
| 346 | |
| 347 | union { |
| 348 | u32 padding1[12]; |
| 349 | u32 sw_reserved[12]; |
| 350 | }; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 351 | |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 352 | } __attribute__((aligned(16))); |
| 353 | |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 354 | struct i387_soft_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 355 | u32 cwd; |
| 356 | u32 swd; |
| 357 | u32 twd; |
| 358 | u32 fip; |
| 359 | u32 fcs; |
| 360 | u32 foo; |
| 361 | u32 fos; |
| 362 | /* 8*10 bytes for each FP-reg = 80 bytes: */ |
| 363 | u32 st_space[20]; |
| 364 | u8 ftop; |
| 365 | u8 changed; |
| 366 | u8 lookahead; |
| 367 | u8 no_update; |
| 368 | u8 rm; |
| 369 | u8 alimit; |
Tejun Heo | ae6af41 | 2009-02-09 22:17:39 +0900 | [diff] [blame] | 370 | struct math_emu_info *info; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 371 | u32 entry_eip; |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 372 | }; |
| 373 | |
Suresh Siddha | a30469e | 2009-04-10 15:21:24 -0700 | [diff] [blame] | 374 | struct ymmh_struct { |
| 375 | /* 16 * 16 bytes for each YMMH-reg = 256 bytes */ |
| 376 | u32 ymmh_space[64]; |
| 377 | }; |
| 378 | |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 379 | struct xsave_hdr_struct { |
| 380 | u64 xstate_bv; |
| 381 | u64 reserved1[2]; |
| 382 | u64 reserved2[5]; |
| 383 | } __attribute__((packed)); |
| 384 | |
| 385 | struct xsave_struct { |
| 386 | struct i387_fxsave_struct i387; |
| 387 | struct xsave_hdr_struct xsave_hdr; |
Suresh Siddha | a30469e | 2009-04-10 15:21:24 -0700 | [diff] [blame] | 388 | struct ymmh_struct ymmh; |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 389 | /* new processor state extensions will go here */ |
| 390 | } __attribute__ ((packed, aligned (64))); |
| 391 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 392 | union thread_xstate { |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 393 | struct i387_fsave_struct fsave; |
| 394 | struct i387_fxsave_struct fxsave; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 395 | struct i387_soft_struct soft; |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 396 | struct xsave_struct xsave; |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 397 | }; |
| 398 | |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 399 | struct fpu { |
Linus Torvalds | 7e16838 | 2012-02-19 13:27:00 -0800 | [diff] [blame] | 400 | unsigned int last_cpu; |
| 401 | unsigned int has_fpu; |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 402 | union thread_xstate *state; |
| 403 | }; |
| 404 | |
Glauber Costa | fe67620 | 2008-03-03 14:12:56 -0300 | [diff] [blame] | 405 | #ifdef CONFIG_X86_64 |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 406 | DECLARE_PER_CPU(struct orig_ist, orig_ist); |
Brian Gerst | 26f80bd | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 407 | |
Brian Gerst | 947e76c | 2009-01-19 12:21:28 +0900 | [diff] [blame] | 408 | union irq_stack_union { |
| 409 | char irq_stack[IRQ_STACK_SIZE]; |
| 410 | /* |
| 411 | * GCC hardcodes the stack canary as %gs:40. Since the |
| 412 | * irq_stack is the object at %gs:0, we reserve the bottom |
| 413 | * 48 bytes of the irq stack for the canary. |
| 414 | */ |
| 415 | struct { |
| 416 | char gs_base[40]; |
| 417 | unsigned long stack_canary; |
| 418 | }; |
| 419 | }; |
| 420 | |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 421 | DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union); |
Brian Gerst | 2add8e2 | 2009-02-08 09:58:39 -0500 | [diff] [blame] | 422 | DECLARE_INIT_PER_CPU(irq_stack_union); |
| 423 | |
Brian Gerst | 26f80bd | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 424 | DECLARE_PER_CPU(char *, irq_stack_ptr); |
Jaswinder Singh Rajput | 9766cdb | 2009-03-14 11:19:49 +0530 | [diff] [blame] | 425 | DECLARE_PER_CPU(unsigned int, irq_count); |
Jaswinder Singh Rajput | 9766cdb | 2009-03-14 11:19:49 +0530 | [diff] [blame] | 426 | extern asmlinkage void ignore_sysret(void); |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 427 | #else /* X86_64 */ |
| 428 | #ifdef CONFIG_CC_STACKPROTECTOR |
Jeremy Fitzhardinge | 1ea0d14 | 2009-09-03 12:27:15 -0700 | [diff] [blame] | 429 | /* |
| 430 | * Make sure stack canary segment base is cached-aligned: |
| 431 | * "For Intel Atom processors, avoid non zero segment base address |
| 432 | * that is not aligned to cache line boundary at all cost." |
| 433 | * (Optim Ref Manual Assembly/Compiler Coding Rule 15.) |
| 434 | */ |
| 435 | struct stack_canary { |
| 436 | char __pad[20]; /* canary at %gs:20 */ |
| 437 | unsigned long canary; |
| 438 | }; |
Jeremy Fitzhardinge | 53f8245 | 2009-09-03 14:31:44 -0700 | [diff] [blame] | 439 | DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary); |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 440 | #endif |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 441 | #endif /* X86_64 */ |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 442 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 443 | extern unsigned int xstate_size; |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 444 | extern void free_thread_xstate(struct task_struct *); |
| 445 | extern struct kmem_cache *task_xstate_cachep; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 446 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 447 | struct perf_event; |
| 448 | |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 449 | struct thread_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 450 | /* Cached TLS descriptors: */ |
| 451 | struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES]; |
| 452 | unsigned long sp0; |
| 453 | unsigned long sp; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 454 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 455 | unsigned long sysenter_cs; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 456 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 457 | unsigned long usersp; /* Copy from PDA */ |
| 458 | unsigned short es; |
| 459 | unsigned short ds; |
| 460 | unsigned short fsindex; |
| 461 | unsigned short gsindex; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 462 | #endif |
Alexey Dobriyan | 0c23590 | 2009-05-04 03:30:15 +0400 | [diff] [blame] | 463 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 464 | unsigned long ip; |
Alexey Dobriyan | 0c23590 | 2009-05-04 03:30:15 +0400 | [diff] [blame] | 465 | #endif |
Alexey Dobriyan | d756f4ad | 2009-05-04 03:29:52 +0400 | [diff] [blame] | 466 | #ifdef CONFIG_X86_64 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 467 | unsigned long fs; |
Alexey Dobriyan | d756f4ad | 2009-05-04 03:29:52 +0400 | [diff] [blame] | 468 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 469 | unsigned long gs; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 470 | /* Save middle states of ptrace breakpoints */ |
| 471 | struct perf_event *ptrace_bps[HBP_NUM]; |
| 472 | /* Debug status used for traps, single steps, etc... */ |
| 473 | unsigned long debugreg6; |
Frederic Weisbecker | 326264a | 2010-02-18 18:24:18 +0100 | [diff] [blame] | 474 | /* Keep track of the exact dr7 value set by the user */ |
| 475 | unsigned long ptrace_dr7; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 476 | /* Fault info: */ |
| 477 | unsigned long cr2; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 478 | unsigned long trap_nr; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 479 | unsigned long error_code; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 480 | /* floating point and extended processor state */ |
Avi Kivity | 8660328 | 2010-05-06 11:45:46 +0300 | [diff] [blame] | 481 | struct fpu fpu; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 482 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 483 | /* Virtual 86 mode info */ |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 484 | struct vm86_struct __user *vm86_info; |
| 485 | unsigned long screen_bitmap; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 486 | unsigned long v86flags; |
| 487 | unsigned long v86mask; |
| 488 | unsigned long saved_sp0; |
| 489 | unsigned int saved_fs; |
| 490 | unsigned int saved_gs; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 491 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 492 | /* IO permissions: */ |
| 493 | unsigned long *io_bitmap_ptr; |
| 494 | unsigned long iopl; |
| 495 | /* Max allowed port in the bitmap, in bytes: */ |
| 496 | unsigned io_bitmap_max; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 497 | }; |
| 498 | |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 499 | /* |
| 500 | * Set IOPL bits in EFLAGS from given mask |
| 501 | */ |
| 502 | static inline void native_set_iopl_mask(unsigned mask) |
| 503 | { |
| 504 | #ifdef CONFIG_X86_32 |
| 505 | unsigned int reg; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 506 | |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 507 | asm volatile ("pushfl;" |
| 508 | "popl %0;" |
| 509 | "andl %1, %0;" |
| 510 | "orl %2, %0;" |
| 511 | "pushl %0;" |
| 512 | "popfl" |
| 513 | : "=&r" (reg) |
| 514 | : "i" (~X86_EFLAGS_IOPL), "r" (mask)); |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 515 | #endif |
| 516 | } |
| 517 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 518 | static inline void |
| 519 | native_load_sp0(struct tss_struct *tss, struct thread_struct *thread) |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 520 | { |
| 521 | tss->x86_tss.sp0 = thread->sp0; |
| 522 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 523 | /* Only happens when SEP is enabled, no need to test "SEP"arately: */ |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 524 | if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) { |
| 525 | tss->x86_tss.ss1 = thread->sysenter_cs; |
| 526 | wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0); |
| 527 | } |
| 528 | #endif |
| 529 | } |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 530 | |
Glauber de Oliveira Costa | e801f86 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 531 | static inline void native_swapgs(void) |
| 532 | { |
| 533 | #ifdef CONFIG_X86_64 |
| 534 | asm volatile("swapgs" ::: "memory"); |
| 535 | #endif |
| 536 | } |
| 537 | |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 538 | #ifdef CONFIG_PARAVIRT |
| 539 | #include <asm/paravirt.h> |
| 540 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 541 | #define __cpuid native_cpuid |
| 542 | #define paravirt_enabled() 0 |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 543 | |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 544 | static inline void load_sp0(struct tss_struct *tss, |
| 545 | struct thread_struct *thread) |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 546 | { |
| 547 | native_load_sp0(tss, thread); |
| 548 | } |
| 549 | |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 550 | #define set_iopl_mask native_set_iopl_mask |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 551 | #endif /* CONFIG_PARAVIRT */ |
| 552 | |
| 553 | /* |
| 554 | * Save the cr4 feature set we're using (ie |
| 555 | * Pentium 4MB enable and PPro Global page |
| 556 | * enable), so that any CPU's that boot up |
| 557 | * after us can get the correct flags. |
| 558 | */ |
Jarkko Sakkinen | cda846f | 2012-05-08 21:22:46 +0300 | [diff] [blame] | 559 | extern unsigned long mmu_cr4_features; |
| 560 | extern u32 *trampoline_cr4_features; |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 561 | |
| 562 | static inline void set_in_cr4(unsigned long mask) |
| 563 | { |
Brian Gerst | 2df7a6e | 2010-09-03 21:17:08 -0400 | [diff] [blame] | 564 | unsigned long cr4; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 565 | |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 566 | mmu_cr4_features |= mask; |
Jarkko Sakkinen | cda846f | 2012-05-08 21:22:46 +0300 | [diff] [blame] | 567 | if (trampoline_cr4_features) |
| 568 | *trampoline_cr4_features = mmu_cr4_features; |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 569 | cr4 = read_cr4(); |
| 570 | cr4 |= mask; |
| 571 | write_cr4(cr4); |
| 572 | } |
| 573 | |
| 574 | static inline void clear_in_cr4(unsigned long mask) |
| 575 | { |
Brian Gerst | 2df7a6e | 2010-09-03 21:17:08 -0400 | [diff] [blame] | 576 | unsigned long cr4; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 577 | |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 578 | mmu_cr4_features &= ~mask; |
Jarkko Sakkinen | cda846f | 2012-05-08 21:22:46 +0300 | [diff] [blame] | 579 | if (trampoline_cr4_features) |
| 580 | *trampoline_cr4_features = mmu_cr4_features; |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 581 | cr4 = read_cr4(); |
| 582 | cr4 &= ~mask; |
| 583 | write_cr4(cr4); |
| 584 | } |
| 585 | |
Glauber de Oliveira Costa | fc87e90 | 2008-01-30 13:31:38 +0100 | [diff] [blame] | 586 | typedef struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 587 | unsigned long seg; |
Glauber de Oliveira Costa | fc87e90 | 2008-01-30 13:31:38 +0100 | [diff] [blame] | 588 | } mm_segment_t; |
| 589 | |
| 590 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 591 | /* Free all resources held by a thread. */ |
| 592 | extern void release_thread(struct task_struct *); |
| 593 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 594 | unsigned long get_wchan(struct task_struct *p); |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 595 | |
| 596 | /* |
| 597 | * Generic CPUID function |
| 598 | * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx |
| 599 | * resulting in stale register contents being returned. |
| 600 | */ |
| 601 | static inline void cpuid(unsigned int op, |
| 602 | unsigned int *eax, unsigned int *ebx, |
| 603 | unsigned int *ecx, unsigned int *edx) |
| 604 | { |
| 605 | *eax = op; |
| 606 | *ecx = 0; |
| 607 | __cpuid(eax, ebx, ecx, edx); |
| 608 | } |
| 609 | |
| 610 | /* Some CPUID calls want 'count' to be placed in ecx */ |
| 611 | static inline void cpuid_count(unsigned int op, int count, |
| 612 | unsigned int *eax, unsigned int *ebx, |
| 613 | unsigned int *ecx, unsigned int *edx) |
| 614 | { |
| 615 | *eax = op; |
| 616 | *ecx = count; |
| 617 | __cpuid(eax, ebx, ecx, edx); |
| 618 | } |
| 619 | |
| 620 | /* |
| 621 | * CPUID functions returning a single datum |
| 622 | */ |
| 623 | static inline unsigned int cpuid_eax(unsigned int op) |
| 624 | { |
| 625 | unsigned int eax, ebx, ecx, edx; |
| 626 | |
| 627 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 628 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 629 | return eax; |
| 630 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 631 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 632 | static inline unsigned int cpuid_ebx(unsigned int op) |
| 633 | { |
| 634 | unsigned int eax, ebx, ecx, edx; |
| 635 | |
| 636 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 637 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 638 | return ebx; |
| 639 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 640 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 641 | static inline unsigned int cpuid_ecx(unsigned int op) |
| 642 | { |
| 643 | unsigned int eax, ebx, ecx, edx; |
| 644 | |
| 645 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 646 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 647 | return ecx; |
| 648 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 649 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 650 | static inline unsigned int cpuid_edx(unsigned int op) |
| 651 | { |
| 652 | unsigned int eax, ebx, ecx, edx; |
| 653 | |
| 654 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 655 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 656 | return edx; |
| 657 | } |
| 658 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 659 | /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */ |
| 660 | static inline void rep_nop(void) |
| 661 | { |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 662 | asm volatile("rep; nop" ::: "memory"); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 663 | } |
| 664 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 665 | static inline void cpu_relax(void) |
| 666 | { |
| 667 | rep_nop(); |
| 668 | } |
| 669 | |
Ben Hutchings | 5367b68 | 2009-09-10 02:53:50 +0100 | [diff] [blame] | 670 | /* Stop speculative execution and prefetching of modified code. */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 671 | static inline void sync_core(void) |
| 672 | { |
| 673 | int tmp; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 674 | |
Ben Hutchings | 5367b68 | 2009-09-10 02:53:50 +0100 | [diff] [blame] | 675 | #if defined(CONFIG_M386) || defined(CONFIG_M486) |
| 676 | if (boot_cpu_data.x86 < 5) |
| 677 | /* There is no speculative execution. |
| 678 | * jmp is a barrier to prefetching. */ |
| 679 | asm volatile("jmp 1f\n1:\n" ::: "memory"); |
| 680 | else |
| 681 | #endif |
| 682 | /* cpuid is a barrier to speculative execution. |
| 683 | * Prefetched instructions are automatically |
| 684 | * invalidated when modified. */ |
| 685 | asm volatile("cpuid" : "=a" (tmp) : "0" (1) |
| 686 | : "ebx", "ecx", "edx", "memory"); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 687 | } |
| 688 | |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 689 | static inline void __monitor(const void *eax, unsigned long ecx, |
| 690 | unsigned long edx) |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 691 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 692 | /* "monitor %eax, %ecx, %edx;" */ |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 693 | asm volatile(".byte 0x0f, 0x01, 0xc8;" |
| 694 | :: "a" (eax), "c" (ecx), "d"(edx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | static inline void __mwait(unsigned long eax, unsigned long ecx) |
| 698 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 699 | /* "mwait %eax, %ecx;" */ |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 700 | asm volatile(".byte 0x0f, 0x01, 0xc9;" |
| 701 | :: "a" (eax), "c" (ecx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | static inline void __sti_mwait(unsigned long eax, unsigned long ecx) |
| 705 | { |
Peter Zijlstra | 7f424a8 | 2008-04-25 17:39:01 +0200 | [diff] [blame] | 706 | trace_hardirqs_on(); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 707 | /* "mwait %eax, %ecx;" */ |
Joe Perches | cca2e6f | 2008-03-23 01:03:15 -0700 | [diff] [blame] | 708 | asm volatile("sti; .byte 0x0f, 0x01, 0xc9;" |
| 709 | :: "a" (eax), "c" (ecx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 710 | } |
| 711 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 712 | extern void select_idle_routine(const struct cpuinfo_x86 *c); |
Len Brown | 02c68a0 | 2011-04-01 16:59:53 -0400 | [diff] [blame] | 713 | extern void init_amd_e400_c1e_mask(void); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 714 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 715 | extern unsigned long boot_option_idle_override; |
Len Brown | 02c68a0 | 2011-04-01 16:59:53 -0400 | [diff] [blame] | 716 | extern bool amd_e400_c1e_detected; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 717 | |
Thomas Renninger | d189604 | 2010-11-03 17:06:14 +0100 | [diff] [blame] | 718 | enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT, |
| 719 | IDLE_POLL, IDLE_FORCE_MWAIT}; |
| 720 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 721 | extern void enable_sep_cpu(void); |
| 722 | extern int sysenter_setup(void); |
| 723 | |
Jan Kiszka | 29c8439 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 724 | extern void early_trap_init(void); |
| 725 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 726 | /* Defined in head.S */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 727 | extern struct desc_ptr early_gdt_descr; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 728 | |
| 729 | extern void cpu_set_gdt(int); |
Brian Gerst | 552be87 | 2009-01-30 17:47:53 +0900 | [diff] [blame] | 730 | extern void switch_to_new_gdt(int); |
Jeremy Fitzhardinge | 11e3a84 | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 731 | extern void load_percpu_segment(int); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 732 | extern void cpu_init(void); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 733 | |
Markus Metzger | c272477 | 2008-12-11 13:49:59 +0100 | [diff] [blame] | 734 | static inline unsigned long get_debugctlmsr(void) |
| 735 | { |
Peter Zijlstra | ea8e61b | 2010-03-25 14:51:51 +0100 | [diff] [blame] | 736 | unsigned long debugctlmsr = 0; |
Markus Metzger | c272477 | 2008-12-11 13:49:59 +0100 | [diff] [blame] | 737 | |
| 738 | #ifndef CONFIG_X86_DEBUGCTLMSR |
| 739 | if (boot_cpu_data.x86 < 6) |
| 740 | return 0; |
| 741 | #endif |
| 742 | rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr); |
| 743 | |
Peter Zijlstra | ea8e61b | 2010-03-25 14:51:51 +0100 | [diff] [blame] | 744 | return debugctlmsr; |
Markus Metzger | c272477 | 2008-12-11 13:49:59 +0100 | [diff] [blame] | 745 | } |
| 746 | |
Jan Beulich | 5b0e508 | 2008-03-10 13:11:17 +0000 | [diff] [blame] | 747 | static inline void update_debugctlmsr(unsigned long debugctlmsr) |
| 748 | { |
| 749 | #ifndef CONFIG_X86_DEBUGCTLMSR |
| 750 | if (boot_cpu_data.x86 < 6) |
| 751 | return; |
| 752 | #endif |
| 753 | wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr); |
| 754 | } |
| 755 | |
Oleg Nesterov | 9bd1190 | 2012-09-03 15:24:17 +0200 | [diff] [blame] | 756 | extern void set_task_blockstep(struct task_struct *task, bool on); |
| 757 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 758 | /* |
| 759 | * from system description table in BIOS. Mostly for MCA use, but |
| 760 | * others may find it useful: |
| 761 | */ |
| 762 | extern unsigned int machine_id; |
| 763 | extern unsigned int machine_submodel_id; |
| 764 | extern unsigned int BIOS_revision; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 765 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 766 | /* Boot loader type from the setup header: */ |
| 767 | extern int bootloader_type; |
H. Peter Anvin | 5031296 | 2009-05-07 16:54:11 -0700 | [diff] [blame] | 768 | extern int bootloader_version; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 769 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 770 | extern char ignore_fpu_irq; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 771 | |
| 772 | #define HAVE_ARCH_PICK_MMAP_LAYOUT 1 |
| 773 | #define ARCH_HAS_PREFETCHW |
| 774 | #define ARCH_HAS_SPINLOCK_PREFETCH |
| 775 | |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 776 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 777 | # define BASE_PREFETCH ASM_NOP4 |
| 778 | # define ARCH_HAS_PREFETCH |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 779 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 780 | # define BASE_PREFETCH "prefetcht0 (%1)" |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 781 | #endif |
| 782 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 783 | /* |
| 784 | * Prefetch instructions for Pentium III (+) and AMD Athlon (+) |
| 785 | * |
| 786 | * It's not worth to care about 3dnow prefetches for the K6 |
| 787 | * because they are microcoded there and very slow. |
| 788 | */ |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 789 | static inline void prefetch(const void *x) |
| 790 | { |
| 791 | alternative_input(BASE_PREFETCH, |
| 792 | "prefetchnta (%1)", |
| 793 | X86_FEATURE_XMM, |
| 794 | "r" (x)); |
| 795 | } |
| 796 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 797 | /* |
| 798 | * 3dnow prefetch to get an exclusive cache line. |
| 799 | * Useful for spinlocks to avoid one state transition in the |
| 800 | * cache coherency protocol: |
| 801 | */ |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 802 | static inline void prefetchw(const void *x) |
| 803 | { |
| 804 | alternative_input(BASE_PREFETCH, |
| 805 | "prefetchw (%1)", |
| 806 | X86_FEATURE_3DNOW, |
| 807 | "r" (x)); |
| 808 | } |
| 809 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 810 | static inline void spin_lock_prefetch(const void *x) |
| 811 | { |
| 812 | prefetchw(x); |
| 813 | } |
| 814 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 815 | #ifdef CONFIG_X86_32 |
| 816 | /* |
| 817 | * User space process size: 3GB (default). |
| 818 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 819 | #define TASK_SIZE PAGE_OFFSET |
Ingo Molnar | d951734 | 2009-02-20 23:32:28 +0100 | [diff] [blame] | 820 | #define TASK_SIZE_MAX TASK_SIZE |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 821 | #define STACK_TOP TASK_SIZE |
| 822 | #define STACK_TOP_MAX STACK_TOP |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 823 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 824 | #define INIT_THREAD { \ |
| 825 | .sp0 = sizeof(init_stack) + (long)&init_stack, \ |
| 826 | .vm86_info = NULL, \ |
| 827 | .sysenter_cs = __KERNEL_CS, \ |
| 828 | .io_bitmap_ptr = NULL, \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | /* |
| 832 | * Note that the .io_bitmap member must be extra-big. This is because |
| 833 | * the CPU will access an additional byte beyond the end of the IO |
| 834 | * permission bitmap. The extra byte must be all 1 bits, and must |
| 835 | * be within the limit. |
| 836 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 837 | #define INIT_TSS { \ |
| 838 | .x86_tss = { \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 839 | .sp0 = sizeof(init_stack) + (long)&init_stack, \ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 840 | .ss0 = __KERNEL_DS, \ |
| 841 | .ss1 = __KERNEL_CS, \ |
| 842 | .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \ |
| 843 | }, \ |
| 844 | .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 845 | } |
| 846 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 847 | extern unsigned long thread_saved_pc(struct task_struct *tsk); |
| 848 | |
| 849 | #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long)) |
| 850 | #define KSTK_TOP(info) \ |
| 851 | ({ \ |
| 852 | unsigned long *__ptr = (unsigned long *)(info); \ |
| 853 | (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \ |
| 854 | }) |
| 855 | |
| 856 | /* |
| 857 | * The below -8 is to reserve 8 bytes on top of the ring0 stack. |
| 858 | * This is necessary to guarantee that the entire "struct pt_regs" |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 859 | * is accessible even if the CPU haven't stored the SS/ESP registers |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 860 | * on the stack (interrupt gate does not save these registers |
| 861 | * when switching to the same priv ring). |
| 862 | * Therefore beware: accessing the ss/esp fields of the |
| 863 | * "struct pt_regs" is possible, but they may contain the |
| 864 | * completely wrong values. |
| 865 | */ |
| 866 | #define task_pt_regs(task) \ |
| 867 | ({ \ |
| 868 | struct pt_regs *__regs__; \ |
| 869 | __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \ |
| 870 | __regs__ - 1; \ |
| 871 | }) |
| 872 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 873 | #define KSTK_ESP(task) (task_pt_regs(task)->sp) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 874 | |
| 875 | #else |
| 876 | /* |
| 877 | * User space process size. 47bits minus one guard page. |
| 878 | */ |
Ingo Molnar | d951734 | 2009-02-20 23:32:28 +0100 | [diff] [blame] | 879 | #define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 880 | |
| 881 | /* This decides where the kernel will search for a free chunk of vm |
| 882 | * space during mmap's. |
| 883 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 884 | #define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \ |
| 885 | 0xc0000000 : 0xFFFFe000) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 886 | |
H. Peter Anvin | 6bd3300 | 2012-02-06 13:03:09 -0800 | [diff] [blame] | 887 | #define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \ |
Ingo Molnar | d951734 | 2009-02-20 23:32:28 +0100 | [diff] [blame] | 888 | IA32_PAGE_OFFSET : TASK_SIZE_MAX) |
H. Peter Anvin | 6bd3300 | 2012-02-06 13:03:09 -0800 | [diff] [blame] | 889 | #define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \ |
Ingo Molnar | d951734 | 2009-02-20 23:32:28 +0100 | [diff] [blame] | 890 | IA32_PAGE_OFFSET : TASK_SIZE_MAX) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 891 | |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 892 | #define STACK_TOP TASK_SIZE |
Ingo Molnar | d951734 | 2009-02-20 23:32:28 +0100 | [diff] [blame] | 893 | #define STACK_TOP_MAX TASK_SIZE_MAX |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 894 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 895 | #define INIT_THREAD { \ |
| 896 | .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \ |
| 897 | } |
| 898 | |
| 899 | #define INIT_TSS { \ |
| 900 | .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \ |
| 901 | } |
| 902 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 903 | /* |
| 904 | * Return saved PC of a blocked thread. |
| 905 | * What is this good for? it will be always the scheduler or ret_from_fork. |
| 906 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 907 | #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8)) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 908 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 909 | #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1) |
Stefani Seibold | 89240ba | 2009-11-03 10:22:40 +0100 | [diff] [blame] | 910 | extern unsigned long KSTK_ESP(struct task_struct *task); |
H. J. Lu | d046ff8 | 2012-02-14 13:49:48 -0800 | [diff] [blame] | 911 | |
| 912 | /* |
| 913 | * User space RSP while inside the SYSCALL fast path |
| 914 | */ |
| 915 | DECLARE_PER_CPU(unsigned long, old_rsp); |
| 916 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 917 | #endif /* CONFIG_X86_64 */ |
| 918 | |
Ingo Molnar | 513ad84 | 2008-02-21 05:18:40 +0100 | [diff] [blame] | 919 | extern void start_thread(struct pt_regs *regs, unsigned long new_ip, |
| 920 | unsigned long new_sp); |
| 921 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 922 | /* |
| 923 | * This decides where the kernel will search for a free chunk of vm |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 924 | * space during mmap's. |
| 925 | */ |
| 926 | #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3)) |
| 927 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 928 | #define KSTK_EIP(task) (task_pt_regs(task)->ip) |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 929 | |
Erik Bosman | 529e25f | 2008-04-14 00:24:18 +0200 | [diff] [blame] | 930 | /* Get/set a process' ability to use the timestamp counter instruction */ |
| 931 | #define GET_TSC_CTL(adr) get_tsc_mode((adr)) |
| 932 | #define SET_TSC_CTL(val) set_tsc_mode((val)) |
| 933 | |
| 934 | extern int get_tsc_mode(unsigned long adr); |
| 935 | extern int set_tsc_mode(unsigned int val); |
| 936 | |
Andreas Herrmann | 6a81269 | 2009-09-16 11:33:40 +0200 | [diff] [blame] | 937 | extern int amd_get_nb_id(int cpu); |
| 938 | |
Peter Zijlstra | 5cbc19a | 2009-09-02 11:49:52 +0200 | [diff] [blame] | 939 | struct aperfmperf { |
| 940 | u64 aperf, mperf; |
| 941 | }; |
| 942 | |
| 943 | static inline void get_aperfmperf(struct aperfmperf *am) |
| 944 | { |
| 945 | WARN_ON_ONCE(!boot_cpu_has(X86_FEATURE_APERFMPERF)); |
| 946 | |
| 947 | rdmsrl(MSR_IA32_APERF, am->aperf); |
| 948 | rdmsrl(MSR_IA32_MPERF, am->mperf); |
| 949 | } |
| 950 | |
| 951 | #define APERFMPERF_SHIFT 10 |
| 952 | |
| 953 | static inline |
| 954 | unsigned long calc_aperfmperf_ratio(struct aperfmperf *old, |
| 955 | struct aperfmperf *new) |
| 956 | { |
| 957 | u64 aperf = new->aperf - old->aperf; |
| 958 | u64 mperf = new->mperf - old->mperf; |
| 959 | unsigned long ratio = aperf; |
| 960 | |
| 961 | mperf >>= APERFMPERF_SHIFT; |
| 962 | if (mperf) |
| 963 | ratio = div64_u64(aperf, mperf); |
| 964 | |
| 965 | return ratio; |
| 966 | } |
| 967 | |
Hans Rosenfeld | d78d671 | 2010-07-28 19:09:30 +0200 | [diff] [blame] | 968 | /* |
| 969 | * AMD errata checking |
| 970 | */ |
| 971 | #ifdef CONFIG_CPU_SUP_AMD |
Hans Rosenfeld | 1be85a6 | 2010-07-28 19:09:32 +0200 | [diff] [blame] | 972 | extern const int amd_erratum_383[]; |
Hans Rosenfeld | 9d8888c | 2010-07-28 19:09:31 +0200 | [diff] [blame] | 973 | extern const int amd_erratum_400[]; |
Hans Rosenfeld | d78d671 | 2010-07-28 19:09:30 +0200 | [diff] [blame] | 974 | extern bool cpu_has_amd_erratum(const int *); |
| 975 | |
| 976 | #define AMD_LEGACY_ERRATUM(...) { -1, __VA_ARGS__, 0 } |
| 977 | #define AMD_OSVW_ERRATUM(osvw_id, ...) { osvw_id, __VA_ARGS__, 0 } |
| 978 | #define AMD_MODEL_RANGE(f, m_start, s_start, m_end, s_end) \ |
| 979 | ((f << 24) | (m_start << 16) | (s_start << 12) | (m_end << 4) | (s_end)) |
| 980 | #define AMD_MODEL_RANGE_FAMILY(range) (((range) >> 24) & 0xff) |
| 981 | #define AMD_MODEL_RANGE_START(range) (((range) >> 12) & 0xfff) |
| 982 | #define AMD_MODEL_RANGE_END(range) ((range) & 0xfff) |
| 983 | |
| 984 | #else |
| 985 | #define cpu_has_amd_erratum(x) (false) |
| 986 | #endif /* CONFIG_CPU_SUP_AMD */ |
| 987 | |
David Howells | f05e798 | 2012-03-28 18:11:12 +0100 | [diff] [blame] | 988 | extern unsigned long arch_align_stack(unsigned long sp); |
| 989 | extern void free_init_pages(char *what, unsigned long begin, unsigned long end); |
| 990 | |
| 991 | void default_idle(void); |
| 992 | bool set_pm_idle_to_default(void); |
| 993 | |
| 994 | void stop_this_cpu(void *dummy); |
| 995 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 996 | #endif /* _ASM_X86_PROCESSOR_H */ |