blob: fdedd38fd0fc7feeabc26f8b366b525b65685904 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PROCESSOR_H
2#define _ASM_X86_PROCESSOR_H
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +01003
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004#include <asm/processor-flags.h>
5
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +01006/* Forward declaration, a strange C thing */
7struct task_struct;
8struct mm_struct;
9
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010010#include <asm/vm86.h>
11#include <asm/math_emu.h>
12#include <asm/segment.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010013#include <asm/types.h>
14#include <asm/sigcontext.h>
15#include <asm/current.h>
16#include <asm/cpufeature.h>
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +010017#include <asm/page.h>
Jeremy Fitzhardinge54321d92009-02-11 10:20:05 -080018#include <asm/pgtable_types.h>
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +010019#include <asm/percpu.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010020#include <asm/msr.h>
21#include <asm/desc_defs.h>
Andi Kleenbd616432008-01-30 13:32:38 +010022#include <asm/nops.h>
David Howellsf05e7982012-03-28 18:11:12 +010023#include <asm/special_insns.h>
Ingo Molnar4d46a892008-02-21 04:24:40 +010024
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010025#include <linux/personality.h>
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010026#include <linux/cpumask.h>
27#include <linux/cache.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010028#include <linux/threads.h>
Peter Zijlstra5cbc19a2009-09-02 11:49:52 +020029#include <linux/math64.h>
Peter Zijlstrafaa46022010-03-25 14:51:50 +010030#include <linux/err.h>
David Howellsf05e7982012-03-28 18:11:12 +010031#include <linux/irqflags.h>
32
33/*
34 * We handle most unaligned accesses in hardware. On the other hand
35 * unaligned DMA can be quite expensive on some Nehalem processors.
36 *
37 * Based on this we disable the IP header alignment in network drivers.
38 */
39#define NET_IP_ALIGN 0
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +010040
K.Prasadb332828c2009-06-01 23:43:10 +053041#define HBP_NUM 4
Glauber de Oliveira Costa0ccb8ac2008-01-30 13:31:27 +010042/*
43 * Default implementation of macro that returns current
44 * instruction pointer ("program counter").
45 */
46static inline void *current_text_addr(void)
47{
48 void *pc;
Ingo Molnar4d46a892008-02-21 04:24:40 +010049
50 asm volatile("mov $1f, %0; 1:":"=r" (pc));
51
Glauber de Oliveira Costa0ccb8ac2008-01-30 13:31:27 +010052 return pc;
53}
54
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010055#ifdef CONFIG_X86_VSMP
Ingo Molnar4d46a892008-02-21 04:24:40 +010056# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
57# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010058#else
Ingo Molnar4d46a892008-02-21 04:24:40 +010059# define ARCH_MIN_TASKALIGN 16
60# define ARCH_MIN_MMSTRUCT_ALIGN 0
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010061#endif
62
Alex Shie0ba94f2012-06-28 09:02:16 +080063enum tlb_infos {
64 ENTRIES,
65 NR_INFO
66};
67
68extern u16 __read_mostly tlb_lli_4k[NR_INFO];
69extern u16 __read_mostly tlb_lli_2m[NR_INFO];
70extern u16 __read_mostly tlb_lli_4m[NR_INFO];
71extern u16 __read_mostly tlb_lld_4k[NR_INFO];
72extern u16 __read_mostly tlb_lld_2m[NR_INFO];
73extern u16 __read_mostly tlb_lld_4m[NR_INFO];
Kirill A. Shutemovdd360392013-12-23 14:16:58 +020074extern u16 __read_mostly tlb_lld_1g[NR_INFO];
Alex Shic4211f42012-06-28 09:02:19 +080075extern s8 __read_mostly tlb_flushall_shift;
76
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010077/*
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
83struct cpuinfo_x86 {
Ingo Molnar4d46a892008-02-21 04:24:40 +010084 __u8 x86; /* CPU family */
85 __u8 x86_vendor; /* CPU vendor */
86 __u8 x86_model;
87 __u8 x86_mask;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010088#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +010089 char wp_works_ok; /* It doesn't on 386's */
90
91 /* Problems on some 486Dx4's and old 386's: */
Ingo Molnar4d46a892008-02-21 04:24:40 +010092 char rfu;
Ingo Molnar4d46a892008-02-21 04:24:40 +010093 char pad0;
H. Peter Anvin60e019e2013-04-29 16:04:20 +020094 char pad1;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010095#else
Ingo Molnar4d46a892008-02-21 04:24:40 +010096 /* Number of 4K pages in DTLB/ITLB combined(in pages): */
H. Peter Anvinb1882e62009-01-23 17:18:52 -080097 int x86_tlbsize;
Jan Beulich13c6c532009-03-12 12:37:34 +000098#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +010099 __u8 x86_virt_bits;
100 __u8 x86_phys_bits;
101 /* CPUID returned core id bits: */
102 __u8 x86_coreid_bits;
103 /* Max extended CPUID function supported: */
104 __u32 extended_cpuid_level;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100105 /* Maximum supported CPUID level, -1=no CPUID: */
106 int cpuid_level;
Borislav Petkov65fc9852013-03-20 15:07:23 +0100107 __u32 x86_capability[NCAPINTS + NBUGINTS];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100108 char x86_vendor_id[16];
109 char x86_model_id[64];
110 /* in KB - valid for CPUS which support this call: */
111 int x86_cache_size;
112 int x86_cache_alignment; /* In bytes */
113 int x86_power;
114 unsigned long loops_per_jiffy;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100115 /* cpuid returned max cores value: */
116 u16 x86_max_cores;
117 u16 apicid;
Yinghai Lu01aaea12008-03-06 13:46:39 -0800118 u16 initial_apicid;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100119 u16 x86_clflush_size;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100120 /* number of cores as seen by the OS: */
121 u16 booted_cores;
122 /* Physical processor id: */
123 u16 phys_proc_id;
124 /* Core id: */
125 u16 cpu_core_id;
Andreas Herrmann6057b4d2010-09-30 14:38:57 +0200126 /* Compute unit id */
127 u8 compute_unit_id;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100128 /* Index into per_cpu list: */
129 u16 cpu_index;
Andi Kleen506ed6b2011-10-12 17:46:33 -0700130 u32 microcode;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100131} __attribute__((__aligned__(SMP_CACHE_BYTES)));
132
Ingo Molnar4d46a892008-02-21 04:24:40 +0100133#define X86_VENDOR_INTEL 0
134#define X86_VENDOR_CYRIX 1
135#define X86_VENDOR_AMD 2
136#define X86_VENDOR_UMC 3
Ingo Molnar4d46a892008-02-21 04:24:40 +0100137#define X86_VENDOR_CENTAUR 5
138#define X86_VENDOR_TRANSMETA 7
139#define X86_VENDOR_NSC 8
140#define X86_VENDOR_NUM 9
141
142#define X86_VENDOR_UNKNOWN 0xff
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100143
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100144/*
145 * capabilities of CPUs
146 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100147extern struct cpuinfo_x86 boot_cpu_data;
148extern struct cpuinfo_x86 new_cpu_data;
149
150extern struct tss_struct doublefault_tss;
Yinghai Lu3e0c3732009-05-09 23:47:42 -0700151extern __u32 cpu_caps_cleared[NCAPINTS];
152extern __u32 cpu_caps_set[NCAPINTS];
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100153
154#ifdef CONFIG_SMP
David Howells9b8de742009-04-21 23:00:24 +0100155DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100156#define cpu_data(cpu) per_cpu(cpu_info, cpu)
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100157#else
Tejun Heo7b543a52010-12-18 16:30:05 +0100158#define cpu_info boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100159#define cpu_data(cpu) boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100160#endif
161
Jaswinder Singh1c6c7272008-07-21 22:40:37 +0530162extern const struct seq_operations cpuinfo_op;
163
Ingo Molnar4d46a892008-02-21 04:24:40 +0100164#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
165
166extern void cpu_detect(struct cpuinfo_x86 *c);
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400167extern void fpu_detect(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100168
Yinghai Luf5803662008-06-21 03:24:19 -0700169extern void early_cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100170extern void identify_boot_cpu(void);
171extern void identify_secondary_cpu(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100172extern void print_cpu_info(struct cpuinfo_x86 *);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800173void print_cpu_msr(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100174extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
175extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
Andreas Herrmann04a15412012-10-19 10:59:33 +0200176extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100177
Suresh Siddhabbb65d22008-08-23 17:47:10 +0200178extern void detect_extended_topology(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100179extern void detect_ht(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100180
Fenghua Yud288e1c2012-12-20 23:44:23 -0800181#ifdef CONFIG_X86_32
182extern int have_cpuid_p(void);
183#else
184static inline int have_cpuid_p(void)
185{
186 return 1;
187}
188#endif
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100189static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
Ingo Molnar4d46a892008-02-21 04:24:40 +0100190 unsigned int *ecx, unsigned int *edx)
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100191{
192 /* ecx is often an input as well as an output. */
Suresh Siddha45a94d72009-12-16 16:25:42 -0800193 asm volatile("cpuid"
Joe Perchescca2e6f2008-03-23 01:03:15 -0700194 : "=a" (*eax),
195 "=b" (*ebx),
196 "=c" (*ecx),
197 "=d" (*edx)
Andi Kleen506ed6b2011-10-12 17:46:33 -0700198 : "0" (*eax), "2" (*ecx)
199 : "memory");
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100200}
201
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +0100202static inline void load_cr3(pgd_t *pgdir)
203{
204 write_cr3(__pa(pgdir));
205}
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100206
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200207#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100208/* This is the TSS defined by the hardware. */
209struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100210 unsigned short back_link, __blh;
211 unsigned long sp0;
212 unsigned short ss0, __ss0h;
213 unsigned long sp1;
214 /* ss1 caches MSR_IA32_SYSENTER_CS: */
215 unsigned short ss1, __ss1h;
216 unsigned long sp2;
217 unsigned short ss2, __ss2h;
218 unsigned long __cr3;
219 unsigned long ip;
220 unsigned long flags;
221 unsigned long ax;
222 unsigned long cx;
223 unsigned long dx;
224 unsigned long bx;
225 unsigned long sp;
226 unsigned long bp;
227 unsigned long si;
228 unsigned long di;
229 unsigned short es, __esh;
230 unsigned short cs, __csh;
231 unsigned short ss, __ssh;
232 unsigned short ds, __dsh;
233 unsigned short fs, __fsh;
234 unsigned short gs, __gsh;
235 unsigned short ldt, __ldth;
236 unsigned short trace;
237 unsigned short io_bitmap_base;
238
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100239} __attribute__((packed));
240#else
241struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100242 u32 reserved1;
243 u64 sp0;
244 u64 sp1;
245 u64 sp2;
246 u64 reserved2;
247 u64 ist[7];
248 u32 reserved3;
249 u32 reserved4;
250 u16 reserved5;
251 u16 io_bitmap_base;
252
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100253} __attribute__((packed)) ____cacheline_aligned;
254#endif
255
256/*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100257 * IO-bitmap sizes:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100258 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100259#define IO_BITMAP_BITS 65536
260#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
261#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
262#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
263#define INVALID_IO_BITMAP_OFFSET 0x8000
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100264
265struct tss_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100266 /*
267 * The hardware state:
268 */
269 struct x86_hw_tss x86_tss;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100270
271 /*
272 * The extra 1 is there because the CPU will access an
273 * additional byte beyond the end of the IO permission
274 * bitmap. The extra byte must be all 1 bits, and must
275 * be within the limit.
276 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100277 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100278
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100279 /*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100280 * .. and then another 0x100 bytes for the emergency kernel stack:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100281 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100282 unsigned long stack[64];
283
Richard Kennedy84e65b02008-07-04 13:56:16 +0100284} ____cacheline_aligned;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100285
David Howells9b8de742009-04-21 23:00:24 +0100286DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss);
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100287
Ingo Molnar4d46a892008-02-21 04:24:40 +0100288/*
289 * Save the original ist values for checking stack pointers during debugging
290 */
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100291struct orig_ist {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100292 unsigned long ist[7];
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100293};
294
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100295#define MXCSR_DEFAULT 0x1f80
296
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100297struct i387_fsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100298 u32 cwd; /* FPU Control Word */
299 u32 swd; /* FPU Status Word */
300 u32 twd; /* FPU Tag Word */
301 u32 fip; /* FPU IP Offset */
302 u32 fcs; /* FPU IP Selector */
303 u32 foo; /* FPU Operand Pointer Offset */
304 u32 fos; /* FPU Operand Pointer Selector */
305
306 /* 8*10 bytes for each FP-reg = 80 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100307 u32 st_space[20];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100308
309 /* Software status information [not touched by FSAVE ]: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100310 u32 status;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100311};
312
313struct i387_fxsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100314 u16 cwd; /* Control Word */
315 u16 swd; /* Status Word */
316 u16 twd; /* Tag Word */
317 u16 fop; /* Last Instruction Opcode */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100318 union {
319 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100320 u64 rip; /* Instruction Pointer */
321 u64 rdp; /* Data Pointer */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100322 };
323 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100324 u32 fip; /* FPU IP Offset */
325 u32 fcs; /* FPU IP Selector */
326 u32 foo; /* FPU Operand Offset */
327 u32 fos; /* FPU Operand Selector */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100328 };
329 };
Ingo Molnarca9cda22008-03-05 15:15:42 +0100330 u32 mxcsr; /* MXCSR Register State */
331 u32 mxcsr_mask; /* MXCSR Mask */
332
333 /* 8*16 bytes for each FP-reg = 128 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100334 u32 st_space[32];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100335
336 /* 16*16 bytes for each XMM-reg = 256 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100337 u32 xmm_space[64];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100338
Suresh Siddhabdd8cab2008-07-29 10:29:24 -0700339 u32 padding[12];
340
341 union {
342 u32 padding1[12];
343 u32 sw_reserved[12];
344 };
Ingo Molnar4d46a892008-02-21 04:24:40 +0100345
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100346} __attribute__((aligned(16)));
347
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100348struct i387_soft_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100349 u32 cwd;
350 u32 swd;
351 u32 twd;
352 u32 fip;
353 u32 fcs;
354 u32 foo;
355 u32 fos;
356 /* 8*10 bytes for each FP-reg = 80 bytes: */
357 u32 st_space[20];
358 u8 ftop;
359 u8 changed;
360 u8 lookahead;
361 u8 no_update;
362 u8 rm;
363 u8 alimit;
Tejun Heoae6af412009-02-09 22:17:39 +0900364 struct math_emu_info *info;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100365 u32 entry_eip;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100366};
367
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700368struct ymmh_struct {
369 /* 16 * 16 bytes for each YMMH-reg = 256 bytes */
370 u32 ymmh_space[64];
371};
372
Ingo Molnar741e3902014-01-20 19:51:05 +0100373/* We don't support LWP yet: */
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800374struct lwp_struct {
Ingo Molnar741e3902014-01-20 19:51:05 +0100375 u8 reserved[128];
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800376};
377
378struct bndregs_struct {
379 u64 bndregs[8];
380} __packed;
381
382struct bndcsr_struct {
383 u64 cfg_reg_u;
384 u64 status_reg;
385} __packed;
386
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700387struct xsave_hdr_struct {
388 u64 xstate_bv;
389 u64 reserved1[2];
390 u64 reserved2[5];
391} __attribute__((packed));
392
393struct xsave_struct {
394 struct i387_fxsave_struct i387;
395 struct xsave_hdr_struct xsave_hdr;
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700396 struct ymmh_struct ymmh;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800397 struct lwp_struct lwp;
398 struct bndregs_struct bndregs;
399 struct bndcsr_struct bndcsr;
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700400 /* new processor state extensions will go here */
401} __attribute__ ((packed, aligned (64)));
402
Suresh Siddha61c46282008-03-10 15:28:04 -0700403union thread_xstate {
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100404 struct i387_fsave_struct fsave;
405 struct i387_fxsave_struct fxsave;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100406 struct i387_soft_struct soft;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700407 struct xsave_struct xsave;
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100408};
409
Avi Kivity86603282010-05-06 11:45:46 +0300410struct fpu {
Linus Torvalds7e168382012-02-19 13:27:00 -0800411 unsigned int last_cpu;
412 unsigned int has_fpu;
Avi Kivity86603282010-05-06 11:45:46 +0300413 union thread_xstate *state;
414};
415
Glauber Costafe676202008-03-03 14:12:56 -0300416#ifdef CONFIG_X86_64
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100417DECLARE_PER_CPU(struct orig_ist, orig_ist);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900418
Brian Gerst947e76c2009-01-19 12:21:28 +0900419union irq_stack_union {
420 char irq_stack[IRQ_STACK_SIZE];
421 /*
422 * GCC hardcodes the stack canary as %gs:40. Since the
423 * irq_stack is the object at %gs:0, we reserve the bottom
424 * 48 bytes of the irq stack for the canary.
425 */
426 struct {
427 char gs_base[40];
428 unsigned long stack_canary;
429 };
430};
431
Andi Kleen277d5b42013-08-05 15:02:43 -0700432DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union) __visible;
Brian Gerst2add8e22009-02-08 09:58:39 -0500433DECLARE_INIT_PER_CPU(irq_stack_union);
434
Brian Gerst26f80bd2009-01-19 00:38:58 +0900435DECLARE_PER_CPU(char *, irq_stack_ptr);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530436DECLARE_PER_CPU(unsigned int, irq_count);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530437extern asmlinkage void ignore_sysret(void);
Tejun Heo60a53172009-02-09 22:17:40 +0900438#else /* X86_64 */
439#ifdef CONFIG_CC_STACKPROTECTOR
Jeremy Fitzhardinge1ea0d142009-09-03 12:27:15 -0700440/*
441 * Make sure stack canary segment base is cached-aligned:
442 * "For Intel Atom processors, avoid non zero segment base address
443 * that is not aligned to cache line boundary at all cost."
444 * (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
445 */
446struct stack_canary {
447 char __pad[20]; /* canary at %gs:20 */
448 unsigned long canary;
449};
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700450DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200451#endif
Tejun Heo60a53172009-02-09 22:17:40 +0900452#endif /* X86_64 */
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100453
Suresh Siddha61c46282008-03-10 15:28:04 -0700454extern unsigned int xstate_size;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700455extern void free_thread_xstate(struct task_struct *);
456extern struct kmem_cache *task_xstate_cachep;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100457
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200458struct perf_event;
459
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100460struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100461 /* Cached TLS descriptors: */
462 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
463 unsigned long sp0;
464 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100465#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100466 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100467#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100468 unsigned long usersp; /* Copy from PDA */
469 unsigned short es;
470 unsigned short ds;
471 unsigned short fsindex;
472 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100473#endif
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400474#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100475 unsigned long ip;
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400476#endif
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400477#ifdef CONFIG_X86_64
Ingo Molnar4d46a892008-02-21 04:24:40 +0100478 unsigned long fs;
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400479#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100480 unsigned long gs;
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200481 /* Save middle states of ptrace breakpoints */
482 struct perf_event *ptrace_bps[HBP_NUM];
483 /* Debug status used for traps, single steps, etc... */
484 unsigned long debugreg6;
Frederic Weisbecker326264a2010-02-18 18:24:18 +0100485 /* Keep track of the exact dr7 value set by the user */
486 unsigned long ptrace_dr7;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100487 /* Fault info: */
488 unsigned long cr2;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530489 unsigned long trap_nr;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100490 unsigned long error_code;
Suresh Siddha61c46282008-03-10 15:28:04 -0700491 /* floating point and extended processor state */
Avi Kivity86603282010-05-06 11:45:46 +0300492 struct fpu fpu;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100493#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100494 /* Virtual 86 mode info */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100495 struct vm86_struct __user *vm86_info;
496 unsigned long screen_bitmap;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100497 unsigned long v86flags;
498 unsigned long v86mask;
499 unsigned long saved_sp0;
500 unsigned int saved_fs;
501 unsigned int saved_gs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100502#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100503 /* IO permissions: */
504 unsigned long *io_bitmap_ptr;
505 unsigned long iopl;
506 /* Max allowed port in the bitmap, in bytes: */
507 unsigned io_bitmap_max;
Vineet Guptac375f152013-11-12 15:08:46 -0800508 /*
509 * fpu_counter contains the number of consecutive context switches
510 * that the FPU is used. If this is over a threshold, the lazy fpu
511 * saving becomes unlazy to save the trap. This is an unsigned char
512 * so that after 256 times the counter wraps and the behavior turns
513 * lazy again; this to deal with bursty apps that only use FPU for
514 * a short time
515 */
516 unsigned char fpu_counter;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100517};
518
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100519/*
520 * Set IOPL bits in EFLAGS from given mask
521 */
522static inline void native_set_iopl_mask(unsigned mask)
523{
524#ifdef CONFIG_X86_32
525 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100526
Joe Perchescca2e6f2008-03-23 01:03:15 -0700527 asm volatile ("pushfl;"
528 "popl %0;"
529 "andl %1, %0;"
530 "orl %2, %0;"
531 "pushl %0;"
532 "popfl"
533 : "=&r" (reg)
534 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100535#endif
536}
537
Ingo Molnar4d46a892008-02-21 04:24:40 +0100538static inline void
539native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100540{
541 tss->x86_tss.sp0 = thread->sp0;
542#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100543 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100544 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
545 tss->x86_tss.ss1 = thread->sysenter_cs;
546 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
547 }
548#endif
549}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100550
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100551static inline void native_swapgs(void)
552{
553#ifdef CONFIG_X86_64
554 asm volatile("swapgs" ::: "memory");
555#endif
556}
557
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100558#ifdef CONFIG_PARAVIRT
559#include <asm/paravirt.h>
560#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100561#define __cpuid native_cpuid
562#define paravirt_enabled() 0
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100563
Joe Perchescca2e6f2008-03-23 01:03:15 -0700564static inline void load_sp0(struct tss_struct *tss,
565 struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100566{
567 native_load_sp0(tss, thread);
568}
569
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100570#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100571#endif /* CONFIG_PARAVIRT */
572
573/*
574 * Save the cr4 feature set we're using (ie
575 * Pentium 4MB enable and PPro Global page
576 * enable), so that any CPU's that boot up
577 * after us can get the correct flags.
578 */
Jarkko Sakkinencda846f2012-05-08 21:22:46 +0300579extern unsigned long mmu_cr4_features;
580extern u32 *trampoline_cr4_features;
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100581
582static inline void set_in_cr4(unsigned long mask)
583{
Brian Gerst2df7a6e2010-09-03 21:17:08 -0400584 unsigned long cr4;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100585
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100586 mmu_cr4_features |= mask;
Jarkko Sakkinencda846f2012-05-08 21:22:46 +0300587 if (trampoline_cr4_features)
588 *trampoline_cr4_features = mmu_cr4_features;
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100589 cr4 = read_cr4();
590 cr4 |= mask;
591 write_cr4(cr4);
592}
593
594static inline void clear_in_cr4(unsigned long mask)
595{
Brian Gerst2df7a6e2010-09-03 21:17:08 -0400596 unsigned long cr4;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100597
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100598 mmu_cr4_features &= ~mask;
Jarkko Sakkinencda846f2012-05-08 21:22:46 +0300599 if (trampoline_cr4_features)
600 *trampoline_cr4_features = mmu_cr4_features;
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100601 cr4 = read_cr4();
602 cr4 &= ~mask;
603 write_cr4(cr4);
604}
605
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100606typedef struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100607 unsigned long seg;
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100608} mm_segment_t;
609
610
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100611/* Free all resources held by a thread. */
612extern void release_thread(struct task_struct *);
613
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100614unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100615
616/*
617 * Generic CPUID function
618 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
619 * resulting in stale register contents being returned.
620 */
621static inline void cpuid(unsigned int op,
622 unsigned int *eax, unsigned int *ebx,
623 unsigned int *ecx, unsigned int *edx)
624{
625 *eax = op;
626 *ecx = 0;
627 __cpuid(eax, ebx, ecx, edx);
628}
629
630/* Some CPUID calls want 'count' to be placed in ecx */
631static inline void cpuid_count(unsigned int op, int count,
632 unsigned int *eax, unsigned int *ebx,
633 unsigned int *ecx, unsigned int *edx)
634{
635 *eax = op;
636 *ecx = count;
637 __cpuid(eax, ebx, ecx, edx);
638}
639
640/*
641 * CPUID functions returning a single datum
642 */
643static inline unsigned int cpuid_eax(unsigned int op)
644{
645 unsigned int eax, ebx, ecx, edx;
646
647 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100648
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100649 return eax;
650}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100651
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100652static inline unsigned int cpuid_ebx(unsigned int op)
653{
654 unsigned int eax, ebx, ecx, edx;
655
656 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100657
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100658 return ebx;
659}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100660
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100661static inline unsigned int cpuid_ecx(unsigned int op)
662{
663 unsigned int eax, ebx, ecx, edx;
664
665 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100666
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100667 return ecx;
668}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100669
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100670static inline unsigned int cpuid_edx(unsigned int op)
671{
672 unsigned int eax, ebx, ecx, edx;
673
674 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100675
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100676 return edx;
677}
678
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100679/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
680static inline void rep_nop(void)
681{
Joe Perchescca2e6f2008-03-23 01:03:15 -0700682 asm volatile("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100683}
684
Ingo Molnar4d46a892008-02-21 04:24:40 +0100685static inline void cpu_relax(void)
686{
687 rep_nop();
688}
689
Ben Hutchings5367b682009-09-10 02:53:50 +0100690/* Stop speculative execution and prefetching of modified code. */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100691static inline void sync_core(void)
692{
693 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100694
H. Peter Anvineb068e72012-11-28 11:50:23 -0800695#ifdef CONFIG_M486
H. Peter Anvin45c39fb2012-11-28 11:50:30 -0800696 /*
697 * Do a CPUID if available, otherwise do a jump. The jump
698 * can conveniently enough be the jump around CPUID.
699 */
700 asm volatile("cmpl %2,%1\n\t"
701 "jl 1f\n\t"
702 "cpuid\n"
703 "1:"
704 : "=a" (tmp)
705 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
706 : "ebx", "ecx", "edx", "memory");
707#else
708 /*
709 * CPUID is a barrier to speculative execution.
710 * Prefetched instructions are automatically
711 * invalidated when modified.
712 */
713 asm volatile("cpuid"
714 : "=a" (tmp)
715 : "0" (1)
716 : "ebx", "ecx", "edx", "memory");
Ben Hutchings5367b682009-09-10 02:53:50 +0100717#endif
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100718}
719
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100720extern void select_idle_routine(const struct cpuinfo_x86 *c);
Len Brown02c68a02011-04-01 16:59:53 -0400721extern void init_amd_e400_c1e_mask(void);
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100722
Ingo Molnar4d46a892008-02-21 04:24:40 +0100723extern unsigned long boot_option_idle_override;
Len Brown02c68a02011-04-01 16:59:53 -0400724extern bool amd_e400_c1e_detected;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100725
Thomas Renningerd1896042010-11-03 17:06:14 +0100726enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
Len Brown69fb3672013-02-10 01:38:39 -0500727 IDLE_POLL};
Thomas Renningerd1896042010-11-03 17:06:14 +0100728
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100729extern void enable_sep_cpu(void);
730extern int sysenter_setup(void);
731
Jan Kiszka29c84392010-05-20 21:04:29 -0500732extern void early_trap_init(void);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800733void early_trap_pf_init(void);
Jan Kiszka29c84392010-05-20 21:04:29 -0500734
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100735/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100736extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100737
738extern void cpu_set_gdt(int);
Brian Gerst552be872009-01-30 17:47:53 +0900739extern void switch_to_new_gdt(int);
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900740extern void load_percpu_segment(int);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100741extern void cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100742
Markus Metzgerc2724772008-12-11 13:49:59 +0100743static inline unsigned long get_debugctlmsr(void)
744{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100745 unsigned long debugctlmsr = 0;
Markus Metzgerc2724772008-12-11 13:49:59 +0100746
747#ifndef CONFIG_X86_DEBUGCTLMSR
748 if (boot_cpu_data.x86 < 6)
749 return 0;
750#endif
751 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
752
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100753 return debugctlmsr;
Markus Metzgerc2724772008-12-11 13:49:59 +0100754}
755
Jan Beulich5b0e5082008-03-10 13:11:17 +0000756static inline void update_debugctlmsr(unsigned long debugctlmsr)
757{
758#ifndef CONFIG_X86_DEBUGCTLMSR
759 if (boot_cpu_data.x86 < 6)
760 return;
761#endif
762 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
763}
764
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200765extern void set_task_blockstep(struct task_struct *task, bool on);
766
Ingo Molnar4d46a892008-02-21 04:24:40 +0100767/*
768 * from system description table in BIOS. Mostly for MCA use, but
769 * others may find it useful:
770 */
771extern unsigned int machine_id;
772extern unsigned int machine_submodel_id;
773extern unsigned int BIOS_revision;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100774
Ingo Molnar4d46a892008-02-21 04:24:40 +0100775/* Boot loader type from the setup header: */
776extern int bootloader_type;
H. Peter Anvin50312962009-05-07 16:54:11 -0700777extern int bootloader_version;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100778
Ingo Molnar4d46a892008-02-21 04:24:40 +0100779extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100780
781#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
782#define ARCH_HAS_PREFETCHW
783#define ARCH_HAS_SPINLOCK_PREFETCH
784
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100785#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100786# define BASE_PREFETCH ASM_NOP4
787# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100788#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100789# define BASE_PREFETCH "prefetcht0 (%1)"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100790#endif
791
Ingo Molnar4d46a892008-02-21 04:24:40 +0100792/*
793 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
794 *
795 * It's not worth to care about 3dnow prefetches for the K6
796 * because they are microcoded there and very slow.
797 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100798static inline void prefetch(const void *x)
799{
800 alternative_input(BASE_PREFETCH,
801 "prefetchnta (%1)",
802 X86_FEATURE_XMM,
803 "r" (x));
804}
805
Ingo Molnar4d46a892008-02-21 04:24:40 +0100806/*
807 * 3dnow prefetch to get an exclusive cache line.
808 * Useful for spinlocks to avoid one state transition in the
809 * cache coherency protocol:
810 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100811static inline void prefetchw(const void *x)
812{
813 alternative_input(BASE_PREFETCH,
814 "prefetchw (%1)",
815 X86_FEATURE_3DNOW,
816 "r" (x));
817}
818
Ingo Molnar4d46a892008-02-21 04:24:40 +0100819static inline void spin_lock_prefetch(const void *x)
820{
821 prefetchw(x);
822}
823
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100824#ifdef CONFIG_X86_32
825/*
826 * User space process size: 3GB (default).
827 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100828#define TASK_SIZE PAGE_OFFSET
Ingo Molnard9517342009-02-20 23:32:28 +0100829#define TASK_SIZE_MAX TASK_SIZE
Ingo Molnar4d46a892008-02-21 04:24:40 +0100830#define STACK_TOP TASK_SIZE
831#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100832
Ingo Molnar4d46a892008-02-21 04:24:40 +0100833#define INIT_THREAD { \
834 .sp0 = sizeof(init_stack) + (long)&init_stack, \
835 .vm86_info = NULL, \
836 .sysenter_cs = __KERNEL_CS, \
837 .io_bitmap_ptr = NULL, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100838}
839
840/*
841 * Note that the .io_bitmap member must be extra-big. This is because
842 * the CPU will access an additional byte beyond the end of the IO
843 * permission bitmap. The extra byte must be all 1 bits, and must
844 * be within the limit.
845 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100846#define INIT_TSS { \
847 .x86_tss = { \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100848 .sp0 = sizeof(init_stack) + (long)&init_stack, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100849 .ss0 = __KERNEL_DS, \
850 .ss1 = __KERNEL_CS, \
851 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
852 }, \
853 .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100854}
855
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100856extern unsigned long thread_saved_pc(struct task_struct *tsk);
857
858#define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
859#define KSTK_TOP(info) \
860({ \
861 unsigned long *__ptr = (unsigned long *)(info); \
862 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
863})
864
865/*
866 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
867 * This is necessary to guarantee that the entire "struct pt_regs"
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400868 * is accessible even if the CPU haven't stored the SS/ESP registers
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100869 * on the stack (interrupt gate does not save these registers
870 * when switching to the same priv ring).
871 * Therefore beware: accessing the ss/esp fields of the
872 * "struct pt_regs" is possible, but they may contain the
873 * completely wrong values.
874 */
875#define task_pt_regs(task) \
876({ \
877 struct pt_regs *__regs__; \
878 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
879 __regs__ - 1; \
880})
881
Ingo Molnar4d46a892008-02-21 04:24:40 +0100882#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100883
884#else
885/*
886 * User space process size. 47bits minus one guard page.
887 */
Ingo Molnard9517342009-02-20 23:32:28 +0100888#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100889
890/* This decides where the kernel will search for a free chunk of vm
891 * space during mmap's.
892 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100893#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
894 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100895
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800896#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100897 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800898#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100899 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100900
David Howells922a70d2008-02-08 04:19:26 -0800901#define STACK_TOP TASK_SIZE
Ingo Molnard9517342009-02-20 23:32:28 +0100902#define STACK_TOP_MAX TASK_SIZE_MAX
David Howells922a70d2008-02-08 04:19:26 -0800903
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100904#define INIT_THREAD { \
905 .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
906}
907
908#define INIT_TSS { \
909 .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
910}
911
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100912/*
913 * Return saved PC of a blocked thread.
914 * What is this good for? it will be always the scheduler or ret_from_fork.
915 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100916#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100917
Ingo Molnar4d46a892008-02-21 04:24:40 +0100918#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
Stefani Seibold89240ba2009-11-03 10:22:40 +0100919extern unsigned long KSTK_ESP(struct task_struct *task);
H. J. Lud046ff82012-02-14 13:49:48 -0800920
921/*
922 * User space RSP while inside the SYSCALL fast path
923 */
924DECLARE_PER_CPU(unsigned long, old_rsp);
925
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100926#endif /* CONFIG_X86_64 */
927
Ingo Molnar513ad842008-02-21 05:18:40 +0100928extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
929 unsigned long new_sp);
930
Ingo Molnar4d46a892008-02-21 04:24:40 +0100931/*
932 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100933 * space during mmap's.
934 */
935#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
936
Ingo Molnar4d46a892008-02-21 04:24:40 +0100937#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100938
Erik Bosman529e25f2008-04-14 00:24:18 +0200939/* Get/set a process' ability to use the timestamp counter instruction */
940#define GET_TSC_CTL(adr) get_tsc_mode((adr))
941#define SET_TSC_CTL(val) set_tsc_mode((val))
942
943extern int get_tsc_mode(unsigned long adr);
944extern int set_tsc_mode(unsigned int val);
945
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +0800946extern u16 amd_get_nb_id(int cpu);
Andreas Herrmann6a812692009-09-16 11:33:40 +0200947
Jason Wang96e39ac2013-07-25 16:54:32 +0800948static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
949{
950 uint32_t base, eax, signature[3];
951
952 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
953 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
954
955 if (!memcmp(sig, signature, 12) &&
956 (leaves == 0 || ((eax - base) >= leaves)))
957 return base;
958 }
959
960 return 0;
961}
962
David Howellsf05e7982012-03-28 18:11:12 +0100963extern unsigned long arch_align_stack(unsigned long sp);
964extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
965
966void default_idle(void);
Len Brown6a377dd2013-02-09 23:08:07 -0500967#ifdef CONFIG_XEN
968bool xen_set_default_idle(void);
969#else
970#define xen_set_default_idle 0
971#endif
David Howellsf05e7982012-03-28 18:11:12 +0100972
973void stop_this_cpu(void *dummy);
Borislav Petkov4d067d82013-05-09 12:02:29 +0200974void df_debug(struct pt_regs *regs, long error_code);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700975#endif /* _ASM_X86_PROCESSOR_H */