]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/include/asm/processor.h
Linux 3.9-rc5
[mirror_ubuntu-artful-kernel.git] / arch / x86 / include / asm / processor.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_PROCESSOR_H
2#define _ASM_X86_PROCESSOR_H
c758ecf6 3
053de044
GOC
4#include <asm/processor-flags.h>
5
683e0253
GOC
6/* Forward declaration, a strange C thing */
7struct task_struct;
8struct mm_struct;
9
2f66dcc9
GOC
10#include <asm/vm86.h>
11#include <asm/math_emu.h>
12#include <asm/segment.h>
2f66dcc9
GOC
13#include <asm/types.h>
14#include <asm/sigcontext.h>
15#include <asm/current.h>
16#include <asm/cpufeature.h>
2f66dcc9 17#include <asm/page.h>
54321d94 18#include <asm/pgtable_types.h>
5300db88 19#include <asm/percpu.h>
2f66dcc9
GOC
20#include <asm/msr.h>
21#include <asm/desc_defs.h>
bd61643e 22#include <asm/nops.h>
f05e798a 23#include <asm/special_insns.h>
4d46a89e 24
2f66dcc9 25#include <linux/personality.h>
5300db88
GOC
26#include <linux/cpumask.h>
27#include <linux/cache.h>
2f66dcc9 28#include <linux/threads.h>
5cbc19a9 29#include <linux/math64.h>
2f66dcc9 30#include <linux/init.h>
faa4602e 31#include <linux/err.h>
f05e798a
DH
32#include <linux/irqflags.h>
33
34/*
35 * We handle most unaligned accesses in hardware. On the other hand
36 * unaligned DMA can be quite expensive on some Nehalem processors.
37 *
38 * Based on this we disable the IP header alignment in network drivers.
39 */
40#define NET_IP_ALIGN 0
c72dcf83 41
b332828c 42#define HBP_NUM 4
0ccb8acc
GOC
43/*
44 * Default implementation of macro that returns current
45 * instruction pointer ("program counter").
46 */
47static inline void *current_text_addr(void)
48{
49 void *pc;
4d46a89e
IM
50
51 asm volatile("mov $1f, %0; 1:":"=r" (pc));
52
0ccb8acc
GOC
53 return pc;
54}
55
dbcb4660 56#ifdef CONFIG_X86_VSMP
4d46a89e
IM
57# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
58# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
dbcb4660 59#else
4d46a89e
IM
60# define ARCH_MIN_TASKALIGN 16
61# define ARCH_MIN_MMSTRUCT_ALIGN 0
dbcb4660
GOC
62#endif
63
e0ba94f1
AS
64enum tlb_infos {
65 ENTRIES,
66 NR_INFO
67};
68
69extern u16 __read_mostly tlb_lli_4k[NR_INFO];
70extern u16 __read_mostly tlb_lli_2m[NR_INFO];
71extern u16 __read_mostly tlb_lli_4m[NR_INFO];
72extern u16 __read_mostly tlb_lld_4k[NR_INFO];
73extern u16 __read_mostly tlb_lld_2m[NR_INFO];
74extern u16 __read_mostly tlb_lld_4m[NR_INFO];
c4211f42
AS
75extern s8 __read_mostly tlb_flushall_shift;
76
5300db88
GOC
77/*
78 * CPU type and hardware bug flags. Kept separately for each CPU.
79 * Members of this structure are referenced in head.S, so think twice
80 * before touching them. [mj]
81 */
82
83struct cpuinfo_x86 {
4d46a89e
IM
84 __u8 x86; /* CPU family */
85 __u8 x86_vendor; /* CPU vendor */
86 __u8 x86_model;
87 __u8 x86_mask;
5300db88 88#ifdef CONFIG_X86_32
4d46a89e
IM
89 char wp_works_ok; /* It doesn't on 386's */
90
91 /* Problems on some 486Dx4's and old 386's: */
4d46a89e
IM
92 char hard_math;
93 char rfu;
94 char fdiv_bug;
95 char f00f_bug;
96 char coma_bug;
97 char pad0;
5300db88 98#else
4d46a89e 99 /* Number of 4K pages in DTLB/ITLB combined(in pages): */
b1882e68 100 int x86_tlbsize;
13c6c532 101#endif
4d46a89e
IM
102 __u8 x86_virt_bits;
103 __u8 x86_phys_bits;
104 /* CPUID returned core id bits: */
105 __u8 x86_coreid_bits;
106 /* Max extended CPUID function supported: */
107 __u32 extended_cpuid_level;
4d46a89e
IM
108 /* Maximum supported CPUID level, -1=no CPUID: */
109 int cpuid_level;
110 __u32 x86_capability[NCAPINTS];
111 char x86_vendor_id[16];
112 char x86_model_id[64];
113 /* in KB - valid for CPUS which support this call: */
114 int x86_cache_size;
115 int x86_cache_alignment; /* In bytes */
116 int x86_power;
117 unsigned long loops_per_jiffy;
4d46a89e
IM
118 /* cpuid returned max cores value: */
119 u16 x86_max_cores;
120 u16 apicid;
01aaea1a 121 u16 initial_apicid;
4d46a89e 122 u16 x86_clflush_size;
4d46a89e
IM
123 /* number of cores as seen by the OS: */
124 u16 booted_cores;
125 /* Physical processor id: */
126 u16 phys_proc_id;
127 /* Core id: */
128 u16 cpu_core_id;
6057b4d3
AH
129 /* Compute unit id */
130 u8 compute_unit_id;
4d46a89e
IM
131 /* Index into per_cpu list: */
132 u16 cpu_index;
506ed6b5 133 u32 microcode;
5300db88
GOC
134} __attribute__((__aligned__(SMP_CACHE_BYTES)));
135
4d46a89e
IM
136#define X86_VENDOR_INTEL 0
137#define X86_VENDOR_CYRIX 1
138#define X86_VENDOR_AMD 2
139#define X86_VENDOR_UMC 3
4d46a89e
IM
140#define X86_VENDOR_CENTAUR 5
141#define X86_VENDOR_TRANSMETA 7
142#define X86_VENDOR_NSC 8
143#define X86_VENDOR_NUM 9
144
145#define X86_VENDOR_UNKNOWN 0xff
5300db88 146
1a53905a
GOC
147/*
148 * capabilities of CPUs
149 */
4d46a89e
IM
150extern struct cpuinfo_x86 boot_cpu_data;
151extern struct cpuinfo_x86 new_cpu_data;
152
153extern struct tss_struct doublefault_tss;
3e0c3737
YL
154extern __u32 cpu_caps_cleared[NCAPINTS];
155extern __u32 cpu_caps_set[NCAPINTS];
5300db88
GOC
156
157#ifdef CONFIG_SMP
9b8de747 158DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
5300db88 159#define cpu_data(cpu) per_cpu(cpu_info, cpu)
5300db88 160#else
7b543a53 161#define cpu_info boot_cpu_data
5300db88 162#define cpu_data(cpu) boot_cpu_data
5300db88
GOC
163#endif
164
1c6c727d
JS
165extern const struct seq_operations cpuinfo_op;
166
4d46a89e
IM
167#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
168
169extern void cpu_detect(struct cpuinfo_x86 *c);
1a53905a 170
f580366f 171extern void early_cpu_init(void);
1a53905a
GOC
172extern void identify_boot_cpu(void);
173extern void identify_secondary_cpu(struct cpuinfo_x86 *);
5300db88 174extern void print_cpu_info(struct cpuinfo_x86 *);
21c3fcf3 175void print_cpu_msr(struct cpuinfo_x86 *);
5300db88
GOC
176extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
177extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
04a15418 178extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
5300db88 179
bbb65d2d 180extern void detect_extended_topology(struct cpuinfo_x86 *c);
1a53905a 181extern void detect_ht(struct cpuinfo_x86 *c);
1a53905a 182
d288e1cf
FY
183#ifdef CONFIG_X86_32
184extern int have_cpuid_p(void);
185#else
186static inline int have_cpuid_p(void)
187{
188 return 1;
189}
190#endif
c758ecf6 191static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
4d46a89e 192 unsigned int *ecx, unsigned int *edx)
c758ecf6
GOC
193{
194 /* ecx is often an input as well as an output. */
45a94d7c 195 asm volatile("cpuid"
cca2e6f8
JP
196 : "=a" (*eax),
197 "=b" (*ebx),
198 "=c" (*ecx),
199 "=d" (*edx)
506ed6b5
AK
200 : "0" (*eax), "2" (*ecx)
201 : "memory");
c758ecf6
GOC
202}
203
c72dcf83
GOC
204static inline void load_cr3(pgd_t *pgdir)
205{
206 write_cr3(__pa(pgdir));
207}
c758ecf6 208
ca241c75
GOC
209#ifdef CONFIG_X86_32
210/* This is the TSS defined by the hardware. */
211struct x86_hw_tss {
4d46a89e
IM
212 unsigned short back_link, __blh;
213 unsigned long sp0;
214 unsigned short ss0, __ss0h;
215 unsigned long sp1;
216 /* ss1 caches MSR_IA32_SYSENTER_CS: */
217 unsigned short ss1, __ss1h;
218 unsigned long sp2;
219 unsigned short ss2, __ss2h;
220 unsigned long __cr3;
221 unsigned long ip;
222 unsigned long flags;
223 unsigned long ax;
224 unsigned long cx;
225 unsigned long dx;
226 unsigned long bx;
227 unsigned long sp;
228 unsigned long bp;
229 unsigned long si;
230 unsigned long di;
231 unsigned short es, __esh;
232 unsigned short cs, __csh;
233 unsigned short ss, __ssh;
234 unsigned short ds, __dsh;
235 unsigned short fs, __fsh;
236 unsigned short gs, __gsh;
237 unsigned short ldt, __ldth;
238 unsigned short trace;
239 unsigned short io_bitmap_base;
240
ca241c75
GOC
241} __attribute__((packed));
242#else
243struct x86_hw_tss {
4d46a89e
IM
244 u32 reserved1;
245 u64 sp0;
246 u64 sp1;
247 u64 sp2;
248 u64 reserved2;
249 u64 ist[7];
250 u32 reserved3;
251 u32 reserved4;
252 u16 reserved5;
253 u16 io_bitmap_base;
254
ca241c75
GOC
255} __attribute__((packed)) ____cacheline_aligned;
256#endif
257
258/*
4d46a89e 259 * IO-bitmap sizes:
ca241c75 260 */
4d46a89e
IM
261#define IO_BITMAP_BITS 65536
262#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
263#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
264#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
265#define INVALID_IO_BITMAP_OFFSET 0x8000
ca241c75
GOC
266
267struct tss_struct {
4d46a89e
IM
268 /*
269 * The hardware state:
270 */
271 struct x86_hw_tss x86_tss;
ca241c75
GOC
272
273 /*
274 * The extra 1 is there because the CPU will access an
275 * additional byte beyond the end of the IO permission
276 * bitmap. The extra byte must be all 1 bits, and must
277 * be within the limit.
278 */
4d46a89e 279 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
4d46a89e 280
ca241c75 281 /*
4d46a89e 282 * .. and then another 0x100 bytes for the emergency kernel stack:
ca241c75 283 */
4d46a89e
IM
284 unsigned long stack[64];
285
84e65b0a 286} ____cacheline_aligned;
ca241c75 287
9b8de747 288DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss);
ca241c75 289
4d46a89e
IM
290/*
291 * Save the original ist values for checking stack pointers during debugging
292 */
1a53905a 293struct orig_ist {
4d46a89e 294 unsigned long ist[7];
1a53905a
GOC
295};
296
99f8ecdf 297#define MXCSR_DEFAULT 0x1f80
46265df0 298
99f8ecdf 299struct i387_fsave_struct {
ca9cda2f
IM
300 u32 cwd; /* FPU Control Word */
301 u32 swd; /* FPU Status Word */
302 u32 twd; /* FPU Tag Word */
303 u32 fip; /* FPU IP Offset */
304 u32 fcs; /* FPU IP Selector */
305 u32 foo; /* FPU Operand Pointer Offset */
306 u32 fos; /* FPU Operand Pointer Selector */
307
308 /* 8*10 bytes for each FP-reg = 80 bytes: */
4d46a89e 309 u32 st_space[20];
ca9cda2f
IM
310
311 /* Software status information [not touched by FSAVE ]: */
4d46a89e 312 u32 status;
46265df0
GOC
313};
314
46265df0 315struct i387_fxsave_struct {
ca9cda2f
IM
316 u16 cwd; /* Control Word */
317 u16 swd; /* Status Word */
318 u16 twd; /* Tag Word */
319 u16 fop; /* Last Instruction Opcode */
99f8ecdf
RM
320 union {
321 struct {
ca9cda2f
IM
322 u64 rip; /* Instruction Pointer */
323 u64 rdp; /* Data Pointer */
99f8ecdf
RM
324 };
325 struct {
ca9cda2f
IM
326 u32 fip; /* FPU IP Offset */
327 u32 fcs; /* FPU IP Selector */
328 u32 foo; /* FPU Operand Offset */
329 u32 fos; /* FPU Operand Selector */
99f8ecdf
RM
330 };
331 };
ca9cda2f
IM
332 u32 mxcsr; /* MXCSR Register State */
333 u32 mxcsr_mask; /* MXCSR Mask */
334
335 /* 8*16 bytes for each FP-reg = 128 bytes: */
4d46a89e 336 u32 st_space[32];
ca9cda2f
IM
337
338 /* 16*16 bytes for each XMM-reg = 256 bytes: */
4d46a89e 339 u32 xmm_space[64];
ca9cda2f 340
bdd8caba
SS
341 u32 padding[12];
342
343 union {
344 u32 padding1[12];
345 u32 sw_reserved[12];
346 };
4d46a89e 347
46265df0
GOC
348} __attribute__((aligned(16)));
349
99f8ecdf 350struct i387_soft_struct {
4d46a89e
IM
351 u32 cwd;
352 u32 swd;
353 u32 twd;
354 u32 fip;
355 u32 fcs;
356 u32 foo;
357 u32 fos;
358 /* 8*10 bytes for each FP-reg = 80 bytes: */
359 u32 st_space[20];
360 u8 ftop;
361 u8 changed;
362 u8 lookahead;
363 u8 no_update;
364 u8 rm;
365 u8 alimit;
ae6af41f 366 struct math_emu_info *info;
4d46a89e 367 u32 entry_eip;
99f8ecdf
RM
368};
369
a30469e7
SS
370struct ymmh_struct {
371 /* 16 * 16 bytes for each YMMH-reg = 256 bytes */
372 u32 ymmh_space[64];
373};
374
dc1e35c6
SS
375struct xsave_hdr_struct {
376 u64 xstate_bv;
377 u64 reserved1[2];
378 u64 reserved2[5];
379} __attribute__((packed));
380
381struct xsave_struct {
382 struct i387_fxsave_struct i387;
383 struct xsave_hdr_struct xsave_hdr;
a30469e7 384 struct ymmh_struct ymmh;
dc1e35c6
SS
385 /* new processor state extensions will go here */
386} __attribute__ ((packed, aligned (64)));
387
61c4628b 388union thread_xstate {
99f8ecdf 389 struct i387_fsave_struct fsave;
46265df0 390 struct i387_fxsave_struct fxsave;
4d46a89e 391 struct i387_soft_struct soft;
b359e8a4 392 struct xsave_struct xsave;
46265df0
GOC
393};
394
86603283 395struct fpu {
7e16838d
LT
396 unsigned int last_cpu;
397 unsigned int has_fpu;
86603283
AK
398 union thread_xstate *state;
399};
400
fe676203 401#ifdef CONFIG_X86_64
2f66dcc9 402DECLARE_PER_CPU(struct orig_ist, orig_ist);
26f80bd6 403
947e76cd
BG
404union irq_stack_union {
405 char irq_stack[IRQ_STACK_SIZE];
406 /*
407 * GCC hardcodes the stack canary as %gs:40. Since the
408 * irq_stack is the object at %gs:0, we reserve the bottom
409 * 48 bytes of the irq stack for the canary.
410 */
411 struct {
412 char gs_base[40];
413 unsigned long stack_canary;
414 };
415};
416
9b8de747 417DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union);
2add8e23
BG
418DECLARE_INIT_PER_CPU(irq_stack_union);
419
26f80bd6 420DECLARE_PER_CPU(char *, irq_stack_ptr);
9766cdbc 421DECLARE_PER_CPU(unsigned int, irq_count);
9766cdbc 422extern asmlinkage void ignore_sysret(void);
60a5317f
TH
423#else /* X86_64 */
424#ifdef CONFIG_CC_STACKPROTECTOR
1ea0d14e
JF
425/*
426 * Make sure stack canary segment base is cached-aligned:
427 * "For Intel Atom processors, avoid non zero segment base address
428 * that is not aligned to cache line boundary at all cost."
429 * (Optim Ref Manual Assembly/Compiler Coding Rule 15.)
430 */
431struct stack_canary {
432 char __pad[20]; /* canary at %gs:20 */
433 unsigned long canary;
434};
53f82452 435DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
96a388de 436#endif
60a5317f 437#endif /* X86_64 */
c758ecf6 438
61c4628b 439extern unsigned int xstate_size;
aa283f49
SS
440extern void free_thread_xstate(struct task_struct *);
441extern struct kmem_cache *task_xstate_cachep;
683e0253 442
24f1e32c
FW
443struct perf_event;
444
cb38d377 445struct thread_struct {
4d46a89e
IM
446 /* Cached TLS descriptors: */
447 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
448 unsigned long sp0;
449 unsigned long sp;
cb38d377 450#ifdef CONFIG_X86_32
4d46a89e 451 unsigned long sysenter_cs;
cb38d377 452#else
4d46a89e
IM
453 unsigned long usersp; /* Copy from PDA */
454 unsigned short es;
455 unsigned short ds;
456 unsigned short fsindex;
457 unsigned short gsindex;
cb38d377 458#endif
0c23590f 459#ifdef CONFIG_X86_32
4d46a89e 460 unsigned long ip;
0c23590f 461#endif
d756f4ad 462#ifdef CONFIG_X86_64
4d46a89e 463 unsigned long fs;
d756f4ad 464#endif
4d46a89e 465 unsigned long gs;
24f1e32c
FW
466 /* Save middle states of ptrace breakpoints */
467 struct perf_event *ptrace_bps[HBP_NUM];
468 /* Debug status used for traps, single steps, etc... */
469 unsigned long debugreg6;
326264a0
FW
470 /* Keep track of the exact dr7 value set by the user */
471 unsigned long ptrace_dr7;
4d46a89e
IM
472 /* Fault info: */
473 unsigned long cr2;
51e7dc70 474 unsigned long trap_nr;
4d46a89e 475 unsigned long error_code;
61c4628b 476 /* floating point and extended processor state */
86603283 477 struct fpu fpu;
cb38d377 478#ifdef CONFIG_X86_32
4d46a89e 479 /* Virtual 86 mode info */
cb38d377
GOC
480 struct vm86_struct __user *vm86_info;
481 unsigned long screen_bitmap;
4d46a89e
IM
482 unsigned long v86flags;
483 unsigned long v86mask;
484 unsigned long saved_sp0;
485 unsigned int saved_fs;
486 unsigned int saved_gs;
cb38d377 487#endif
4d46a89e
IM
488 /* IO permissions: */
489 unsigned long *io_bitmap_ptr;
490 unsigned long iopl;
491 /* Max allowed port in the bitmap, in bytes: */
492 unsigned io_bitmap_max;
cb38d377
GOC
493};
494
62d7d7ed
GOC
495/*
496 * Set IOPL bits in EFLAGS from given mask
497 */
498static inline void native_set_iopl_mask(unsigned mask)
499{
500#ifdef CONFIG_X86_32
501 unsigned int reg;
4d46a89e 502
cca2e6f8
JP
503 asm volatile ("pushfl;"
504 "popl %0;"
505 "andl %1, %0;"
506 "orl %2, %0;"
507 "pushl %0;"
508 "popfl"
509 : "=&r" (reg)
510 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
62d7d7ed
GOC
511#endif
512}
513
4d46a89e
IM
514static inline void
515native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
7818a1e0
GOC
516{
517 tss->x86_tss.sp0 = thread->sp0;
518#ifdef CONFIG_X86_32
4d46a89e 519 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
7818a1e0
GOC
520 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
521 tss->x86_tss.ss1 = thread->sysenter_cs;
522 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
523 }
524#endif
525}
1b46cbe0 526
e801f864
GOC
527static inline void native_swapgs(void)
528{
529#ifdef CONFIG_X86_64
530 asm volatile("swapgs" ::: "memory");
531#endif
532}
533
7818a1e0
GOC
534#ifdef CONFIG_PARAVIRT
535#include <asm/paravirt.h>
536#else
4d46a89e
IM
537#define __cpuid native_cpuid
538#define paravirt_enabled() 0
1b46cbe0 539
cca2e6f8
JP
540static inline void load_sp0(struct tss_struct *tss,
541 struct thread_struct *thread)
7818a1e0
GOC
542{
543 native_load_sp0(tss, thread);
544}
545
62d7d7ed 546#define set_iopl_mask native_set_iopl_mask
1b46cbe0
GOC
547#endif /* CONFIG_PARAVIRT */
548
549/*
550 * Save the cr4 feature set we're using (ie
551 * Pentium 4MB enable and PPro Global page
552 * enable), so that any CPU's that boot up
553 * after us can get the correct flags.
554 */
cda846f1
JS
555extern unsigned long mmu_cr4_features;
556extern u32 *trampoline_cr4_features;
1b46cbe0
GOC
557
558static inline void set_in_cr4(unsigned long mask)
559{
2df7a6e9 560 unsigned long cr4;
4d46a89e 561
1b46cbe0 562 mmu_cr4_features |= mask;
cda846f1
JS
563 if (trampoline_cr4_features)
564 *trampoline_cr4_features = mmu_cr4_features;
1b46cbe0
GOC
565 cr4 = read_cr4();
566 cr4 |= mask;
567 write_cr4(cr4);
568}
569
570static inline void clear_in_cr4(unsigned long mask)
571{
2df7a6e9 572 unsigned long cr4;
4d46a89e 573
1b46cbe0 574 mmu_cr4_features &= ~mask;
cda846f1
JS
575 if (trampoline_cr4_features)
576 *trampoline_cr4_features = mmu_cr4_features;
1b46cbe0
GOC
577 cr4 = read_cr4();
578 cr4 &= ~mask;
579 write_cr4(cr4);
580}
581
fc87e906 582typedef struct {
4d46a89e 583 unsigned long seg;
fc87e906
GOC
584} mm_segment_t;
585
586
683e0253
GOC
587/* Free all resources held by a thread. */
588extern void release_thread(struct task_struct *);
589
683e0253 590unsigned long get_wchan(struct task_struct *p);
c758ecf6
GOC
591
592/*
593 * Generic CPUID function
594 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
595 * resulting in stale register contents being returned.
596 */
597static inline void cpuid(unsigned int op,
598 unsigned int *eax, unsigned int *ebx,
599 unsigned int *ecx, unsigned int *edx)
600{
601 *eax = op;
602 *ecx = 0;
603 __cpuid(eax, ebx, ecx, edx);
604}
605
606/* Some CPUID calls want 'count' to be placed in ecx */
607static inline void cpuid_count(unsigned int op, int count,
608 unsigned int *eax, unsigned int *ebx,
609 unsigned int *ecx, unsigned int *edx)
610{
611 *eax = op;
612 *ecx = count;
613 __cpuid(eax, ebx, ecx, edx);
614}
615
616/*
617 * CPUID functions returning a single datum
618 */
619static inline unsigned int cpuid_eax(unsigned int op)
620{
621 unsigned int eax, ebx, ecx, edx;
622
623 cpuid(op, &eax, &ebx, &ecx, &edx);
4d46a89e 624
c758ecf6
GOC
625 return eax;
626}
4d46a89e 627
c758ecf6
GOC
628static inline unsigned int cpuid_ebx(unsigned int op)
629{
630 unsigned int eax, ebx, ecx, edx;
631
632 cpuid(op, &eax, &ebx, &ecx, &edx);
4d46a89e 633
c758ecf6
GOC
634 return ebx;
635}
4d46a89e 636
c758ecf6
GOC
637static inline unsigned int cpuid_ecx(unsigned int op)
638{
639 unsigned int eax, ebx, ecx, edx;
640
641 cpuid(op, &eax, &ebx, &ecx, &edx);
4d46a89e 642
c758ecf6
GOC
643 return ecx;
644}
4d46a89e 645
c758ecf6
GOC
646static inline unsigned int cpuid_edx(unsigned int op)
647{
648 unsigned int eax, ebx, ecx, edx;
649
650 cpuid(op, &eax, &ebx, &ecx, &edx);
4d46a89e 651
c758ecf6
GOC
652 return edx;
653}
654
683e0253
GOC
655/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
656static inline void rep_nop(void)
657{
cca2e6f8 658 asm volatile("rep; nop" ::: "memory");
683e0253
GOC
659}
660
4d46a89e
IM
661static inline void cpu_relax(void)
662{
663 rep_nop();
664}
665
5367b688 666/* Stop speculative execution and prefetching of modified code. */
683e0253
GOC
667static inline void sync_core(void)
668{
669 int tmp;
4d46a89e 670
eb068e78 671#ifdef CONFIG_M486
45c39fb0
PA
672 /*
673 * Do a CPUID if available, otherwise do a jump. The jump
674 * can conveniently enough be the jump around CPUID.
675 */
676 asm volatile("cmpl %2,%1\n\t"
677 "jl 1f\n\t"
678 "cpuid\n"
679 "1:"
680 : "=a" (tmp)
681 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
682 : "ebx", "ecx", "edx", "memory");
683#else
684 /*
685 * CPUID is a barrier to speculative execution.
686 * Prefetched instructions are automatically
687 * invalidated when modified.
688 */
689 asm volatile("cpuid"
690 : "=a" (tmp)
691 : "0" (1)
692 : "ebx", "ecx", "edx", "memory");
5367b688 693#endif
683e0253
GOC
694}
695
cca2e6f8
JP
696static inline void __monitor(const void *eax, unsigned long ecx,
697 unsigned long edx)
683e0253 698{
4d46a89e 699 /* "monitor %eax, %ecx, %edx;" */
cca2e6f8
JP
700 asm volatile(".byte 0x0f, 0x01, 0xc8;"
701 :: "a" (eax), "c" (ecx), "d"(edx));
683e0253
GOC
702}
703
704static inline void __mwait(unsigned long eax, unsigned long ecx)
705{
4d46a89e 706 /* "mwait %eax, %ecx;" */
cca2e6f8
JP
707 asm volatile(".byte 0x0f, 0x01, 0xc9;"
708 :: "a" (eax), "c" (ecx));
683e0253
GOC
709}
710
711static inline void __sti_mwait(unsigned long eax, unsigned long ecx)
712{
7f424a8b 713 trace_hardirqs_on();
4d46a89e 714 /* "mwait %eax, %ecx;" */
cca2e6f8
JP
715 asm volatile("sti; .byte 0x0f, 0x01, 0xc9;"
716 :: "a" (eax), "c" (ecx));
683e0253
GOC
717}
718
683e0253 719extern void select_idle_routine(const struct cpuinfo_x86 *c);
02c68a02 720extern void init_amd_e400_c1e_mask(void);
683e0253 721
4d46a89e 722extern unsigned long boot_option_idle_override;
02c68a02 723extern bool amd_e400_c1e_detected;
683e0253 724
d1896049 725enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
69fb3676 726 IDLE_POLL};
d1896049 727
1a53905a
GOC
728extern void enable_sep_cpu(void);
729extern int sysenter_setup(void);
730
29c84391 731extern void early_trap_init(void);
8170e6be 732void early_trap_pf_init(void);
29c84391 733
1a53905a 734/* Defined in head.S */
4d46a89e 735extern struct desc_ptr early_gdt_descr;
1a53905a
GOC
736
737extern void cpu_set_gdt(int);
552be871 738extern void switch_to_new_gdt(int);
11e3a840 739extern void load_percpu_segment(int);
1a53905a 740extern void cpu_init(void);
1a53905a 741
c2724775
MM
742static inline unsigned long get_debugctlmsr(void)
743{
ea8e61b7 744 unsigned long debugctlmsr = 0;
c2724775
MM
745
746#ifndef CONFIG_X86_DEBUGCTLMSR
747 if (boot_cpu_data.x86 < 6)
748 return 0;
749#endif
750 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
751
ea8e61b7 752 return debugctlmsr;
c2724775
MM
753}
754
5b0e5084
JB
755static inline void update_debugctlmsr(unsigned long debugctlmsr)
756{
757#ifndef CONFIG_X86_DEBUGCTLMSR
758 if (boot_cpu_data.x86 < 6)
759 return;
760#endif
761 wrmsrl(MSR_IA32_DEBUGCTLMSR, debugctlmsr);
762}
763
9bd1190a
ON
764extern void set_task_blockstep(struct task_struct *task, bool on);
765
4d46a89e
IM
766/*
767 * from system description table in BIOS. Mostly for MCA use, but
768 * others may find it useful:
769 */
770extern unsigned int machine_id;
771extern unsigned int machine_submodel_id;
772extern unsigned int BIOS_revision;
1a53905a 773
4d46a89e
IM
774/* Boot loader type from the setup header: */
775extern int bootloader_type;
5031296c 776extern int bootloader_version;
1a53905a 777
4d46a89e 778extern char ignore_fpu_irq;
683e0253
GOC
779
780#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
781#define ARCH_HAS_PREFETCHW
782#define ARCH_HAS_SPINLOCK_PREFETCH
783
ae2e15eb 784#ifdef CONFIG_X86_32
4d46a89e
IM
785# define BASE_PREFETCH ASM_NOP4
786# define ARCH_HAS_PREFETCH
ae2e15eb 787#else
4d46a89e 788# define BASE_PREFETCH "prefetcht0 (%1)"
ae2e15eb
GOC
789#endif
790
4d46a89e
IM
791/*
792 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
793 *
794 * It's not worth to care about 3dnow prefetches for the K6
795 * because they are microcoded there and very slow.
796 */
ae2e15eb
GOC
797static inline void prefetch(const void *x)
798{
799 alternative_input(BASE_PREFETCH,
800 "prefetchnta (%1)",
801 X86_FEATURE_XMM,
802 "r" (x));
803}
804
4d46a89e
IM
805/*
806 * 3dnow prefetch to get an exclusive cache line.
807 * Useful for spinlocks to avoid one state transition in the
808 * cache coherency protocol:
809 */
ae2e15eb
GOC
810static inline void prefetchw(const void *x)
811{
812 alternative_input(BASE_PREFETCH,
813 "prefetchw (%1)",
814 X86_FEATURE_3DNOW,
815 "r" (x));
816}
817
4d46a89e
IM
818static inline void spin_lock_prefetch(const void *x)
819{
820 prefetchw(x);
821}
822
2f66dcc9
GOC
823#ifdef CONFIG_X86_32
824/*
825 * User space process size: 3GB (default).
826 */
4d46a89e 827#define TASK_SIZE PAGE_OFFSET
d9517346 828#define TASK_SIZE_MAX TASK_SIZE
4d46a89e
IM
829#define STACK_TOP TASK_SIZE
830#define STACK_TOP_MAX STACK_TOP
831
832#define INIT_THREAD { \
833 .sp0 = sizeof(init_stack) + (long)&init_stack, \
834 .vm86_info = NULL, \
835 .sysenter_cs = __KERNEL_CS, \
836 .io_bitmap_ptr = NULL, \
2f66dcc9
GOC
837}
838
839/*
840 * Note that the .io_bitmap member must be extra-big. This is because
841 * the CPU will access an additional byte beyond the end of the IO
842 * permission bitmap. The extra byte must be all 1 bits, and must
843 * be within the limit.
844 */
4d46a89e
IM
845#define INIT_TSS { \
846 .x86_tss = { \
2f66dcc9 847 .sp0 = sizeof(init_stack) + (long)&init_stack, \
4d46a89e
IM
848 .ss0 = __KERNEL_DS, \
849 .ss1 = __KERNEL_CS, \
850 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
851 }, \
852 .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
2f66dcc9
GOC
853}
854
2f66dcc9
GOC
855extern unsigned long thread_saved_pc(struct task_struct *tsk);
856
857#define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
858#define KSTK_TOP(info) \
859({ \
860 unsigned long *__ptr = (unsigned long *)(info); \
861 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
862})
863
864/*
865 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
866 * This is necessary to guarantee that the entire "struct pt_regs"
b595076a 867 * is accessible even if the CPU haven't stored the SS/ESP registers
2f66dcc9
GOC
868 * on the stack (interrupt gate does not save these registers
869 * when switching to the same priv ring).
870 * Therefore beware: accessing the ss/esp fields of the
871 * "struct pt_regs" is possible, but they may contain the
872 * completely wrong values.
873 */
874#define task_pt_regs(task) \
875({ \
876 struct pt_regs *__regs__; \
877 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
878 __regs__ - 1; \
879})
880
4d46a89e 881#define KSTK_ESP(task) (task_pt_regs(task)->sp)
2f66dcc9
GOC
882
883#else
884/*
885 * User space process size. 47bits minus one guard page.
886 */
d9517346 887#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
2f66dcc9
GOC
888
889/* This decides where the kernel will search for a free chunk of vm
890 * space during mmap's.
891 */
4d46a89e
IM
892#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
893 0xc0000000 : 0xFFFFe000)
2f66dcc9 894
6bd33008 895#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
d9517346 896 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
6bd33008 897#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
d9517346 898 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
2f66dcc9 899
922a70d3 900#define STACK_TOP TASK_SIZE
d9517346 901#define STACK_TOP_MAX TASK_SIZE_MAX
922a70d3 902
2f66dcc9
GOC
903#define INIT_THREAD { \
904 .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
905}
906
907#define INIT_TSS { \
908 .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
909}
910
2f66dcc9
GOC
911/*
912 * Return saved PC of a blocked thread.
913 * What is this good for? it will be always the scheduler or ret_from_fork.
914 */
4d46a89e 915#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
2f66dcc9 916
4d46a89e 917#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
89240ba0 918extern unsigned long KSTK_ESP(struct task_struct *task);
d046ff8b
L
919
920/*
921 * User space RSP while inside the SYSCALL fast path
922 */
923DECLARE_PER_CPU(unsigned long, old_rsp);
924
2f66dcc9
GOC
925#endif /* CONFIG_X86_64 */
926
513ad84b
IM
927extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
928 unsigned long new_sp);
929
4d46a89e
IM
930/*
931 * This decides where the kernel will search for a free chunk of vm
683e0253
GOC
932 * space during mmap's.
933 */
934#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
935
4d46a89e 936#define KSTK_EIP(task) (task_pt_regs(task)->ip)
683e0253 937
529e25f6
EB
938/* Get/set a process' ability to use the timestamp counter instruction */
939#define GET_TSC_CTL(adr) get_tsc_mode((adr))
940#define SET_TSC_CTL(val) set_tsc_mode((val))
941
942extern int get_tsc_mode(unsigned long adr);
943extern int set_tsc_mode(unsigned int val);
944
8b84c8df 945extern u16 amd_get_nb_id(int cpu);
6a812691 946
5cbc19a9
PZ
947struct aperfmperf {
948 u64 aperf, mperf;
949};
950
951static inline void get_aperfmperf(struct aperfmperf *am)
952{
953 WARN_ON_ONCE(!boot_cpu_has(X86_FEATURE_APERFMPERF));
954
955 rdmsrl(MSR_IA32_APERF, am->aperf);
956 rdmsrl(MSR_IA32_MPERF, am->mperf);
957}
958
959#define APERFMPERF_SHIFT 10
960
961static inline
962unsigned long calc_aperfmperf_ratio(struct aperfmperf *old,
963 struct aperfmperf *new)
964{
965 u64 aperf = new->aperf - old->aperf;
966 u64 mperf = new->mperf - old->mperf;
967 unsigned long ratio = aperf;
968
969 mperf >>= APERFMPERF_SHIFT;
970 if (mperf)
971 ratio = div64_u64(aperf, mperf);
972
973 return ratio;
974}
975
d78d671d
HR
976/*
977 * AMD errata checking
978 */
979#ifdef CONFIG_CPU_SUP_AMD
1be85a6d 980extern const int amd_erratum_383[];
9d8888c2 981extern const int amd_erratum_400[];
d78d671d
HR
982extern bool cpu_has_amd_erratum(const int *);
983
984#define AMD_LEGACY_ERRATUM(...) { -1, __VA_ARGS__, 0 }
985#define AMD_OSVW_ERRATUM(osvw_id, ...) { osvw_id, __VA_ARGS__, 0 }
986#define AMD_MODEL_RANGE(f, m_start, s_start, m_end, s_end) \
987 ((f << 24) | (m_start << 16) | (s_start << 12) | (m_end << 4) | (s_end))
988#define AMD_MODEL_RANGE_FAMILY(range) (((range) >> 24) & 0xff)
989#define AMD_MODEL_RANGE_START(range) (((range) >> 12) & 0xfff)
990#define AMD_MODEL_RANGE_END(range) ((range) & 0xfff)
991
992#else
993#define cpu_has_amd_erratum(x) (false)
994#endif /* CONFIG_CPU_SUP_AMD */
995
f05e798a
DH
996extern unsigned long arch_align_stack(unsigned long sp);
997extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
998
999void default_idle(void);
6a377ddc
LB
1000#ifdef CONFIG_XEN
1001bool xen_set_default_idle(void);
1002#else
1003#define xen_set_default_idle 0
1004#endif
f05e798a
DH
1005
1006void stop_this_cpu(void *dummy);
1007
1965aae3 1008#endif /* _ASM_X86_PROCESSOR_H */