1#ifndef _ASM_X86_PROCESSOR_H
2#define _ASM_X86_PROCESSOR_H
3
4#include <asm/processor-flags.h>
5
6
7struct task_struct;
8struct mm_struct;
9
10#include <asm/vm86.h>
11#include <asm/math_emu.h>
12#include <asm/segment.h>
13#include <asm/types.h>
14#include <asm/sigcontext.h>
15#include <asm/current.h>
16#include <asm/cpufeature.h>
17#include <asm/page.h>
18#include <asm/pgtable_types.h>
19#include <asm/percpu.h>
20#include <asm/msr.h>
21#include <asm/desc_defs.h>
22#include <asm/nops.h>
23#include <asm/special_insns.h>
24
25#include <linux/personality.h>
26#include <linux/cpumask.h>
27#include <linux/cache.h>
28#include <linux/threads.h>
29#include <linux/math64.h>
30#include <linux/err.h>
31#include <linux/irqflags.h>
32
33
34
35
36
37
38
39#define NET_IP_ALIGN 0
40
41#define HBP_NUM 4
42
43
44
45
46static inline void *current_text_addr(void)
47{
48 void *pc;
49
50 asm volatile("mov $1f, %0; 1:":"=r" (pc));
51
52 return pc;
53}
54
55#ifdef CONFIG_X86_VSMP
56# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
57# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
58#else
59# define ARCH_MIN_TASKALIGN 16
60# define ARCH_MIN_MMSTRUCT_ALIGN 0
61#endif
62
63enum tlb_infos {
64 ENTRIES,
65 NR_INFO
66};
67
68extern u16 __read_mostly tlb_lli_4k[NR_INFO];
69extern u16 __read_mostly tlb_lli_2m[NR_INFO];
70extern u16 __read_mostly tlb_lli_4m[NR_INFO];
71extern u16 __read_mostly tlb_lld_4k[NR_INFO];
72extern u16 __read_mostly tlb_lld_2m[NR_INFO];
73extern u16 __read_mostly tlb_lld_4m[NR_INFO];
74extern u16 __read_mostly tlb_lld_1g[NR_INFO];
75extern s8 __read_mostly tlb_flushall_shift;
76
77
78
79
80
81
82
83struct cpuinfo_x86 {
84 __u8 x86;
85 __u8 x86_vendor;
86 __u8 x86_model;
87 __u8 x86_mask;
88#ifdef CONFIG_X86_32
89 char wp_works_ok;
90
91
92 char rfu;
93 char pad0;
94 char pad1;
95#else
96
97 int x86_tlbsize;
98#endif
99 __u8 x86_virt_bits;
100 __u8 x86_phys_bits;
101
102 __u8 x86_coreid_bits;
103
104 __u32 extended_cpuid_level;
105
106 int cpuid_level;
107 __u32 x86_capability[NCAPINTS + NBUGINTS];
108 char x86_vendor_id[16];
109 char x86_model_id[64];
110
111 int x86_cache_size;
112 int x86_cache_alignment;
113 int x86_power;
114 unsigned long loops_per_jiffy;
115
116 u16 x86_max_cores;
117 u16 apicid;
118 u16 initial_apicid;
119 u16 x86_clflush_size;
120
121 u16 booted_cores;
122
123 u16 phys_proc_id;
124
125 u16 cpu_core_id;
126
127 u8 compute_unit_id;
128
129 u16 cpu_index;
130 u32 microcode;
131} __attribute__((__aligned__(SMP_CACHE_BYTES)));
132
133#define X86_VENDOR_INTEL 0
134#define X86_VENDOR_CYRIX 1
135#define X86_VENDOR_AMD 2
136#define X86_VENDOR_UMC 3
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
143
144
145
146
147extern struct cpuinfo_x86 boot_cpu_data;
148extern struct cpuinfo_x86 new_cpu_data;
149
150extern struct tss_struct doublefault_tss;
151extern __u32 cpu_caps_cleared[NCAPINTS];
152extern __u32 cpu_caps_set[NCAPINTS];
153
154#ifdef CONFIG_SMP
155DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
156#define cpu_data(cpu) per_cpu(cpu_info, cpu)
157#else
158#define cpu_info boot_cpu_data
159#define cpu_data(cpu) boot_cpu_data
160#endif
161
162extern const struct seq_operations cpuinfo_op;
163
164#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
165
166extern void cpu_detect(struct cpuinfo_x86 *c);
167extern void fpu_detect(struct cpuinfo_x86 *c);
168
169extern void early_cpu_init(void);
170extern void identify_boot_cpu(void);
171extern void identify_secondary_cpu(struct cpuinfo_x86 *);
172extern void print_cpu_info(struct cpuinfo_x86 *);
173void print_cpu_msr(struct cpuinfo_x86 *);
174extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
175extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
176extern void init_amd_cacheinfo(struct cpuinfo_x86 *c);
177
178extern void detect_extended_topology(struct cpuinfo_x86 *c);
179extern void detect_ht(struct cpuinfo_x86 *c);
180
181#ifdef CONFIG_X86_32
182extern int have_cpuid_p(void);
183#else
184static inline int have_cpuid_p(void)
185{
186 return 1;
187}
188#endif
189static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
190 unsigned int *ecx, unsigned int *edx)
191{
192
193 asm volatile("cpuid"
194 : "=a" (*eax),
195 "=b" (*ebx),
196 "=c" (*ecx),
197 "=d" (*edx)
198 : "0" (*eax), "2" (*ecx)
199 : "memory");
200}
201
202static inline void load_cr3(pgd_t *pgdir)
203{
204 write_cr3(__pa(pgdir));
205}
206
207#ifdef CONFIG_X86_32
208
209struct x86_hw_tss {
210 unsigned short back_link, __blh;
211 unsigned long sp0;
212 unsigned short ss0, __ss0h;
213 unsigned long sp1;
214
215 unsigned short ss1, __ss1h;
216 unsigned long sp2;
217 unsigned short ss2, __ss2h;
218 unsigned long __cr3;
219 unsigned long ip;
220 unsigned long flags;
221 unsigned long ax;
222 unsigned long cx;
223 unsigned long dx;
224 unsigned long bx;
225 unsigned long sp;
226 unsigned long bp;
227 unsigned long si;
228 unsigned long di;
229 unsigned short es, __esh;
230 unsigned short cs, __csh;
231 unsigned short ss, __ssh;
232 unsigned short ds, __dsh;
233 unsigned short fs, __fsh;
234 unsigned short gs, __gsh;
235 unsigned short ldt, __ldth;
236 unsigned short trace;
237 unsigned short io_bitmap_base;
238
239} __attribute__((packed));
240#else
241struct x86_hw_tss {
242 u32 reserved1;
243 u64 sp0;
244 u64 sp1;
245 u64 sp2;
246 u64 reserved2;
247 u64 ist[7];
248 u32 reserved3;
249 u32 reserved4;
250 u16 reserved5;
251 u16 io_bitmap_base;
252
253} __attribute__((packed)) ____cacheline_aligned;
254#endif
255
256
257
258
259#define IO_BITMAP_BITS 65536
260#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
261#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
262#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
263#define INVALID_IO_BITMAP_OFFSET 0x8000
264
265struct tss_struct {
266
267
268
269 struct x86_hw_tss x86_tss;
270
271
272
273
274
275
276
277 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
278
279
280
281
282 unsigned long stack[64];
283
284} ____cacheline_aligned;
285
286DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss);
287
288
289
290
291struct orig_ist {
292 unsigned long ist[7];
293};
294
295#define MXCSR_DEFAULT 0x1f80
296
297struct i387_fsave_struct {
298 u32 cwd;
299 u32 swd;
300 u32 twd;
301 u32 fip;
302 u32 fcs;
303 u32 foo;
304 u32 fos;
305
306
307 u32 st_space[20];
308
309
310 u32 status;
311};
312
313struct i387_fxsave_struct {
314 u16 cwd;
315 u16 swd;
316 u16 twd;
317 u16 fop;
318 union {
319 struct {
320 u64 rip;
321 u64 rdp;
322 };
323 struct {
324 u32 fip;
325 u32 fcs;
326 u32 foo;
327 u32 fos;
328 };
329 };
330 u32 mxcsr;
331 u32 mxcsr_mask;
332
333
334 u32 st_space[32];
335
336
337 u32 xmm_space[64];
338
339 u32 padding[12];
340
341 union {
342 u32 padding1[12];
343 u32 sw_reserved[12];
344 };
345
346} __attribute__((aligned(16)));
347
348struct i387_soft_struct {
349 u32 cwd;
350 u32 swd;
351 u32 twd;
352 u32 fip;
353 u32 fcs;
354 u32 foo;
355 u32 fos;
356
357 u32 st_space[20];
358 u8 ftop;
359 u8 changed;
360 u8 lookahead;
361 u8 no_update;
362 u8 rm;
363 u8 alimit;
364 struct math_emu_info *info;
365 u32 entry_eip;
366};
367
368struct ymmh_struct {
369
370 u32 ymmh_space[64];
371};
372
373
374struct lwp_struct {
375 u8 reserved[128];
376};
377
378struct bndregs_struct {
379 u64 bndregs[8];
380} __packed;
381
382struct bndcsr_struct {
383 u64 cfg_reg_u;
384 u64 status_reg;
385} __packed;
386
387struct xsave_hdr_struct {
388 u64 xstate_bv;
389 u64 reserved1[2];
390 u64 reserved2[5];
391} __attribute__((packed));
392
393struct xsave_struct {
394 struct i387_fxsave_struct i387;
395 struct xsave_hdr_struct xsave_hdr;
396 struct ymmh_struct ymmh;
397 struct lwp_struct lwp;
398 struct bndregs_struct bndregs;
399 struct bndcsr_struct bndcsr;
400
401} __attribute__ ((packed, aligned (64)));
402
403union thread_xstate {
404 struct i387_fsave_struct fsave;
405 struct i387_fxsave_struct fxsave;
406 struct i387_soft_struct soft;
407 struct xsave_struct xsave;
408};
409
410struct fpu {
411 unsigned int last_cpu;
412 unsigned int has_fpu;
413 union thread_xstate *state;
414};
415
416#ifdef CONFIG_X86_64
417DECLARE_PER_CPU(struct orig_ist, orig_ist);
418
419union irq_stack_union {
420 char irq_stack[IRQ_STACK_SIZE];
421
422
423
424
425
426 struct {
427 char gs_base[40];
428 unsigned long stack_canary;
429 };
430};
431
432DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union) __visible;
433DECLARE_INIT_PER_CPU(irq_stack_union);
434
435DECLARE_PER_CPU(char *, irq_stack_ptr);
436DECLARE_PER_CPU(unsigned int, irq_count);
437extern asmlinkage void ignore_sysret(void);
438#else
439#ifdef CONFIG_CC_STACKPROTECTOR
440
441
442
443
444
445
446struct stack_canary {
447 char __pad[20];
448 unsigned long canary;
449};
450DECLARE_PER_CPU_ALIGNED(struct stack_canary, stack_canary);
451#endif
452#endif
453
454extern unsigned int xstate_size;
455extern void free_thread_xstate(struct task_struct *);
456extern struct kmem_cache *task_xstate_cachep;
457
458struct perf_event;
459
460struct thread_struct {
461
462 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
463 unsigned long sp0;
464 unsigned long sp;
465#ifdef CONFIG_X86_32
466 unsigned long sysenter_cs;
467#else
468 unsigned long usersp;
469 unsigned short es;
470 unsigned short ds;
471 unsigned short fsindex;
472 unsigned short gsindex;
473#endif
474#ifdef CONFIG_X86_32
475 unsigned long ip;
476#endif
477#ifdef CONFIG_X86_64
478 unsigned long fs;
479#endif
480 unsigned long gs;
481
482 struct perf_event *ptrace_bps[HBP_NUM];
483
484 unsigned long debugreg6;
485
486 unsigned long ptrace_dr7;
487
488 unsigned long cr2;
489 unsigned long trap_nr;
490 unsigned long error_code;
491
492 struct fpu fpu;
493#ifdef CONFIG_X86_32
494
495 struct vm86_struct __user *vm86_info;
496 unsigned long screen_bitmap;
497 unsigned long v86flags;
498 unsigned long v86mask;
499 unsigned long saved_sp0;
500 unsigned int saved_fs;
501 unsigned int saved_gs;
502#endif
503
504 unsigned long *io_bitmap_ptr;
505 unsigned long iopl;
506
507 unsigned io_bitmap_max;
508
509
510
511
512
513
514
515
516 unsigned char fpu_counter;
517};
518
519
520
521
522static inline void native_set_iopl_mask(unsigned mask)
523{
524#ifdef CONFIG_X86_32
525 unsigned int reg;
526
527 asm volatile ("pushfl;"
528 "popl %0;"
529 "andl %1, %0;"
530 "orl %2, %0;"
531 "pushl %0;"
532 "popfl"
533 : "=&r" (reg)
534 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
535#endif
536}
537
538static inline void
539native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
540{
541 tss->x86_tss.sp0 = thread->sp0;
542#ifdef CONFIG_X86_32
543
544 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
545 tss->x86_tss.ss1 = thread->sysenter_cs;
546 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
547 }
548#endif
549}
550
551static inline void native_swapgs(void)
552{
553#ifdef CONFIG_X86_64
554 asm volatile("swapgs" ::: "memory");
555#endif
556}
557
558#ifdef CONFIG_PARAVIRT
559#include <asm/paravirt.h>
560#else
561#define __cpuid native_cpuid
562#define paravirt_enabled() 0
563
564static inline void load_sp0(struct tss_struct *tss,
565 struct thread_struct *thread)
566{
567 native_load_sp0(tss, thread);
568}
569
570#define set_iopl_mask native_set_iopl_mask
571#endif
572
573
574
575
576
577
578
579extern unsigned long mmu_cr4_features;
580extern u32 *trampoline_cr4_features;
581
582static inline void set_in_cr4(unsigned long mask)
583{
584 unsigned long cr4;
585
586 mmu_cr4_features |= mask;
587 if (trampoline_cr4_features)
588 *trampoline_cr4_features = mmu_cr4_features;
589 cr4 = read_cr4();
590 cr4 |= mask;
591 write_cr4(cr4);
592}
593
594static inline void clear_in_cr4(unsigned long mask)
595{
596 unsigned long cr4;
597
598 mmu_cr4_features &= ~mask;
599 if (trampoline_cr4_features)
600 *trampoline_cr4_features = mmu_cr4_features;
601 cr4 = read_cr4();
602 cr4 &= ~mask;
603 write_cr4(cr4);
604}
605
606typedef struct {
607 unsigned long seg;
608} mm_segment_t;
609
610
611
612extern void release_thread(struct task_struct *);
613
614unsigned long get_wchan(struct task_struct *p);
615
616
617
618
619
620
621static inline void cpuid(unsigned int op,
622 unsigned int *eax, unsigned int *ebx,
623 unsigned int *ecx, unsigned int *edx)
624{
625 *eax = op;
626 *ecx = 0;
627 __cpuid(eax, ebx, ecx, edx);
628}
629
630
631static inline void cpuid_count(unsigned int op, int count,
632 unsigned int *eax, unsigned int *ebx,
633 unsigned int *ecx, unsigned int *edx)
634{
635 *eax = op;
636 *ecx = count;
637 __cpuid(eax, ebx, ecx, edx);
638}
639
640
641
642
643static inline unsigned int cpuid_eax(unsigned int op)
644{
645 unsigned int eax, ebx, ecx, edx;
646
647 cpuid(op, &eax, &ebx, &ecx, &edx);
648
649 return eax;
650}
651
652static inline unsigned int cpuid_ebx(unsigned int op)
653{
654 unsigned int eax, ebx, ecx, edx;
655
656 cpuid(op, &eax, &ebx, &ecx, &edx);
657
658 return ebx;
659}
660
661static inline unsigned int cpuid_ecx(unsigned int op)
662{
663 unsigned int eax, ebx, ecx, edx;
664
665 cpuid(op, &eax, &ebx, &ecx, &edx);
666
667 return ecx;
668}
669
670static inline unsigned int cpuid_edx(unsigned int op)
671{
672 unsigned int eax, ebx, ecx, edx;
673
674 cpuid(op, &eax, &ebx, &ecx, &edx);
675
676 return edx;
677}
678
679
680static inline void rep_nop(void)
681{
682 asm volatile("rep; nop" ::: "memory");
683}
684
685static inline void cpu_relax(void)
686{
687 rep_nop();
688}
689
690
691static inline void sync_core(void)
692{
693 int tmp;
694
695#ifdef CONFIG_M486
696
697
698
699
700 asm volatile("cmpl %2,%1\n\t"
701 "jl 1f\n\t"
702 "cpuid\n"
703 "1:"
704 : "=a" (tmp)
705 : "rm" (boot_cpu_data.cpuid_level), "ri" (0), "0" (1)
706 : "ebx", "ecx", "edx", "memory");
707#else
708
709
710
711
712
713 asm volatile("cpuid"
714 : "=a" (tmp)
715 : "0" (1)
716 : "ebx", "ecx", "edx", "memory");
717#endif
718}
719
720extern void select_idle_routine(const struct cpuinfo_x86 *c);
721extern void init_amd_e400_c1e_mask(void);
722
723extern unsigned long boot_option_idle_override;
724extern bool amd_e400_c1e_detected;
725
726enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
727 IDLE_POLL};
728
729extern void enable_sep_cpu(void);
730extern int sysenter_setup(void);
731
732extern void early_trap_init(void);
733void early_trap_pf_init(void);
734
735
736extern struct desc_ptr early_gdt_descr;
737
738extern void cpu_set_gdt(int);
739extern void switch_to_new_gdt(int);
740extern void load_percpu_segment(int);
741extern void cpu_init(void);
742
743static inline unsigned long get_debugctlmsr(void)
744{
745 unsigned long debugctlmsr = 0;
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
753 return debugctlmsr;
754}
755
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
765extern void set_task_blockstep(struct task_struct *task, bool on);
766
767
768
769
770
771extern unsigned int machine_id;
772extern unsigned int machine_submodel_id;
773extern unsigned int BIOS_revision;
774
775
776extern int bootloader_type;
777extern int bootloader_version;
778
779extern char ignore_fpu_irq;
780
781#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
782#define ARCH_HAS_PREFETCHW
783#define ARCH_HAS_SPINLOCK_PREFETCH
784
785#ifdef CONFIG_X86_32
786# define BASE_PREFETCH ASM_NOP4
787# define ARCH_HAS_PREFETCH
788#else
789# define BASE_PREFETCH "prefetcht0 (%1)"
790#endif
791
792
793
794
795
796
797
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
806
807
808
809
810
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
819static inline void spin_lock_prefetch(const void *x)
820{
821 prefetchw(x);
822}
823
824#ifdef CONFIG_X86_32
825
826
827
828#define TASK_SIZE PAGE_OFFSET
829#define TASK_SIZE_MAX TASK_SIZE
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, \
838}
839
840
841
842
843
844
845
846#define INIT_TSS { \
847 .x86_tss = { \
848 .sp0 = sizeof(init_stack) + (long)&init_stack, \
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 }, \
854}
855
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
867
868
869
870
871
872
873
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
882#define KSTK_ESP(task) (task_pt_regs(task)->sp)
883
884#else
885
886
887
888#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)
889
890
891
892
893#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
894 0xc0000000 : 0xFFFFe000)
895
896#define TASK_SIZE (test_thread_flag(TIF_ADDR32) ? \
897 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
898#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_ADDR32)) ? \
899 IA32_PAGE_OFFSET : TASK_SIZE_MAX)
900
901#define STACK_TOP TASK_SIZE
902#define STACK_TOP_MAX TASK_SIZE_MAX
903
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
912
913
914
915
916#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
917
918#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
919extern unsigned long KSTK_ESP(struct task_struct *task);
920
921
922
923
924DECLARE_PER_CPU(unsigned long, old_rsp);
925
926#endif
927
928extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
929 unsigned long new_sp);
930
931
932
933
934
935#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
936
937#define KSTK_EIP(task) (task_pt_regs(task)->ip)
938
939
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
946extern u16 amd_get_nb_id(int cpu);
947
948static inline uint32_t hypervisor_cpuid_base(const char *sig, uint32_t leaves)
949{
950 uint32_t base, eax, signature[3];
951
952 for (base = 0x40000000; base < 0x40010000; base += 0x100) {
953 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
954
955 if (!memcmp(sig, signature, 12) &&
956 (leaves == 0 || ((eax - base) >= leaves)))
957 return base;
958 }
959
960 return 0;
961}
962
963extern unsigned long arch_align_stack(unsigned long sp);
964extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
965
966void default_idle(void);
967#ifdef CONFIG_XEN
968bool xen_set_default_idle(void);
969#else
970#define xen_set_default_idle 0
971#endif
972
973void stop_this_cpu(void *dummy);
974void df_debug(struct pt_regs *regs, long error_code);
975#endif
976