blob: fc6d8d0d8d5359043b8feeb4b874fece37db131f [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 +080075
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010076/*
77 * CPU type and hardware bug flags. Kept separately for each CPU.
78 * Members of this structure are referenced in head.S, so think twice
79 * before touching them. [mj]
80 */
81
82struct cpuinfo_x86 {
Ingo Molnar4d46a892008-02-21 04:24:40 +010083 __u8 x86; /* CPU family */
84 __u8 x86_vendor; /* CPU vendor */
85 __u8 x86_model;
86 __u8 x86_mask;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010087#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +010088 char wp_works_ok; /* It doesn't on 386's */
89
90 /* Problems on some 486Dx4's and old 386's: */
Ingo Molnar4d46a892008-02-21 04:24:40 +010091 char rfu;
Ingo Molnar4d46a892008-02-21 04:24:40 +010092 char pad0;
H. Peter Anvin60e019e2013-04-29 16:04:20 +020093 char pad1;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010094#else
Ingo Molnar4d46a892008-02-21 04:24:40 +010095 /* Number of 4K pages in DTLB/ITLB combined(in pages): */
H. Peter Anvinb1882e62009-01-23 17:18:52 -080096 int x86_tlbsize;
Jan Beulich13c6c532009-03-12 12:37:34 +000097#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +010098 __u8 x86_virt_bits;
99 __u8 x86_phys_bits;
100 /* CPUID returned core id bits: */
101 __u8 x86_coreid_bits;
102 /* Max extended CPUID function supported: */
103 __u32 extended_cpuid_level;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100104 /* Maximum supported CPUID level, -1=no CPUID: */
105 int cpuid_level;
Borislav Petkov65fc9852013-03-20 15:07:23 +0100106 __u32 x86_capability[NCAPINTS + NBUGINTS];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100107 char x86_vendor_id[16];
108 char x86_model_id[64];
109 /* in KB - valid for CPUS which support this call: */
110 int x86_cache_size;
111 int x86_cache_alignment; /* In bytes */
112 int x86_power;
113 unsigned long loops_per_jiffy;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100114 /* cpuid returned max cores value: */
115 u16 x86_max_cores;
116 u16 apicid;
Yinghai Lu01aaea12008-03-06 13:46:39 -0800117 u16 initial_apicid;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100118 u16 x86_clflush_size;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100119 /* number of cores as seen by the OS: */
120 u16 booted_cores;
121 /* Physical processor id: */
122 u16 phys_proc_id;
123 /* Core id: */
124 u16 cpu_core_id;
Andreas Herrmann6057b4d2010-09-30 14:38:57 +0200125 /* Compute unit id */
126 u8 compute_unit_id;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100127 /* Index into per_cpu list: */
128 u16 cpu_index;
Andi Kleen506ed6b2011-10-12 17:46:33 -0700129 u32 microcode;
Jan Beulich2c773dd2014-11-04 08:26:42 +0000130};
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100131
Ingo Molnar4d46a892008-02-21 04:24:40 +0100132#define X86_VENDOR_INTEL 0
133#define X86_VENDOR_CYRIX 1
134#define X86_VENDOR_AMD 2
135#define X86_VENDOR_UMC 3
Ingo Molnar4d46a892008-02-21 04:24:40 +0100136#define X86_VENDOR_CENTAUR 5
137#define X86_VENDOR_TRANSMETA 7
138#define X86_VENDOR_NSC 8
139#define X86_VENDOR_NUM 9
140
141#define X86_VENDOR_UNKNOWN 0xff
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100142
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100143/*
144 * capabilities of CPUs
145 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100146extern struct cpuinfo_x86 boot_cpu_data;
147extern struct cpuinfo_x86 new_cpu_data;
148
149extern struct tss_struct doublefault_tss;
Yinghai Lu3e0c3732009-05-09 23:47:42 -0700150extern __u32 cpu_caps_cleared[NCAPINTS];
151extern __u32 cpu_caps_set[NCAPINTS];
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100152
153#ifdef CONFIG_SMP
Jan Beulich2c773dd2014-11-04 08:26:42 +0000154DECLARE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100155#define cpu_data(cpu) per_cpu(cpu_info, cpu)
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100156#else
Tejun Heo7b543a52010-12-18 16:30:05 +0100157#define cpu_info boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100158#define cpu_data(cpu) boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100159#endif
160
Jaswinder Singh1c6c7272008-07-21 22:40:37 +0530161extern const struct seq_operations cpuinfo_op;
162
Ingo Molnar4d46a892008-02-21 04:24:40 +0100163#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
164
165extern void cpu_detect(struct cpuinfo_x86 *c);
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400166extern void fpu_detect(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100167
Yinghai Luf5803662008-06-21 03:24:19 -0700168extern void early_cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100169extern void identify_boot_cpu(void);
170extern void identify_secondary_cpu(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100171extern void print_cpu_info(struct cpuinfo_x86 *);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800172void print_cpu_msr(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100173extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
174extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
Andreas Herrmann04a15412012-10-19 10:59:33 +0200175extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100176
Suresh Siddhabbb65d22008-08-23 17:47:10 +0200177extern void detect_extended_topology(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100178extern void detect_ht(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100179
Fenghua Yud288e1c2012-12-20 23:44:23 -0800180#ifdef CONFIG_X86_32
181extern int have_cpuid_p(void);
182#else
183static inline int have_cpuid_p(void)
184{
185 return 1;
186}
187#endif
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100188static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
Ingo Molnar4d46a892008-02-21 04:24:40 +0100189 unsigned int *ecx, unsigned int *edx)
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100190{
191 /* ecx is often an input as well as an output. */
Suresh Siddha45a94d72009-12-16 16:25:42 -0800192 asm volatile("cpuid"
Joe Perchescca2e6f2008-03-23 01:03:15 -0700193 : "=a" (*eax),
194 "=b" (*ebx),
195 "=c" (*ecx),
196 "=d" (*edx)
Andi Kleen506ed6b2011-10-12 17:46:33 -0700197 : "0" (*eax), "2" (*ecx)
198 : "memory");
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100199}
200
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +0100201static inline void load_cr3(pgd_t *pgdir)
202{
203 write_cr3(__pa(pgdir));
204}
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100205
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200206#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100207/* This is the TSS defined by the hardware. */
208struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100209 unsigned short back_link, __blh;
210 unsigned long sp0;
211 unsigned short ss0, __ss0h;
212 unsigned long sp1;
213 /* ss1 caches MSR_IA32_SYSENTER_CS: */
214 unsigned short ss1, __ss1h;
215 unsigned long sp2;
216 unsigned short ss2, __ss2h;
217 unsigned long __cr3;
218 unsigned long ip;
219 unsigned long flags;
220 unsigned long ax;
221 unsigned long cx;
222 unsigned long dx;
223 unsigned long bx;
224 unsigned long sp;
225 unsigned long bp;
226 unsigned long si;
227 unsigned long di;
228 unsigned short es, __esh;
229 unsigned short cs, __csh;
230 unsigned short ss, __ssh;
231 unsigned short ds, __dsh;
232 unsigned short fs, __fsh;
233 unsigned short gs, __gsh;
234 unsigned short ldt, __ldth;
235 unsigned short trace;
236 unsigned short io_bitmap_base;
237
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100238} __attribute__((packed));
239#else
240struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100241 u32 reserved1;
242 u64 sp0;
243 u64 sp1;
244 u64 sp2;
245 u64 reserved2;
246 u64 ist[7];
247 u32 reserved3;
248 u32 reserved4;
249 u16 reserved5;
250 u16 io_bitmap_base;
251
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100252} __attribute__((packed)) ____cacheline_aligned;
253#endif
254
255/*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100256 * IO-bitmap sizes:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100257 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100258#define IO_BITMAP_BITS 65536
259#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
260#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
261#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
262#define INVALID_IO_BITMAP_OFFSET 0x8000
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100263
264struct tss_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100265 /*
266 * The hardware state:
267 */
268 struct x86_hw_tss x86_tss;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100269
270 /*
271 * The extra 1 is there because the CPU will access an
272 * additional byte beyond the end of the IO permission
273 * bitmap. The extra byte must be all 1 bits, and must
274 * be within the limit.
275 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100276 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100277
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100278 /*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100279 * .. and then another 0x100 bytes for the emergency kernel stack:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100280 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100281 unsigned long stack[64];
282
Richard Kennedy84e65b02008-07-04 13:56:16 +0100283} ____cacheline_aligned;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100284
Andy Lutomirski24933b82015-03-05 19:19:05 -0800285DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss);
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100286
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800287#ifdef CONFIG_X86_32
288DECLARE_PER_CPU(unsigned long, cpu_current_top_of_stack);
289#endif
290
Ingo Molnar4d46a892008-02-21 04:24:40 +0100291/*
292 * Save the original ist values for checking stack pointers during debugging
293 */
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100294struct orig_ist {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100295 unsigned long ist[7];
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100296};
297
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100298#define MXCSR_DEFAULT 0x1f80
299
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100300struct i387_fsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100301 u32 cwd; /* FPU Control Word */
302 u32 swd; /* FPU Status Word */
303 u32 twd; /* FPU Tag Word */
304 u32 fip; /* FPU IP Offset */
305 u32 fcs; /* FPU IP Selector */
306 u32 foo; /* FPU Operand Pointer Offset */
307 u32 fos; /* FPU Operand Pointer Selector */
308
309 /* 8*10 bytes for each FP-reg = 80 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100310 u32 st_space[20];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100311
312 /* Software status information [not touched by FSAVE ]: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100313 u32 status;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100314};
315
316struct i387_fxsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100317 u16 cwd; /* Control Word */
318 u16 swd; /* Status Word */
319 u16 twd; /* Tag Word */
320 u16 fop; /* Last Instruction Opcode */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100321 union {
322 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100323 u64 rip; /* Instruction Pointer */
324 u64 rdp; /* Data Pointer */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100325 };
326 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100327 u32 fip; /* FPU IP Offset */
328 u32 fcs; /* FPU IP Selector */
329 u32 foo; /* FPU Operand Offset */
330 u32 fos; /* FPU Operand Selector */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100331 };
332 };
Ingo Molnarca9cda22008-03-05 15:15:42 +0100333 u32 mxcsr; /* MXCSR Register State */
334 u32 mxcsr_mask; /* MXCSR Mask */
335
336 /* 8*16 bytes for each FP-reg = 128 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100337 u32 st_space[32];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100338
339 /* 16*16 bytes for each XMM-reg = 256 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100340 u32 xmm_space[64];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100341
Suresh Siddhabdd8cab2008-07-29 10:29:24 -0700342 u32 padding[12];
343
344 union {
345 u32 padding1[12];
346 u32 sw_reserved[12];
347 };
Ingo Molnar4d46a892008-02-21 04:24:40 +0100348
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100349} __attribute__((aligned(16)));
350
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100351struct i387_soft_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100352 u32 cwd;
353 u32 swd;
354 u32 twd;
355 u32 fip;
356 u32 fcs;
357 u32 foo;
358 u32 fos;
359 /* 8*10 bytes for each FP-reg = 80 bytes: */
360 u32 st_space[20];
361 u8 ftop;
362 u8 changed;
363 u8 lookahead;
364 u8 no_update;
365 u8 rm;
366 u8 alimit;
Tejun Heoae6af412009-02-09 22:17:39 +0900367 struct math_emu_info *info;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100368 u32 entry_eip;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100369};
370
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700371struct ymmh_struct {
372 /* 16 * 16 bytes for each YMMH-reg = 256 bytes */
373 u32 ymmh_space[64];
374};
375
Ingo Molnar741e3902014-01-20 19:51:05 +0100376/* We don't support LWP yet: */
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800377struct lwp_struct {
Ingo Molnar741e3902014-01-20 19:51:05 +0100378 u8 reserved[128];
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800379};
380
Dave Hansenc04e0512014-10-31 14:58:20 -0700381struct bndreg {
382 u64 lower_bound;
383 u64 upper_bound;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800384} __packed;
385
Dave Hansen62e77592014-11-14 07:18:17 -0800386struct bndcsr {
387 u64 bndcfgu;
388 u64 bndstatus;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800389} __packed;
390
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700391struct xsave_hdr_struct {
392 u64 xstate_bv;
Fenghua Yu0b296432014-05-29 11:12:33 -0700393 u64 xcomp_bv;
394 u64 reserved[6];
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700395} __attribute__((packed));
396
397struct xsave_struct {
398 struct i387_fxsave_struct i387;
399 struct xsave_hdr_struct xsave_hdr;
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700400 struct ymmh_struct ymmh;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800401 struct lwp_struct lwp;
Dave Hansenc04e0512014-10-31 14:58:20 -0700402 struct bndreg bndreg[4];
Dave Hansen62e77592014-11-14 07:18:17 -0800403 struct bndcsr bndcsr;
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700404 /* new processor state extensions will go here */
405} __attribute__ ((packed, aligned (64)));
406
Suresh Siddha61c46282008-03-10 15:28:04 -0700407union thread_xstate {
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100408 struct i387_fsave_struct fsave;
409 struct i387_fxsave_struct fxsave;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100410 struct i387_soft_struct soft;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700411 struct xsave_struct xsave;
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100412};
413
Avi Kivity86603282010-05-06 11:45:46 +0300414struct fpu {
Linus Torvalds7e168382012-02-19 13:27:00 -0800415 unsigned int last_cpu;
416 unsigned int has_fpu;
Avi Kivity86603282010-05-06 11:45:46 +0300417 union thread_xstate *state;
418};
419
Glauber Costafe676202008-03-03 14:12:56 -0300420#ifdef CONFIG_X86_64
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100421DECLARE_PER_CPU(struct orig_ist, orig_ist);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900422
Brian Gerst947e76c2009-01-19 12:21:28 +0900423union irq_stack_union {
424 char irq_stack[IRQ_STACK_SIZE];
425 /*
426 * GCC hardcodes the stack canary as %gs:40. Since the
427 * irq_stack is the object at %gs:0, we reserve the bottom
428 * 48 bytes of the irq stack for the canary.
429 */
430 struct {
431 char gs_base[40];
432 unsigned long stack_canary;
433 };
434};
435
Andi Kleen277d5b42013-08-05 15:02:43 -0700436DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union) __visible;
Brian Gerst2add8e22009-02-08 09:58:39 -0500437DECLARE_INIT_PER_CPU(irq_stack_union);
438
Brian Gerst26f80bd2009-01-19 00:38:58 +0900439DECLARE_PER_CPU(char *, irq_stack_ptr);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530440DECLARE_PER_CPU(unsigned int, irq_count);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530441extern asmlinkage void ignore_sysret(void);
Tejun Heo60a53172009-02-09 22:17:40 +0900442#else /* X86_64 */
443#ifdef CONFIG_CC_STACKPROTECTOR
Jeremy Fitzhardinge1ea0d142009-09-03 12:27:15 -0700444/*
445 * Make sure stack canary segment base is cached-aligned:
446 * "For Intel Atom processors, avoid non zero segment base address
447 * that is not aligned to cache line boundary at all cost."
448 * (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
449 */
450struct stack_canary {
451 char __pad[20]; /* canary at %gs:20 */
452 unsigned long canary;
453};
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700454DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200455#endif
Steven Rostedt198d2082014-02-06 09:41:31 -0500456/*
457 * per-CPU IRQ handling stacks
458 */
459struct irq_stack {
460 u32 stack[THREAD_SIZE/sizeof(u32)];
461} __aligned(THREAD_SIZE);
462
463DECLARE_PER_CPU(struct irq_stack *, hardirq_stack);
464DECLARE_PER_CPU(struct irq_stack *, softirq_stack);
Tejun Heo60a53172009-02-09 22:17:40 +0900465#endif /* X86_64 */
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100466
Suresh Siddha61c46282008-03-10 15:28:04 -0700467extern unsigned int xstate_size;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700468extern void free_thread_xstate(struct task_struct *);
469extern struct kmem_cache *task_xstate_cachep;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100470
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200471struct perf_event;
472
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100473struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100474 /* Cached TLS descriptors: */
475 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
476 unsigned long sp0;
477 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100478#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100479 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100480#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100481 unsigned long usersp; /* Copy from PDA */
482 unsigned short es;
483 unsigned short ds;
484 unsigned short fsindex;
485 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100486#endif
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400487#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100488 unsigned long ip;
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400489#endif
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400490#ifdef CONFIG_X86_64
Ingo Molnar4d46a892008-02-21 04:24:40 +0100491 unsigned long fs;
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400492#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100493 unsigned long gs;
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200494 /* Save middle states of ptrace breakpoints */
495 struct perf_event *ptrace_bps[HBP_NUM];
496 /* Debug status used for traps, single steps, etc... */
497 unsigned long debugreg6;
Frederic Weisbecker326264a2010-02-18 18:24:18 +0100498 /* Keep track of the exact dr7 value set by the user */
499 unsigned long ptrace_dr7;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100500 /* Fault info: */
501 unsigned long cr2;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530502 unsigned long trap_nr;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100503 unsigned long error_code;
Suresh Siddha61c46282008-03-10 15:28:04 -0700504 /* floating point and extended processor state */
Avi Kivity86603282010-05-06 11:45:46 +0300505 struct fpu fpu;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100506#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100507 /* Virtual 86 mode info */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100508 struct vm86_struct __user *vm86_info;
509 unsigned long screen_bitmap;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100510 unsigned long v86flags;
511 unsigned long v86mask;
512 unsigned long saved_sp0;
513 unsigned int saved_fs;
514 unsigned int saved_gs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100515#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100516 /* IO permissions: */
517 unsigned long *io_bitmap_ptr;
518 unsigned long iopl;
519 /* Max allowed port in the bitmap, in bytes: */
520 unsigned io_bitmap_max;
Vineet Guptac375f152013-11-12 15:08:46 -0800521 /*
522 * fpu_counter contains the number of consecutive context switches
523 * that the FPU is used. If this is over a threshold, the lazy fpu
524 * saving becomes unlazy to save the trap. This is an unsigned char
525 * so that after 256 times the counter wraps and the behavior turns
526 * lazy again; this to deal with bursty apps that only use FPU for
527 * a short time
528 */
529 unsigned char fpu_counter;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100530};
531
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100532/*
533 * Set IOPL bits in EFLAGS from given mask
534 */
535static inline void native_set_iopl_mask(unsigned mask)
536{
537#ifdef CONFIG_X86_32
538 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100539
Joe Perchescca2e6f2008-03-23 01:03:15 -0700540 asm volatile ("pushfl;"
541 "popl %0;"
542 "andl %1, %0;"
543 "orl %2, %0;"
544 "pushl %0;"
545 "popfl"
546 : "=&r" (reg)
547 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100548#endif
549}
550
Ingo Molnar4d46a892008-02-21 04:24:40 +0100551static inline void
552native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100553{
554 tss->x86_tss.sp0 = thread->sp0;
555#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100556 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100557 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
558 tss->x86_tss.ss1 = thread->sysenter_cs;
559 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
560 }
561#endif
562}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100563
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100564static inline void native_swapgs(void)
565{
566#ifdef CONFIG_X86_64
567 asm volatile("swapgs" ::: "memory");
568#endif
569}
570
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800571static inline unsigned long current_top_of_stack(void)
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800572{
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800573#ifdef CONFIG_X86_64
Andy Lutomirski24933b82015-03-05 19:19:05 -0800574 return this_cpu_read_stable(cpu_tss.x86_tss.sp0);
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800575#else
576 /* sp0 on x86_32 is special in and around vm86 mode. */
577 return this_cpu_read_stable(cpu_current_top_of_stack);
578#endif
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800579}
580
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100581#ifdef CONFIG_PARAVIRT
582#include <asm/paravirt.h>
583#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100584#define __cpuid native_cpuid
585#define paravirt_enabled() 0
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100586
Joe Perchescca2e6f2008-03-23 01:03:15 -0700587static inline void load_sp0(struct tss_struct *tss,
588 struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100589{
590 native_load_sp0(tss, thread);
591}
592
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100593#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100594#endif /* CONFIG_PARAVIRT */
595
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100596typedef struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100597 unsigned long seg;
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100598} mm_segment_t;
599
600
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100601/* Free all resources held by a thread. */
602extern void release_thread(struct task_struct *);
603
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100604unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100605
606/*
607 * Generic CPUID function
608 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
609 * resulting in stale register contents being returned.
610 */
611static inline void cpuid(unsigned int op,
612 unsigned int *eax, unsigned int *ebx,
613 unsigned int *ecx, unsigned int *edx)
614{
615 *eax = op;
616 *ecx = 0;
617 __cpuid(eax, ebx, ecx, edx);
618}
619
620/* Some CPUID calls want 'count' to be placed in ecx */
621static inline void cpuid_count(unsigned int op, int count,
622 unsigned int *eax, unsigned int *ebx,
623 unsigned int *ecx, unsigned int *edx)
624{
625 *eax = op;
626 *ecx = count;
627 __cpuid(eax, ebx, ecx, edx);
628}
629
630/*
631 * CPUID functions returning a single datum
632 */
633static inline unsigned int cpuid_eax(unsigned int op)
634{
635 unsigned int eax, ebx, ecx, edx;
636
637 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100638
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100639 return eax;
640}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100641
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100642static inline unsigned int cpuid_ebx(unsigned int op)
643{
644 unsigned int eax, ebx, ecx, edx;
645
646 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100647
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100648 return ebx;
649}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100650
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100651static inline unsigned int cpuid_ecx(unsigned int op)
652{
653 unsigned int eax, ebx, ecx, edx;
654
655 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100656
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100657 return ecx;
658}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100659
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100660static inline unsigned int cpuid_edx(unsigned int op)
661{
662 unsigned int eax, ebx, ecx, edx;
663
664 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100665
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100666 return edx;
667}
668
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100669/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
670static inline void rep_nop(void)
671{
Joe Perchescca2e6f2008-03-23 01:03:15 -0700672 asm volatile("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100673}
674
Ingo Molnar4d46a892008-02-21 04:24:40 +0100675static inline void cpu_relax(void)
676{
677 rep_nop();
678}
679
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700680#define cpu_relax_lowlatency() cpu_relax()
681
Ben Hutchings5367b682009-09-10 02:53:50 +0100682/* Stop speculative execution and prefetching of modified code. */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100683static inline void sync_core(void)
684{
685 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100686
H. Peter Anvineb068e72012-11-28 11:50:23 -0800687#ifdef CONFIG_M486
H. Peter Anvin45c39fb2012-11-28 11:50:30 -0800688 /*
689 * Do a CPUID if available, otherwise do a jump. The jump
690 * can conveniently enough be the jump around CPUID.
691 */
692 asm volatile("cmpl %2,%1\n\t"
693 "jl 1f\n\t"
694 "cpuid\n"
695 "1:"
696 : "=a" (tmp)
697 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
698 : "ebx", "ecx", "edx", "memory");
699#else
700 /*
701 * CPUID is a barrier to speculative execution.
702 * Prefetched instructions are automatically
703 * invalidated when modified.
704 */
705 asm volatile("cpuid"
706 : "=a" (tmp)
707 : "0" (1)
708 : "ebx", "ecx", "edx", "memory");
Ben Hutchings5367b682009-09-10 02:53:50 +0100709#endif
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100710}
711
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100712extern void select_idle_routine(const struct cpuinfo_x86 *c);
Len Brown02c68a02011-04-01 16:59:53 -0400713extern void init_amd_e400_c1e_mask(void);
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100714
Ingo Molnar4d46a892008-02-21 04:24:40 +0100715extern unsigned long boot_option_idle_override;
Len Brown02c68a02011-04-01 16:59:53 -0400716extern bool amd_e400_c1e_detected;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100717
Thomas Renningerd1896042010-11-03 17:06:14 +0100718enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
Len Brown69fb3672013-02-10 01:38:39 -0500719 IDLE_POLL};
Thomas Renningerd1896042010-11-03 17:06:14 +0100720
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100721extern void enable_sep_cpu(void);
722extern int sysenter_setup(void);
723
Jan Kiszka29c84392010-05-20 21:04:29 -0500724extern void early_trap_init(void);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800725void early_trap_pf_init(void);
Jan Kiszka29c84392010-05-20 21:04:29 -0500726
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100727/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100728extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100729
730extern void cpu_set_gdt(int);
Brian Gerst552be872009-01-30 17:47:53 +0900731extern void switch_to_new_gdt(int);
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900732extern void load_percpu_segment(int);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100733extern void cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100734
Markus Metzgerc2724772008-12-11 13:49:59 +0100735static inline unsigned long get_debugctlmsr(void)
736{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100737 unsigned long debugctlmsr = 0;
Markus Metzgerc2724772008-12-11 13:49:59 +0100738
739#ifndef CONFIG_X86_DEBUGCTLMSR
740 if (boot_cpu_data.x86 < 6)
741 return 0;
742#endif
743 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
744
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100745 return debugctlmsr;
Markus Metzgerc2724772008-12-11 13:49:59 +0100746}
747
Jan Beulich5b0e5082008-03-10 13:11:17 +0000748static inline void update_debugctlmsr(unsigned long debugctlmsr)
749{
750#ifndef CONFIG_X86_DEBUGCTLMSR
751 if (boot_cpu_data.x86 < 6)
752 return;
753#endif
754 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
755}
756
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200757extern void set_task_blockstep(struct task_struct *task, bool on);
758
Ingo Molnar4d46a892008-02-21 04:24:40 +0100759/*
760 * from system description table in BIOS. Mostly for MCA use, but
761 * others may find it useful:
762 */
763extern unsigned int machine_id;
764extern unsigned int machine_submodel_id;
765extern unsigned int BIOS_revision;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100766
Ingo Molnar4d46a892008-02-21 04:24:40 +0100767/* Boot loader type from the setup header: */
768extern int bootloader_type;
H. Peter Anvin50312962009-05-07 16:54:11 -0700769extern int bootloader_version;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100770
Ingo Molnar4d46a892008-02-21 04:24:40 +0100771extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100772
773#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
774#define ARCH_HAS_PREFETCHW
775#define ARCH_HAS_SPINLOCK_PREFETCH
776
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100777#ifdef CONFIG_X86_32
Borislav Petkova930dc42015-01-18 17:48:18 +0100778# define BASE_PREFETCH ""
Ingo Molnar4d46a892008-02-21 04:24:40 +0100779# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100780#else
Borislav Petkova930dc42015-01-18 17:48:18 +0100781# define BASE_PREFETCH "prefetcht0 %P1"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100782#endif
783
Ingo Molnar4d46a892008-02-21 04:24:40 +0100784/*
785 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
786 *
787 * It's not worth to care about 3dnow prefetches for the K6
788 * because they are microcoded there and very slow.
789 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100790static inline void prefetch(const void *x)
791{
Borislav Petkova930dc42015-01-18 17:48:18 +0100792 alternative_input(BASE_PREFETCH, "prefetchnta %P1",
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100793 X86_FEATURE_XMM,
Borislav Petkova930dc42015-01-18 17:48:18 +0100794 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100795}
796
Ingo Molnar4d46a892008-02-21 04:24:40 +0100797/*
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 Costaae2e15e2008-01-30 13:31:40 +0100802static inline void prefetchw(const void *x)
803{
Borislav Petkova930dc42015-01-18 17:48:18 +0100804 alternative_input(BASE_PREFETCH, "prefetchw %P1",
805 X86_FEATURE_3DNOWPREFETCH,
806 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100807}
808
Ingo Molnar4d46a892008-02-21 04:24:40 +0100809static inline void spin_lock_prefetch(const void *x)
810{
811 prefetchw(x);
812}
813
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700814#define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \
815 TOP_OF_KERNEL_STACK_PADDING)
816
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100817#ifdef CONFIG_X86_32
818/*
819 * User space process size: 3GB (default).
820 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100821#define TASK_SIZE PAGE_OFFSET
Ingo Molnard9517342009-02-20 23:32:28 +0100822#define TASK_SIZE_MAX TASK_SIZE
Ingo Molnar4d46a892008-02-21 04:24:40 +0100823#define STACK_TOP TASK_SIZE
824#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100825
Ingo Molnar4d46a892008-02-21 04:24:40 +0100826#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700827 .sp0 = TOP_OF_INIT_STACK, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100828 .vm86_info = NULL, \
829 .sysenter_cs = __KERNEL_CS, \
830 .io_bitmap_ptr = NULL, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100831}
832
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100833extern unsigned long thread_saved_pc(struct task_struct *tsk);
834
835#define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
836#define KSTK_TOP(info) \
837({ \
838 unsigned long *__ptr = (unsigned long *)(info); \
839 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
840})
841
842/*
843 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
844 * This is necessary to guarantee that the entire "struct pt_regs"
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400845 * is accessible even if the CPU haven't stored the SS/ESP registers
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100846 * on the stack (interrupt gate does not save these registers
847 * when switching to the same priv ring).
848 * Therefore beware: accessing the ss/esp fields of the
849 * "struct pt_regs" is possible, but they may contain the
850 * completely wrong values.
851 */
852#define task_pt_regs(task) \
853({ \
854 struct pt_regs *__regs__; \
Andy Lutomirski3ee42982015-03-10 11:05:58 -0700855 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task)) - \
856 TOP_OF_KERNEL_STACK_PADDING); \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100857 __regs__ - 1; \
858})
859
Ingo Molnar4d46a892008-02-21 04:24:40 +0100860#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100861
862#else
863/*
Andy Lutomirski07114f02014-11-04 15:46:21 -0800864 * User space process size. 47bits minus one guard page. The guard
865 * page is necessary on Intel CPUs: if a SYSCALL instruction is at
866 * the highest possible canonical userspace address, then that
867 * syscall will enter the kernel with a non-canonical return
868 * address, and SYSRET will explode dangerously. We avoid this
869 * particular problem by preventing anything from being mapped
870 * at the maximum canonical address.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100871 */
Ingo Molnard9517342009-02-20 23:32:28 +0100872#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100873
874/* This decides where the kernel will search for a free chunk of vm
875 * space during mmap's.
876 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100877#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
878 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100879
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800880#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100881 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800882#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100883 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100884
David Howells922a70d2008-02-08 04:19:26 -0800885#define STACK_TOP TASK_SIZE
Ingo Molnard9517342009-02-20 23:32:28 +0100886#define STACK_TOP_MAX TASK_SIZE_MAX
David Howells922a70d2008-02-08 04:19:26 -0800887
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100888#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700889 .sp0 = TOP_OF_INIT_STACK \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100890}
891
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100892/*
893 * Return saved PC of a blocked thread.
894 * What is this good for? it will be always the scheduler or ret_from_fork.
895 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100896#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100897
Ingo Molnar4d46a892008-02-21 04:24:40 +0100898#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
Stefani Seibold89240ba2009-11-03 10:22:40 +0100899extern unsigned long KSTK_ESP(struct task_struct *task);
H. J. Lud046ff82012-02-14 13:49:48 -0800900
901/*
902 * User space RSP while inside the SYSCALL fast path
903 */
904DECLARE_PER_CPU(unsigned long, old_rsp);
905
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100906#endif /* CONFIG_X86_64 */
907
Ingo Molnar513ad842008-02-21 05:18:40 +0100908extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
909 unsigned long new_sp);
910
Ingo Molnar4d46a892008-02-21 04:24:40 +0100911/*
912 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100913 * space during mmap's.
914 */
915#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
916
Ingo Molnar4d46a892008-02-21 04:24:40 +0100917#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100918
Erik Bosman529e25f2008-04-14 00:24:18 +0200919/* Get/set a process' ability to use the timestamp counter instruction */
920#define GET_TSC_CTL(adr) get_tsc_mode((adr))
921#define SET_TSC_CTL(val) set_tsc_mode((val))
922
923extern int get_tsc_mode(unsigned long adr);
924extern int set_tsc_mode(unsigned int val);
925
Dave Hansenfe3d1972014-11-14 07:18:29 -0800926/* Register/unregister a process' MPX related resource */
927#define MPX_ENABLE_MANAGEMENT(tsk) mpx_enable_management((tsk))
928#define MPX_DISABLE_MANAGEMENT(tsk) mpx_disable_management((tsk))
929
930#ifdef CONFIG_X86_INTEL_MPX
931extern int mpx_enable_management(struct task_struct *tsk);
932extern int mpx_disable_management(struct task_struct *tsk);
933#else
934static inline int mpx_enable_management(struct task_struct *tsk)
935{
936 return -EINVAL;
937}
938static inline int mpx_disable_management(struct task_struct *tsk)
939{
940 return -EINVAL;
941}
942#endif /* CONFIG_X86_INTEL_MPX */
943
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +0800944extern u16 amd_get_nb_id(int cpu);
Andreas Herrmann6a812692009-09-16 11:33:40 +0200945
Jason Wang96e39ac2013-07-25 16:54:32 +0800946static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
947{
948 uint32_t base, eax, signature[3];
949
950 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
951 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
952
953 if (!memcmp(sig, signature, 12) &&
954 (leaves == 0 || ((eax - base) >= leaves)))
955 return base;
956 }
957
958 return 0;
959}
960
David Howellsf05e7982012-03-28 18:11:12 +0100961extern unsigned long arch_align_stack(unsigned long sp);
962extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
963
964void default_idle(void);
Len Brown6a377dd2013-02-09 23:08:07 -0500965#ifdef CONFIG_XEN
966bool xen_set_default_idle(void);
967#else
968#define xen_set_default_idle 0
969#endif
David Howellsf05e7982012-03-28 18:11:12 +0100970
971void stop_this_cpu(void *dummy);
Borislav Petkov4d067d82013-05-09 12:02:29 +0200972void df_debug(struct pt_regs *regs, long error_code);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700973#endif /* _ASM_X86_PROCESSOR_H */