blob: 63def9537a2d249f5814cf73fac20f7d8873e232 [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;
Brian Gerst9fda6a02015-07-29 01:41:16 -04009struct vm86;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +010010
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010011#include <asm/math_emu.h>
12#include <asm/segment.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010013#include <asm/types.h>
Ingo Molnardecb4c42015-09-05 09:32:43 +020014#include <uapi/asm/sigcontext.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010015#include <asm/current.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010016#include <asm/cpufeatures.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 Molnar14b96752015-04-22 09:57:24 +020024#include <asm/fpu/types.h>
Ingo Molnar4d46a892008-02-21 04:24:40 +010025
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010026#include <linux/personality.h>
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010027#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
Ingo Molnarb8c1b8ea2015-05-24 09:58:12 +020055/*
56 * These alignment constraints are for performance in the vSMP case,
57 * but in the task_struct case we must also meet hardware imposed
58 * alignment requirements of the FPU state:
59 */
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010060#ifdef CONFIG_X86_VSMP
Ingo Molnar4d46a892008-02-21 04:24:40 +010061# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
62# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010063#else
Ingo Molnarb8c1b8ea2015-05-24 09:58:12 +020064# define ARCH_MIN_TASKALIGN __alignof__(union fpregs_state)
Ingo Molnar4d46a892008-02-21 04:24:40 +010065# define ARCH_MIN_MMSTRUCT_ALIGN 0
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010066#endif
67
Alex Shie0ba94f2012-06-28 09:02:16 +080068enum tlb_infos {
69 ENTRIES,
70 NR_INFO
71};
72
73extern u16 __read_mostly tlb_lli_4k[NR_INFO];
74extern u16 __read_mostly tlb_lli_2m[NR_INFO];
75extern u16 __read_mostly tlb_lli_4m[NR_INFO];
76extern u16 __read_mostly tlb_lld_4k[NR_INFO];
77extern u16 __read_mostly tlb_lld_2m[NR_INFO];
78extern u16 __read_mostly tlb_lld_4m[NR_INFO];
Kirill A. Shutemovdd360392013-12-23 14:16:58 +020079extern u16 __read_mostly tlb_lld_1g[NR_INFO];
Alex Shic4211f42012-06-28 09:02:19 +080080
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010081/*
82 * CPU type and hardware bug flags. Kept separately for each CPU.
83 * Members of this structure are referenced in head.S, so think twice
84 * before touching them. [mj]
85 */
86
87struct cpuinfo_x86 {
Ingo Molnar4d46a892008-02-21 04:24:40 +010088 __u8 x86; /* CPU family */
89 __u8 x86_vendor; /* CPU vendor */
90 __u8 x86_model;
91 __u8 x86_mask;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010092#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +010093 char wp_works_ok; /* It doesn't on 386's */
94
95 /* Problems on some 486Dx4's and old 386's: */
Ingo Molnar4d46a892008-02-21 04:24:40 +010096 char rfu;
Ingo Molnar4d46a892008-02-21 04:24:40 +010097 char pad0;
H. Peter Anvin60e019e2013-04-29 16:04:20 +020098 char pad1;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010099#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100100 /* Number of 4K pages in DTLB/ITLB combined(in pages): */
H. Peter Anvinb1882e62009-01-23 17:18:52 -0800101 int x86_tlbsize;
Jan Beulich13c6c532009-03-12 12:37:34 +0000102#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100103 __u8 x86_virt_bits;
104 __u8 x86_phys_bits;
105 /* CPUID returned core id bits: */
106 __u8 x86_coreid_bits;
107 /* Max extended CPUID function supported: */
108 __u32 extended_cpuid_level;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100109 /* Maximum supported CPUID level, -1=no CPUID: */
110 int cpuid_level;
Borislav Petkov65fc9852013-03-20 15:07:23 +0100111 __u32 x86_capability[NCAPINTS + NBUGINTS];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100112 char x86_vendor_id[16];
113 char x86_model_id[64];
114 /* in KB - valid for CPUS which support this call: */
115 int x86_cache_size;
116 int x86_cache_alignment; /* In bytes */
Peter P Waskiewicz Jrcbc82b12015-01-23 18:45:43 +0000117 /* Cache QoS architectural values: */
118 int x86_cache_max_rmid; /* max index */
119 int x86_cache_occ_scale; /* scale to bytes */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100120 int x86_power;
121 unsigned long loops_per_jiffy;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100122 /* cpuid returned max cores value: */
123 u16 x86_max_cores;
124 u16 apicid;
Yinghai Lu01aaea12008-03-06 13:46:39 -0800125 u16 initial_apicid;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100126 u16 x86_clflush_size;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100127 /* number of cores as seen by the OS: */
128 u16 booted_cores;
129 /* Physical processor id: */
130 u16 phys_proc_id;
Thomas Gleixner1f12e322016-02-22 22:19:15 +0000131 /* Logical processor id: */
132 u16 logical_proc_id;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100133 /* Core id: */
134 u16 cpu_core_id;
135 /* Index into per_cpu list: */
136 u16 cpu_index;
Andi Kleen506ed6b2011-10-12 17:46:33 -0700137 u32 microcode;
Jan Beulich2c773dd2014-11-04 08:26:42 +0000138};
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100139
Ingo Molnar4d46a892008-02-21 04:24:40 +0100140#define X86_VENDOR_INTEL 0
141#define X86_VENDOR_CYRIX 1
142#define X86_VENDOR_AMD 2
143#define X86_VENDOR_UMC 3
Ingo Molnar4d46a892008-02-21 04:24:40 +0100144#define X86_VENDOR_CENTAUR 5
145#define X86_VENDOR_TRANSMETA 7
146#define X86_VENDOR_NSC 8
147#define X86_VENDOR_NUM 9
148
149#define X86_VENDOR_UNKNOWN 0xff
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100150
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100151/*
152 * capabilities of CPUs
153 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100154extern struct cpuinfo_x86 boot_cpu_data;
155extern struct cpuinfo_x86 new_cpu_data;
156
157extern struct tss_struct doublefault_tss;
Yinghai Lu3e0c3732009-05-09 23:47:42 -0700158extern __u32 cpu_caps_cleared[NCAPINTS];
159extern __u32 cpu_caps_set[NCAPINTS];
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100160
161#ifdef CONFIG_SMP
Jan Beulich2c773dd2014-11-04 08:26:42 +0000162DECLARE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100163#define cpu_data(cpu) per_cpu(cpu_info, cpu)
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100164#else
Tejun Heo7b543a52010-12-18 16:30:05 +0100165#define cpu_info boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100166#define cpu_data(cpu) boot_cpu_data
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100167#endif
168
Jaswinder Singh1c6c7272008-07-21 22:40:37 +0530169extern const struct seq_operations cpuinfo_op;
170
Ingo Molnar4d46a892008-02-21 04:24:40 +0100171#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
172
173extern void cpu_detect(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100174
Yinghai Luf5803662008-06-21 03:24:19 -0700175extern void early_cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100176extern void identify_boot_cpu(void);
177extern void identify_secondary_cpu(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100178extern void print_cpu_info(struct cpuinfo_x86 *);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800179void print_cpu_msr(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100180extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
181extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
Andreas Herrmann04a15412012-10-19 10:59:33 +0200182extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100183
Suresh Siddhabbb65d22008-08-23 17:47:10 +0200184extern void detect_extended_topology(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100185extern void detect_ht(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100186
Fenghua Yud288e1c2012-12-20 23:44:23 -0800187#ifdef CONFIG_X86_32
188extern int have_cpuid_p(void);
189#else
190static inline int have_cpuid_p(void)
191{
192 return 1;
193}
194#endif
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100195static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
Ingo Molnar4d46a892008-02-21 04:24:40 +0100196 unsigned int *ecx, unsigned int *edx)
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100197{
198 /* ecx is often an input as well as an output. */
Suresh Siddha45a94d72009-12-16 16:25:42 -0800199 asm volatile("cpuid"
Joe Perchescca2e6f2008-03-23 01:03:15 -0700200 : "=a" (*eax),
201 "=b" (*ebx),
202 "=c" (*ecx),
203 "=d" (*edx)
Andi Kleen506ed6b2011-10-12 17:46:33 -0700204 : "0" (*eax), "2" (*ecx)
205 : "memory");
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100206}
207
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +0100208static inline void load_cr3(pgd_t *pgdir)
209{
210 write_cr3(__pa(pgdir));
211}
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100212
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200213#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100214/* This is the TSS defined by the hardware. */
215struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100216 unsigned short back_link, __blh;
217 unsigned long sp0;
218 unsigned short ss0, __ss0h;
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700219 unsigned long sp1;
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700220
221 /*
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700222 * We don't use ring 1, so ss1 is a convenient scratch space in
223 * the same cacheline as sp0. We use ss1 to cache the value in
224 * MSR_IA32_SYSENTER_CS. When we context switch
225 * MSR_IA32_SYSENTER_CS, we first check if the new value being
226 * written matches ss1, and, if it's not, then we wrmsr the new
227 * value and update ss1.
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700228 *
Andy Lutomirskicf9328c2015-04-02 12:41:45 -0700229 * The only reason we context switch MSR_IA32_SYSENTER_CS is
230 * that we set it to zero in vm86 tasks to avoid corrupting the
231 * stack if we were to go through the sysenter path from vm86
232 * mode.
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700233 */
Andy Lutomirski76e4c492015-03-10 11:06:00 -0700234 unsigned short ss1; /* MSR_IA32_SYSENTER_CS */
235
236 unsigned short __ss1h;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100237 unsigned long sp2;
238 unsigned short ss2, __ss2h;
239 unsigned long __cr3;
240 unsigned long ip;
241 unsigned long flags;
242 unsigned long ax;
243 unsigned long cx;
244 unsigned long dx;
245 unsigned long bx;
246 unsigned long sp;
247 unsigned long bp;
248 unsigned long si;
249 unsigned long di;
250 unsigned short es, __esh;
251 unsigned short cs, __csh;
252 unsigned short ss, __ssh;
253 unsigned short ds, __dsh;
254 unsigned short fs, __fsh;
255 unsigned short gs, __gsh;
256 unsigned short ldt, __ldth;
257 unsigned short trace;
258 unsigned short io_bitmap_base;
259
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100260} __attribute__((packed));
261#else
262struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100263 u32 reserved1;
264 u64 sp0;
265 u64 sp1;
266 u64 sp2;
267 u64 reserved2;
268 u64 ist[7];
269 u32 reserved3;
270 u32 reserved4;
271 u16 reserved5;
272 u16 io_bitmap_base;
273
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100274} __attribute__((packed)) ____cacheline_aligned;
275#endif
276
277/*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100278 * IO-bitmap sizes:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100279 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100280#define IO_BITMAP_BITS 65536
281#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
282#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
283#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
284#define INVALID_IO_BITMAP_OFFSET 0x8000
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100285
286struct tss_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100287 /*
288 * The hardware state:
289 */
290 struct x86_hw_tss x86_tss;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100291
292 /*
293 * The extra 1 is there because the CPU will access an
294 * additional byte beyond the end of the IO permission
295 * bitmap. The extra byte must be all 1 bits, and must
296 * be within the limit.
297 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100298 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
Ingo Molnar4d46a892008-02-21 04:24:40 +0100299
Andy Lutomirski6dcc9412016-03-09 19:00:31 -0800300#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100301 /*
Andy Lutomirski2a41aa42016-03-09 19:00:33 -0800302 * Space for the temporary SYSENTER stack.
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100303 */
Andy Lutomirski2a41aa42016-03-09 19:00:33 -0800304 unsigned long SYSENTER_stack_canary;
Denys Vlasenkod828c712015-03-09 15:52:18 +0100305 unsigned long SYSENTER_stack[64];
Andy Lutomirski6dcc9412016-03-09 19:00:31 -0800306#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100307
Richard Kennedy84e65b02008-07-04 13:56:16 +0100308} ____cacheline_aligned;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100309
Andy Lutomirski24933b82015-03-05 19:19:05 -0800310DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss);
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100311
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800312#ifdef CONFIG_X86_32
313DECLARE_PER_CPU(unsigned long, cpu_current_top_of_stack);
314#endif
315
Ingo Molnar4d46a892008-02-21 04:24:40 +0100316/*
317 * Save the original ist values for checking stack pointers during debugging
318 */
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100319struct orig_ist {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100320 unsigned long ist[7];
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100321};
322
Glauber Costafe676202008-03-03 14:12:56 -0300323#ifdef CONFIG_X86_64
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100324DECLARE_PER_CPU(struct orig_ist, orig_ist);
Brian Gerst26f80bd2009-01-19 00:38:58 +0900325
Brian Gerst947e76c2009-01-19 12:21:28 +0900326union irq_stack_union {
327 char irq_stack[IRQ_STACK_SIZE];
328 /*
329 * GCC hardcodes the stack canary as %gs:40. Since the
330 * irq_stack is the object at %gs:0, we reserve the bottom
331 * 48 bytes of the irq stack for the canary.
332 */
333 struct {
334 char gs_base[40];
335 unsigned long stack_canary;
336 };
337};
338
Andi Kleen277d5b42013-08-05 15:02:43 -0700339DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union) __visible;
Brian Gerst2add8e22009-02-08 09:58:39 -0500340DECLARE_INIT_PER_CPU(irq_stack_union);
341
Brian Gerst26f80bd2009-01-19 00:38:58 +0900342DECLARE_PER_CPU(char *, irq_stack_ptr);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530343DECLARE_PER_CPU(unsigned int, irq_count);
Jaswinder Singh Rajput9766cdb2009-03-14 11:19:49 +0530344extern asmlinkage void ignore_sysret(void);
Tejun Heo60a53172009-02-09 22:17:40 +0900345#else /* X86_64 */
346#ifdef CONFIG_CC_STACKPROTECTOR
Jeremy Fitzhardinge1ea0d142009-09-03 12:27:15 -0700347/*
348 * Make sure stack canary segment base is cached-aligned:
349 * "For Intel Atom processors, avoid non zero segment base address
350 * that is not aligned to cache line boundary at all cost."
351 * (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
352 */
353struct stack_canary {
354 char __pad[20]; /* canary at %gs:20 */
355 unsigned long canary;
356};
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700357DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200358#endif
Steven Rostedt198d2082014-02-06 09:41:31 -0500359/*
360 * per-CPU IRQ handling stacks
361 */
362struct irq_stack {
363 u32 stack[THREAD_SIZE/sizeof(u32)];
364} __aligned(THREAD_SIZE);
365
366DECLARE_PER_CPU(struct irq_stack *, hardirq_stack);
367DECLARE_PER_CPU(struct irq_stack *, softirq_stack);
Tejun Heo60a53172009-02-09 22:17:40 +0900368#endif /* X86_64 */
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100369
Fenghua Yubf15a8c2016-05-20 10:47:06 -0700370extern unsigned int fpu_kernel_xstate_size;
Fenghua Yua1141e02016-05-20 10:47:05 -0700371extern unsigned int fpu_user_xstate_size;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100372
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200373struct perf_event;
374
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700375typedef struct {
376 unsigned long seg;
377} mm_segment_t;
378
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100379struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100380 /* Cached TLS descriptors: */
381 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
382 unsigned long sp0;
383 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100384#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100385 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100386#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100387 unsigned short es;
388 unsigned short ds;
389 unsigned short fsindex;
390 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100391#endif
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400392#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100393 unsigned long ip;
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400394#endif
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400395#ifdef CONFIG_X86_64
Andy Lutomirski296f7812016-04-26 12:23:29 -0700396 unsigned long fsbase;
397 unsigned long gsbase;
398#else
399 /*
400 * XXX: this could presumably be unsigned short. Alternatively,
401 * 32-bit kernels could be taught to use fsindex instead.
402 */
403 unsigned long fs;
404 unsigned long gs;
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400405#endif
Ingo Molnarc5bedc62015-04-23 12:49:20 +0200406
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200407 /* Save middle states of ptrace breakpoints */
408 struct perf_event *ptrace_bps[HBP_NUM];
409 /* Debug status used for traps, single steps, etc... */
410 unsigned long debugreg6;
Frederic Weisbecker326264a2010-02-18 18:24:18 +0100411 /* Keep track of the exact dr7 value set by the user */
412 unsigned long ptrace_dr7;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100413 /* Fault info: */
414 unsigned long cr2;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530415 unsigned long trap_nr;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100416 unsigned long error_code;
Brian Gerst9fda6a02015-07-29 01:41:16 -0400417#ifdef CONFIG_VM86
Ingo Molnar4d46a892008-02-21 04:24:40 +0100418 /* Virtual 86 mode info */
Brian Gerst9fda6a02015-07-29 01:41:16 -0400419 struct vm86 *vm86;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100420#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100421 /* IO permissions: */
422 unsigned long *io_bitmap_ptr;
423 unsigned long iopl;
424 /* Max allowed port in the bitmap, in bytes: */
425 unsigned io_bitmap_max;
Dave Hansen0c8c0f02015-07-17 12:28:11 +0200426
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700427 mm_segment_t addr_limit;
428
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200429 unsigned int sig_on_uaccess_err:1;
Andy Lutomirskidfa9a942016-07-14 13:22:56 -0700430 unsigned int uaccess_err:1; /* uaccess failed */
431
Dave Hansen0c8c0f02015-07-17 12:28:11 +0200432 /* Floating point and extended processor state */
433 struct fpu fpu;
434 /*
435 * WARNING: 'fpu' is dynamically-sized. It *MUST* be at
436 * the end.
437 */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100438};
439
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100440/*
441 * Set IOPL bits in EFLAGS from given mask
442 */
443static inline void native_set_iopl_mask(unsigned mask)
444{
445#ifdef CONFIG_X86_32
446 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100447
Joe Perchescca2e6f2008-03-23 01:03:15 -0700448 asm volatile ("pushfl;"
449 "popl %0;"
450 "andl %1, %0;"
451 "orl %2, %0;"
452 "pushl %0;"
453 "popfl"
454 : "=&r" (reg)
455 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100456#endif
457}
458
Ingo Molnar4d46a892008-02-21 04:24:40 +0100459static inline void
460native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100461{
462 tss->x86_tss.sp0 = thread->sp0;
463#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100464 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100465 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
466 tss->x86_tss.ss1 = thread->sysenter_cs;
467 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
468 }
469#endif
470}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100471
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100472static inline void native_swapgs(void)
473{
474#ifdef CONFIG_X86_64
475 asm volatile("swapgs" ::: "memory");
476#endif
477}
478
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800479static inline unsigned long current_top_of_stack(void)
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800480{
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800481#ifdef CONFIG_X86_64
Andy Lutomirski24933b82015-03-05 19:19:05 -0800482 return this_cpu_read_stable(cpu_tss.x86_tss.sp0);
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800483#else
484 /* sp0 on x86_32 is special in and around vm86 mode. */
485 return this_cpu_read_stable(cpu_current_top_of_stack);
486#endif
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800487}
488
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100489#ifdef CONFIG_PARAVIRT
490#include <asm/paravirt.h>
491#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100492#define __cpuid native_cpuid
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100493
Joe Perchescca2e6f2008-03-23 01:03:15 -0700494static inline void load_sp0(struct tss_struct *tss,
495 struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100496{
497 native_load_sp0(tss, thread);
498}
499
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100500#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100501#endif /* CONFIG_PARAVIRT */
502
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100503/* Free all resources held by a thread. */
504extern void release_thread(struct task_struct *);
505
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100506unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100507
508/*
509 * Generic CPUID function
510 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
511 * resulting in stale register contents being returned.
512 */
513static inline void cpuid(unsigned int op,
514 unsigned int *eax, unsigned int *ebx,
515 unsigned int *ecx, unsigned int *edx)
516{
517 *eax = op;
518 *ecx = 0;
519 __cpuid(eax, ebx, ecx, edx);
520}
521
522/* Some CPUID calls want 'count' to be placed in ecx */
523static inline void cpuid_count(unsigned int op, int count,
524 unsigned int *eax, unsigned int *ebx,
525 unsigned int *ecx, unsigned int *edx)
526{
527 *eax = op;
528 *ecx = count;
529 __cpuid(eax, ebx, ecx, edx);
530}
531
532/*
533 * CPUID functions returning a single datum
534 */
535static inline unsigned int cpuid_eax(unsigned int op)
536{
537 unsigned int eax, ebx, ecx, edx;
538
539 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100540
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100541 return eax;
542}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100543
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100544static inline unsigned int cpuid_ebx(unsigned int op)
545{
546 unsigned int eax, ebx, ecx, edx;
547
548 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100549
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100550 return ebx;
551}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100552
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100553static inline unsigned int cpuid_ecx(unsigned int op)
554{
555 unsigned int eax, ebx, ecx, edx;
556
557 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100558
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100559 return ecx;
560}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100561
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100562static inline unsigned int cpuid_edx(unsigned int op)
563{
564 unsigned int eax, ebx, ecx, edx;
565
566 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100567
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100568 return edx;
569}
570
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100571/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
Denys Vlasenko0b101e62015-09-24 14:02:29 +0200572static __always_inline void rep_nop(void)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100573{
Joe Perchescca2e6f2008-03-23 01:03:15 -0700574 asm volatile("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100575}
576
Denys Vlasenko0b101e62015-09-24 14:02:29 +0200577static __always_inline void cpu_relax(void)
Ingo Molnar4d46a892008-02-21 04:24:40 +0100578{
579 rep_nop();
580}
581
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700582#define cpu_relax_lowlatency() cpu_relax()
583
Ben Hutchings5367b6882009-09-10 02:53:50 +0100584/* Stop speculative execution and prefetching of modified code. */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100585static inline void sync_core(void)
586{
587 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100588
H. Peter Anvineb068e72012-11-28 11:50:23 -0800589#ifdef CONFIG_M486
H. Peter Anvin45c39fb2012-11-28 11:50:30 -0800590 /*
591 * Do a CPUID if available, otherwise do a jump. The jump
592 * can conveniently enough be the jump around CPUID.
593 */
594 asm volatile("cmpl %2,%1\n\t"
595 "jl 1f\n\t"
596 "cpuid\n"
597 "1:"
598 : "=a" (tmp)
599 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
600 : "ebx", "ecx", "edx", "memory");
601#else
602 /*
603 * CPUID is a barrier to speculative execution.
604 * Prefetched instructions are automatically
605 * invalidated when modified.
606 */
607 asm volatile("cpuid"
608 : "=a" (tmp)
609 : "0" (1)
610 : "ebx", "ecx", "edx", "memory");
Ben Hutchings5367b6882009-09-10 02:53:50 +0100611#endif
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100612}
613
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100614extern void select_idle_routine(const struct cpuinfo_x86 *c);
Len Brown02c68a02011-04-01 16:59:53 -0400615extern void init_amd_e400_c1e_mask(void);
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100616
Ingo Molnar4d46a892008-02-21 04:24:40 +0100617extern unsigned long boot_option_idle_override;
Len Brown02c68a02011-04-01 16:59:53 -0400618extern bool amd_e400_c1e_detected;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100619
Thomas Renningerd1896042010-11-03 17:06:14 +0100620enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
Len Brown69fb3672013-02-10 01:38:39 -0500621 IDLE_POLL};
Thomas Renningerd1896042010-11-03 17:06:14 +0100622
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100623extern void enable_sep_cpu(void);
624extern int sysenter_setup(void);
625
Jan Kiszka29c84392010-05-20 21:04:29 -0500626extern void early_trap_init(void);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800627void early_trap_pf_init(void);
Jan Kiszka29c84392010-05-20 21:04:29 -0500628
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100629/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100630extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100631
632extern void cpu_set_gdt(int);
Brian Gerst552be872009-01-30 17:47:53 +0900633extern void switch_to_new_gdt(int);
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900634extern void load_percpu_segment(int);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100635extern void cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100636
Markus Metzgerc2724772008-12-11 13:49:59 +0100637static inline unsigned long get_debugctlmsr(void)
638{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100639 unsigned long debugctlmsr = 0;
Markus Metzgerc2724772008-12-11 13:49:59 +0100640
641#ifndef CONFIG_X86_DEBUGCTLMSR
642 if (boot_cpu_data.x86 < 6)
643 return 0;
644#endif
645 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
646
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100647 return debugctlmsr;
Markus Metzgerc2724772008-12-11 13:49:59 +0100648}
649
Jan Beulich5b0e5082008-03-10 13:11:17 +0000650static inline void update_debugctlmsr(unsigned long debugctlmsr)
651{
652#ifndef CONFIG_X86_DEBUGCTLMSR
653 if (boot_cpu_data.x86 < 6)
654 return;
655#endif
656 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
657}
658
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200659extern void set_task_blockstep(struct task_struct *task, bool on);
660
Ingo Molnar4d46a892008-02-21 04:24:40 +0100661/* Boot loader type from the setup header: */
662extern int bootloader_type;
H. Peter Anvin50312962009-05-07 16:54:11 -0700663extern int bootloader_version;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100664
Ingo Molnar4d46a892008-02-21 04:24:40 +0100665extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100666
667#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
668#define ARCH_HAS_PREFETCHW
669#define ARCH_HAS_SPINLOCK_PREFETCH
670
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100671#ifdef CONFIG_X86_32
Borislav Petkova930dc42015-01-18 17:48:18 +0100672# define BASE_PREFETCH ""
Ingo Molnar4d46a892008-02-21 04:24:40 +0100673# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100674#else
Borislav Petkova930dc42015-01-18 17:48:18 +0100675# define BASE_PREFETCH "prefetcht0 %P1"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100676#endif
677
Ingo Molnar4d46a892008-02-21 04:24:40 +0100678/*
679 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
680 *
681 * It's not worth to care about 3dnow prefetches for the K6
682 * because they are microcoded there and very slow.
683 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100684static inline void prefetch(const void *x)
685{
Borislav Petkova930dc42015-01-18 17:48:18 +0100686 alternative_input(BASE_PREFETCH, "prefetchnta %P1",
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100687 X86_FEATURE_XMM,
Borislav Petkova930dc42015-01-18 17:48:18 +0100688 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100689}
690
Ingo Molnar4d46a892008-02-21 04:24:40 +0100691/*
692 * 3dnow prefetch to get an exclusive cache line.
693 * Useful for spinlocks to avoid one state transition in the
694 * cache coherency protocol:
695 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100696static inline void prefetchw(const void *x)
697{
Borislav Petkova930dc42015-01-18 17:48:18 +0100698 alternative_input(BASE_PREFETCH, "prefetchw %P1",
699 X86_FEATURE_3DNOWPREFETCH,
700 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100701}
702
Ingo Molnar4d46a892008-02-21 04:24:40 +0100703static inline void spin_lock_prefetch(const void *x)
704{
705 prefetchw(x);
706}
707
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700708#define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \
709 TOP_OF_KERNEL_STACK_PADDING)
710
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100711#ifdef CONFIG_X86_32
712/*
713 * User space process size: 3GB (default).
714 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100715#define TASK_SIZE PAGE_OFFSET
Ingo Molnard9517342009-02-20 23:32:28 +0100716#define TASK_SIZE_MAX TASK_SIZE
Ingo Molnar4d46a892008-02-21 04:24:40 +0100717#define STACK_TOP TASK_SIZE
718#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100719
Ingo Molnar4d46a892008-02-21 04:24:40 +0100720#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700721 .sp0 = TOP_OF_INIT_STACK, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100722 .sysenter_cs = __KERNEL_CS, \
723 .io_bitmap_ptr = NULL, \
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700724 .addr_limit = KERNEL_DS, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100725}
726
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100727extern unsigned long thread_saved_pc(struct task_struct *tsk);
728
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100729/*
Denys Vlasenko5c394032015-03-13 15:09:03 +0100730 * TOP_OF_KERNEL_STACK_PADDING reserves 8 bytes on top of the ring0 stack.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100731 * This is necessary to guarantee that the entire "struct pt_regs"
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400732 * is accessible even if the CPU haven't stored the SS/ESP registers
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100733 * on the stack (interrupt gate does not save these registers
734 * when switching to the same priv ring).
735 * Therefore beware: accessing the ss/esp fields of the
736 * "struct pt_regs" is possible, but they may contain the
737 * completely wrong values.
738 */
Denys Vlasenko5c394032015-03-13 15:09:03 +0100739#define task_pt_regs(task) \
740({ \
741 unsigned long __ptr = (unsigned long)task_stack_page(task); \
742 __ptr += THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING; \
743 ((struct pt_regs *)__ptr) - 1; \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100744})
745
Ingo Molnar4d46a892008-02-21 04:24:40 +0100746#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100747
748#else
749/*
Andy Lutomirski07114f02014-11-04 15:46:21 -0800750 * User space process size. 47bits minus one guard page. The guard
751 * page is necessary on Intel CPUs: if a SYSCALL instruction is at
752 * the highest possible canonical userspace address, then that
753 * syscall will enter the kernel with a non-canonical return
754 * address, and SYSRET will explode dangerously. We avoid this
755 * particular problem by preventing anything from being mapped
756 * at the maximum canonical address.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100757 */
Ingo Molnard9517342009-02-20 23:32:28 +0100758#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100759
760/* This decides where the kernel will search for a free chunk of vm
761 * space during mmap's.
762 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100763#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
764 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100765
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800766#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100767 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800768#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100769 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100770
David Howells922a70d2008-02-08 04:19:26 -0800771#define STACK_TOP TASK_SIZE
Ingo Molnard9517342009-02-20 23:32:28 +0100772#define STACK_TOP_MAX TASK_SIZE_MAX
David Howells922a70d2008-02-08 04:19:26 -0800773
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700774#define INIT_THREAD { \
775 .sp0 = TOP_OF_INIT_STACK, \
776 .addr_limit = KERNEL_DS, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100777}
778
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100779/*
780 * Return saved PC of a blocked thread.
781 * What is this good for? it will be always the scheduler or ret_from_fork.
782 */
Dmitry Vyukov75edb542016-02-04 16:27:50 +0100783#define thread_saved_pc(t) READ_ONCE_NOCHECK(*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100784
Ingo Molnar4d46a892008-02-21 04:24:40 +0100785#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
Stefani Seibold89240ba2009-11-03 10:22:40 +0100786extern unsigned long KSTK_ESP(struct task_struct *task);
H. J. Lud046ff82012-02-14 13:49:48 -0800787
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100788#endif /* CONFIG_X86_64 */
789
Ingo Molnar513ad842008-02-21 05:18:40 +0100790extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
791 unsigned long new_sp);
792
Ingo Molnar4d46a892008-02-21 04:24:40 +0100793/*
794 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100795 * space during mmap's.
796 */
797#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
798
Ingo Molnar4d46a892008-02-21 04:24:40 +0100799#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100800
Erik Bosman529e25f2008-04-14 00:24:18 +0200801/* Get/set a process' ability to use the timestamp counter instruction */
802#define GET_TSC_CTL(adr) get_tsc_mode((adr))
803#define SET_TSC_CTL(val) set_tsc_mode((val))
804
805extern int get_tsc_mode(unsigned long adr);
806extern int set_tsc_mode(unsigned int val);
807
Dave Hansenfe3d1972014-11-14 07:18:29 -0800808/* Register/unregister a process' MPX related resource */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700809#define MPX_ENABLE_MANAGEMENT() mpx_enable_management()
810#define MPX_DISABLE_MANAGEMENT() mpx_disable_management()
Dave Hansenfe3d1972014-11-14 07:18:29 -0800811
812#ifdef CONFIG_X86_INTEL_MPX
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700813extern int mpx_enable_management(void);
814extern int mpx_disable_management(void);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800815#else
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700816static inline int mpx_enable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800817{
818 return -EINVAL;
819}
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700820static inline int mpx_disable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800821{
822 return -EINVAL;
823}
824#endif /* CONFIG_X86_INTEL_MPX */
825
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +0800826extern u16 amd_get_nb_id(int cpu);
Aravind Gopalakrishnancc2749e2015-06-15 10:28:15 +0200827extern u32 amd_get_nodes_per_socket(void);
Andreas Herrmann6a812692009-09-16 11:33:40 +0200828
Jason Wang96e39ac2013-07-25 16:54:32 +0800829static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
830{
831 uint32_t base, eax, signature[3];
832
833 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
834 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
835
836 if (!memcmp(sig, signature, 12) &&
837 (leaves == 0 || ((eax - base) >= leaves)))
838 return base;
839 }
840
841 return 0;
842}
843
David Howellsf05e7982012-03-28 18:11:12 +0100844extern unsigned long arch_align_stack(unsigned long sp);
845extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
846
847void default_idle(void);
Len Brown6a377dd2013-02-09 23:08:07 -0500848#ifdef CONFIG_XEN
849bool xen_set_default_idle(void);
850#else
851#define xen_set_default_idle 0
852#endif
David Howellsf05e7982012-03-28 18:11:12 +0100853
854void stop_this_cpu(void *dummy);
Borislav Petkov4d067d82013-05-09 12:02:29 +0200855void df_debug(struct pt_regs *regs, long error_code);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700856#endif /* _ASM_X86_PROCESSOR_H */