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