blob: 23ba6765b718c790dbf698edbb2758a2ca6f9102 [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 */
Peter P Waskiewicz Jrcbc82b12015-01-23 18:45:43 +0000112 /* Cache QoS architectural values: */
113 int x86_cache_max_rmid; /* max index */
114 int x86_cache_occ_scale; /* scale to bytes */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100115 int x86_power;
116 unsigned long loops_per_jiffy;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100117 /* cpuid returned max cores value: */
118 u16 x86_max_cores;
119 u16 apicid;
Yinghai Lu01aaea12008-03-06 13:46:39 -0800120 u16 initial_apicid;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100121 u16 x86_clflush_size;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100122 /* number of cores as seen by the OS: */
123 u16 booted_cores;
124 /* Physical processor id: */
125 u16 phys_proc_id;
126 /* Core id: */
127 u16 cpu_core_id;
Andreas Herrmann6057b4d2010-09-30 14:38:57 +0200128 /* Compute unit id */
129 u8 compute_unit_id;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100130 /* Index into per_cpu list: */
131 u16 cpu_index;
Andi Kleen506ed6b2011-10-12 17:46:33 -0700132 u32 microcode;
Jan Beulich2c773dd2014-11-04 08:26:42 +0000133};
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100134
Ingo Molnar4d46a892008-02-21 04:24:40 +0100135#define X86_VENDOR_INTEL 0
136#define X86_VENDOR_CYRIX 1
137#define X86_VENDOR_AMD 2
138#define X86_VENDOR_UMC 3
Ingo Molnar4d46a892008-02-21 04:24:40 +0100139#define X86_VENDOR_CENTAUR 5
140#define X86_VENDOR_TRANSMETA 7
141#define X86_VENDOR_NSC 8
142#define X86_VENDOR_NUM 9
143
144#define X86_VENDOR_UNKNOWN 0xff
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100145
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100146/*
147 * capabilities of CPUs
148 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100149extern struct cpuinfo_x86 boot_cpu_data;
150extern struct cpuinfo_x86 new_cpu_data;
151
152extern struct tss_struct doublefault_tss;
Yinghai Lu3e0c3732009-05-09 23:47:42 -0700153extern __u32 cpu_caps_cleared[NCAPINTS];
154extern __u32 cpu_caps_set[NCAPINTS];
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100155
156#ifdef CONFIG_SMP
Jan Beulich2c773dd2014-11-04 08:26:42 +0000157DECLARE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100158#define cpu_data(cpu) per_cpu(cpu_info, cpu)
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100159#else
Tejun Heo7b543a52010-12-18 16:30:05 +0100160#define cpu_info boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100161#define cpu_data(cpu) boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100162#endif
163
Jaswinder Singh1c6c7272008-07-21 22:40:37 +0530164extern const struct seq_operations cpuinfo_op;
165
Ingo Molnar4d46a892008-02-21 04:24:40 +0100166#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
167
168extern void cpu_detect(struct cpuinfo_x86 *c);
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400169extern void fpu_detect(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100170
Yinghai Luf5803662008-06-21 03:24:19 -0700171extern void early_cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100172extern void identify_boot_cpu(void);
173extern void identify_secondary_cpu(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100174extern void print_cpu_info(struct cpuinfo_x86 *);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800175void print_cpu_msr(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100176extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
177extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
Andreas Herrmann04a15412012-10-19 10:59:33 +0200178extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100179
Suresh Siddhabbb65d22008-08-23 17:47:10 +0200180extern void detect_extended_topology(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100181extern void detect_ht(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100182
Fenghua Yud288e1c2012-12-20 23:44:23 -0800183#ifdef CONFIG_X86_32
184extern int have_cpuid_p(void);
185#else
186static inline int have_cpuid_p(void)
187{
188 return 1;
189}
190#endif
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100191static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
Ingo Molnar4d46a892008-02-21 04:24:40 +0100192 unsigned int *ecx, unsigned int *edx)
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100193{
194 /* ecx is often an input as well as an output. */
Suresh Siddha45a94d72009-12-16 16:25:42 -0800195 asm volatile("cpuid"
Joe Perchescca2e6f2008-03-23 01:03:15 -0700196 : "=a" (*eax),
197 "=b" (*ebx),
198 "=c" (*ecx),
199 "=d" (*edx)
Andi Kleen506ed6b2011-10-12 17:46:33 -0700200 : "0" (*eax), "2" (*ecx)
201 : "memory");
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100202}
203
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +0100204static inline void load_cr3(pgd_t *pgdir)
205{
206 write_cr3(__pa(pgdir));
207}
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100208
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200209#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100210/* This is the TSS defined by the hardware. */
211struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100212 unsigned short back_link, __blh;
213 unsigned long sp0;
214 unsigned short ss0, __ss0h;
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700215 unsigned long sp1;
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700216
217 /*
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700218 * We don't use ring 1, so ss1 is a convenient scratch space in
219 * the same cacheline as sp0. We use ss1 to cache the value in
220 * MSR_IA32_SYSENTER_CS. When we context switch
221 * MSR_IA32_SYSENTER_CS, we first check if the new value being
222 * written matches ss1, and, if it's not, then we wrmsr the new
223 * value and update ss1.
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700224 *
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700225 * The only reason we context switch MSR_IA32_SYSENTER_CS is
226 * that we set it to zero in vm86 tasks to avoid corrupting the
227 * stack if we were to go through the sysenter path from vm86
228 * mode.
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700229 */
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700230 unsigned short ss1; /* MSR_IA32_SYSENTER_CS */
231
232 unsigned short __ss1h;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100233 unsigned long sp2;
234 unsigned short ss2, __ss2h;
235 unsigned long __cr3;
236 unsigned long ip;
237 unsigned long flags;
238 unsigned long ax;
239 unsigned long cx;
240 unsigned long dx;
241 unsigned long bx;
242 unsigned long sp;
243 unsigned long bp;
244 unsigned long si;
245 unsigned long di;
246 unsigned short es, __esh;
247 unsigned short cs, __csh;
248 unsigned short ss, __ssh;
249 unsigned short ds, __dsh;
250 unsigned short fs, __fsh;
251 unsigned short gs, __gsh;
252 unsigned short ldt, __ldth;
253 unsigned short trace;
254 unsigned short io_bitmap_base;
255
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100256} __attribute__((packed));
257#else
258struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100259 u32 reserved1;
260 u64 sp0;
261 u64 sp1;
262 u64 sp2;
263 u64 reserved2;
264 u64 ist[7];
265 u32 reserved3;
266 u32 reserved4;
267 u16 reserved5;
268 u16 io_bitmap_base;
269
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100270} __attribute__((packed)) ____cacheline_aligned;
271#endif
272
273/*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100274 * IO-bitmap sizes:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100275 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100276#define IO_BITMAP_BITS 65536
277#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
278#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
279#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
280#define INVALID_IO_BITMAP_OFFSET 0x8000
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100281
282struct tss_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100283 /*
284 * The hardware state:
285 */
286 struct x86_hw_tss x86_tss;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100287
288 /*
289 * The extra 1 is there because the CPU will access an
290 * additional byte beyond the end of the IO permission
291 * bitmap. The extra byte must be all 1 bits, and must
292 * be within the limit.
293 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100294 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100295
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100296 /*
Denys Vlasenkod828c712015-03-09 15:52:18 +0100297 * Space for the temporary SYSENTER stack:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100298 */
Denys Vlasenkod828c712015-03-09 15:52:18 +0100299 unsigned long SYSENTER_stack[64];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100300
Richard Kennedy84e65b02008-07-04 13:56:16 +0100301} ____cacheline_aligned;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100302
Andy Lutomirski24933b82015-03-05 19:19:05 -0800303DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss);
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100304
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800305#ifdef CONFIG_X86_32
306DECLARE_PER_CPU(unsigned long, cpu_current_top_of_stack);
307#endif
308
Ingo Molnar4d46a892008-02-21 04:24:40 +0100309/*
310 * Save the original ist values for checking stack pointers during debugging
311 */
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100312struct orig_ist {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100313 unsigned long ist[7];
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100314};
315
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100316#define MXCSR_DEFAULT 0x1f80
317
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100318struct i387_fsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100319 u32 cwd; /* FPU Control Word */
320 u32 swd; /* FPU Status Word */
321 u32 twd; /* FPU Tag Word */
322 u32 fip; /* FPU IP Offset */
323 u32 fcs; /* FPU IP Selector */
324 u32 foo; /* FPU Operand Pointer Offset */
325 u32 fos; /* FPU Operand Pointer Selector */
326
327 /* 8*10 bytes for each FP-reg = 80 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100328 u32 st_space[20];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100329
330 /* Software status information [not touched by FSAVE ]: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100331 u32 status;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100332};
333
334struct i387_fxsave_struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100335 u16 cwd; /* Control Word */
336 u16 swd; /* Status Word */
337 u16 twd; /* Tag Word */
338 u16 fop; /* Last Instruction Opcode */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100339 union {
340 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100341 u64 rip; /* Instruction Pointer */
342 u64 rdp; /* Data Pointer */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100343 };
344 struct {
Ingo Molnarca9cda22008-03-05 15:15:42 +0100345 u32 fip; /* FPU IP Offset */
346 u32 fcs; /* FPU IP Selector */
347 u32 foo; /* FPU Operand Offset */
348 u32 fos; /* FPU Operand Selector */
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100349 };
350 };
Ingo Molnarca9cda22008-03-05 15:15:42 +0100351 u32 mxcsr; /* MXCSR Register State */
352 u32 mxcsr_mask; /* MXCSR Mask */
353
354 /* 8*16 bytes for each FP-reg = 128 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100355 u32 st_space[32];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100356
357 /* 16*16 bytes for each XMM-reg = 256 bytes: */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100358 u32 xmm_space[64];
Ingo Molnarca9cda22008-03-05 15:15:42 +0100359
Suresh Siddhabdd8cab2008-07-29 10:29:24 -0700360 u32 padding[12];
361
362 union {
363 u32 padding1[12];
364 u32 sw_reserved[12];
365 };
Ingo Molnar4d46a892008-02-21 04:24:40 +0100366
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100367} __attribute__((aligned(16)));
368
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100369struct i387_soft_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100370 u32 cwd;
371 u32 swd;
372 u32 twd;
373 u32 fip;
374 u32 fcs;
375 u32 foo;
376 u32 fos;
377 /* 8*10 bytes for each FP-reg = 80 bytes: */
378 u32 st_space[20];
379 u8 ftop;
380 u8 changed;
381 u8 lookahead;
382 u8 no_update;
383 u8 rm;
384 u8 alimit;
Tejun Heoae6af412009-02-09 22:17:39 +0900385 struct math_emu_info *info;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100386 u32 entry_eip;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100387};
388
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700389struct ymmh_struct {
390 /* 16 * 16 bytes for each YMMH-reg = 256 bytes */
391 u32 ymmh_space[64];
392};
393
Ingo Molnar741e3902014-01-20 19:51:05 +0100394/* We don't support LWP yet: */
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800395struct lwp_struct {
Ingo Molnar741e3902014-01-20 19:51:05 +0100396 u8 reserved[128];
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800397};
398
Dave Hansenc04e0512014-10-31 14:58:20 -0700399struct bndreg {
400 u64 lower_bound;
401 u64 upper_bound;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800402} __packed;
403
Dave Hansen62e77592014-11-14 07:18:17 -0800404struct bndcsr {
405 u64 bndcfgu;
406 u64 bndstatus;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800407} __packed;
408
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700409struct xsave_hdr_struct {
410 u64 xstate_bv;
Fenghua Yu0b296432014-05-29 11:12:33 -0700411 u64 xcomp_bv;
412 u64 reserved[6];
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700413} __attribute__((packed));
414
415struct xsave_struct {
416 struct i387_fxsave_struct i387;
417 struct xsave_hdr_struct xsave_hdr;
Suresh Siddhaa30469e2009-04-10 15:21:24 -0700418 struct ymmh_struct ymmh;
Qiaowei Rene7d820a2013-12-05 17:15:34 +0800419 struct lwp_struct lwp;
Dave Hansenc04e0512014-10-31 14:58:20 -0700420 struct bndreg bndreg[4];
Dave Hansen62e77592014-11-14 07:18:17 -0800421 struct bndcsr bndcsr;
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700422 /* new processor state extensions will go here */
423} __attribute__ ((packed, aligned (64)));
424
Suresh Siddha61c46282008-03-10 15:28:04 -0700425union thread_xstate {
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100426 struct i387_fsave_struct fsave;
427 struct i387_fxsave_struct fxsave;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100428 struct i387_soft_struct soft;
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700429 struct xsave_struct xsave;
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100430};
431
Avi Kivity86603282010-05-06 11:45:46 +0300432struct fpu {
Linus Torvalds7e168382012-02-19 13:27:00 -0800433 unsigned int last_cpu;
434 unsigned int has_fpu;
Avi Kivity86603282010-05-06 11:45:46 +0300435 union thread_xstate *state;
436};
437
Glauber Costafe676202008-03-03 14:12:56 -0300438#ifdef CONFIG_X86_64
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100439DECLARE_PER_CPU(struct orig_ist, orig_ist);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900440
Brian Gerst947e76c2009-01-19 12:21:28 +0900441union irq_stack_union {
442 char irq_stack[IRQ_STACK_SIZE];
443 /*
444 * GCC hardcodes the stack canary as %gs:40. Since the
445 * irq_stack is the object at %gs:0, we reserve the bottom
446 * 48 bytes of the irq stack for the canary.
447 */
448 struct {
449 char gs_base[40];
450 unsigned long stack_canary;
451 };
452};
453
Andi Kleen277d5b42013-08-05 15:02:43 -0700454DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union) __visible;
Brian Gerst2add8e22009-02-08 09:58:39 -0500455DECLARE_INIT_PER_CPU(irq_stack_union);
456
Brian Gerst26f80bd2009-01-19 00:38:58 +0900457DECLARE_PER_CPU(char *, irq_stack_ptr);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530458DECLARE_PER_CPU(unsigned int, irq_count);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530459extern asmlinkage void ignore_sysret(void);
Tejun Heo60a53172009-02-09 22:17:40 +0900460#else /* X86_64 */
461#ifdef CONFIG_CC_STACKPROTECTOR
Jeremy Fitzhardinge1ea0d142009-09-03 12:27:15 -0700462/*
463 * Make sure stack canary segment base is cached-aligned:
464 * "For Intel Atom processors, avoid non zero segment base address
465 * that is not aligned to cache line boundary at all cost."
466 * (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
467 */
468struct stack_canary {
469 char __pad[20]; /* canary at %gs:20 */
470 unsigned long canary;
471};
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700472DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200473#endif
Steven Rostedt198d2082014-02-06 09:41:31 -0500474/*
475 * per-CPU IRQ handling stacks
476 */
477struct irq_stack {
478 u32 stack[THREAD_SIZE/sizeof(u32)];
479} __aligned(THREAD_SIZE);
480
481DECLARE_PER_CPU(struct irq_stack *, hardirq_stack);
482DECLARE_PER_CPU(struct irq_stack *, softirq_stack);
Tejun Heo60a53172009-02-09 22:17:40 +0900483#endif /* X86_64 */
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100484
Suresh Siddha61c46282008-03-10 15:28:04 -0700485extern unsigned int xstate_size;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700486extern void free_thread_xstate(struct task_struct *);
487extern struct kmem_cache *task_xstate_cachep;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100488
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200489struct perf_event;
490
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100491struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100492 /* Cached TLS descriptors: */
493 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
494 unsigned long sp0;
495 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100496#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100497 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100498#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100499 unsigned short es;
500 unsigned short ds;
501 unsigned short fsindex;
502 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100503#endif
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400504#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100505 unsigned long ip;
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400506#endif
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400507#ifdef CONFIG_X86_64
Ingo Molnar4d46a892008-02-21 04:24:40 +0100508 unsigned long fs;
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400509#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100510 unsigned long gs;
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200511 /* Save middle states of ptrace breakpoints */
512 struct perf_event *ptrace_bps[HBP_NUM];
513 /* Debug status used for traps, single steps, etc... */
514 unsigned long debugreg6;
Frederic Weisbecker326264a2010-02-18 18:24:18 +0100515 /* Keep track of the exact dr7 value set by the user */
516 unsigned long ptrace_dr7;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100517 /* Fault info: */
518 unsigned long cr2;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530519 unsigned long trap_nr;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100520 unsigned long error_code;
Suresh Siddha61c46282008-03-10 15:28:04 -0700521 /* floating point and extended processor state */
Avi Kivity86603282010-05-06 11:45:46 +0300522 struct fpu fpu;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100523#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100524 /* Virtual 86 mode info */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100525 struct vm86_struct __user *vm86_info;
526 unsigned long screen_bitmap;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100527 unsigned long v86flags;
528 unsigned long v86mask;
529 unsigned long saved_sp0;
530 unsigned int saved_fs;
531 unsigned int saved_gs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100532#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100533 /* IO permissions: */
534 unsigned long *io_bitmap_ptr;
535 unsigned long iopl;
536 /* Max allowed port in the bitmap, in bytes: */
537 unsigned io_bitmap_max;
Vineet Guptac375f152013-11-12 15:08:46 -0800538 /*
539 * fpu_counter contains the number of consecutive context switches
540 * that the FPU is used. If this is over a threshold, the lazy fpu
541 * saving becomes unlazy to save the trap. This is an unsigned char
542 * so that after 256 times the counter wraps and the behavior turns
543 * lazy again; this to deal with bursty apps that only use FPU for
544 * a short time
545 */
546 unsigned char fpu_counter;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100547};
548
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100549/*
550 * Set IOPL bits in EFLAGS from given mask
551 */
552static inline void native_set_iopl_mask(unsigned mask)
553{
554#ifdef CONFIG_X86_32
555 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100556
Joe Perchescca2e6f2008-03-23 01:03:15 -0700557 asm volatile ("pushfl;"
558 "popl %0;"
559 "andl %1, %0;"
560 "orl %2, %0;"
561 "pushl %0;"
562 "popfl"
563 : "=&r" (reg)
564 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100565#endif
566}
567
Ingo Molnar4d46a892008-02-21 04:24:40 +0100568static inline void
569native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100570{
571 tss->x86_tss.sp0 = thread->sp0;
572#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100573 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100574 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
575 tss->x86_tss.ss1 = thread->sysenter_cs;
576 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
577 }
578#endif
579}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100580
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100581static inline void native_swapgs(void)
582{
583#ifdef CONFIG_X86_64
584 asm volatile("swapgs" ::: "memory");
585#endif
586}
587
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800588static inline unsigned long current_top_of_stack(void)
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800589{
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800590#ifdef CONFIG_X86_64
Andy Lutomirski24933b82015-03-05 19:19:05 -0800591 return this_cpu_read_stable(cpu_tss.x86_tss.sp0);
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800592#else
593 /* sp0 on x86_32 is special in and around vm86 mode. */
594 return this_cpu_read_stable(cpu_current_top_of_stack);
595#endif
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800596}
597
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100598#ifdef CONFIG_PARAVIRT
599#include <asm/paravirt.h>
600#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100601#define __cpuid native_cpuid
602#define paravirt_enabled() 0
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100603
Joe Perchescca2e6f2008-03-23 01:03:15 -0700604static inline void load_sp0(struct tss_struct *tss,
605 struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100606{
607 native_load_sp0(tss, thread);
608}
609
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100610#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100611#endif /* CONFIG_PARAVIRT */
612
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100613typedef struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100614 unsigned long seg;
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100615} mm_segment_t;
616
617
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100618/* Free all resources held by a thread. */
619extern void release_thread(struct task_struct *);
620
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100621unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100622
623/*
624 * Generic CPUID function
625 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
626 * resulting in stale register contents being returned.
627 */
628static inline void cpuid(unsigned int op,
629 unsigned int *eax, unsigned int *ebx,
630 unsigned int *ecx, unsigned int *edx)
631{
632 *eax = op;
633 *ecx = 0;
634 __cpuid(eax, ebx, ecx, edx);
635}
636
637/* Some CPUID calls want 'count' to be placed in ecx */
638static inline void cpuid_count(unsigned int op, int count,
639 unsigned int *eax, unsigned int *ebx,
640 unsigned int *ecx, unsigned int *edx)
641{
642 *eax = op;
643 *ecx = count;
644 __cpuid(eax, ebx, ecx, edx);
645}
646
647/*
648 * CPUID functions returning a single datum
649 */
650static inline unsigned int cpuid_eax(unsigned int op)
651{
652 unsigned int eax, ebx, ecx, edx;
653
654 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100655
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100656 return eax;
657}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100658
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100659static inline unsigned int cpuid_ebx(unsigned int op)
660{
661 unsigned int eax, ebx, ecx, edx;
662
663 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100664
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100665 return ebx;
666}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100667
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100668static inline unsigned int cpuid_ecx(unsigned int op)
669{
670 unsigned int eax, ebx, ecx, edx;
671
672 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100673
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100674 return ecx;
675}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100676
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100677static inline unsigned int cpuid_edx(unsigned int op)
678{
679 unsigned int eax, ebx, ecx, edx;
680
681 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100682
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100683 return edx;
684}
685
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100686/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
687static inline void rep_nop(void)
688{
Joe Perchescca2e6f2008-03-23 01:03:15 -0700689 asm volatile("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100690}
691
Ingo Molnar4d46a892008-02-21 04:24:40 +0100692static inline void cpu_relax(void)
693{
694 rep_nop();
695}
696
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700697#define cpu_relax_lowlatency() cpu_relax()
698
Ben Hutchings5367b6882009-09-10 02:53:50 +0100699/* Stop speculative execution and prefetching of modified code. */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100700static inline void sync_core(void)
701{
702 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100703
H. Peter Anvineb068e72012-11-28 11:50:23 -0800704#ifdef CONFIG_M486
H. Peter Anvin45c39fb2012-11-28 11:50:30 -0800705 /*
706 * Do a CPUID if available, otherwise do a jump. The jump
707 * can conveniently enough be the jump around CPUID.
708 */
709 asm volatile("cmpl %2,%1\n\t"
710 "jl 1f\n\t"
711 "cpuid\n"
712 "1:"
713 : "=a" (tmp)
714 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
715 : "ebx", "ecx", "edx", "memory");
716#else
717 /*
718 * CPUID is a barrier to speculative execution.
719 * Prefetched instructions are automatically
720 * invalidated when modified.
721 */
722 asm volatile("cpuid"
723 : "=a" (tmp)
724 : "0" (1)
725 : "ebx", "ecx", "edx", "memory");
Ben Hutchings5367b6882009-09-10 02:53:50 +0100726#endif
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100727}
728
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100729extern void select_idle_routine(const struct cpuinfo_x86 *c);
Len Brown02c68a02011-04-01 16:59:53 -0400730extern void init_amd_e400_c1e_mask(void);
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100731
Ingo Molnar4d46a892008-02-21 04:24:40 +0100732extern unsigned long boot_option_idle_override;
Len Brown02c68a02011-04-01 16:59:53 -0400733extern bool amd_e400_c1e_detected;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100734
Thomas Renningerd1896042010-11-03 17:06:14 +0100735enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
Len Brown69fb3672013-02-10 01:38:39 -0500736 IDLE_POLL};
Thomas Renningerd1896042010-11-03 17:06:14 +0100737
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100738extern void enable_sep_cpu(void);
739extern int sysenter_setup(void);
740
Jan Kiszka29c84392010-05-20 21:04:29 -0500741extern void early_trap_init(void);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800742void early_trap_pf_init(void);
Jan Kiszka29c84392010-05-20 21:04:29 -0500743
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100744/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100745extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100746
747extern void cpu_set_gdt(int);
Brian Gerst552be872009-01-30 17:47:53 +0900748extern void switch_to_new_gdt(int);
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900749extern void load_percpu_segment(int);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100750extern void cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100751
Markus Metzgerc2724772008-12-11 13:49:59 +0100752static inline unsigned long get_debugctlmsr(void)
753{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100754 unsigned long debugctlmsr = 0;
Markus Metzgerc2724772008-12-11 13:49:59 +0100755
756#ifndef CONFIG_X86_DEBUGCTLMSR
757 if (boot_cpu_data.x86 < 6)
758 return 0;
759#endif
760 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
761
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100762 return debugctlmsr;
Markus Metzgerc2724772008-12-11 13:49:59 +0100763}
764
Jan Beulich5b0e5082008-03-10 13:11:17 +0000765static inline void update_debugctlmsr(unsigned long debugctlmsr)
766{
767#ifndef CONFIG_X86_DEBUGCTLMSR
768 if (boot_cpu_data.x86 < 6)
769 return;
770#endif
771 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
772}
773
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200774extern void set_task_blockstep(struct task_struct *task, bool on);
775
Ingo Molnar4d46a892008-02-21 04:24:40 +0100776/*
777 * from system description table in BIOS. Mostly for MCA use, but
778 * others may find it useful:
779 */
780extern unsigned int machine_id;
781extern unsigned int machine_submodel_id;
782extern unsigned int BIOS_revision;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100783
Ingo Molnar4d46a892008-02-21 04:24:40 +0100784/* Boot loader type from the setup header: */
785extern int bootloader_type;
H. Peter Anvin50312962009-05-07 16:54:11 -0700786extern int bootloader_version;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100787
Ingo Molnar4d46a892008-02-21 04:24:40 +0100788extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100789
790#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
791#define ARCH_HAS_PREFETCHW
792#define ARCH_HAS_SPINLOCK_PREFETCH
793
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100794#ifdef CONFIG_X86_32
Borislav Petkova930dc42015-01-18 17:48:18 +0100795# define BASE_PREFETCH ""
Ingo Molnar4d46a892008-02-21 04:24:40 +0100796# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100797#else
Borislav Petkova930dc42015-01-18 17:48:18 +0100798# define BASE_PREFETCH "prefetcht0 %P1"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100799#endif
800
Ingo Molnar4d46a892008-02-21 04:24:40 +0100801/*
802 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
803 *
804 * It's not worth to care about 3dnow prefetches for the K6
805 * because they are microcoded there and very slow.
806 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100807static inline void prefetch(const void *x)
808{
Borislav Petkova930dc42015-01-18 17:48:18 +0100809 alternative_input(BASE_PREFETCH, "prefetchnta %P1",
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100810 X86_FEATURE_XMM,
Borislav Petkova930dc42015-01-18 17:48:18 +0100811 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100812}
813
Ingo Molnar4d46a892008-02-21 04:24:40 +0100814/*
815 * 3dnow prefetch to get an exclusive cache line.
816 * Useful for spinlocks to avoid one state transition in the
817 * cache coherency protocol:
818 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100819static inline void prefetchw(const void *x)
820{
Borislav Petkova930dc42015-01-18 17:48:18 +0100821 alternative_input(BASE_PREFETCH, "prefetchw %P1",
822 X86_FEATURE_3DNOWPREFETCH,
823 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100824}
825
Ingo Molnar4d46a892008-02-21 04:24:40 +0100826static inline void spin_lock_prefetch(const void *x)
827{
828 prefetchw(x);
829}
830
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700831#define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \
832 TOP_OF_KERNEL_STACK_PADDING)
833
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100834#ifdef CONFIG_X86_32
835/*
836 * User space process size: 3GB (default).
837 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100838#define TASK_SIZE PAGE_OFFSET
Ingo Molnard9517342009-02-20 23:32:28 +0100839#define TASK_SIZE_MAX TASK_SIZE
Ingo Molnar4d46a892008-02-21 04:24:40 +0100840#define STACK_TOP TASK_SIZE
841#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100842
Ingo Molnar4d46a892008-02-21 04:24:40 +0100843#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700844 .sp0 = TOP_OF_INIT_STACK, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100845 .vm86_info = NULL, \
846 .sysenter_cs = __KERNEL_CS, \
847 .io_bitmap_ptr = NULL, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100848}
849
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100850extern unsigned long thread_saved_pc(struct task_struct *tsk);
851
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100852/*
Denys Vlasenko5c394032015-03-13 15:09:03 +0100853 * TOP_OF_KERNEL_STACK_PADDING reserves 8 bytes on top of the ring0 stack.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100854 * This is necessary to guarantee that the entire "struct pt_regs"
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400855 * is accessible even if the CPU haven't stored the SS/ESP registers
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100856 * on the stack (interrupt gate does not save these registers
857 * when switching to the same priv ring).
858 * Therefore beware: accessing the ss/esp fields of the
859 * "struct pt_regs" is possible, but they may contain the
860 * completely wrong values.
861 */
Denys Vlasenko5c394032015-03-13 15:09:03 +0100862#define task_pt_regs(task) \
863({ \
864 unsigned long __ptr = (unsigned long)task_stack_page(task); \
865 __ptr += THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING; \
866 ((struct pt_regs *)__ptr) - 1; \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100867})
868
Ingo Molnar4d46a892008-02-21 04:24:40 +0100869#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100870
871#else
872/*
Andy Lutomirski07114f02014-11-04 15:46:21 -0800873 * User space process size. 47bits minus one guard page. The guard
874 * page is necessary on Intel CPUs: if a SYSCALL instruction is at
875 * the highest possible canonical userspace address, then that
876 * syscall will enter the kernel with a non-canonical return
877 * address, and SYSRET will explode dangerously. We avoid this
878 * particular problem by preventing anything from being mapped
879 * at the maximum canonical address.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100880 */
Ingo Molnard9517342009-02-20 23:32:28 +0100881#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100882
883/* This decides where the kernel will search for a free chunk of vm
884 * space during mmap's.
885 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100886#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
887 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100888
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800889#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100890 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800891#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100892 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100893
David Howells922a70d2008-02-08 04:19:26 -0800894#define STACK_TOP TASK_SIZE
Ingo Molnard9517342009-02-20 23:32:28 +0100895#define STACK_TOP_MAX TASK_SIZE_MAX
David Howells922a70d2008-02-08 04:19:26 -0800896
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100897#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700898 .sp0 = TOP_OF_INIT_STACK \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100899}
900
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100901/*
902 * Return saved PC of a blocked thread.
903 * What is this good for? it will be always the scheduler or ret_from_fork.
904 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100905#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100906
Ingo Molnar4d46a892008-02-21 04:24:40 +0100907#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
Stefani Seibold89240ba2009-11-03 10:22:40 +0100908extern unsigned long KSTK_ESP(struct task_struct *task);
H. J. Lud046ff82012-02-14 13:49:48 -0800909
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100910#endif /* CONFIG_X86_64 */
911
Ingo Molnar513ad842008-02-21 05:18:40 +0100912extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
913 unsigned long new_sp);
914
Ingo Molnar4d46a892008-02-21 04:24:40 +0100915/*
916 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100917 * space during mmap's.
918 */
919#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
920
Ingo Molnar4d46a892008-02-21 04:24:40 +0100921#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100922
Erik Bosman529e25f2008-04-14 00:24:18 +0200923/* Get/set a process' ability to use the timestamp counter instruction */
924#define GET_TSC_CTL(adr) get_tsc_mode((adr))
925#define SET_TSC_CTL(val) set_tsc_mode((val))
926
927extern int get_tsc_mode(unsigned long adr);
928extern int set_tsc_mode(unsigned int val);
929
Dave Hansenfe3d1972014-11-14 07:18:29 -0800930/* Register/unregister a process' MPX related resource */
931#define MPX_ENABLE_MANAGEMENT(tsk) mpx_enable_management((tsk))
932#define MPX_DISABLE_MANAGEMENT(tsk) mpx_disable_management((tsk))
933
934#ifdef CONFIG_X86_INTEL_MPX
935extern int mpx_enable_management(struct task_struct *tsk);
936extern int mpx_disable_management(struct task_struct *tsk);
937#else
938static inline int mpx_enable_management(struct task_struct *tsk)
939{
940 return -EINVAL;
941}
942static inline int mpx_disable_management(struct task_struct *tsk)
943{
944 return -EINVAL;
945}
946#endif /* CONFIG_X86_INTEL_MPX */
947
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +0800948extern u16 amd_get_nb_id(int cpu);
Andreas Herrmann6a812692009-09-16 11:33:40 +0200949
Jason Wang96e39ac2013-07-25 16:54:32 +0800950static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
951{
952 uint32_t base, eax, signature[3];
953
954 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
955 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
956
957 if (!memcmp(sig, signature, 12) &&
958 (leaves == 0 || ((eax - base) >= leaves)))
959 return base;
960 }
961
962 return 0;
963}
964
David Howellsf05e7982012-03-28 18:11:12 +0100965extern unsigned long arch_align_stack(unsigned long sp);
966extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
967
968void default_idle(void);
Len Brown6a377dd2013-02-09 23:08:07 -0500969#ifdef CONFIG_XEN
970bool xen_set_default_idle(void);
971#else
972#define xen_set_default_idle 0
973#endif
David Howellsf05e7982012-03-28 18:11:12 +0100974
975void stop_this_cpu(void *dummy);
Borislav Petkov4d067d82013-05-09 12:02:29 +0200976void df_debug(struct pt_regs *regs, long error_code);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700977#endif /* _ASM_X86_PROCESSOR_H */