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> 3198cfa463SRick Edgecombe #include <asm/shstk.h> 32bb898558SAl Viro 33bb898558SAl Viro #include <linux/personality.h> 34bb898558SAl Viro #include <linux/cache.h> 35bb898558SAl Viro #include <linux/threads.h> 365cbc19a9SPeter Zijlstra #include <linux/math64.h> 37faa4602eSPeter Zijlstra #include <linux/err.h> 38f05e798aSDavid Howells #include <linux/irqflags.h> 3921729f81STom Lendacky #include <linux/mem_encrypt.h> 40f05e798aSDavid Howells 41f05e798aSDavid Howells /* 42f05e798aSDavid Howells * We handle most unaligned accesses in hardware. On the other hand 43f05e798aSDavid Howells * unaligned DMA can be quite expensive on some Nehalem processors. 44f05e798aSDavid Howells * 45f05e798aSDavid Howells * Based on this we disable the IP header alignment in network drivers. 46f05e798aSDavid Howells */ 47f05e798aSDavid Howells #define NET_IP_ALIGN 0 48bb898558SAl Viro 49b332828cSK.Prasad #define HBP_NUM 4 50bb898558SAl Viro 51b8c1b8eaSIngo Molnar /* 52b8c1b8eaSIngo Molnar * These alignment constraints are for performance in the vSMP case, 53b8c1b8eaSIngo Molnar * but in the task_struct case we must also meet hardware imposed 54b8c1b8eaSIngo Molnar * alignment requirements of the FPU state: 55b8c1b8eaSIngo Molnar */ 56bb898558SAl Viro #ifdef CONFIG_X86_VSMP 57bb898558SAl Viro # define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT) 58bb898558SAl Viro # define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT) 59bb898558SAl Viro #else 60b8c1b8eaSIngo Molnar # define ARCH_MIN_TASKALIGN __alignof__(union fpregs_state) 61bb898558SAl Viro # define ARCH_MIN_MMSTRUCT_ALIGN 0 62bb898558SAl Viro #endif 63bb898558SAl Viro 64e0ba94f1SAlex Shi enum tlb_infos { 65e0ba94f1SAlex Shi ENTRIES, 66e0ba94f1SAlex Shi NR_INFO 67e0ba94f1SAlex Shi }; 68e0ba94f1SAlex Shi 69e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_4k[NR_INFO]; 70e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_2m[NR_INFO]; 71e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lli_4m[NR_INFO]; 72e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_4k[NR_INFO]; 73e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_2m[NR_INFO]; 74e0ba94f1SAlex Shi extern u16 __read_mostly tlb_lld_4m[NR_INFO]; 75dd360393SKirill A. Shutemov extern u16 __read_mostly tlb_lld_1g[NR_INFO]; 76c4211f42SAlex Shi 77bb898558SAl Viro /* 78bb898558SAl Viro * CPU type and hardware bug flags. Kept separately for each CPU. 79bb898558SAl Viro */ 80bb898558SAl Viro 81b9655e70SThomas Gleixner struct cpuinfo_topology { 82b9655e70SThomas Gleixner // Real APIC ID read from the local APIC 83b9655e70SThomas Gleixner u32 apicid; 84b9655e70SThomas Gleixner // The initial APIC ID provided by CPUID 85b9655e70SThomas Gleixner u32 initial_apicid; 8602fb601dSThomas Gleixner 8702fb601dSThomas Gleixner // Physical package ID 8802fb601dSThomas Gleixner u32 pkg_id; 89*8a169ed4SThomas Gleixner 90*8a169ed4SThomas Gleixner // Physical die ID on AMD, Relative on Intel 91*8a169ed4SThomas Gleixner u32 die_id; 92b9655e70SThomas Gleixner }; 93b9655e70SThomas Gleixner 94bb898558SAl Viro struct cpuinfo_x86 { 95bb898558SAl Viro __u8 x86; /* CPU family */ 96bb898558SAl Viro __u8 x86_vendor; /* CPU vendor */ 97bb898558SAl Viro __u8 x86_model; 98b399151cSJia Zhang __u8 x86_stepping; 996415813bSMathias Krause #ifdef CONFIG_X86_64 100bb898558SAl Viro /* Number of 4K pages in DTLB/ITLB combined(in pages): */ 101bb898558SAl Viro int x86_tlbsize; 10213c6c532SJan Beulich #endif 103b47ce1feSSean Christopherson #ifdef CONFIG_X86_VMX_FEATURE_NAMES 104b47ce1feSSean Christopherson __u32 vmx_capability[NVMXINTS]; 105b47ce1feSSean Christopherson #endif 106bb898558SAl Viro __u8 x86_virt_bits; 107bb898558SAl Viro __u8 x86_phys_bits; 108bb898558SAl Viro /* CPUID returned core id bits: */ 109bb898558SAl Viro __u8 x86_coreid_bits; 11079a8b9aaSBorislav Petkov __u8 cu_id; 111bb898558SAl Viro /* Max extended CPUID function supported: */ 112bb898558SAl Viro __u32 extended_cpuid_level; 113bb898558SAl Viro /* Maximum supported CPUID level, -1=no CPUID: */ 114bb898558SAl Viro int cpuid_level; 115db8c33f8SFenghua Yu /* 116db8c33f8SFenghua Yu * Align to size of unsigned long because the x86_capability array 117db8c33f8SFenghua Yu * is passed to bitops which require the alignment. Use unnamed 118db8c33f8SFenghua Yu * union to enforce the array is aligned to size of unsigned long. 119db8c33f8SFenghua Yu */ 120db8c33f8SFenghua Yu union { 12165fc985bSBorislav Petkov __u32 x86_capability[NCAPINTS + NBUGINTS]; 122db8c33f8SFenghua Yu unsigned long x86_capability_alignment; 123db8c33f8SFenghua Yu }; 124bb898558SAl Viro char x86_vendor_id[16]; 125bb898558SAl Viro char x86_model_id[64]; 126b9655e70SThomas Gleixner struct cpuinfo_topology topo; 127bb898558SAl Viro /* in KB - valid for CPUS which support this call: */ 12824dbc600SGustavo A. R. Silva unsigned int x86_cache_size; 129bb898558SAl Viro int x86_cache_alignment; /* In bytes */ 130f3d44f18SReinette Chatre /* Cache QoS architectural values, valid only on the BSP: */ 131cbc82b17SPeter P Waskiewicz Jr int x86_cache_max_rmid; /* max index */ 132cbc82b17SPeter P Waskiewicz Jr int x86_cache_occ_scale; /* scale to bytes */ 133f3d44f18SReinette Chatre int x86_cache_mbm_width_offset; 134bb898558SAl Viro int x86_power; 135bb898558SAl Viro unsigned long loops_per_jiffy; 136822ccfadSTony Luck /* protected processor identification number */ 137822ccfadSTony Luck u64 ppin; 138bb898558SAl Viro /* cpuid returned max cores value: */ 139bb898558SAl Viro u16 x86_max_cores; 140bb898558SAl Viro u16 x86_clflush_size; 141bb898558SAl Viro /* number of cores as seen by the OS: */ 142bb898558SAl Viro u16 booted_cores; 1431f12e32fSThomas Gleixner /* Logical processor id: */ 1441f12e32fSThomas Gleixner u16 logical_proc_id; 145bb898558SAl Viro /* Core id: */ 146bb898558SAl Viro u16 cpu_core_id; 147212bf4fdSLen Brown u16 logical_die_id; 148bb898558SAl Viro /* Index into per_cpu list: */ 149bb898558SAl Viro u16 cpu_index; 150c52787b5SBalbir Singh /* Is SMT active on this core? */ 151c52787b5SBalbir Singh bool smt_active; 152506ed6b5SAndi Kleen u32 microcode; 153cc51e542SAndi Kleen /* Address space bits used by the cache internally */ 154cc51e542SAndi Kleen u8 x86_cache_bits; 15530bb9811SAndi Kleen unsigned initialized : 1; 1563859a271SKees Cook } __randomize_layout; 157bb898558SAl Viro 158bb898558SAl Viro #define X86_VENDOR_INTEL 0 159bb898558SAl Viro #define X86_VENDOR_CYRIX 1 160bb898558SAl Viro #define X86_VENDOR_AMD 2 161bb898558SAl Viro #define X86_VENDOR_UMC 3 162bb898558SAl Viro #define X86_VENDOR_CENTAUR 5 163bb898558SAl Viro #define X86_VENDOR_TRANSMETA 7 164bb898558SAl Viro #define X86_VENDOR_NSC 8 165c9661c1eSPu Wen #define X86_VENDOR_HYGON 9 166761fdd5eSTony W Wang-oc #define X86_VENDOR_ZHAOXIN 10 167639475d4SMarcos Del Sol Vives #define X86_VENDOR_VORTEX 11 168639475d4SMarcos Del Sol Vives #define X86_VENDOR_NUM 12 169bb898558SAl Viro 170bb898558SAl Viro #define X86_VENDOR_UNKNOWN 0xff 171bb898558SAl Viro 172bb898558SAl Viro /* 173bb898558SAl Viro * capabilities of CPUs 174bb898558SAl Viro */ 175bb898558SAl Viro extern struct cpuinfo_x86 boot_cpu_data; 176bb898558SAl Viro extern struct cpuinfo_x86 new_cpu_data; 177bb898558SAl Viro 1786cbd2171SThomas Gleixner extern __u32 cpu_caps_cleared[NCAPINTS + NBUGINTS]; 1796cbd2171SThomas Gleixner extern __u32 cpu_caps_set[NCAPINTS + NBUGINTS]; 180bb898558SAl Viro 181bb898558SAl Viro #ifdef CONFIG_SMP 1822c773dd3SJan Beulich DECLARE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info); 183bb898558SAl Viro #define cpu_data(cpu) per_cpu(cpu_info, cpu) 184bb898558SAl Viro #else 1857b543a53STejun Heo #define cpu_info boot_cpu_data 186bb898558SAl Viro #define cpu_data(cpu) boot_cpu_data 187bb898558SAl Viro #endif 188bb898558SAl Viro 189bb898558SAl Viro extern const struct seq_operations cpuinfo_op; 190bb898558SAl Viro 191bb898558SAl Viro #define cache_line_size() (boot_cpu_data.x86_cache_alignment) 192bb898558SAl Viro 193bb898558SAl Viro extern void cpu_detect(struct cpuinfo_x86 *c); 194bb898558SAl Viro 1959df95169SVlastimil Babka static inline unsigned long long l1tf_pfn_limit(void) 19617dbca11SAndi Kleen { 197cc51e542SAndi Kleen return BIT_ULL(boot_cpu_data.x86_cache_bits - 1 - PAGE_SHIFT); 19817dbca11SAndi Kleen } 19917dbca11SAndi Kleen 200bb898558SAl Viro extern void early_cpu_init(void); 201bb898558SAl Viro extern void identify_secondary_cpu(struct cpuinfo_x86 *); 202bb898558SAl Viro extern void print_cpu_info(struct cpuinfo_x86 *); 20321c3fcf3SYinghai Lu void print_cpu_msr(struct cpuinfo_x86 *); 204bb898558SAl Viro 2056c690ee1SAndy Lutomirski /* 2066c690ee1SAndy Lutomirski * Friendlier CR3 helpers. 2076c690ee1SAndy Lutomirski */ 2086c690ee1SAndy Lutomirski static inline unsigned long read_cr3_pa(void) 2096c690ee1SAndy Lutomirski { 2106c690ee1SAndy Lutomirski return __read_cr3() & CR3_ADDR_MASK; 2116c690ee1SAndy Lutomirski } 2126c690ee1SAndy Lutomirski 213eef9c4abSTom Lendacky static inline unsigned long native_read_cr3_pa(void) 214eef9c4abSTom Lendacky { 215eef9c4abSTom Lendacky return __native_read_cr3() & CR3_ADDR_MASK; 216eef9c4abSTom Lendacky } 217eef9c4abSTom Lendacky 218bb898558SAl Viro static inline void load_cr3(pgd_t *pgdir) 219bb898558SAl Viro { 22021729f81STom Lendacky write_cr3(__sme_pa(pgdir)); 221bb898558SAl Viro } 222bb898558SAl Viro 2237fb983b4SAndy Lutomirski /* 2247fb983b4SAndy Lutomirski * Note that while the legacy 'TSS' name comes from 'Task State Segment', 2257fb983b4SAndy Lutomirski * on modern x86 CPUs the TSS also holds information important to 64-bit mode, 2267fb983b4SAndy Lutomirski * unrelated to the task-switch mechanism: 2277fb983b4SAndy Lutomirski */ 228bb898558SAl Viro #ifdef CONFIG_X86_32 229bb898558SAl Viro /* This is the TSS defined by the hardware. */ 230bb898558SAl Viro struct x86_hw_tss { 231bb898558SAl Viro unsigned short back_link, __blh; 232bb898558SAl Viro unsigned long sp0; 233bb898558SAl Viro unsigned short ss0, __ss0h; 234cf9328ccSAndy Lutomirski unsigned long sp1; 23576e4c490SAndy Lutomirski 23676e4c490SAndy Lutomirski /* 237cf9328ccSAndy Lutomirski * We don't use ring 1, so ss1 is a convenient scratch space in 238cf9328ccSAndy Lutomirski * the same cacheline as sp0. We use ss1 to cache the value in 239cf9328ccSAndy Lutomirski * MSR_IA32_SYSENTER_CS. When we context switch 240cf9328ccSAndy Lutomirski * MSR_IA32_SYSENTER_CS, we first check if the new value being 241cf9328ccSAndy Lutomirski * written matches ss1, and, if it's not, then we wrmsr the new 242cf9328ccSAndy Lutomirski * value and update ss1. 24376e4c490SAndy Lutomirski * 244cf9328ccSAndy Lutomirski * The only reason we context switch MSR_IA32_SYSENTER_CS is 245cf9328ccSAndy Lutomirski * that we set it to zero in vm86 tasks to avoid corrupting the 246cf9328ccSAndy Lutomirski * stack if we were to go through the sysenter path from vm86 247cf9328ccSAndy Lutomirski * mode. 24876e4c490SAndy Lutomirski */ 24976e4c490SAndy Lutomirski unsigned short ss1; /* MSR_IA32_SYSENTER_CS */ 25076e4c490SAndy Lutomirski 25176e4c490SAndy Lutomirski unsigned short __ss1h; 252bb898558SAl Viro unsigned long sp2; 253bb898558SAl Viro unsigned short ss2, __ss2h; 254bb898558SAl Viro unsigned long __cr3; 255bb898558SAl Viro unsigned long ip; 256bb898558SAl Viro unsigned long flags; 257bb898558SAl Viro unsigned long ax; 258bb898558SAl Viro unsigned long cx; 259bb898558SAl Viro unsigned long dx; 260bb898558SAl Viro unsigned long bx; 261bb898558SAl Viro unsigned long sp; 262bb898558SAl Viro unsigned long bp; 263bb898558SAl Viro unsigned long si; 264bb898558SAl Viro unsigned long di; 265bb898558SAl Viro unsigned short es, __esh; 266bb898558SAl Viro unsigned short cs, __csh; 267bb898558SAl Viro unsigned short ss, __ssh; 268bb898558SAl Viro unsigned short ds, __dsh; 269bb898558SAl Viro unsigned short fs, __fsh; 270bb898558SAl Viro unsigned short gs, __gsh; 271bb898558SAl Viro unsigned short ldt, __ldth; 272bb898558SAl Viro unsigned short trace; 273bb898558SAl Viro unsigned short io_bitmap_base; 274bb898558SAl Viro 275bb898558SAl Viro } __attribute__((packed)); 276bb898558SAl Viro #else 277bb898558SAl Viro struct x86_hw_tss { 278bb898558SAl Viro u32 reserved1; 279bb898558SAl Viro u64 sp0; 280bb898558SAl Viro u64 sp1; 2819aaefe7bSAndy Lutomirski 28298f05b51SAndy Lutomirski /* 28398f05b51SAndy Lutomirski * Since Linux does not use ring 2, the 'sp2' slot is unused by 28498f05b51SAndy Lutomirski * hardware. entry_SYSCALL_64 uses it as scratch space to stash 28598f05b51SAndy Lutomirski * the user RSP value. 28698f05b51SAndy Lutomirski */ 287bb898558SAl Viro u64 sp2; 28898f05b51SAndy Lutomirski 289bb898558SAl Viro u64 reserved2; 290bb898558SAl Viro u64 ist[7]; 291bb898558SAl Viro u32 reserved3; 292bb898558SAl Viro u32 reserved4; 293bb898558SAl Viro u16 reserved5; 294bb898558SAl Viro u16 io_bitmap_base; 295bb898558SAl Viro 296d3273deaSAndy Lutomirski } __attribute__((packed)); 297bb898558SAl Viro #endif 298bb898558SAl Viro 299bb898558SAl Viro /* 300bb898558SAl Viro * IO-bitmap sizes: 301bb898558SAl Viro */ 302bb898558SAl Viro #define IO_BITMAP_BITS 65536 303f5848e5fSThomas Gleixner #define IO_BITMAP_BYTES (IO_BITMAP_BITS / BITS_PER_BYTE) 304bb898558SAl Viro #define IO_BITMAP_LONGS (IO_BITMAP_BYTES / sizeof(long)) 305ecc7e37dSThomas Gleixner 306c8137aceSThomas Gleixner #define IO_BITMAP_OFFSET_VALID_MAP \ 307f5848e5fSThomas Gleixner (offsetof(struct tss_struct, io_bitmap.bitmap) - \ 308ecc7e37dSThomas Gleixner offsetof(struct tss_struct, x86_tss)) 309ecc7e37dSThomas Gleixner 310c8137aceSThomas Gleixner #define IO_BITMAP_OFFSET_VALID_ALL \ 311c8137aceSThomas Gleixner (offsetof(struct tss_struct, io_bitmap.mapall) - \ 312c8137aceSThomas Gleixner offsetof(struct tss_struct, x86_tss)) 313c8137aceSThomas Gleixner 314111e7b15SThomas Gleixner #ifdef CONFIG_X86_IOPL_IOPERM 315ecc7e37dSThomas Gleixner /* 316c8137aceSThomas Gleixner * sizeof(unsigned long) coming from an extra "long" at the end of the 317c8137aceSThomas Gleixner * iobitmap. The limit is inclusive, i.e. the last valid byte. 318ecc7e37dSThomas Gleixner */ 319ecc7e37dSThomas Gleixner # define __KERNEL_TSS_LIMIT \ 320c8137aceSThomas Gleixner (IO_BITMAP_OFFSET_VALID_ALL + IO_BITMAP_BYTES + \ 321c8137aceSThomas Gleixner sizeof(unsigned long) - 1) 322111e7b15SThomas Gleixner #else 323111e7b15SThomas Gleixner # define __KERNEL_TSS_LIMIT \ 324111e7b15SThomas Gleixner (offsetof(struct tss_struct, x86_tss) + sizeof(struct x86_hw_tss) - 1) 325111e7b15SThomas Gleixner #endif 326ecc7e37dSThomas Gleixner 327ecc7e37dSThomas Gleixner /* Base offset outside of TSS_LIMIT so unpriviledged IO causes #GP */ 328ecc7e37dSThomas Gleixner #define IO_BITMAP_OFFSET_INVALID (__KERNEL_TSS_LIMIT + 1) 329bb898558SAl Viro 3304fe2d8b1SDave Hansen struct entry_stack { 331c7aadc09SPeter Zijlstra char stack[PAGE_SIZE]; 3320f9a4810SAndy Lutomirski }; 3330f9a4810SAndy Lutomirski 3344fe2d8b1SDave Hansen struct entry_stack_page { 3354fe2d8b1SDave Hansen struct entry_stack stack; 336c482feefSAndy Lutomirski } __aligned(PAGE_SIZE); 3371a935bc3SAndy Lutomirski 338f5848e5fSThomas Gleixner /* 339f5848e5fSThomas Gleixner * All IO bitmap related data stored in the TSS: 340f5848e5fSThomas Gleixner */ 341f5848e5fSThomas Gleixner struct x86_io_bitmap { 342060aa16fSThomas Gleixner /* The sequence number of the last active bitmap. */ 343060aa16fSThomas Gleixner u64 prev_sequence; 344060aa16fSThomas Gleixner 345f5848e5fSThomas Gleixner /* 346f5848e5fSThomas Gleixner * Store the dirty size of the last io bitmap offender. The next 347f5848e5fSThomas Gleixner * one will have to do the cleanup as the switch out to a non io 348f5848e5fSThomas Gleixner * bitmap user will just set x86_tss.io_bitmap_base to a value 349f5848e5fSThomas Gleixner * outside of the TSS limit. So for sane tasks there is no need to 350f5848e5fSThomas Gleixner * actually touch the io_bitmap at all. 351f5848e5fSThomas Gleixner */ 352f5848e5fSThomas Gleixner unsigned int prev_max; 353f5848e5fSThomas Gleixner 354f5848e5fSThomas Gleixner /* 355f5848e5fSThomas Gleixner * The extra 1 is there because the CPU will access an 356f5848e5fSThomas Gleixner * additional byte beyond the end of the IO permission 357f5848e5fSThomas Gleixner * bitmap. The extra byte must be all 1 bits, and must 358f5848e5fSThomas Gleixner * be within the limit. 359f5848e5fSThomas Gleixner */ 360f5848e5fSThomas Gleixner unsigned long bitmap[IO_BITMAP_LONGS + 1]; 361c8137aceSThomas Gleixner 362c8137aceSThomas Gleixner /* 363c8137aceSThomas Gleixner * Special I/O bitmap to emulate IOPL(3). All bytes zero, 364c8137aceSThomas Gleixner * except the additional byte at the end. 365c8137aceSThomas Gleixner */ 366c8137aceSThomas Gleixner unsigned long mapall[IO_BITMAP_LONGS + 1]; 367f5848e5fSThomas Gleixner }; 368f5848e5fSThomas Gleixner 369bb898558SAl Viro struct tss_struct { 370bb898558SAl Viro /* 3711a935bc3SAndy Lutomirski * The fixed hardware portion. This must not cross a page boundary 3721a935bc3SAndy Lutomirski * at risk of violating the SDM's advice and potentially triggering 3731a935bc3SAndy Lutomirski * errata. 374bb898558SAl Viro */ 375bb898558SAl Viro struct x86_hw_tss x86_tss; 376bb898558SAl Viro 377f5848e5fSThomas Gleixner struct x86_io_bitmap io_bitmap; 3781a935bc3SAndy Lutomirski } __aligned(PAGE_SIZE); 379bb898558SAl Viro 380c482feefSAndy Lutomirski DECLARE_PER_CPU_PAGE_ALIGNED(struct tss_struct, cpu_tss_rw); 381bb898558SAl Viro 382e6401c13SAndy Lutomirski /* Per CPU interrupt stacks */ 383e6401c13SAndy Lutomirski struct irq_stack { 384e6401c13SAndy Lutomirski char stack[IRQ_STACK_SIZE]; 385e6401c13SAndy Lutomirski } __aligned(IRQ_STACK_SIZE); 386e6401c13SAndy Lutomirski 387bb898558SAl Viro #ifdef CONFIG_X86_64 388e6401c13SAndy Lutomirski struct fixed_percpu_data { 389947e76cdSBrian Gerst /* 390947e76cdSBrian Gerst * GCC hardcodes the stack canary as %gs:40. Since the 391947e76cdSBrian Gerst * irq_stack is the object at %gs:0, we reserve the bottom 392947e76cdSBrian Gerst * 48 bytes of the irq stack for the canary. 3933fb0fdb3SAndy Lutomirski * 3943fb0fdb3SAndy Lutomirski * Once we are willing to require -mstack-protector-guard-symbol= 3953fb0fdb3SAndy Lutomirski * support for x86_64 stackprotector, we can get rid of this. 396947e76cdSBrian Gerst */ 397947e76cdSBrian Gerst char gs_base[40]; 398947e76cdSBrian Gerst unsigned long stack_canary; 399947e76cdSBrian Gerst }; 400947e76cdSBrian Gerst 401e6401c13SAndy Lutomirski DECLARE_PER_CPU_FIRST(struct fixed_percpu_data, fixed_percpu_data) __visible; 402e6401c13SAndy Lutomirski DECLARE_INIT_PER_CPU(fixed_percpu_data); 4032add8e23SBrian Gerst 40435060ed6SVitaly Kuznetsov static inline unsigned long cpu_kernelmode_gs_base(int cpu) 40535060ed6SVitaly Kuznetsov { 406e6401c13SAndy Lutomirski return (unsigned long)per_cpu(fixed_percpu_data.gs_base, cpu); 40735060ed6SVitaly Kuznetsov } 40835060ed6SVitaly Kuznetsov 4099766cdbcSJaswinder Singh Rajput extern asmlinkage void ignore_sysret(void); 41042b933b5SVitaly Kuznetsov 41142b933b5SVitaly Kuznetsov /* Save actual FS/GS selectors and bases to current->thread */ 4126758034eSThomas Gleixner void current_save_fsgs(void); 41360a5317fSTejun Heo #else /* X86_64 */ 414050e9baaSLinus Torvalds #ifdef CONFIG_STACKPROTECTOR 4153fb0fdb3SAndy Lutomirski DECLARE_PER_CPU(unsigned long, __stack_chk_guard); 416bb898558SAl Viro #endif 417951c2a51SThomas Gleixner #endif /* !X86_64 */ 418bb898558SAl Viro 41924f1e32cSFrederic Weisbecker struct perf_event; 42024f1e32cSFrederic Weisbecker 421bb898558SAl Viro struct thread_struct { 422bb898558SAl Viro /* Cached TLS descriptors: */ 423bb898558SAl Viro struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES]; 424d375cf15SAndy Lutomirski #ifdef CONFIG_X86_32 425bb898558SAl Viro unsigned long sp0; 426d375cf15SAndy Lutomirski #endif 427bb898558SAl Viro unsigned long sp; 428bb898558SAl Viro #ifdef CONFIG_X86_32 429bb898558SAl Viro unsigned long sysenter_cs; 430bb898558SAl Viro #else 431bb898558SAl Viro unsigned short es; 432bb898558SAl Viro unsigned short ds; 433bb898558SAl Viro unsigned short fsindex; 434bb898558SAl Viro unsigned short gsindex; 435bb898558SAl Viro #endif 436b9d989c7SAndy Lutomirski 437d756f4adSAlexey Dobriyan #ifdef CONFIG_X86_64 438296f781aSAndy Lutomirski unsigned long fsbase; 439296f781aSAndy Lutomirski unsigned long gsbase; 440296f781aSAndy Lutomirski #else 441296f781aSAndy Lutomirski /* 442296f781aSAndy Lutomirski * XXX: this could presumably be unsigned short. Alternatively, 443296f781aSAndy Lutomirski * 32-bit kernels could be taught to use fsindex instead. 444296f781aSAndy Lutomirski */ 445bb898558SAl Viro unsigned long fs; 446bb898558SAl Viro unsigned long gs; 447296f781aSAndy Lutomirski #endif 448c5bedc68SIngo Molnar 44924f1e32cSFrederic Weisbecker /* Save middle states of ptrace breakpoints */ 45024f1e32cSFrederic Weisbecker struct perf_event *ptrace_bps[HBP_NUM]; 45124f1e32cSFrederic Weisbecker /* Debug status used for traps, single steps, etc... */ 452d53d9bc0SPeter Zijlstra unsigned long virtual_dr6; 453326264a0SFrederic Weisbecker /* Keep track of the exact dr7 value set by the user */ 454326264a0SFrederic Weisbecker unsigned long ptrace_dr7; 455bb898558SAl Viro /* Fault info: */ 456bb898558SAl Viro unsigned long cr2; 45751e7dc70SSrikar Dronamraju unsigned long trap_nr; 458bb898558SAl Viro unsigned long error_code; 4599fda6a06SBrian Gerst #ifdef CONFIG_VM86 460bb898558SAl Viro /* Virtual 86 mode info */ 4619fda6a06SBrian Gerst struct vm86 *vm86; 462bb898558SAl Viro #endif 463bb898558SAl Viro /* IO permissions: */ 464577d5cd7SThomas Gleixner struct io_bitmap *io_bitmap; 465c8137aceSThomas Gleixner 466c8137aceSThomas Gleixner /* 467d9f6e12fSIngo Molnar * IOPL. Privilege level dependent I/O permission which is 468a24ca997SThomas Gleixner * emulated via the I/O bitmap to prevent user space from disabling 469a24ca997SThomas Gleixner * interrupts. 470c8137aceSThomas Gleixner */ 471c8137aceSThomas Gleixner unsigned long iopl_emul; 4720c8c0f03SDave Hansen 473b968e84bSPeter Zijlstra unsigned int iopl_warn:1; 4742a53ccbcSIngo Molnar unsigned int sig_on_uaccess_err:1; 475dfa9a942SAndy Lutomirski 4769782a712SDave Hansen /* 4779782a712SDave Hansen * Protection Keys Register for Userspace. Loaded immediately on 4789782a712SDave Hansen * context switch. Store it in thread_struct to avoid a lookup in 4799782a712SDave Hansen * the tasks's FPU xstate buffer. This value is only valid when a 4809782a712SDave Hansen * task is scheduled out. For 'current' the authoritative source of 4819782a712SDave Hansen * PKRU is the hardware itself. 4829782a712SDave Hansen */ 4839782a712SDave Hansen u32 pkru; 4849782a712SDave Hansen 48598cfa463SRick Edgecombe #ifdef CONFIG_X86_USER_SHADOW_STACK 48698cfa463SRick Edgecombe unsigned long features; 48798cfa463SRick Edgecombe unsigned long features_locked; 4882d39a6adSRick Edgecombe 4892d39a6adSRick Edgecombe struct thread_shstk shstk; 49098cfa463SRick Edgecombe #endif 49198cfa463SRick Edgecombe 4920c8c0f03SDave Hansen /* Floating point and extended processor state */ 4930c8c0f03SDave Hansen struct fpu fpu; 4940c8c0f03SDave Hansen /* 4950c8c0f03SDave Hansen * WARNING: 'fpu' is dynamically-sized. It *MUST* be at 4960c8c0f03SDave Hansen * the end. 4970c8c0f03SDave Hansen */ 498bb898558SAl Viro }; 499bb898558SAl Viro 5002dd8eedcSThomas Gleixner extern void fpu_thread_struct_whitelist(unsigned long *offset, unsigned long *size); 5012dd8eedcSThomas Gleixner 502f7d83c1cSKees Cook static inline void arch_thread_struct_whitelist(unsigned long *offset, 503f7d83c1cSKees Cook unsigned long *size) 504f7d83c1cSKees Cook { 5052dd8eedcSThomas Gleixner fpu_thread_struct_whitelist(offset, size); 506f7d83c1cSKees Cook } 507f7d83c1cSKees Cook 508bb898558SAl Viro static inline void 509da51da18SAndy Lutomirski native_load_sp0(unsigned long sp0) 510bb898558SAl Viro { 511c482feefSAndy Lutomirski this_cpu_write(cpu_tss_rw.x86_tss.sp0, sp0); 512bb898558SAl Viro } 513bb898558SAl Viro 51458edfd2eSChang S. Bae static __always_inline void native_swapgs(void) 515bb898558SAl Viro { 516bb898558SAl Viro #ifdef CONFIG_X86_64 517bb898558SAl Viro asm volatile("swapgs" ::: "memory"); 518bb898558SAl Viro #endif 519bb898558SAl Viro } 520bb898558SAl Viro 5211894a403SPeter Zijlstra static __always_inline unsigned long current_top_of_stack(void) 5228ef46a67SAndy Lutomirski { 5239aaefe7bSAndy Lutomirski /* 5249aaefe7bSAndy Lutomirski * We can't read directly from tss.sp0: sp0 on x86_32 is special in 5259aaefe7bSAndy Lutomirski * and around vm86 mode and sp0 on x86_64 is special because of the 5269aaefe7bSAndy Lutomirski * entry trampoline. 5279aaefe7bSAndy Lutomirski */ 528c063a217SThomas Gleixner return this_cpu_read_stable(pcpu_hot.top_of_stack); 5298ef46a67SAndy Lutomirski } 5308ef46a67SAndy Lutomirski 5311894a403SPeter Zijlstra static __always_inline bool on_thread_stack(void) 5323383642cSAndy Lutomirski { 5333383642cSAndy Lutomirski return (unsigned long)(current_top_of_stack() - 5343383642cSAndy Lutomirski current_stack_pointer) < THREAD_SIZE; 5353383642cSAndy Lutomirski } 5363383642cSAndy Lutomirski 5379bad5658SJuergen Gross #ifdef CONFIG_PARAVIRT_XXL 538bb898558SAl Viro #include <asm/paravirt.h> 539bb898558SAl Viro #else 540bb898558SAl Viro 541da51da18SAndy Lutomirski static inline void load_sp0(unsigned long sp0) 542bb898558SAl Viro { 543da51da18SAndy Lutomirski native_load_sp0(sp0); 544bb898558SAl Viro } 545bb898558SAl Viro 5469bad5658SJuergen Gross #endif /* CONFIG_PARAVIRT_XXL */ 547bb898558SAl Viro 54842a20f86SKees Cook unsigned long __get_wchan(struct task_struct *p); 549bb898558SAl Viro 550bb898558SAl Viro extern void select_idle_routine(const struct cpuinfo_x86 *c); 55107c94a38SBorislav Petkov extern void amd_e400_c1e_apic_setup(void); 552bb898558SAl Viro 553bb898558SAl Viro extern unsigned long boot_option_idle_override; 554bb898558SAl Viro 555d1896049SThomas Renninger enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT, 55669fb3676SLen Brown IDLE_POLL}; 557d1896049SThomas Renninger 558bb898558SAl Viro extern void enable_sep_cpu(void); 559bb898558SAl Viro 56029c84391SJan Kiszka 561bb898558SAl Viro /* Defined in head.S */ 562bb898558SAl Viro extern struct desc_ptr early_gdt_descr; 563bb898558SAl Viro 5641f19e2d5SThomas Gleixner extern void switch_gdt_and_percpu_base(int); 56545fc8757SThomas Garnier extern void load_direct_gdt(int); 56669218e47SThomas Garnier extern void load_fixmap_gdt(int); 567bb898558SAl Viro extern void cpu_init(void); 568520d0308SJoerg Roedel extern void cpu_init_exception_handling(void); 5697652ac92SThomas Gleixner extern void cr4_init(void); 570bb898558SAl Viro 571c2724775SMarkus Metzger static inline unsigned long get_debugctlmsr(void) 572c2724775SMarkus Metzger { 573c2724775SMarkus Metzger unsigned long debugctlmsr = 0; 574c2724775SMarkus Metzger 575c2724775SMarkus Metzger #ifndef CONFIG_X86_DEBUGCTLMSR 576c2724775SMarkus Metzger if (boot_cpu_data.x86 < 6) 577c2724775SMarkus Metzger return 0; 578c2724775SMarkus Metzger #endif 579c2724775SMarkus Metzger rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr); 580c2724775SMarkus Metzger 581c2724775SMarkus Metzger return debugctlmsr; 582c2724775SMarkus Metzger } 583c2724775SMarkus Metzger 584bb898558SAl Viro static inline void update_debugctlmsr(unsigned long debugctlmsr) 585bb898558SAl Viro { 586bb898558SAl Viro #ifndef CONFIG_X86_DEBUGCTLMSR 587bb898558SAl Viro if (boot_cpu_data.x86 < 6) 588bb898558SAl Viro return; 589bb898558SAl Viro #endif 590bb898558SAl Viro wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr); 591bb898558SAl Viro } 592bb898558SAl Viro 5939bd1190aSOleg Nesterov extern void set_task_blockstep(struct task_struct *task, bool on); 5949bd1190aSOleg Nesterov 595bb898558SAl Viro /* Boot loader type from the setup header: */ 596bb898558SAl Viro extern int bootloader_type; 5975031296cSH. Peter Anvin extern int bootloader_version; 598bb898558SAl Viro 599bb898558SAl Viro extern char ignore_fpu_irq; 600bb898558SAl Viro 601bb898558SAl Viro #define HAVE_ARCH_PICK_MMAP_LAYOUT 1 602bb898558SAl Viro #define ARCH_HAS_PREFETCHW 603bb898558SAl Viro 604bb898558SAl Viro #ifdef CONFIG_X86_32 605a930dc45SBorislav Petkov # define BASE_PREFETCH "" 606bb898558SAl Viro # define ARCH_HAS_PREFETCH 607bb898558SAl Viro #else 608a930dc45SBorislav Petkov # define BASE_PREFETCH "prefetcht0 %P1" 609bb898558SAl Viro #endif 610bb898558SAl Viro 611bb898558SAl Viro /* 612bb898558SAl Viro * Prefetch instructions for Pentium III (+) and AMD Athlon (+) 613bb898558SAl Viro * 614bb898558SAl Viro * It's not worth to care about 3dnow prefetches for the K6 615bb898558SAl Viro * because they are microcoded there and very slow. 616bb898558SAl Viro */ 617bb898558SAl Viro static inline void prefetch(const void *x) 618bb898558SAl Viro { 619a930dc45SBorislav Petkov alternative_input(BASE_PREFETCH, "prefetchnta %P1", 620bb898558SAl Viro X86_FEATURE_XMM, 621a930dc45SBorislav Petkov "m" (*(const char *)x)); 622bb898558SAl Viro } 623bb898558SAl Viro 624bb898558SAl Viro /* 625bb898558SAl Viro * 3dnow prefetch to get an exclusive cache line. 626bb898558SAl Viro * Useful for spinlocks to avoid one state transition in the 627bb898558SAl Viro * cache coherency protocol: 628bb898558SAl Viro */ 6292823e83aSPeter Zijlstra static __always_inline void prefetchw(const void *x) 630bb898558SAl Viro { 631a930dc45SBorislav Petkov alternative_input(BASE_PREFETCH, "prefetchw %P1", 632a930dc45SBorislav Petkov X86_FEATURE_3DNOWPREFETCH, 633a930dc45SBorislav Petkov "m" (*(const char *)x)); 634bb898558SAl Viro } 635bb898558SAl Viro 636d9e05cc5SAndy Lutomirski #define TOP_OF_INIT_STACK ((unsigned long)&init_stack + sizeof(init_stack) - \ 637d9e05cc5SAndy Lutomirski TOP_OF_KERNEL_STACK_PADDING) 638d9e05cc5SAndy Lutomirski 6393500130bSAndy Lutomirski #define task_top_of_stack(task) ((unsigned long)(task_pt_regs(task) + 1)) 6403500130bSAndy Lutomirski 641d375cf15SAndy Lutomirski #define task_pt_regs(task) \ 642d375cf15SAndy Lutomirski ({ \ 643d375cf15SAndy Lutomirski unsigned long __ptr = (unsigned long)task_stack_page(task); \ 644d375cf15SAndy Lutomirski __ptr += THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING; \ 645d375cf15SAndy Lutomirski ((struct pt_regs *)__ptr) - 1; \ 646d375cf15SAndy Lutomirski }) 647d375cf15SAndy Lutomirski 648bb898558SAl Viro #ifdef CONFIG_X86_32 649bb898558SAl Viro #define INIT_THREAD { \ 650d9e05cc5SAndy Lutomirski .sp0 = TOP_OF_INIT_STACK, \ 651bb898558SAl Viro .sysenter_cs = __KERNEL_CS, \ 652bb898558SAl Viro } 653bb898558SAl Viro 654bb898558SAl Viro #define KSTK_ESP(task) (task_pt_regs(task)->sp) 655bb898558SAl Viro 656bb898558SAl Viro #else 6573adee777SBrian Gerst extern unsigned long __end_init_task[]; 6583adee777SBrian Gerst 6593adee777SBrian Gerst #define INIT_THREAD { \ 6603adee777SBrian Gerst .sp = (unsigned long)&__end_init_task - sizeof(struct pt_regs), \ 6613adee777SBrian Gerst } 662bb898558SAl Viro 66389240ba0SStefani Seibold extern unsigned long KSTK_ESP(struct task_struct *task); 664d046ff8bSH. J. Lu 665bb898558SAl Viro #endif /* CONFIG_X86_64 */ 666bb898558SAl Viro 667bb898558SAl Viro extern void start_thread(struct pt_regs *regs, unsigned long new_ip, 668bb898558SAl Viro unsigned long new_sp); 669bb898558SAl Viro 670bb898558SAl Viro /* 671bb898558SAl Viro * This decides where the kernel will search for a free chunk of vm 672bb898558SAl Viro * space during mmap's. 673bb898558SAl Viro */ 6748f3e474fSDmitry Safonov #define __TASK_UNMAPPED_BASE(task_size) (PAGE_ALIGN(task_size / 3)) 675b569bab7SKirill A. Shutemov #define TASK_UNMAPPED_BASE __TASK_UNMAPPED_BASE(TASK_SIZE_LOW) 676bb898558SAl Viro 677bb898558SAl Viro #define KSTK_EIP(task) (task_pt_regs(task)->ip) 678bb898558SAl Viro 679bb898558SAl Viro /* Get/set a process' ability to use the timestamp counter instruction */ 680bb898558SAl Viro #define GET_TSC_CTL(adr) get_tsc_mode((adr)) 681bb898558SAl Viro #define SET_TSC_CTL(val) set_tsc_mode((val)) 682bb898558SAl Viro 683bb898558SAl Viro extern int get_tsc_mode(unsigned long adr); 684bb898558SAl Viro extern int set_tsc_mode(unsigned int val); 685bb898558SAl Viro 686e9ea1e7fSKyle Huey DECLARE_PER_CPU(u64, msr_misc_features_shadow); 687e9ea1e7fSKyle Huey 6889164d949SKim Phillips extern u16 get_llc_id(unsigned int cpu); 6899164d949SKim Phillips 690bc8e80d5SBorislav Petkov #ifdef CONFIG_CPU_SUP_AMD 691cc2749e4SAravind Gopalakrishnan extern u32 amd_get_nodes_per_socket(void); 6923743d55bSHuang Rui extern u32 amd_get_highest_perf(void); 693fb3bd914SBorislav Petkov (AMD) extern bool cpu_has_ibpb_brtype_microcode(void); 69477245f1cSBorislav Petkov (AMD) extern void amd_clear_divider(void); 695566ffa3aSArnd Bergmann extern void amd_check_microcode(void); 696bc8e80d5SBorislav Petkov #else 697bc8e80d5SBorislav Petkov static inline u32 amd_get_nodes_per_socket(void) { return 0; } 6983743d55bSHuang Rui static inline u32 amd_get_highest_perf(void) { return 0; } 699fb3bd914SBorislav Petkov (AMD) static inline bool cpu_has_ibpb_brtype_microcode(void) { return false; } 70077245f1cSBorislav Petkov (AMD) static inline void amd_clear_divider(void) { } 701566ffa3aSArnd Bergmann static inline void amd_check_microcode(void) { } 702bc8e80d5SBorislav Petkov #endif 7036a812691SAndreas Herrmann 704f05e798aSDavid Howells extern unsigned long arch_align_stack(unsigned long sp); 705e5cb113fSAlexey Dobriyan void free_init_pages(const char *what, unsigned long begin, unsigned long end); 7065494c3a6SKees Cook extern void free_kernel_image_pages(const char *what, void *begin, void *end); 707f05e798aSDavid Howells 708f05e798aSDavid Howells void default_idle(void); 7096a377ddcSLen Brown #ifdef CONFIG_XEN 7106a377ddcSLen Brown bool xen_set_default_idle(void); 7116a377ddcSLen Brown #else 7126a377ddcSLen Brown #define xen_set_default_idle 0 7136a377ddcSLen Brown #endif 714f05e798aSDavid Howells 715f9cdf7caSPeter Zijlstra void __noreturn stop_this_cpu(void *dummy); 716ab31c744SAshok Raj void microcode_check(struct cpuinfo_x86 *prev_info); 717c0dd9245SAshok Raj void store_cpu_caps(struct cpuinfo_x86 *info); 718d90a7a0eSJiri Kosina 719d90a7a0eSJiri Kosina enum l1tf_mitigations { 720d90a7a0eSJiri Kosina L1TF_MITIGATION_OFF, 721d90a7a0eSJiri Kosina L1TF_MITIGATION_FLUSH_NOWARN, 722d90a7a0eSJiri Kosina L1TF_MITIGATION_FLUSH, 723d90a7a0eSJiri Kosina L1TF_MITIGATION_FLUSH_NOSMT, 724d90a7a0eSJiri Kosina L1TF_MITIGATION_FULL, 725d90a7a0eSJiri Kosina L1TF_MITIGATION_FULL_FORCE 726d90a7a0eSJiri Kosina }; 727d90a7a0eSJiri Kosina 728d90a7a0eSJiri Kosina extern enum l1tf_mitigations l1tf_mitigation; 729d90a7a0eSJiri Kosina 730bc124170SThomas Gleixner enum mds_mitigations { 731bc124170SThomas Gleixner MDS_MITIGATION_OFF, 732bc124170SThomas Gleixner MDS_MITIGATION_FULL, 73322dd8365SThomas Gleixner MDS_MITIGATION_VMWERV, 734bc124170SThomas Gleixner }; 735bc124170SThomas Gleixner 73603b122daSTony Luck #ifdef CONFIG_X86_SGX 73703b122daSTony Luck int arch_memory_failure(unsigned long pfn, int flags); 73803b122daSTony Luck #define arch_memory_failure arch_memory_failure 73903b122daSTony Luck 74003b122daSTony Luck bool arch_is_platform_page(u64 paddr); 74103b122daSTony Luck #define arch_is_platform_page arch_is_platform_page 74203b122daSTony Luck #endif 74303b122daSTony Luck 744eb3515dcSArnd Bergmann extern bool gds_ucode_mitigated(void); 745eb3515dcSArnd Bergmann 7461965aae3SH. Peter Anvin #endif /* _ASM_X86_PROCESSOR_H */ 747