blob: 89314ed74fee3c795585c24630ddcbe83ea7d831 [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
Suresh Siddha61c46282008-03-10 15:28:04 -0700370extern unsigned int xstate_size;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100371
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200372struct perf_event;
373
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700374typedef struct {
375 unsigned long seg;
376} mm_segment_t;
377
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100378struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100379 /* Cached TLS descriptors: */
380 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
381 unsigned long sp0;
382 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100383#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100384 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100385#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100386 unsigned short es;
387 unsigned short ds;
388 unsigned short fsindex;
389 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100390#endif
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400391#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100392 unsigned long ip;
Alexey Dobriyan0c235902009-05-04 03:30:15 +0400393#endif
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400394#ifdef CONFIG_X86_64
Andy Lutomirski296f7812016-04-26 12:23:29 -0700395 unsigned long fsbase;
396 unsigned long gsbase;
397#else
398 /*
399 * XXX: this could presumably be unsigned short. Alternatively,
400 * 32-bit kernels could be taught to use fsindex instead.
401 */
402 unsigned long fs;
403 unsigned long gs;
Alexey Dobriyand756f4ad2009-05-04 03:29:52 +0400404#endif
Ingo Molnarc5bedc62015-04-23 12:49:20 +0200405
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +0200406 /* Save middle states of ptrace breakpoints */
407 struct perf_event *ptrace_bps[HBP_NUM];
408 /* Debug status used for traps, single steps, etc... */
409 unsigned long debugreg6;
Frederic Weisbecker326264a2010-02-18 18:24:18 +0100410 /* Keep track of the exact dr7 value set by the user */
411 unsigned long ptrace_dr7;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100412 /* Fault info: */
413 unsigned long cr2;
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530414 unsigned long trap_nr;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100415 unsigned long error_code;
Brian Gerst9fda6a02015-07-29 01:41:16 -0400416#ifdef CONFIG_VM86
Ingo Molnar4d46a892008-02-21 04:24:40 +0100417 /* Virtual 86 mode info */
Brian Gerst9fda6a02015-07-29 01:41:16 -0400418 struct vm86 *vm86;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100419#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100420 /* IO permissions: */
421 unsigned long *io_bitmap_ptr;
422 unsigned long iopl;
423 /* Max allowed port in the bitmap, in bytes: */
424 unsigned io_bitmap_max;
Dave Hansen0c8c0f02015-07-17 12:28:11 +0200425
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700426 mm_segment_t addr_limit;
427
Ingo Molnar2a53ccb2016-07-15 10:21:11 +0200428 unsigned int sig_on_uaccess_err:1;
Andy Lutomirskidfa9a942016-07-14 13:22:56 -0700429 unsigned int uaccess_err:1; /* uaccess failed */
430
Dave Hansen0c8c0f02015-07-17 12:28:11 +0200431 /* Floating point and extended processor state */
432 struct fpu fpu;
433 /*
434 * WARNING: 'fpu' is dynamically-sized. It *MUST* be at
435 * the end.
436 */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100437};
438
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100439/*
440 * Set IOPL bits in EFLAGS from given mask
441 */
442static inline void native_set_iopl_mask(unsigned mask)
443{
444#ifdef CONFIG_X86_32
445 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100446
Joe Perchescca2e6f2008-03-23 01:03:15 -0700447 asm volatile ("pushfl;"
448 "popl %0;"
449 "andl %1, %0;"
450 "orl %2, %0;"
451 "pushl %0;"
452 "popfl"
453 : "=&r" (reg)
454 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100455#endif
456}
457
Ingo Molnar4d46a892008-02-21 04:24:40 +0100458static inline void
459native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100460{
461 tss->x86_tss.sp0 = thread->sp0;
462#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100463 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100464 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
465 tss->x86_tss.ss1 = thread->sysenter_cs;
466 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
467 }
468#endif
469}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100470
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100471static inline void native_swapgs(void)
472{
473#ifdef CONFIG_X86_64
474 asm volatile("swapgs" ::: "memory");
475#endif
476}
477
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800478static inline unsigned long current_top_of_stack(void)
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800479{
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800480#ifdef CONFIG_X86_64
Andy Lutomirski24933b82015-03-05 19:19:05 -0800481 return this_cpu_read_stable(cpu_tss.x86_tss.sp0);
Andy Lutomirskia7fcf282015-03-06 17:50:19 -0800482#else
483 /* sp0 on x86_32 is special in and around vm86 mode. */
484 return this_cpu_read_stable(cpu_current_top_of_stack);
485#endif
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800486}
487
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100488#ifdef CONFIG_PARAVIRT
489#include <asm/paravirt.h>
490#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100491#define __cpuid native_cpuid
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100492
Joe Perchescca2e6f2008-03-23 01:03:15 -0700493static inline void load_sp0(struct tss_struct *tss,
494 struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100495{
496 native_load_sp0(tss, thread);
497}
498
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100499#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100500#endif /* CONFIG_PARAVIRT */
501
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100502/* Free all resources held by a thread. */
503extern void release_thread(struct task_struct *);
504
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100505unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100506
507/*
508 * Generic CPUID function
509 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
510 * resulting in stale register contents being returned.
511 */
512static inline void cpuid(unsigned int op,
513 unsigned int *eax, unsigned int *ebx,
514 unsigned int *ecx, unsigned int *edx)
515{
516 *eax = op;
517 *ecx = 0;
518 __cpuid(eax, ebx, ecx, edx);
519}
520
521/* Some CPUID calls want 'count' to be placed in ecx */
522static inline void cpuid_count(unsigned int op, int count,
523 unsigned int *eax, unsigned int *ebx,
524 unsigned int *ecx, unsigned int *edx)
525{
526 *eax = op;
527 *ecx = count;
528 __cpuid(eax, ebx, ecx, edx);
529}
530
531/*
532 * CPUID functions returning a single datum
533 */
534static inline unsigned int cpuid_eax(unsigned int op)
535{
536 unsigned int eax, ebx, ecx, edx;
537
538 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100539
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100540 return eax;
541}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100542
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100543static inline unsigned int cpuid_ebx(unsigned int op)
544{
545 unsigned int eax, ebx, ecx, edx;
546
547 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100548
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100549 return ebx;
550}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100551
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100552static inline unsigned int cpuid_ecx(unsigned int op)
553{
554 unsigned int eax, ebx, ecx, edx;
555
556 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100557
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100558 return ecx;
559}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100560
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100561static inline unsigned int cpuid_edx(unsigned int op)
562{
563 unsigned int eax, ebx, ecx, edx;
564
565 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100566
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100567 return edx;
568}
569
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100570/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
Denys Vlasenko0b101e62015-09-24 14:02:29 +0200571static __always_inline void rep_nop(void)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100572{
Joe Perchescca2e6f2008-03-23 01:03:15 -0700573 asm volatile("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100574}
575
Denys Vlasenko0b101e62015-09-24 14:02:29 +0200576static __always_inline void cpu_relax(void)
Ingo Molnar4d46a892008-02-21 04:24:40 +0100577{
578 rep_nop();
579}
580
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700581#define cpu_relax_lowlatency() cpu_relax()
582
Ben Hutchings5367b682009-09-10 02:53:50 +0100583/* Stop speculative execution and prefetching of modified code. */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100584static inline void sync_core(void)
585{
586 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100587
H. Peter Anvineb068e72012-11-28 11:50:23 -0800588#ifdef CONFIG_M486
H. Peter Anvin45c39fb2012-11-28 11:50:30 -0800589 /*
590 * Do a CPUID if available, otherwise do a jump. The jump
591 * can conveniently enough be the jump around CPUID.
592 */
593 asm volatile("cmpl %2,%1\n\t"
594 "jl 1f\n\t"
595 "cpuid\n"
596 "1:"
597 : "=a" (tmp)
598 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
599 : "ebx", "ecx", "edx", "memory");
600#else
601 /*
602 * CPUID is a barrier to speculative execution.
603 * Prefetched instructions are automatically
604 * invalidated when modified.
605 */
606 asm volatile("cpuid"
607 : "=a" (tmp)
608 : "0" (1)
609 : "ebx", "ecx", "edx", "memory");
Ben Hutchings5367b682009-09-10 02:53:50 +0100610#endif
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100611}
612
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100613extern void select_idle_routine(const struct cpuinfo_x86 *c);
Len Brown02c68a02011-04-01 16:59:53 -0400614extern void init_amd_e400_c1e_mask(void);
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100615
Ingo Molnar4d46a892008-02-21 04:24:40 +0100616extern unsigned long boot_option_idle_override;
Len Brown02c68a02011-04-01 16:59:53 -0400617extern bool amd_e400_c1e_detected;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100618
Thomas Renningerd1896042010-11-03 17:06:14 +0100619enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
Len Brown69fb3672013-02-10 01:38:39 -0500620 IDLE_POLL};
Thomas Renningerd1896042010-11-03 17:06:14 +0100621
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100622extern void enable_sep_cpu(void);
623extern int sysenter_setup(void);
624
Jan Kiszka29c84392010-05-20 21:04:29 -0500625extern void early_trap_init(void);
H. Peter Anvin8170e6b2013-01-24 12:19:52 -0800626void early_trap_pf_init(void);
Jan Kiszka29c84392010-05-20 21:04:29 -0500627
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100628/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100629extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100630
631extern void cpu_set_gdt(int);
Brian Gerst552be872009-01-30 17:47:53 +0900632extern void switch_to_new_gdt(int);
Jeremy Fitzhardinge11e3a842009-01-30 17:47:54 +0900633extern void load_percpu_segment(int);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100634extern void cpu_init(void);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100635
Markus Metzgerc2724772008-12-11 13:49:59 +0100636static inline unsigned long get_debugctlmsr(void)
637{
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100638 unsigned long debugctlmsr = 0;
Markus Metzgerc2724772008-12-11 13:49:59 +0100639
640#ifndef CONFIG_X86_DEBUGCTLMSR
641 if (boot_cpu_data.x86 < 6)
642 return 0;
643#endif
644 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
645
Peter Zijlstraea8e61b2010-03-25 14:51:51 +0100646 return debugctlmsr;
Markus Metzgerc2724772008-12-11 13:49:59 +0100647}
648
Jan Beulich5b0e5082008-03-10 13:11:17 +0000649static inline void update_debugctlmsr(unsigned long debugctlmsr)
650{
651#ifndef CONFIG_X86_DEBUGCTLMSR
652 if (boot_cpu_data.x86 < 6)
653 return;
654#endif
655 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
656}
657
Oleg Nesterov9bd11902012-09-03 15:24:17 +0200658extern void set_task_blockstep(struct task_struct *task, bool on);
659
Ingo Molnar4d46a892008-02-21 04:24:40 +0100660/* Boot loader type from the setup header: */
661extern int bootloader_type;
H. Peter Anvin50312962009-05-07 16:54:11 -0700662extern int bootloader_version;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100663
Ingo Molnar4d46a892008-02-21 04:24:40 +0100664extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100665
666#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
667#define ARCH_HAS_PREFETCHW
668#define ARCH_HAS_SPINLOCK_PREFETCH
669
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100670#ifdef CONFIG_X86_32
Borislav Petkova930dc42015-01-18 17:48:18 +0100671# define BASE_PREFETCH ""
Ingo Molnar4d46a892008-02-21 04:24:40 +0100672# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100673#else
Borislav Petkova930dc42015-01-18 17:48:18 +0100674# define BASE_PREFETCH "prefetcht0 %P1"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100675#endif
676
Ingo Molnar4d46a892008-02-21 04:24:40 +0100677/*
678 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
679 *
680 * It's not worth to care about 3dnow prefetches for the K6
681 * because they are microcoded there and very slow.
682 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100683static inline void prefetch(const void *x)
684{
Borislav Petkova930dc42015-01-18 17:48:18 +0100685 alternative_input(BASE_PREFETCH, "prefetchnta %P1",
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100686 X86_FEATURE_XMM,
Borislav Petkova930dc42015-01-18 17:48:18 +0100687 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100688}
689
Ingo Molnar4d46a892008-02-21 04:24:40 +0100690/*
691 * 3dnow prefetch to get an exclusive cache line.
692 * Useful for spinlocks to avoid one state transition in the
693 * cache coherency protocol:
694 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100695static inline void prefetchw(const void *x)
696{
Borislav Petkova930dc42015-01-18 17:48:18 +0100697 alternative_input(BASE_PREFETCH, "prefetchw %P1",
698 X86_FEATURE_3DNOWPREFETCH,
699 "m" (*(const char *)x));
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100700}
701
Ingo Molnar4d46a892008-02-21 04:24:40 +0100702static inline void spin_lock_prefetch(const void *x)
703{
704 prefetchw(x);
705}
706
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700707#define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \
708 TOP_OF_KERNEL_STACK_PADDING)
709
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100710#ifdef CONFIG_X86_32
711/*
712 * User space process size: 3GB (default).
713 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100714#define TASK_SIZE PAGE_OFFSET
Ingo Molnard9517342009-02-20 23:32:28 +0100715#define TASK_SIZE_MAX TASK_SIZE
Ingo Molnar4d46a892008-02-21 04:24:40 +0100716#define STACK_TOP TASK_SIZE
717#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100718
Ingo Molnar4d46a892008-02-21 04:24:40 +0100719#define INIT_THREAD { \
Andy Lutomirskid9e05cc2015-03-10 11:05:59 -0700720 .sp0 = TOP_OF_INIT_STACK, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100721 .sysenter_cs = __KERNEL_CS, \
722 .io_bitmap_ptr = NULL, \
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700723 .addr_limit = KERNEL_DS, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100724}
725
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100726extern unsigned long thread_saved_pc(struct task_struct *tsk);
727
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100728/*
Denys Vlasenko5c394032015-03-13 15:09:03 +0100729 * TOP_OF_KERNEL_STACK_PADDING reserves 8 bytes on top of the ring0 stack.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100730 * This is necessary to guarantee that the entire "struct pt_regs"
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400731 * is accessible even if the CPU haven't stored the SS/ESP registers
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100732 * on the stack (interrupt gate does not save these registers
733 * when switching to the same priv ring).
734 * Therefore beware: accessing the ss/esp fields of the
735 * "struct pt_regs" is possible, but they may contain the
736 * completely wrong values.
737 */
Denys Vlasenko5c394032015-03-13 15:09:03 +0100738#define task_pt_regs(task) \
739({ \
740 unsigned long __ptr = (unsigned long)task_stack_page(task); \
741 __ptr += THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING; \
742 ((struct pt_regs *)__ptr) - 1; \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100743})
744
Ingo Molnar4d46a892008-02-21 04:24:40 +0100745#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100746
747#else
748/*
Andy Lutomirski07114f02014-11-04 15:46:21 -0800749 * User space process size. 47bits minus one guard page. The guard
750 * page is necessary on Intel CPUs: if a SYSCALL instruction is at
751 * the highest possible canonical userspace address, then that
752 * syscall will enter the kernel with a non-canonical return
753 * address, and SYSRET will explode dangerously. We avoid this
754 * particular problem by preventing anything from being mapped
755 * at the maximum canonical address.
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100756 */
Ingo Molnard9517342009-02-20 23:32:28 +0100757#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100758
759/* This decides where the kernel will search for a free chunk of vm
760 * space during mmap's.
761 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100762#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
763 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100764
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800765#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100766 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
H. Peter Anvin6bd33002012-02-06 13:03:09 -0800767#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
Ingo Molnard9517342009-02-20 23:32:28 +0100768 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100769
David Howells922a70d2008-02-08 04:19:26 -0800770#define STACK_TOP TASK_SIZE
Ingo Molnard9517342009-02-20 23:32:28 +0100771#define STACK_TOP_MAX TASK_SIZE_MAX
David Howells922a70d2008-02-08 04:19:26 -0800772
Andy Lutomirski13d4ea02016-07-14 13:22:57 -0700773#define INIT_THREAD { \
774 .sp0 = TOP_OF_INIT_STACK, \
775 .addr_limit = KERNEL_DS, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100776}
777
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100778/*
779 * Return saved PC of a blocked thread.
780 * What is this good for? it will be always the scheduler or ret_from_fork.
781 */
Dmitry Vyukov75edb542016-02-04 16:27:50 +0100782#define thread_saved_pc(t) READ_ONCE_NOCHECK(*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100783
Ingo Molnar4d46a892008-02-21 04:24:40 +0100784#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
Stefani Seibold89240ba2009-11-03 10:22:40 +0100785extern unsigned long KSTK_ESP(struct task_struct *task);
H. J. Lud046ff82012-02-14 13:49:48 -0800786
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100787#endif /* CONFIG_X86_64 */
788
Ingo Molnar513ad842008-02-21 05:18:40 +0100789extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
790 unsigned long new_sp);
791
Ingo Molnar4d46a892008-02-21 04:24:40 +0100792/*
793 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100794 * space during mmap's.
795 */
796#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
797
Ingo Molnar4d46a892008-02-21 04:24:40 +0100798#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100799
Erik Bosman529e25f2008-04-14 00:24:18 +0200800/* Get/set a process' ability to use the timestamp counter instruction */
801#define GET_TSC_CTL(adr) get_tsc_mode((adr))
802#define SET_TSC_CTL(val) set_tsc_mode((val))
803
804extern int get_tsc_mode(unsigned long adr);
805extern int set_tsc_mode(unsigned int val);
806
Dave Hansenfe3d1972014-11-14 07:18:29 -0800807/* Register/unregister a process' MPX related resource */
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700808#define MPX_ENABLE_MANAGEMENT() mpx_enable_management()
809#define MPX_DISABLE_MANAGEMENT() mpx_disable_management()
Dave Hansenfe3d1972014-11-14 07:18:29 -0800810
811#ifdef CONFIG_X86_INTEL_MPX
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700812extern int mpx_enable_management(void);
813extern int mpx_disable_management(void);
Dave Hansenfe3d1972014-11-14 07:18:29 -0800814#else
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700815static inline int mpx_enable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800816{
817 return -EINVAL;
818}
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700819static inline int mpx_disable_management(void)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800820{
821 return -EINVAL;
822}
823#endif /* CONFIG_X86_INTEL_MPX */
824
Daniel J Blueman8b84c8d2012-11-27 14:32:10 +0800825extern u16 amd_get_nb_id(int cpu);
Aravind Gopalakrishnancc2749e2015-06-15 10:28:15 +0200826extern u32 amd_get_nodes_per_socket(void);
Andreas Herrmann6a812692009-09-16 11:33:40 +0200827
Jason Wang96e39ac2013-07-25 16:54:32 +0800828static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
829{
830 uint32_t base, eax, signature[3];
831
832 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
833 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
834
835 if (!memcmp(sig, signature, 12) &&
836 (leaves == 0 || ((eax - base) >= leaves)))
837 return base;
838 }
839
840 return 0;
841}
842
David Howellsf05e7982012-03-28 18:11:12 +0100843extern unsigned long arch_align_stack(unsigned long sp);
844extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
845
846void default_idle(void);
Len Brown6a377dd2013-02-09 23:08:07 -0500847#ifdef CONFIG_XEN
848bool xen_set_default_idle(void);
849#else
850#define xen_set_default_idle 0
851#endif
David Howellsf05e7982012-03-28 18:11:12 +0100852
853void stop_this_cpu(void *dummy);
Borislav Petkov4d067d82013-05-09 12:02:29 +0200854void df_debug(struct pt_regs *regs, long error_code);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700855#endif /* _ASM_X86_PROCESSOR_H */