1 #ifndef __ASM_X86_PROCESSOR_H
2 #define __ASM_X86_PROCESSOR_H
4 #include <asm/processor-flags.h>
6 /* migration helpers, for KVM - will be removed in 2.6.25: */
8 #define Xgt_desc_struct desc_ptr
10 /* Forward declaration, a strange C thing */
15 #include <asm/math_emu.h>
16 #include <asm/segment.h>
17 #include <asm/types.h>
18 #include <asm/sigcontext.h>
19 #include <asm/current.h>
20 #include <asm/cpufeature.h>
21 #include <asm/system.h>
23 #include <asm/percpu.h>
25 #include <asm/desc_defs.h>
27 #include <linux/personality.h>
28 #include <linux/cpumask.h>
29 #include <linux/cache.h>
30 #include <linux/threads.h>
31 #include <linux/init.h>
34 * Default implementation of macro that returns current
35 * instruction pointer ("program counter").
37 static inline void *current_text_addr(void)
40 asm volatile("mov $1f,%0\n1:":"=r" (pc
));
44 #ifdef CONFIG_X86_VSMP
45 #define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
46 #define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
48 #define ARCH_MIN_TASKALIGN 16
49 #define ARCH_MIN_MMSTRUCT_ALIGN 0
53 * CPU type and hardware bug flags. Kept separately for each CPU.
54 * Members of this structure are referenced in head.S, so think twice
55 * before touching them. [mj]
59 __u8 x86
; /* CPU family */
60 __u8 x86_vendor
; /* CPU vendor */
64 char wp_works_ok
; /* It doesn't on 386's */
65 char hlt_works_ok
; /* Problems on some 486Dx4's and old 386's */
73 /* number of 4K pages in DTLB/ITLB combined(in pages)*/
75 __u8 x86_virt_bits
, x86_phys_bits
;
76 /* cpuid returned core id bits */
78 /* Max extended CPUID function supported */
79 __u32 extended_cpuid_level
;
81 int cpuid_level
; /* Maximum supported CPUID level, -1=no CPUID */
82 __u32 x86_capability
[NCAPINTS
];
83 char x86_vendor_id
[16];
84 char x86_model_id
[64];
85 int x86_cache_size
; /* in KB - valid for CPUS which support this
87 int x86_cache_alignment
; /* In bytes */
89 unsigned long loops_per_jiffy
;
91 cpumask_t llc_shared_map
; /* cpus sharing the last level cache */
93 u16 x86_max_cores
; /* cpuid returned max cores value */
97 u16 booted_cores
; /* number of cores as seen by OS */
98 u16 phys_proc_id
; /* Physical processor id. */
99 u16 cpu_core_id
; /* Core id */
100 u16 cpu_index
; /* index into per_cpu list */
102 } __attribute__((__aligned__(SMP_CACHE_BYTES
)));
104 #define X86_VENDOR_INTEL 0
105 #define X86_VENDOR_CYRIX 1
106 #define X86_VENDOR_AMD 2
107 #define X86_VENDOR_UMC 3
108 #define X86_VENDOR_NEXGEN 4
109 #define X86_VENDOR_CENTAUR 5
110 #define X86_VENDOR_TRANSMETA 7
111 #define X86_VENDOR_NSC 8
112 #define X86_VENDOR_NUM 9
113 #define X86_VENDOR_UNKNOWN 0xff
116 * capabilities of CPUs
118 extern struct cpuinfo_x86 boot_cpu_data
;
119 extern struct cpuinfo_x86 new_cpu_data
;
120 extern struct tss_struct doublefault_tss
;
121 extern __u32 cleared_cpu_caps
[NCAPINTS
];
124 DECLARE_PER_CPU(struct cpuinfo_x86
, cpu_info
);
125 #define cpu_data(cpu) per_cpu(cpu_info, cpu)
126 #define current_cpu_data cpu_data(smp_processor_id())
128 #define cpu_data(cpu) boot_cpu_data
129 #define current_cpu_data boot_cpu_data
132 void cpu_detect(struct cpuinfo_x86
*c
);
134 extern void identify_cpu(struct cpuinfo_x86
*);
135 extern void identify_boot_cpu(void);
136 extern void identify_secondary_cpu(struct cpuinfo_x86
*);
137 extern void print_cpu_info(struct cpuinfo_x86
*);
138 extern void init_scattered_cpuid_features(struct cpuinfo_x86
*c
);
139 extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86
*c
);
140 extern unsigned short num_cache_leaves
;
142 #if defined(CONFIG_X86_HT) || defined(CONFIG_X86_64)
143 extern void detect_ht(struct cpuinfo_x86
*c
);
145 static inline void detect_ht(struct cpuinfo_x86
*c
) {}
148 static inline void native_cpuid(unsigned int *eax
, unsigned int *ebx
,
149 unsigned int *ecx
, unsigned int *edx
)
151 /* ecx is often an input as well as an output. */
157 : "0" (*eax
), "2" (*ecx
));
160 static inline void load_cr3(pgd_t
*pgdir
)
162 write_cr3(__pa(pgdir
));
166 /* This is the TSS defined by the hardware. */
168 unsigned short back_link
, __blh
;
170 unsigned short ss0
, __ss0h
;
172 unsigned short ss1
, __ss1h
; /* ss1 caches MSR_IA32_SYSENTER_CS */
174 unsigned short ss2
, __ss2h
;
178 unsigned long ax
, cx
, dx
, bx
;
179 unsigned long sp
, bp
, si
, di
;
180 unsigned short es
, __esh
;
181 unsigned short cs
, __csh
;
182 unsigned short ss
, __ssh
;
183 unsigned short ds
, __dsh
;
184 unsigned short fs
, __fsh
;
185 unsigned short gs
, __gsh
;
186 unsigned short ldt
, __ldth
;
187 unsigned short trace
, io_bitmap_base
;
188 } __attribute__((packed
));
201 } __attribute__((packed
)) ____cacheline_aligned
;
207 #define IO_BITMAP_BITS 65536
208 #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
209 #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
210 #define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
211 #define INVALID_IO_BITMAP_OFFSET 0x8000
212 #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
215 struct x86_hw_tss x86_tss
;
218 * The extra 1 is there because the CPU will access an
219 * additional byte beyond the end of the IO permission
220 * bitmap. The extra byte must be all 1 bits, and must
221 * be within the limit.
223 unsigned long io_bitmap
[IO_BITMAP_LONGS
+ 1];
225 * Cache the current maximum and the last task that used the bitmap:
227 unsigned long io_bitmap_max
;
228 struct thread_struct
*io_bitmap_owner
;
230 * pads the TSS to be cacheline-aligned (size is 0x100)
232 unsigned long __cacheline_filler
[35];
234 * .. and then another 0x100 bytes for emergency kernel stack
236 unsigned long stack
[64];
237 } __attribute__((packed
));
239 DECLARE_PER_CPU(struct tss_struct
, init_tss
);
241 /* Save the original ist values for checking stack pointers during debugging */
243 unsigned long ist
[7];
246 #define MXCSR_DEFAULT 0x1f80
248 struct i387_fsave_struct
{
256 u32 st_space
[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
257 u32 status
; /* software status information */
260 struct i387_fxsave_struct
{
279 u32 st_space
[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
280 u32 xmm_space
[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
282 } __attribute__((aligned(16)));
284 struct i387_soft_struct
{
292 u32 st_space
[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
293 u8 ftop
, changed
, lookahead
, no_update
, rm
, alimit
;
299 struct i387_fsave_struct fsave
;
300 struct i387_fxsave_struct fxsave
;
301 struct i387_soft_struct soft
;
305 <<<<<<< HEAD
:include
/asm-x86
/processor
.h
307 * the following now lives in the per cpu area:
308 * extern int cpu_llc_id[NR_CPUS];
311 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:include
/asm-x86
/processor
.h
312 DECLARE_PER_CPU(u8
, cpu_llc_id
);
314 DECLARE_PER_CPU(struct orig_ist
, orig_ist
);
317 extern void print_cpu_info(struct cpuinfo_x86
*);
318 extern void init_scattered_cpuid_features(struct cpuinfo_x86
*c
);
319 extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86
*c
);
320 extern unsigned short num_cache_leaves
;
322 struct thread_struct
{
323 /* cached TLS descriptors. */
324 struct desc_struct tls_array
[GDT_ENTRY_TLS_ENTRIES
];
328 unsigned long sysenter_cs
;
330 unsigned long usersp
; /* Copy from PDA */
331 unsigned short es
, ds
, fsindex
, gsindex
;
336 /* Hardware debugging registers */
337 unsigned long debugreg0
;
338 unsigned long debugreg1
;
339 unsigned long debugreg2
;
340 unsigned long debugreg3
;
341 unsigned long debugreg6
;
342 unsigned long debugreg7
;
344 unsigned long cr2
, trap_no
, error_code
;
345 /* floating point info */
346 union i387_union i387
__attribute__((aligned(16)));;
348 /* virtual 86 mode info */
349 struct vm86_struct __user
*vm86_info
;
350 unsigned long screen_bitmap
;
351 unsigned long v86flags
, v86mask
, saved_sp0
;
352 unsigned int saved_fs
, saved_gs
;
355 unsigned long *io_bitmap_ptr
;
357 /* max allowed port in the bitmap, in bytes: */
358 unsigned io_bitmap_max
;
359 /* MSR_IA32_DEBUGCTLMSR value to switch in if TIF_DEBUGCTLMSR is set. */
360 unsigned long debugctlmsr
;
361 /* Debug Store - if not 0 points to a DS Save Area configuration;
362 * goes into MSR_IA32_DS_AREA */
363 unsigned long ds_area_msr
;
366 static inline unsigned long native_get_debugreg(int regno
)
368 unsigned long val
= 0; /* Damn you, gcc! */
372 asm("mov %%db0, %0" :"=r" (val
)); break;
374 asm("mov %%db1, %0" :"=r" (val
)); break;
376 asm("mov %%db2, %0" :"=r" (val
)); break;
378 asm("mov %%db3, %0" :"=r" (val
)); break;
380 asm("mov %%db6, %0" :"=r" (val
)); break;
382 asm("mov %%db7, %0" :"=r" (val
)); break;
389 static inline void native_set_debugreg(int regno
, unsigned long value
)
393 asm("mov %0,%%db0" : /* no output */ :"r" (value
));
396 asm("mov %0,%%db1" : /* no output */ :"r" (value
));
399 asm("mov %0,%%db2" : /* no output */ :"r" (value
));
402 asm("mov %0,%%db3" : /* no output */ :"r" (value
));
405 asm("mov %0,%%db6" : /* no output */ :"r" (value
));
408 asm("mov %0,%%db7" : /* no output */ :"r" (value
));
416 * Set IOPL bits in EFLAGS from given mask
418 static inline void native_set_iopl_mask(unsigned mask
)
422 __asm__
__volatile__ ("pushfl;"
429 : "i" (~X86_EFLAGS_IOPL
), "r" (mask
));
433 static inline void native_load_sp0(struct tss_struct
*tss
,
434 struct thread_struct
*thread
)
436 tss
->x86_tss
.sp0
= thread
->sp0
;
438 /* Only happens when SEP is enabled, no need to test "SEP"arately */
439 if (unlikely(tss
->x86_tss
.ss1
!= thread
->sysenter_cs
)) {
440 tss
->x86_tss
.ss1
= thread
->sysenter_cs
;
441 wrmsr(MSR_IA32_SYSENTER_CS
, thread
->sysenter_cs
, 0);
446 static inline void native_swapgs(void)
449 asm volatile("swapgs" ::: "memory");
453 #ifdef CONFIG_PARAVIRT
454 #include <asm/paravirt.h>
456 #define __cpuid native_cpuid
457 #define paravirt_enabled() 0
460 * These special macros can be used to get or set a debugging register
462 #define get_debugreg(var, register) \
463 (var) = native_get_debugreg(register)
464 #define set_debugreg(value, register) \
465 native_set_debugreg(register, value)
467 static inline void load_sp0(struct tss_struct
*tss
,
468 struct thread_struct
*thread
)
470 native_load_sp0(tss
, thread
);
473 #define set_iopl_mask native_set_iopl_mask
474 #define SWAPGS swapgs
475 #endif /* CONFIG_PARAVIRT */
478 * Save the cr4 feature set we're using (ie
479 * Pentium 4MB enable and PPro Global page
480 * enable), so that any CPU's that boot up
481 * after us can get the correct flags.
483 extern unsigned long mmu_cr4_features
;
485 static inline void set_in_cr4(unsigned long mask
)
488 mmu_cr4_features
|= mask
;
494 static inline void clear_in_cr4(unsigned long mask
)
497 mmu_cr4_features
&= ~mask
;
503 struct microcode_header
{
511 unsigned int datasize
;
512 unsigned int totalsize
;
513 unsigned int reserved
[3];
517 struct microcode_header hdr
;
518 unsigned int bits
[0];
521 typedef struct microcode microcode_t
;
522 typedef struct microcode_header microcode_header_t
;
524 /* microcode format is extended from prescott processors */
525 struct extended_signature
{
531 struct extended_sigtable
{
534 unsigned int reserved
[3];
535 struct extended_signature sigs
[0];
544 * create a kernel thread without removing it from tasklists
546 extern int kernel_thread(int (*fn
)(void *), void *arg
, unsigned long flags
);
548 /* Free all resources held by a thread. */
549 extern void release_thread(struct task_struct
*);
551 /* Prepare to copy thread state - unlazy all lazy status */
552 extern void prepare_to_copy(struct task_struct
*tsk
);
554 unsigned long get_wchan(struct task_struct
*p
);
557 * Generic CPUID function
558 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
559 * resulting in stale register contents being returned.
561 static inline void cpuid(unsigned int op
,
562 unsigned int *eax
, unsigned int *ebx
,
563 unsigned int *ecx
, unsigned int *edx
)
567 __cpuid(eax
, ebx
, ecx
, edx
);
570 /* Some CPUID calls want 'count' to be placed in ecx */
571 static inline void cpuid_count(unsigned int op
, int count
,
572 unsigned int *eax
, unsigned int *ebx
,
573 unsigned int *ecx
, unsigned int *edx
)
577 __cpuid(eax
, ebx
, ecx
, edx
);
581 * CPUID functions returning a single datum
583 static inline unsigned int cpuid_eax(unsigned int op
)
585 unsigned int eax
, ebx
, ecx
, edx
;
587 cpuid(op
, &eax
, &ebx
, &ecx
, &edx
);
590 static inline unsigned int cpuid_ebx(unsigned int op
)
592 unsigned int eax
, ebx
, ecx
, edx
;
594 cpuid(op
, &eax
, &ebx
, &ecx
, &edx
);
597 static inline unsigned int cpuid_ecx(unsigned int op
)
599 unsigned int eax
, ebx
, ecx
, edx
;
601 cpuid(op
, &eax
, &ebx
, &ecx
, &edx
);
604 static inline unsigned int cpuid_edx(unsigned int op
)
606 unsigned int eax
, ebx
, ecx
, edx
;
608 cpuid(op
, &eax
, &ebx
, &ecx
, &edx
);
612 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
613 static inline void rep_nop(void)
615 __asm__
__volatile__("rep;nop": : :"memory");
618 /* Stop speculative execution */
619 static inline void sync_core(void)
622 asm volatile("cpuid" : "=a" (tmp
) : "0" (1)
623 : "ebx", "ecx", "edx", "memory");
626 #define cpu_relax() rep_nop()
628 static inline void __monitor(const void *eax
, unsigned long ecx
,
631 /* "monitor %eax,%ecx,%edx;" */
633 ".byte 0x0f,0x01,0xc8;"
634 : :"a" (eax
), "c" (ecx
), "d"(edx
));
637 static inline void __mwait(unsigned long eax
, unsigned long ecx
)
639 /* "mwait %eax,%ecx;" */
641 ".byte 0x0f,0x01,0xc9;"
642 : :"a" (eax
), "c" (ecx
));
645 static inline void __sti_mwait(unsigned long eax
, unsigned long ecx
)
647 /* "mwait %eax,%ecx;" */
649 "sti; .byte 0x0f,0x01,0xc9;"
650 : :"a" (eax
), "c" (ecx
));
653 extern void mwait_idle_with_hints(unsigned long eax
, unsigned long ecx
);
655 extern int force_mwait
;
657 extern void select_idle_routine(const struct cpuinfo_x86
*c
);
659 extern unsigned long boot_option_idle_override
;
661 extern void enable_sep_cpu(void);
662 extern int sysenter_setup(void);
664 /* Defined in head.S */
665 extern struct desc_ptr early_gdt_descr
;
667 extern void cpu_set_gdt(int);
668 extern void switch_to_new_gdt(void);
669 extern void cpu_init(void);
670 extern void init_gdt(int cpu
);
672 /* from system description table in BIOS. Mostly for MCA use, but
673 * others may find it useful. */
674 extern unsigned int machine_id
;
675 extern unsigned int machine_submodel_id
;
676 extern unsigned int BIOS_revision
;
677 <<<<<<< HEAD
:include
/asm-x86
/processor
.h
678 extern unsigned int mca_pentium_flag
;
680 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:include
/asm-x86
/processor
.h
682 /* Boot loader type from the setup header */
683 extern int bootloader_type
;
685 extern char ignore_fpu_irq
;
686 #define cache_line_size() (boot_cpu_data.x86_cache_alignment)
688 #define HAVE_ARCH_PICK_MMAP_LAYOUT 1
689 #define ARCH_HAS_PREFETCHW
690 #define ARCH_HAS_SPINLOCK_PREFETCH
693 #define BASE_PREFETCH ASM_NOP4
694 #define ARCH_HAS_PREFETCH
696 #define BASE_PREFETCH "prefetcht0 (%1)"
699 /* Prefetch instructions for Pentium III and AMD Athlon */
700 /* It's not worth to care about 3dnow! prefetches for the K6
701 because they are microcoded there and very slow.
702 However we don't do prefetches for pre XP Athlons currently
703 That should be fixed. */
704 static inline void prefetch(const void *x
)
706 alternative_input(BASE_PREFETCH
,
712 /* 3dnow! prefetch to get an exclusive cache line. Useful for
713 spinlocks to avoid one state transition in the cache coherency protocol. */
714 static inline void prefetchw(const void *x
)
716 alternative_input(BASE_PREFETCH
,
722 #define spin_lock_prefetch(x) prefetchw(x)
725 * User space process size: 3GB (default).
727 #define TASK_SIZE (PAGE_OFFSET)
728 #define STACK_TOP TASK_SIZE
729 #define STACK_TOP_MAX STACK_TOP
731 #define INIT_THREAD { \
732 .sp0 = sizeof(init_stack) + (long)&init_stack, \
734 .sysenter_cs = __KERNEL_CS, \
735 .io_bitmap_ptr = NULL, \
736 .fs = __KERNEL_PERCPU, \
740 * Note that the .io_bitmap member must be extra-big. This is because
741 * the CPU will access an additional byte beyond the end of the IO
742 * permission bitmap. The extra byte must be all 1 bits, and must
743 * be within the limit.
747 .sp0 = sizeof(init_stack) + (long)&init_stack, \
748 .ss0 = __KERNEL_DS, \
749 .ss1 = __KERNEL_CS, \
750 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
752 .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
755 #define start_thread(regs, new_eip, new_esp) do { \
756 __asm__("movl %0,%%gs": :"r" (0)); \
759 regs->ds = __USER_DS; \
760 regs->es = __USER_DS; \
761 regs->ss = __USER_DS; \
762 regs->cs = __USER_CS; \
763 regs->ip = new_eip; \
764 regs->sp = new_esp; \
768 extern unsigned long thread_saved_pc(struct task_struct
*tsk
);
770 #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
771 #define KSTK_TOP(info) \
773 unsigned long *__ptr = (unsigned long *)(info); \
774 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
778 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
779 * This is necessary to guarantee that the entire "struct pt_regs"
780 * is accessable even if the CPU haven't stored the SS/ESP registers
781 * on the stack (interrupt gate does not save these registers
782 * when switching to the same priv ring).
783 * Therefore beware: accessing the ss/esp fields of the
784 * "struct pt_regs" is possible, but they may contain the
785 * completely wrong values.
787 #define task_pt_regs(task) \
789 struct pt_regs *__regs__; \
790 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
794 #define KSTK_ESP(task) (task_pt_regs(task)->sp)
798 * User space process size. 47bits minus one guard page.
800 #define TASK_SIZE64 (0x800000000000UL - 4096)
802 /* This decides where the kernel will search for a free chunk of vm
803 * space during mmap's.
805 #define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
806 0xc0000000 : 0xFFFFe000)
808 #define TASK_SIZE (test_thread_flag(TIF_IA32) ? \
809 IA32_PAGE_OFFSET : TASK_SIZE64)
810 #define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_IA32)) ? \
811 IA32_PAGE_OFFSET : TASK_SIZE64)
813 #define STACK_TOP TASK_SIZE
814 #define STACK_TOP_MAX TASK_SIZE64
816 #define INIT_THREAD { \
817 .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
821 .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
824 #define start_thread(regs, new_rip, new_rsp) do { \
825 asm volatile("movl %0,%%fs; movl %0,%%es; movl %0,%%ds": :"r" (0)); \
827 (regs)->ip = (new_rip); \
828 (regs)->sp = (new_rsp); \
829 write_pda(oldrsp, (new_rsp)); \
830 (regs)->cs = __USER_CS; \
831 (regs)->ss = __USER_DS; \
832 (regs)->flags = 0x200; \
837 * Return saved PC of a blocked thread.
838 * What is this good for? it will be always the scheduler or ret_from_fork.
840 #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
842 #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
843 #define KSTK_ESP(tsk) -1 /* sorry. doesn't work for syscall. */
844 #endif /* CONFIG_X86_64 */
846 /* This decides where the kernel will search for a free chunk of vm
847 * space during mmap's.
849 #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
851 #define KSTK_EIP(task) (task_pt_regs(task)->ip)