xref: /linux/arch/x86/include/asm/processor.h (revision fb3bd914b3ec28f5fb697ac55c4846ac2d542855)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21965aae3SH. Peter Anvin #ifndef _ASM_X86_PROCESSOR_H
31965aae3SH. Peter Anvin #define _ASM_X86_PROCESSOR_H
4bb898558SAl Viro 
5bb898558SAl Viro #include <asm/processor-flags.h>
6bb898558SAl Viro 
7bb898558SAl Viro /* Forward declaration, a strange C thing */
8bb898558SAl Viro struct task_struct;
9bb898558SAl Viro struct mm_struct;
10577d5cd7SThomas Gleixner struct io_bitmap;
119fda6a06SBrian Gerst struct vm86;
12bb898558SAl Viro 
13bb898558SAl Viro #include <asm/math_emu.h>
14bb898558SAl Viro #include <asm/segment.h>
15bb898558SAl Viro #include <asm/types.h>
16decb4c41SIngo Molnar #include <uapi/asm/sigcontext.h>
17bb898558SAl Viro #include <asm/current.h>
18cd4d09ecSBorislav Petkov #include <asm/cpufeatures.h>
19d8001690SBorislav Petkov #include <asm/cpuid.h>
20bb898558SAl Viro #include <asm/page.h>
2154321d94SJeremy Fitzhardinge #include <asm/pgtable_types.h>
22bb898558SAl Viro #include <asm/percpu.h>
23bb898558SAl Viro #include <asm/msr.h>
24bb898558SAl Viro #include <asm/desc_defs.h>
25bb898558SAl Viro #include <asm/nops.h>
26f05e798aSDavid Howells #include <asm/special_insns.h>
2714b9675aSIngo Molnar #include <asm/fpu/types.h>
2876846bf3SJosh Poimboeuf #include <asm/unwind_hints.h>
2915934878SSean Christopherson #include <asm/vmxfeatures.h>
30abc22418SVincenzo Frascino #include <asm/vdso/processor.h>
31bb898558SAl Viro 
32bb898558SAl Viro #include <linux/personality.h>
33bb898558SAl Viro #include <linux/cache.h>
34bb898558SAl Viro #include <linux/threads.h>
355cbc19a9SPeter Zijlstra #include <linux/math64.h>
36faa4602eSPeter Zijlstra #include <linux/err.h>
37f05e798aSDavid Howells #include <linux/irqflags.h>
3821729f81STom Lendacky #include <linux/mem_encrypt.h>
39f05e798aSDavid Howells 
40f05e798aSDavid Howells /*
41f05e798aSDavid Howells  * We handle most unaligned accesses in hardware.  On the other hand
42f05e798aSDavid Howells  * unaligned DMA can be quite expensive on some Nehalem processors.
43f05e798aSDavid Howells  *
44f05e798aSDavid Howells  * Based on this we disable the IP header alignment in network drivers.
45f05e798aSDavid Howells  */
46f05e798aSDavid Howells #define NET_IP_ALIGN	0
47bb898558SAl Viro 
48b332828cSK.Prasad #define HBP_NUM 4
49bb898558SAl Viro 
50b8c1b8eaSIngo Molnar /*
51b8c1b8eaSIngo Molnar  * These alignment constraints are for performance in the vSMP case,
52b8c1b8eaSIngo Molnar  * but in the task_struct case we must also meet hardware imposed
53b8c1b8eaSIngo Molnar  * alignment requirements of the FPU state:
54b8c1b8eaSIngo Molnar  */
55bb898558SAl Viro #ifdef CONFIG_X86_VSMP
56bb898558SAl Viro # define ARCH_MIN_TASKALIGN		(1 << INTERNODE_CACHE_SHIFT)
57bb898558SAl Viro # define ARCH_MIN_MMSTRUCT_ALIGN	(1 << INTERNODE_CACHE_SHIFT)
58bb898558SAl Viro #else
59b8c1b8eaSIngo Molnar # define ARCH_MIN_TASKALIGN		__alignof__(union fpregs_state)
60bb898558SAl Viro # define ARCH_MIN_MMSTRUCT_ALIGN	0
61bb898558SAl Viro #endif
62bb898558SAl Viro 
63e0ba94f1SAlex Shi enum tlb_infos {
64e0ba94f1SAlex Shi 	ENTRIES,
65e0ba94f1SAlex Shi 	NR_INFO
66e0ba94f1SAlex Shi };
67e0ba94f1SAlex Shi 
68e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_4k[NR_INFO];
69e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_2m[NR_INFO];
70e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_4m[NR_INFO];
71e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_4k[NR_INFO];
72e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_2m[NR_INFO];
73e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_4m[NR_INFO];
74dd360393SKirill A. Shutemov extern u16 __read_mostly tlb_lld_1g[NR_INFO];
75c4211f42SAlex Shi 
76bb898558SAl Viro /*
77bb898558SAl Viro  *  CPU type and hardware bug flags. Kept separately for each CPU.
7804402116SMathias Krause  *  Members of this structure are referenced in head_32.S, so think twice
79bb898558SAl Viro  *  before touching them. [mj]
80bb898558SAl Viro  */
81bb898558SAl Viro 
82bb898558SAl Viro struct cpuinfo_x86 {
83bb898558SAl Viro 	__u8			x86;		/* CPU family */
84bb898558SAl Viro 	__u8			x86_vendor;	/* CPU vendor */
85bb898558SAl Viro 	__u8			x86_model;
86b399151cSJia Zhang 	__u8			x86_stepping;
876415813bSMathias Krause #ifdef CONFIG_X86_64
88bb898558SAl Viro 	/* Number of 4K pages in DTLB/ITLB combined(in pages): */
89bb898558SAl Viro 	int			x86_tlbsize;
9013c6c532SJan Beulich #endif
91b47ce1feSSean Christopherson #ifdef CONFIG_X86_VMX_FEATURE_NAMES
92b47ce1feSSean Christopherson 	__u32			vmx_capability[NVMXINTS];
93b47ce1feSSean Christopherson #endif
94bb898558SAl Viro 	__u8			x86_virt_bits;
95bb898558SAl Viro 	__u8			x86_phys_bits;
96bb898558SAl Viro 	/* CPUID returned core id bits: */
97bb898558SAl Viro 	__u8			x86_coreid_bits;
9879a8b9aaSBorislav Petkov 	__u8			cu_id;
99bb898558SAl Viro 	/* Max extended CPUID function supported: */
100bb898558SAl Viro 	__u32			extended_cpuid_level;
101bb898558SAl Viro 	/* Maximum supported CPUID level, -1=no CPUID: */
102bb898558SAl Viro 	int			cpuid_level;
103db8c33f8SFenghua Yu 	/*
104db8c33f8SFenghua Yu 	 * Align to size of unsigned long because the x86_capability array
105db8c33f8SFenghua Yu 	 * is passed to bitops which require the alignment. Use unnamed
106db8c33f8SFenghua Yu 	 * union to enforce the array is aligned to size of unsigned long.
107db8c33f8SFenghua Yu 	 */
108db8c33f8SFenghua Yu 	union {
10965fc985bSBorislav Petkov 		__u32		x86_capability[NCAPINTS + NBUGINTS];
110db8c33f8SFenghua Yu 		unsigned long	x86_capability_alignment;
111db8c33f8SFenghua Yu 	};
112bb898558SAl Viro 	char			x86_vendor_id[16];
113bb898558SAl Viro 	char			x86_model_id[64];
114bb898558SAl Viro 	/* in KB - valid for CPUS which support this call: */
11524dbc600SGustavo A. R. Silva 	unsigned int		x86_cache_size;
116bb898558SAl Viro 	int			x86_cache_alignment;	/* In bytes */
117f3d44f18SReinette Chatre 	/* Cache QoS architectural values, valid only on the BSP: */
118cbc82b17SPeter P Waskiewicz Jr 	int			x86_cache_max_rmid;	/* max index */
119cbc82b17SPeter P Waskiewicz Jr 	int			x86_cache_occ_scale;	/* scale to bytes */
120f3d44f18SReinette Chatre 	int			x86_cache_mbm_width_offset;
121bb898558SAl Viro 	int			x86_power;
122bb898558SAl Viro 	unsigned long		loops_per_jiffy;
123822ccfadSTony Luck 	/* protected processor identification number */
124822ccfadSTony Luck 	u64			ppin;
125bb898558SAl Viro 	/* cpuid returned max cores value: */
126bb898558SAl Viro 	u16			x86_max_cores;
127bb898558SAl Viro 	u16			apicid;
128bb898558SAl Viro 	u16			initial_apicid;
129bb898558SAl Viro 	u16			x86_clflush_size;
130bb898558SAl Viro 	/* number of cores as seen by the OS: */
131bb898558SAl Viro 	u16			booted_cores;
132bb898558SAl Viro 	/* Physical processor id: */
133bb898558SAl Viro 	u16			phys_proc_id;
1341f12e32fSThomas Gleixner 	/* Logical processor id: */
1351f12e32fSThomas Gleixner 	u16			logical_proc_id;
136bb898558SAl Viro 	/* Core id: */
137bb898558SAl Viro 	u16			cpu_core_id;
1387745f03eSLen Brown 	u16			cpu_die_id;
139212bf4fdSLen Brown 	u16			logical_die_id;
140bb898558SAl Viro 	/* Index into per_cpu list: */
141bb898558SAl Viro 	u16			cpu_index;
142c52787b5SBalbir Singh 	/*  Is SMT active on this core? */
143c52787b5SBalbir Singh 	bool			smt_active;
144506ed6b5SAndi Kleen 	u32			microcode;
145cc51e542SAndi Kleen 	/* Address space bits used by the cache internally */
146cc51e542SAndi Kleen 	u8			x86_cache_bits;
14730bb9811SAndi Kleen 	unsigned		initialized : 1;
1483859a271SKees Cook } __randomize_layout;
149bb898558SAl Viro 
150bb898558SAl Viro #define X86_VENDOR_INTEL	0
151bb898558SAl Viro #define X86_VENDOR_CYRIX	1
152bb898558SAl Viro #define X86_VENDOR_AMD		2
153bb898558SAl Viro #define X86_VENDOR_UMC		3
154bb898558SAl Viro #define X86_VENDOR_CENTAUR	5
155bb898558SAl Viro #define X86_VENDOR_TRANSMETA	7
156bb898558SAl Viro #define X86_VENDOR_NSC		8
157c9661c1eSPu Wen #define X86_VENDOR_HYGON	9
158761fdd5eSTony W Wang-oc #define X86_VENDOR_ZHAOXIN	10
159639475d4SMarcos Del Sol Vives #define X86_VENDOR_VORTEX	11
160639475d4SMarcos Del Sol Vives #define X86_VENDOR_NUM		12
161bb898558SAl Viro 
162bb898558SAl Viro #define X86_VENDOR_UNKNOWN	0xff
163bb898558SAl Viro 
164bb898558SAl Viro /*
165bb898558SAl Viro  * capabilities of CPUs
166bb898558SAl Viro  */
167bb898558SAl Viro extern struct cpuinfo_x86	boot_cpu_data;
168bb898558SAl Viro extern struct cpuinfo_x86	new_cpu_data;
169bb898558SAl Viro 
1706cbd2171SThomas Gleixner extern __u32			cpu_caps_cleared[NCAPINTS + NBUGINTS];
1716cbd2171SThomas Gleixner extern __u32			cpu_caps_set[NCAPINTS + NBUGINTS];
172bb898558SAl Viro 
173bb898558SAl Viro #ifdef CONFIG_SMP
1742c773dd3SJan Beulich DECLARE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
175bb898558SAl Viro #define cpu_data(cpu)		per_cpu(cpu_info, cpu)
176bb898558SAl Viro #else
1777b543a53STejun Heo #define cpu_info		boot_cpu_data
178bb898558SAl Viro #define cpu_data(cpu)		boot_cpu_data
179bb898558SAl Viro #endif
180bb898558SAl Viro 
181bb898558SAl Viro extern const struct seq_operations cpuinfo_op;
182bb898558SAl Viro 
183bb898558SAl Viro #define cache_line_size()	(boot_cpu_data.x86_cache_alignment)
184bb898558SAl Viro 
185bb898558SAl Viro extern void cpu_detect(struct cpuinfo_x86 *c);
186bb898558SAl Viro 
1879df95169SVlastimil Babka static inline unsigned long long l1tf_pfn_limit(void)
18817dbca11SAndi Kleen {
189cc51e542SAndi Kleen 	return BIT_ULL(boot_cpu_data.x86_cache_bits - 1 - PAGE_SHIFT);
19017dbca11SAndi Kleen }
19117dbca11SAndi Kleen 
192bb898558SAl Viro extern void early_cpu_init(void);
193bb898558SAl Viro extern void identify_boot_cpu(void);
194bb898558SAl Viro extern void identify_secondary_cpu(struct cpuinfo_x86 *);
195bb898558SAl Viro extern void print_cpu_info(struct cpuinfo_x86 *);
19621c3fcf3SYinghai Lu void print_cpu_msr(struct cpuinfo_x86 *);
197bb898558SAl Viro 
1986c690ee1SAndy Lutomirski /*
1996c690ee1SAndy Lutomirski  * Friendlier CR3 helpers.
2006c690ee1SAndy Lutomirski  */
2016c690ee1SAndy Lutomirski static inline unsigned long read_cr3_pa(void)
2026c690ee1SAndy Lutomirski {
2036c690ee1SAndy Lutomirski 	return __read_cr3() & CR3_ADDR_MASK;
2046c690ee1SAndy Lutomirski }
2056c690ee1SAndy Lutomirski 
206eef9c4abSTom Lendacky static inline unsigned long native_read_cr3_pa(void)
207eef9c4abSTom Lendacky {
208eef9c4abSTom Lendacky 	return __native_read_cr3() & CR3_ADDR_MASK;
209eef9c4abSTom Lendacky }
210eef9c4abSTom Lendacky 
211bb898558SAl Viro static inline void load_cr3(pgd_t *pgdir)
212bb898558SAl Viro {
21321729f81STom Lendacky 	write_cr3(__sme_pa(pgdir));
214bb898558SAl Viro }
215bb898558SAl Viro 
2167fb983b4SAndy Lutomirski /*
2177fb983b4SAndy Lutomirski  * Note that while the legacy 'TSS' name comes from 'Task State Segment',
2187fb983b4SAndy Lutomirski  * on modern x86 CPUs the TSS also holds information important to 64-bit mode,
2197fb983b4SAndy Lutomirski  * unrelated to the task-switch mechanism:
2207fb983b4SAndy Lutomirski  */
221bb898558SAl Viro #ifdef CONFIG_X86_32
222bb898558SAl Viro /* This is the TSS defined by the hardware. */
223bb898558SAl Viro struct x86_hw_tss {
224bb898558SAl Viro 	unsigned short		back_link, __blh;
225bb898558SAl Viro 	unsigned long		sp0;
226bb898558SAl Viro 	unsigned short		ss0, __ss0h;
227cf9328ccSAndy Lutomirski 	unsigned long		sp1;
22876e4c490SAndy Lutomirski 
22976e4c490SAndy Lutomirski 	/*
230cf9328ccSAndy Lutomirski 	 * We don't use ring 1, so ss1 is a convenient scratch space in
231cf9328ccSAndy Lutomirski 	 * the same cacheline as sp0.  We use ss1 to cache the value in
232cf9328ccSAndy Lutomirski 	 * MSR_IA32_SYSENTER_CS.  When we context switch
233cf9328ccSAndy Lutomirski 	 * MSR_IA32_SYSENTER_CS, we first check if the new value being
234cf9328ccSAndy Lutomirski 	 * written matches ss1, and, if it's not, then we wrmsr the new
235cf9328ccSAndy Lutomirski 	 * value and update ss1.
23676e4c490SAndy Lutomirski 	 *
237cf9328ccSAndy Lutomirski 	 * The only reason we context switch MSR_IA32_SYSENTER_CS is
238cf9328ccSAndy Lutomirski 	 * that we set it to zero in vm86 tasks to avoid corrupting the
239cf9328ccSAndy Lutomirski 	 * stack if we were to go through the sysenter path from vm86
240cf9328ccSAndy Lutomirski 	 * mode.
24176e4c490SAndy Lutomirski 	 */
24276e4c490SAndy Lutomirski 	unsigned short		ss1;	/* MSR_IA32_SYSENTER_CS */
24376e4c490SAndy Lutomirski 
24476e4c490SAndy Lutomirski 	unsigned short		__ss1h;
245bb898558SAl Viro 	unsigned long		sp2;
246bb898558SAl Viro 	unsigned short		ss2, __ss2h;
247bb898558SAl Viro 	unsigned long		__cr3;
248bb898558SAl Viro 	unsigned long		ip;
249bb898558SAl Viro 	unsigned long		flags;
250bb898558SAl Viro 	unsigned long		ax;
251bb898558SAl Viro 	unsigned long		cx;
252bb898558SAl Viro 	unsigned long		dx;
253bb898558SAl Viro 	unsigned long		bx;
254bb898558SAl Viro 	unsigned long		sp;
255bb898558SAl Viro 	unsigned long		bp;
256bb898558SAl Viro 	unsigned long		si;
257bb898558SAl Viro 	unsigned long		di;
258bb898558SAl Viro 	unsigned short		es, __esh;
259bb898558SAl Viro 	unsigned short		cs, __csh;
260bb898558SAl Viro 	unsigned short		ss, __ssh;
261bb898558SAl Viro 	unsigned short		ds, __dsh;
262bb898558SAl Viro 	unsigned short		fs, __fsh;
263bb898558SAl Viro 	unsigned short		gs, __gsh;
264bb898558SAl Viro 	unsigned short		ldt, __ldth;
265bb898558SAl Viro 	unsigned short		trace;
266bb898558SAl Viro 	unsigned short		io_bitmap_base;
267bb898558SAl Viro 
268bb898558SAl Viro } __attribute__((packed));
269bb898558SAl Viro #else
270bb898558SAl Viro struct x86_hw_tss {
271bb898558SAl Viro 	u32			reserved1;
272bb898558SAl Viro 	u64			sp0;
273bb898558SAl Viro 	u64			sp1;
2749aaefe7bSAndy Lutomirski 
27598f05b51SAndy Lutomirski 	/*
27698f05b51SAndy Lutomirski 	 * Since Linux does not use ring 2, the 'sp2' slot is unused by
27798f05b51SAndy Lutomirski 	 * hardware.  entry_SYSCALL_64 uses it as scratch space to stash
27898f05b51SAndy Lutomirski 	 * the user RSP value.
27998f05b51SAndy Lutomirski 	 */
280bb898558SAl Viro 	u64			sp2;
28198f05b51SAndy Lutomirski 
282bb898558SAl Viro 	u64			reserved2;
283bb898558SAl Viro 	u64			ist[7];
284bb898558SAl Viro 	u32			reserved3;
285bb898558SAl Viro 	u32			reserved4;
286bb898558SAl Viro 	u16			reserved5;
287bb898558SAl Viro 	u16			io_bitmap_base;
288bb898558SAl Viro 
289d3273deaSAndy Lutomirski } __attribute__((packed));
290bb898558SAl Viro #endif
291bb898558SAl Viro 
292bb898558SAl Viro /*
293bb898558SAl Viro  * IO-bitmap sizes:
294bb898558SAl Viro  */
295bb898558SAl Viro #define IO_BITMAP_BITS			65536
296f5848e5fSThomas Gleixner #define IO_BITMAP_BYTES			(IO_BITMAP_BITS / BITS_PER_BYTE)
297bb898558SAl Viro #define IO_BITMAP_LONGS			(IO_BITMAP_BYTES / sizeof(long))
298ecc7e37dSThomas Gleixner 
299c8137aceSThomas Gleixner #define IO_BITMAP_OFFSET_VALID_MAP				\
300f5848e5fSThomas Gleixner 	(offsetof(struct tss_struct, io_bitmap.bitmap) -	\
301ecc7e37dSThomas Gleixner 	 offsetof(struct tss_struct, x86_tss))
302ecc7e37dSThomas Gleixner 
303c8137aceSThomas Gleixner #define IO_BITMAP_OFFSET_VALID_ALL				\
304c8137aceSThomas Gleixner 	(offsetof(struct tss_struct, io_bitmap.mapall) -	\
305c8137aceSThomas Gleixner 	 offsetof(struct tss_struct, x86_tss))
306c8137aceSThomas Gleixner 
307111e7b15SThomas Gleixner #ifdef CONFIG_X86_IOPL_IOPERM
308ecc7e37dSThomas Gleixner /*
309c8137aceSThomas Gleixner  * sizeof(unsigned long) coming from an extra "long" at the end of the
310c8137aceSThomas Gleixner  * iobitmap. The limit is inclusive, i.e. the last valid byte.
311ecc7e37dSThomas Gleixner  */
312ecc7e37dSThomas Gleixner # define __KERNEL_TSS_LIMIT	\
313c8137aceSThomas Gleixner 	(IO_BITMAP_OFFSET_VALID_ALL + IO_BITMAP_BYTES + \
314c8137aceSThomas Gleixner 	 sizeof(unsigned long) - 1)
315111e7b15SThomas Gleixner #else
316111e7b15SThomas Gleixner # define __KERNEL_TSS_LIMIT	\
317111e7b15SThomas Gleixner 	(offsetof(struct tss_struct, x86_tss) + sizeof(struct x86_hw_tss) - 1)
318111e7b15SThomas Gleixner #endif
319ecc7e37dSThomas Gleixner 
320ecc7e37dSThomas Gleixner /* Base offset outside of TSS_LIMIT so unpriviledged IO causes #GP */
321ecc7e37dSThomas Gleixner #define IO_BITMAP_OFFSET_INVALID	(__KERNEL_TSS_LIMIT + 1)
322bb898558SAl Viro 
3234fe2d8b1SDave Hansen struct entry_stack {
324c7aadc09SPeter Zijlstra 	char	stack[PAGE_SIZE];
3250f9a4810SAndy Lutomirski };
3260f9a4810SAndy Lutomirski 
3274fe2d8b1SDave Hansen struct entry_stack_page {
3284fe2d8b1SDave Hansen 	struct entry_stack stack;
329c482feefSAndy Lutomirski } __aligned(PAGE_SIZE);
3301a935bc3SAndy Lutomirski 
331f5848e5fSThomas Gleixner /*
332f5848e5fSThomas Gleixner  * All IO bitmap related data stored in the TSS:
333f5848e5fSThomas Gleixner  */
334f5848e5fSThomas Gleixner struct x86_io_bitmap {
335060aa16fSThomas Gleixner 	/* The sequence number of the last active bitmap. */
336060aa16fSThomas Gleixner 	u64			prev_sequence;
337060aa16fSThomas Gleixner 
338f5848e5fSThomas Gleixner 	/*
339f5848e5fSThomas Gleixner 	 * Store the dirty size of the last io bitmap offender. The next
340f5848e5fSThomas Gleixner 	 * one will have to do the cleanup as the switch out to a non io
341f5848e5fSThomas Gleixner 	 * bitmap user will just set x86_tss.io_bitmap_base to a value
342f5848e5fSThomas Gleixner 	 * outside of the TSS limit. So for sane tasks there is no need to
343f5848e5fSThomas Gleixner 	 * actually touch the io_bitmap at all.
344f5848e5fSThomas Gleixner 	 */
345f5848e5fSThomas Gleixner 	unsigned int		prev_max;
346f5848e5fSThomas Gleixner 
347f5848e5fSThomas Gleixner 	/*
348f5848e5fSThomas Gleixner 	 * The extra 1 is there because the CPU will access an
349f5848e5fSThomas Gleixner 	 * additional byte beyond the end of the IO permission
350f5848e5fSThomas Gleixner 	 * bitmap. The extra byte must be all 1 bits, and must
351f5848e5fSThomas Gleixner 	 * be within the limit.
352f5848e5fSThomas Gleixner 	 */
353f5848e5fSThomas Gleixner 	unsigned long		bitmap[IO_BITMAP_LONGS + 1];
354c8137aceSThomas Gleixner 
355c8137aceSThomas Gleixner 	/*
356c8137aceSThomas Gleixner 	 * Special I/O bitmap to emulate IOPL(3). All bytes zero,
357c8137aceSThomas Gleixner 	 * except the additional byte at the end.
358c8137aceSThomas Gleixner 	 */
359c8137aceSThomas Gleixner 	unsigned long		mapall[IO_BITMAP_LONGS + 1];
360f5848e5fSThomas Gleixner };
361f5848e5fSThomas Gleixner 
362bb898558SAl Viro struct tss_struct {
363bb898558SAl Viro 	/*
3641a935bc3SAndy Lutomirski 	 * The fixed hardware portion.  This must not cross a page boundary
3651a935bc3SAndy Lutomirski 	 * at risk of violating the SDM's advice and potentially triggering
3661a935bc3SAndy Lutomirski 	 * errata.
367bb898558SAl Viro 	 */
368bb898558SAl Viro 	struct x86_hw_tss	x86_tss;
369bb898558SAl Viro 
370f5848e5fSThomas Gleixner 	struct x86_io_bitmap	io_bitmap;
3711a935bc3SAndy Lutomirski } __aligned(PAGE_SIZE);
372bb898558SAl Viro 
373c482feefSAndy Lutomirski DECLARE_PER_CPU_PAGE_ALIGNED(struct tss_struct, cpu_tss_rw);
374bb898558SAl Viro 
375e6401c13SAndy Lutomirski /* Per CPU interrupt stacks */
376e6401c13SAndy Lutomirski struct irq_stack {
377e6401c13SAndy Lutomirski 	char		stack[IRQ_STACK_SIZE];
378e6401c13SAndy Lutomirski } __aligned(IRQ_STACK_SIZE);
379e6401c13SAndy Lutomirski 
380bb898558SAl Viro #ifdef CONFIG_X86_64
381e6401c13SAndy Lutomirski struct fixed_percpu_data {
382947e76cdSBrian Gerst 	/*
383947e76cdSBrian Gerst 	 * GCC hardcodes the stack canary as %gs:40.  Since the
384947e76cdSBrian Gerst 	 * irq_stack is the object at %gs:0, we reserve the bottom
385947e76cdSBrian Gerst 	 * 48 bytes of the irq stack for the canary.
3863fb0fdb3SAndy Lutomirski 	 *
3873fb0fdb3SAndy Lutomirski 	 * Once we are willing to require -mstack-protector-guard-symbol=
3883fb0fdb3SAndy Lutomirski 	 * support for x86_64 stackprotector, we can get rid of this.
389947e76cdSBrian Gerst 	 */
390947e76cdSBrian Gerst 	char		gs_base[40];
391947e76cdSBrian Gerst 	unsigned long	stack_canary;
392947e76cdSBrian Gerst };
393947e76cdSBrian Gerst 
394e6401c13SAndy Lutomirski DECLARE_PER_CPU_FIRST(struct fixed_percpu_data, fixed_percpu_data) __visible;
395e6401c13SAndy Lutomirski DECLARE_INIT_PER_CPU(fixed_percpu_data);
3962add8e23SBrian Gerst 
39735060ed6SVitaly Kuznetsov static inline unsigned long cpu_kernelmode_gs_base(int cpu)
39835060ed6SVitaly Kuznetsov {
399e6401c13SAndy Lutomirski 	return (unsigned long)per_cpu(fixed_percpu_data.gs_base, cpu);
40035060ed6SVitaly Kuznetsov }
40135060ed6SVitaly Kuznetsov 
4029766cdbcSJaswinder Singh Rajput extern asmlinkage void ignore_sysret(void);
40342b933b5SVitaly Kuznetsov 
40442b933b5SVitaly Kuznetsov /* Save actual FS/GS selectors and bases to current->thread */
4056758034eSThomas Gleixner void current_save_fsgs(void);
40660a5317fSTejun Heo #else	/* X86_64 */
407050e9baaSLinus Torvalds #ifdef CONFIG_STACKPROTECTOR
4083fb0fdb3SAndy Lutomirski DECLARE_PER_CPU(unsigned long, __stack_chk_guard);
409bb898558SAl Viro #endif
410951c2a51SThomas Gleixner #endif	/* !X86_64 */
411bb898558SAl Viro 
41224f1e32cSFrederic Weisbecker struct perf_event;
41324f1e32cSFrederic Weisbecker 
414bb898558SAl Viro struct thread_struct {
415bb898558SAl Viro 	/* Cached TLS descriptors: */
416bb898558SAl Viro 	struct desc_struct	tls_array[GDT_ENTRY_TLS_ENTRIES];
417d375cf15SAndy Lutomirski #ifdef CONFIG_X86_32
418bb898558SAl Viro 	unsigned long		sp0;
419d375cf15SAndy Lutomirski #endif
420bb898558SAl Viro 	unsigned long		sp;
421bb898558SAl Viro #ifdef CONFIG_X86_32
422bb898558SAl Viro 	unsigned long		sysenter_cs;
423bb898558SAl Viro #else
424bb898558SAl Viro 	unsigned short		es;
425bb898558SAl Viro 	unsigned short		ds;
426bb898558SAl Viro 	unsigned short		fsindex;
427bb898558SAl Viro 	unsigned short		gsindex;
428bb898558SAl Viro #endif
429b9d989c7SAndy Lutomirski 
430d756f4adSAlexey Dobriyan #ifdef CONFIG_X86_64
431296f781aSAndy Lutomirski 	unsigned long		fsbase;
432296f781aSAndy Lutomirski 	unsigned long		gsbase;
433296f781aSAndy Lutomirski #else
434296f781aSAndy Lutomirski 	/*
435296f781aSAndy Lutomirski 	 * XXX: this could presumably be unsigned short.  Alternatively,
436296f781aSAndy Lutomirski 	 * 32-bit kernels could be taught to use fsindex instead.
437296f781aSAndy Lutomirski 	 */
438bb898558SAl Viro 	unsigned long fs;
439bb898558SAl Viro 	unsigned long gs;
440296f781aSAndy Lutomirski #endif
441c5bedc68SIngo Molnar 
44224f1e32cSFrederic Weisbecker 	/* Save middle states of ptrace breakpoints */
44324f1e32cSFrederic Weisbecker 	struct perf_event	*ptrace_bps[HBP_NUM];
44424f1e32cSFrederic Weisbecker 	/* Debug status used for traps, single steps, etc... */
445d53d9bc0SPeter Zijlstra 	unsigned long           virtual_dr6;
446326264a0SFrederic Weisbecker 	/* Keep track of the exact dr7 value set by the user */
447326264a0SFrederic Weisbecker 	unsigned long           ptrace_dr7;
448bb898558SAl Viro 	/* Fault info: */
449bb898558SAl Viro 	unsigned long		cr2;
45051e7dc70SSrikar Dronamraju 	unsigned long		trap_nr;
451bb898558SAl Viro 	unsigned long		error_code;
4529fda6a06SBrian Gerst #ifdef CONFIG_VM86
453bb898558SAl Viro 	/* Virtual 86 mode info */
4549fda6a06SBrian Gerst 	struct vm86		*vm86;
455bb898558SAl Viro #endif
456bb898558SAl Viro 	/* IO permissions: */
457577d5cd7SThomas Gleixner 	struct io_bitmap	*io_bitmap;
458c8137aceSThomas Gleixner 
459c8137aceSThomas Gleixner 	/*
460d9f6e12fSIngo Molnar 	 * IOPL. Privilege level dependent I/O permission which is
461a24ca997SThomas Gleixner 	 * emulated via the I/O bitmap to prevent user space from disabling
462a24ca997SThomas Gleixner 	 * interrupts.
463c8137aceSThomas Gleixner 	 */
464c8137aceSThomas Gleixner 	unsigned long		iopl_emul;
4650c8c0f03SDave Hansen 
466b968e84bSPeter Zijlstra 	unsigned int		iopl_warn:1;
4672a53ccbcSIngo Molnar 	unsigned int		sig_on_uaccess_err:1;
468dfa9a942SAndy Lutomirski 
4699782a712SDave Hansen 	/*
4709782a712SDave Hansen 	 * Protection Keys Register for Userspace.  Loaded immediately on
4719782a712SDave Hansen 	 * context switch. Store it in thread_struct to avoid a lookup in
4729782a712SDave Hansen 	 * the tasks's FPU xstate buffer. This value is only valid when a
4739782a712SDave Hansen 	 * task is scheduled out. For 'current' the authoritative source of
4749782a712SDave Hansen 	 * PKRU is the hardware itself.
4759782a712SDave Hansen 	 */
4769782a712SDave Hansen 	u32			pkru;
4779782a712SDave Hansen 
4780c8c0f03SDave Hansen 	/* Floating point and extended processor state */
4790c8c0f03SDave Hansen 	struct fpu		fpu;
4800c8c0f03SDave Hansen 	/*
4810c8c0f03SDave Hansen 	 * WARNING: 'fpu' is dynamically-sized.  It *MUST* be at
4820c8c0f03SDave Hansen 	 * the end.
4830c8c0f03SDave Hansen 	 */
484bb898558SAl Viro };
485bb898558SAl Viro 
4862dd8eedcSThomas Gleixner extern void fpu_thread_struct_whitelist(unsigned long *offset, unsigned long *size);
4872dd8eedcSThomas Gleixner 
488f7d83c1cSKees Cook static inline void arch_thread_struct_whitelist(unsigned long *offset,
489f7d83c1cSKees Cook 						unsigned long *size)
490f7d83c1cSKees Cook {
4912dd8eedcSThomas Gleixner 	fpu_thread_struct_whitelist(offset, size);
492f7d83c1cSKees Cook }
493f7d83c1cSKees Cook 
494bb898558SAl Viro static inline void
495da51da18SAndy Lutomirski native_load_sp0(unsigned long sp0)
496bb898558SAl Viro {
497c482feefSAndy Lutomirski 	this_cpu_write(cpu_tss_rw.x86_tss.sp0, sp0);
498bb898558SAl Viro }
499bb898558SAl Viro 
50058edfd2eSChang S. Bae static __always_inline void native_swapgs(void)
501bb898558SAl Viro {
502bb898558SAl Viro #ifdef CONFIG_X86_64
503bb898558SAl Viro 	asm volatile("swapgs" ::: "memory");
504bb898558SAl Viro #endif
505bb898558SAl Viro }
506bb898558SAl Viro 
5071894a403SPeter Zijlstra static __always_inline unsigned long current_top_of_stack(void)
5088ef46a67SAndy Lutomirski {
5099aaefe7bSAndy Lutomirski 	/*
5109aaefe7bSAndy Lutomirski 	 *  We can't read directly from tss.sp0: sp0 on x86_32 is special in
5119aaefe7bSAndy Lutomirski 	 *  and around vm86 mode and sp0 on x86_64 is special because of the
5129aaefe7bSAndy Lutomirski 	 *  entry trampoline.
5139aaefe7bSAndy Lutomirski 	 */
514c063a217SThomas Gleixner 	return this_cpu_read_stable(pcpu_hot.top_of_stack);
5158ef46a67SAndy Lutomirski }
5168ef46a67SAndy Lutomirski 
5171894a403SPeter Zijlstra static __always_inline bool on_thread_stack(void)
5183383642cSAndy Lutomirski {
5193383642cSAndy Lutomirski 	return (unsigned long)(current_top_of_stack() -
5203383642cSAndy Lutomirski 			       current_stack_pointer) < THREAD_SIZE;
5213383642cSAndy Lutomirski }
5223383642cSAndy Lutomirski 
5239bad5658SJuergen Gross #ifdef CONFIG_PARAVIRT_XXL
524bb898558SAl Viro #include <asm/paravirt.h>
525bb898558SAl Viro #else
526bb898558SAl Viro 
527da51da18SAndy Lutomirski static inline void load_sp0(unsigned long sp0)
528bb898558SAl Viro {
529da51da18SAndy Lutomirski 	native_load_sp0(sp0);
530bb898558SAl Viro }
531bb898558SAl Viro 
5329bad5658SJuergen Gross #endif /* CONFIG_PARAVIRT_XXL */
533bb898558SAl Viro 
53442a20f86SKees Cook unsigned long __get_wchan(struct task_struct *p);
535bb898558SAl Viro 
536bb898558SAl Viro extern void select_idle_routine(const struct cpuinfo_x86 *c);
53707c94a38SBorislav Petkov extern void amd_e400_c1e_apic_setup(void);
538bb898558SAl Viro 
539bb898558SAl Viro extern unsigned long		boot_option_idle_override;
540bb898558SAl Viro 
541d1896049SThomas Renninger enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
54269fb3676SLen Brown 			 IDLE_POLL};
543d1896049SThomas Renninger 
544bb898558SAl Viro extern void enable_sep_cpu(void);
545bb898558SAl Viro 
54629c84391SJan Kiszka 
547bb898558SAl Viro /* Defined in head.S */
548bb898558SAl Viro extern struct desc_ptr		early_gdt_descr;
549bb898558SAl Viro 
5501f19e2d5SThomas Gleixner extern void switch_gdt_and_percpu_base(int);
55145fc8757SThomas Garnier extern void load_direct_gdt(int);
55269218e47SThomas Garnier extern void load_fixmap_gdt(int);
553bb898558SAl Viro extern void cpu_init(void);
554520d0308SJoerg Roedel extern void cpu_init_exception_handling(void);
5557652ac92SThomas Gleixner extern void cr4_init(void);
556bb898558SAl Viro 
557c2724775SMarkus Metzger static inline unsigned long get_debugctlmsr(void)
558c2724775SMarkus Metzger {
559c2724775SMarkus Metzger 	unsigned long debugctlmsr = 0;
560c2724775SMarkus Metzger 
561c2724775SMarkus Metzger #ifndef CONFIG_X86_DEBUGCTLMSR
562c2724775SMarkus Metzger 	if (boot_cpu_data.x86 < 6)
563c2724775SMarkus Metzger 		return 0;
564c2724775SMarkus Metzger #endif
565c2724775SMarkus Metzger 	rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
566c2724775SMarkus Metzger 
567c2724775SMarkus Metzger 	return debugctlmsr;
568c2724775SMarkus Metzger }
569c2724775SMarkus Metzger 
570bb898558SAl Viro static inline void update_debugctlmsr(unsigned long debugctlmsr)
571bb898558SAl Viro {
572bb898558SAl Viro #ifndef CONFIG_X86_DEBUGCTLMSR
573bb898558SAl Viro 	if (boot_cpu_data.x86 < 6)
574bb898558SAl Viro 		return;
575bb898558SAl Viro #endif
576bb898558SAl Viro 	wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
577bb898558SAl Viro }
578bb898558SAl Viro 
5799bd1190aSOleg Nesterov extern void set_task_blockstep(struct task_struct *task, bool on);
5809bd1190aSOleg Nesterov 
581bb898558SAl Viro /* Boot loader type from the setup header: */
582bb898558SAl Viro extern int			bootloader_type;
5835031296cSH. Peter Anvin extern int			bootloader_version;
584bb898558SAl Viro 
585bb898558SAl Viro extern char			ignore_fpu_irq;
586bb898558SAl Viro 
587bb898558SAl Viro #define HAVE_ARCH_PICK_MMAP_LAYOUT 1
588bb898558SAl Viro #define ARCH_HAS_PREFETCHW
589bb898558SAl Viro #define ARCH_HAS_SPINLOCK_PREFETCH
590bb898558SAl Viro 
591bb898558SAl Viro #ifdef CONFIG_X86_32
592a930dc45SBorislav Petkov # define BASE_PREFETCH		""
593bb898558SAl Viro # define ARCH_HAS_PREFETCH
594bb898558SAl Viro #else
595a930dc45SBorislav Petkov # define BASE_PREFETCH		"prefetcht0 %P1"
596bb898558SAl Viro #endif
597bb898558SAl Viro 
598bb898558SAl Viro /*
599bb898558SAl Viro  * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
600bb898558SAl Viro  *
601bb898558SAl Viro  * It's not worth to care about 3dnow prefetches for the K6
602bb898558SAl Viro  * because they are microcoded there and very slow.
603bb898558SAl Viro  */
604bb898558SAl Viro static inline void prefetch(const void *x)
605bb898558SAl Viro {
606a930dc45SBorislav Petkov 	alternative_input(BASE_PREFETCH, "prefetchnta %P1",
607bb898558SAl Viro 			  X86_FEATURE_XMM,
608a930dc45SBorislav Petkov 			  "m" (*(const char *)x));
609bb898558SAl Viro }
610bb898558SAl Viro 
611bb898558SAl Viro /*
612bb898558SAl Viro  * 3dnow prefetch to get an exclusive cache line.
613bb898558SAl Viro  * Useful for spinlocks to avoid one state transition in the
614bb898558SAl Viro  * cache coherency protocol:
615bb898558SAl Viro  */
6162823e83aSPeter Zijlstra static __always_inline void prefetchw(const void *x)
617bb898558SAl Viro {
618a930dc45SBorislav Petkov 	alternative_input(BASE_PREFETCH, "prefetchw %P1",
619a930dc45SBorislav Petkov 			  X86_FEATURE_3DNOWPREFETCH,
620a930dc45SBorislav Petkov 			  "m" (*(const char *)x));
621bb898558SAl Viro }
622bb898558SAl Viro 
623bb898558SAl Viro static inline void spin_lock_prefetch(const void *x)
624bb898558SAl Viro {
625bb898558SAl Viro 	prefetchw(x);
626bb898558SAl Viro }
627bb898558SAl Viro 
628d9e05cc5SAndy Lutomirski #define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \
629d9e05cc5SAndy Lutomirski 			   TOP_OF_KERNEL_STACK_PADDING)
630d9e05cc5SAndy Lutomirski 
6313500130bSAndy Lutomirski #define task_top_of_stack(task) ((unsigned long)(task_pt_regs(task) + 1))
6323500130bSAndy Lutomirski 
633d375cf15SAndy Lutomirski #define task_pt_regs(task) \
634d375cf15SAndy Lutomirski ({									\
635d375cf15SAndy Lutomirski 	unsigned long __ptr = (unsigned long)task_stack_page(task);	\
636d375cf15SAndy Lutomirski 	__ptr += THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING;		\
637d375cf15SAndy Lutomirski 	((struct pt_regs *)__ptr) - 1;					\
638d375cf15SAndy Lutomirski })
639d375cf15SAndy Lutomirski 
640bb898558SAl Viro #ifdef CONFIG_X86_32
641bb898558SAl Viro #define INIT_THREAD  {							  \
642d9e05cc5SAndy Lutomirski 	.sp0			= TOP_OF_INIT_STACK,			  \
643bb898558SAl Viro 	.sysenter_cs		= __KERNEL_CS,				  \
644bb898558SAl Viro }
645bb898558SAl Viro 
646bb898558SAl Viro #define KSTK_ESP(task)		(task_pt_regs(task)->sp)
647bb898558SAl Viro 
648bb898558SAl Viro #else
6493adee777SBrian Gerst extern unsigned long __end_init_task[];
6503adee777SBrian Gerst 
6513adee777SBrian Gerst #define INIT_THREAD {							    \
6523adee777SBrian Gerst 	.sp	= (unsigned long)&__end_init_task - sizeof(struct pt_regs), \
6533adee777SBrian Gerst }
654bb898558SAl Viro 
65589240ba0SStefani Seibold extern unsigned long KSTK_ESP(struct task_struct *task);
656d046ff8bSH. J. Lu 
657bb898558SAl Viro #endif /* CONFIG_X86_64 */
658bb898558SAl Viro 
659bb898558SAl Viro extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
660bb898558SAl Viro 					       unsigned long new_sp);
661bb898558SAl Viro 
662bb898558SAl Viro /*
663bb898558SAl Viro  * This decides where the kernel will search for a free chunk of vm
664bb898558SAl Viro  * space during mmap's.
665bb898558SAl Viro  */
6668f3e474fSDmitry Safonov #define __TASK_UNMAPPED_BASE(task_size)	(PAGE_ALIGN(task_size / 3))
667b569bab7SKirill A. Shutemov #define TASK_UNMAPPED_BASE		__TASK_UNMAPPED_BASE(TASK_SIZE_LOW)
668bb898558SAl Viro 
669bb898558SAl Viro #define KSTK_EIP(task)		(task_pt_regs(task)->ip)
670bb898558SAl Viro 
671bb898558SAl Viro /* Get/set a process' ability to use the timestamp counter instruction */
672bb898558SAl Viro #define GET_TSC_CTL(adr)	get_tsc_mode((adr))
673bb898558SAl Viro #define SET_TSC_CTL(val)	set_tsc_mode((val))
674bb898558SAl Viro 
675bb898558SAl Viro extern int get_tsc_mode(unsigned long adr);
676bb898558SAl Viro extern int set_tsc_mode(unsigned int val);
677bb898558SAl Viro 
678e9ea1e7fSKyle Huey DECLARE_PER_CPU(u64, msr_misc_features_shadow);
679e9ea1e7fSKyle Huey 
6809164d949SKim Phillips extern u16 get_llc_id(unsigned int cpu);
6819164d949SKim Phillips 
682bc8e80d5SBorislav Petkov #ifdef CONFIG_CPU_SUP_AMD
683cc2749e4SAravind Gopalakrishnan extern u32 amd_get_nodes_per_socket(void);
6843743d55bSHuang Rui extern u32 amd_get_highest_perf(void);
685*fb3bd914SBorislav Petkov (AMD) extern bool cpu_has_ibpb_brtype_microcode(void);
686bc8e80d5SBorislav Petkov #else
687bc8e80d5SBorislav Petkov static inline u32 amd_get_nodes_per_socket(void)	{ return 0; }
6883743d55bSHuang Rui static inline u32 amd_get_highest_perf(void)		{ return 0; }
689*fb3bd914SBorislav Petkov (AMD) static inline bool cpu_has_ibpb_brtype_microcode(void)	{ return false; }
690bc8e80d5SBorislav Petkov #endif
6916a812691SAndreas Herrmann 
692f05e798aSDavid Howells extern unsigned long arch_align_stack(unsigned long sp);
693e5cb113fSAlexey Dobriyan void free_init_pages(const char *what, unsigned long begin, unsigned long end);
6945494c3a6SKees Cook extern void free_kernel_image_pages(const char *what, void *begin, void *end);
695f05e798aSDavid Howells 
696f05e798aSDavid Howells void default_idle(void);
6976a377ddcSLen Brown #ifdef	CONFIG_XEN
6986a377ddcSLen Brown bool xen_set_default_idle(void);
6996a377ddcSLen Brown #else
7006a377ddcSLen Brown #define xen_set_default_idle 0
7016a377ddcSLen Brown #endif
702f05e798aSDavid Howells 
703f9cdf7caSPeter Zijlstra void __noreturn stop_this_cpu(void *dummy);
704ab31c744SAshok Raj void microcode_check(struct cpuinfo_x86 *prev_info);
705c0dd9245SAshok Raj void store_cpu_caps(struct cpuinfo_x86 *info);
706d90a7a0eSJiri Kosina 
707d90a7a0eSJiri Kosina enum l1tf_mitigations {
708d90a7a0eSJiri Kosina 	L1TF_MITIGATION_OFF,
709d90a7a0eSJiri Kosina 	L1TF_MITIGATION_FLUSH_NOWARN,
710d90a7a0eSJiri Kosina 	L1TF_MITIGATION_FLUSH,
711d90a7a0eSJiri Kosina 	L1TF_MITIGATION_FLUSH_NOSMT,
712d90a7a0eSJiri Kosina 	L1TF_MITIGATION_FULL,
713d90a7a0eSJiri Kosina 	L1TF_MITIGATION_FULL_FORCE
714d90a7a0eSJiri Kosina };
715d90a7a0eSJiri Kosina 
716d90a7a0eSJiri Kosina extern enum l1tf_mitigations l1tf_mitigation;
717d90a7a0eSJiri Kosina 
718bc124170SThomas Gleixner enum mds_mitigations {
719bc124170SThomas Gleixner 	MDS_MITIGATION_OFF,
720bc124170SThomas Gleixner 	MDS_MITIGATION_FULL,
72122dd8365SThomas Gleixner 	MDS_MITIGATION_VMWERV,
722bc124170SThomas Gleixner };
723bc124170SThomas Gleixner 
72403b122daSTony Luck #ifdef CONFIG_X86_SGX
72503b122daSTony Luck int arch_memory_failure(unsigned long pfn, int flags);
72603b122daSTony Luck #define arch_memory_failure arch_memory_failure
72703b122daSTony Luck 
72803b122daSTony Luck bool arch_is_platform_page(u64 paddr);
72903b122daSTony Luck #define arch_is_platform_page arch_is_platform_page
73003b122daSTony Luck #endif
73103b122daSTony Luck 
7321965aae3SH. Peter Anvin #endif /* _ASM_X86_PROCESSOR_H */
733