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