2 * include/asm-i386/processor.h
4 * Copyright (C) 1994 Linus Torvalds
7 #ifndef __ASM_I386_PROCESSOR_H
8 #define __ASM_I386_PROCESSOR_H
11 #include <asm/math_emu.h>
12 #include <asm/segment.h>
14 #include <asm/types.h>
15 #include <asm/sigcontext.h>
16 #include <asm/cpufeature.h>
18 #include <asm/system.h>
19 #include <linux/cache.h>
20 #include <linux/threads.h>
21 #include <asm/percpu.h>
22 #include <linux/cpumask.h>
23 #include <linux/init.h>
24 #include <asm/processor-flags.h>
26 /* flag for disabling the tsc */
27 extern int tsc_disable;
33 #define desc_empty(desc) \
34 (!((desc)->a | (desc)->b))
36 #define desc_equal(desc1, desc2) \
37 (((desc1)->a == (desc2)->a) && ((desc1)->b == (desc2)->b))
39 * Default implementation of macro that returns current
40 * instruction pointer ("program counter").
42 #define current_text_addr() ({ void *pc; __asm__("movl $1f,%0\n1:":"=g" (pc)); pc; })
45 * CPU type and hardware bug flags. Kept separately for each CPU.
46 * Members of this structure are referenced in head.S, so think twice
47 * before touching them. [mj]
51 __u8 x86; /* CPU family */
52 __u8 x86_vendor; /* CPU vendor */
55 char wp_works_ok; /* It doesn't on 386's */
56 char hlt_works_ok; /* Problems on some 486Dx4's and old 386's */
59 int cpuid_level; /* Maximum supported CPUID level, -1=no CPUID */
60 unsigned long x86_capability[NCAPINTS];
61 char x86_vendor_id[16];
62 char x86_model_id[64];
63 int x86_cache_size; /* in KB - valid for CPUS which support this
65 int x86_cache_alignment; /* In bytes */
71 unsigned long loops_per_jiffy;
73 cpumask_t llc_shared_map; /* cpus sharing the last level cache */
75 unsigned char x86_max_cores; /* cpuid returned max cores value */
77 unsigned short x86_clflush_size;
79 unsigned char booted_cores; /* number of cores as seen by OS */
80 __u8 phys_proc_id; /* Physical processor id. */
81 __u8 cpu_core_id; /* Core id */
82 __u8 cpu_index; /* index into per_cpu list */
84 } __attribute__((__aligned__(SMP_CACHE_BYTES)));
86 #define X86_VENDOR_INTEL 0
87 #define X86_VENDOR_CYRIX 1
88 #define X86_VENDOR_AMD 2
89 #define X86_VENDOR_UMC 3
90 #define X86_VENDOR_NEXGEN 4
91 #define X86_VENDOR_CENTAUR 5
92 #define X86_VENDOR_TRANSMETA 7
93 #define X86_VENDOR_NSC 8
94 #define X86_VENDOR_NUM 9
95 #define X86_VENDOR_UNKNOWN 0xff
98 * capabilities of CPUs
101 extern struct cpuinfo_x86 boot_cpu_data;
102 extern struct cpuinfo_x86 new_cpu_data;
103 extern struct tss_struct doublefault_tss;
104 DECLARE_PER_CPU(struct tss_struct, init_tss);
107 DECLARE_PER_CPU(struct cpuinfo_x86, cpu_info);
108 #define cpu_data(cpu) per_cpu(cpu_info, cpu)
109 #define current_cpu_data cpu_data(smp_processor_id())
111 #define cpu_data(cpu) boot_cpu_data
112 #define current_cpu_data boot_cpu_data
116 * the following now lives in the per cpu area:
117 * extern int cpu_llc_id[NR_CPUS];
119 DECLARE_PER_CPU(u8, cpu_llc_id);
120 extern char ignore_fpu_irq;
122 void __init cpu_detect(struct cpuinfo_x86 *c);
124 extern void identify_boot_cpu(void);
125 extern void identify_secondary_cpu(struct cpuinfo_x86 *);
126 extern void print_cpu_info(struct cpuinfo_x86 *);
127 extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
128 extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
129 extern unsigned short num_cache_leaves;
132 extern void detect_ht(struct cpuinfo_x86 *c);
134 static inline void detect_ht(struct cpuinfo_x86 *c) {}
137 static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
138 unsigned int *ecx, unsigned int *edx)
140 /* ecx is often an input as well as an output. */
146 : "0" (*eax), "2" (*ecx));
149 #define load_cr3(pgdir) write_cr3(__pa(pgdir))
152 * Save the cr4 feature set we're using (ie
153 * Pentium 4MB enable and PPro Global page
154 * enable), so that any CPU's that boot up
155 * after us can get the correct flags.
157 extern unsigned long mmu_cr4_features;
159 static inline void set_in_cr4 (unsigned long mask)
162 mmu_cr4_features |= mask;
168 static inline void clear_in_cr4 (unsigned long mask)
171 mmu_cr4_features &= ~mask;
177 /* Stop speculative execution */
178 static inline void sync_core(void)
181 asm volatile("cpuid" : "=a" (tmp) : "0" (1) : "ebx","ecx","edx","memory");
184 static inline void __monitor(const void *eax, unsigned long ecx,
187 /* "monitor %eax,%ecx,%edx;" */
189 ".byte 0x0f,0x01,0xc8;"
190 : :"a" (eax), "c" (ecx), "d"(edx));
193 static inline void __mwait(unsigned long eax, unsigned long ecx)
195 /* "mwait %eax,%ecx;" */
197 ".byte 0x0f,0x01,0xc9;"
198 : :"a" (eax), "c" (ecx));
201 extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
203 /* from system description table in BIOS. Mostly for MCA use, but
204 others may find it useful. */
205 extern unsigned int machine_id;
206 extern unsigned int machine_submodel_id;
207 extern unsigned int BIOS_revision;
208 extern unsigned int mca_pentium_flag;
210 /* Boot loader type from the setup header */
211 extern int bootloader_type;
214 * User space process size: 3GB (default).
216 #define TASK_SIZE (PAGE_OFFSET)
218 /* This decides where the kernel will search for a free chunk of vm
219 * space during mmap's.
221 #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
223 #define HAVE_ARCH_PICK_MMAP_LAYOUT
225 extern void hard_disable_TSC(void);
226 extern void disable_TSC(void);
227 extern void hard_enable_TSC(void);
232 #define IO_BITMAP_BITS 65536
233 #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
234 #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
235 #define IO_BITMAP_OFFSET offsetof(struct tss_struct,io_bitmap)
236 #define INVALID_IO_BITMAP_OFFSET 0x8000
237 #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
239 struct i387_fsave_struct {
247 long st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
248 long status; /* software status information */
251 struct i387_fxsave_struct {
262 long st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
263 long xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
265 } __attribute__ ((aligned (16)));
267 struct i387_soft_struct {
275 long st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
276 unsigned char ftop, changed, lookahead, no_update, rm, alimit;
278 unsigned long entry_eip;
282 struct i387_fsave_struct fsave;
283 struct i387_fxsave_struct fxsave;
284 struct i387_soft_struct soft;
291 struct thread_struct;
293 /* This is the TSS defined by the hardware. */
295 unsigned short back_link,__blh;
297 unsigned short ss0,__ss0h;
299 unsigned short ss1,__ss1h; /* ss1 is used to cache MSR_IA32_SYSENTER_CS */
301 unsigned short ss2,__ss2h;
304 unsigned long eflags;
305 unsigned long eax,ecx,edx,ebx;
310 unsigned short es, __esh;
311 unsigned short cs, __csh;
312 unsigned short ss, __ssh;
313 unsigned short ds, __dsh;
314 unsigned short fs, __fsh;
315 unsigned short gs, __gsh;
316 unsigned short ldt, __ldth;
317 unsigned short trace, io_bitmap_base;
318 } __attribute__((packed));
321 struct i386_hw_tss x86_tss;
324 * The extra 1 is there because the CPU will access an
325 * additional byte beyond the end of the IO permission
326 * bitmap. The extra byte must be all 1 bits, and must
327 * be within the limit.
329 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
331 * Cache the current maximum and the last task that used the bitmap:
333 unsigned long io_bitmap_max;
334 struct thread_struct *io_bitmap_owner;
336 * pads the TSS to be cacheline-aligned (size is 0x100)
338 unsigned long __cacheline_filler[35];
340 * .. and then another 0x100 bytes for emergency kernel stack
342 unsigned long stack[64];
343 } __attribute__((packed));
345 #define ARCH_MIN_TASKALIGN 16
347 struct thread_struct {
348 /* cached TLS descriptors. */
349 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
351 unsigned long sysenter_cs;
356 /* Hardware debugging registers */
357 unsigned long debugreg[8]; /* %%db0-7 debug registers */
359 unsigned long cr2, trap_no, error_code;
360 /* floating point info */
361 union i387_union i387;
362 /* virtual 86 mode info */
363 struct vm86_struct __user * vm86_info;
364 unsigned long screen_bitmap;
365 unsigned long v86flags, v86mask, saved_esp0;
366 unsigned int saved_fs, saved_gs;
368 unsigned long *io_bitmap_ptr;
370 /* max allowed port in the bitmap, in bytes: */
371 unsigned long io_bitmap_max;
374 #define INIT_THREAD { \
375 .esp0 = sizeof(init_stack) + (long)&init_stack, \
377 .sysenter_cs = __KERNEL_CS, \
378 .io_bitmap_ptr = NULL, \
379 .fs = __KERNEL_PERCPU, \
383 * Note that the .io_bitmap member must be extra-big. This is because
384 * the CPU will access an additional byte beyond the end of the IO
385 * permission bitmap. The extra byte must be all 1 bits, and must
386 * be within the limit.
390 .esp0 = sizeof(init_stack) + (long)&init_stack, \
391 .ss0 = __KERNEL_DS, \
392 .ss1 = __KERNEL_CS, \
393 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
395 .io_bitmap = { [ 0 ... IO_BITMAP_LONGS] = ~0 }, \
398 #define start_thread(regs, new_eip, new_esp) do { \
399 __asm__("movl %0,%%gs": :"r" (0)); \
402 regs->xds = __USER_DS; \
403 regs->xes = __USER_DS; \
404 regs->xss = __USER_DS; \
405 regs->xcs = __USER_CS; \
406 regs->eip = new_eip; \
407 regs->esp = new_esp; \
410 /* Forward declaration, a strange C thing */
414 /* Free all resources held by a thread. */
415 extern void release_thread(struct task_struct *);
417 /* Prepare to copy thread state - unlazy all lazy status */
418 extern void prepare_to_copy(struct task_struct *tsk);
421 * create a kernel thread without removing it from tasklists
423 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
425 extern unsigned long thread_saved_pc(struct task_struct *tsk);
426 void show_trace(struct task_struct *task, struct pt_regs *regs, unsigned long *stack);
428 unsigned long get_wchan(struct task_struct *p);
430 #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
431 #define KSTK_TOP(info) \
433 unsigned long *__ptr = (unsigned long *)(info); \
434 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
438 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
439 * This is necessary to guarantee that the entire "struct pt_regs"
440 * is accessable even if the CPU haven't stored the SS/ESP registers
441 * on the stack (interrupt gate does not save these registers
442 * when switching to the same priv ring).
443 * Therefore beware: accessing the xss/esp fields of the
444 * "struct pt_regs" is possible, but they may contain the
445 * completely wrong values.
447 #define task_pt_regs(task) \
449 struct pt_regs *__regs__; \
450 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
454 #define KSTK_EIP(task) (task_pt_regs(task)->eip)
455 #define KSTK_ESP(task) (task_pt_regs(task)->esp)
458 struct microcode_header {
466 unsigned int datasize;
467 unsigned int totalsize;
468 unsigned int reserved[3];
472 struct microcode_header hdr;
473 unsigned int bits[0];
476 typedef struct microcode microcode_t;
477 typedef struct microcode_header microcode_header_t;
479 /* microcode format is extended from prescott processors */
480 struct extended_signature {
486 struct extended_sigtable {
489 unsigned int reserved[3];
490 struct extended_signature sigs[0];
493 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
494 static inline void rep_nop(void)
496 __asm__ __volatile__("rep;nop": : :"memory");
499 #define cpu_relax() rep_nop()
501 static inline void native_load_esp0(struct tss_struct *tss, struct thread_struct *thread)
503 tss->x86_tss.esp0 = thread->esp0;
504 /* This can only happen when SEP is enabled, no need to test "SEP"arately */
505 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
506 tss->x86_tss.ss1 = thread->sysenter_cs;
507 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
512 static inline unsigned long native_get_debugreg(int regno)
514 unsigned long val = 0; /* Damn you, gcc! */
518 asm("movl %%db0, %0" :"=r" (val)); break;
520 asm("movl %%db1, %0" :"=r" (val)); break;
522 asm("movl %%db2, %0" :"=r" (val)); break;
524 asm("movl %%db3, %0" :"=r" (val)); break;
526 asm("movl %%db6, %0" :"=r" (val)); break;
528 asm("movl %%db7, %0" :"=r" (val)); break;
535 static inline void native_set_debugreg(int regno, unsigned long value)
539 asm("movl %0,%%db0" : /* no output */ :"r" (value));
542 asm("movl %0,%%db1" : /* no output */ :"r" (value));
545 asm("movl %0,%%db2" : /* no output */ :"r" (value));
548 asm("movl %0,%%db3" : /* no output */ :"r" (value));
551 asm("movl %0,%%db6" : /* no output */ :"r" (value));
554 asm("movl %0,%%db7" : /* no output */ :"r" (value));
562 * Set IOPL bits in EFLAGS from given mask
564 static inline void native_set_iopl_mask(unsigned mask)
567 __asm__ __volatile__ ("pushfl;"
574 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
577 #ifdef CONFIG_PARAVIRT
578 #include <asm/paravirt.h>
580 #define paravirt_enabled() 0
581 #define __cpuid native_cpuid
583 static inline void load_esp0(struct tss_struct *tss, struct thread_struct *thread)
585 native_load_esp0(tss, thread);
589 * These special macros can be used to get or set a debugging register
591 #define get_debugreg(var, register) \
592 (var) = native_get_debugreg(register)
593 #define set_debugreg(value, register) \
594 native_set_debugreg(register, value)
596 #define set_iopl_mask native_set_iopl_mask
597 #endif /* CONFIG_PARAVIRT */
600 * Generic CPUID function
601 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
602 * resulting in stale register contents being returned.
604 static inline void cpuid(unsigned int op,
605 unsigned int *eax, unsigned int *ebx,
606 unsigned int *ecx, unsigned int *edx)
610 __cpuid(eax, ebx, ecx, edx);
613 /* Some CPUID calls want 'count' to be placed in ecx */
614 static inline void cpuid_count(unsigned int op, int count,
615 unsigned int *eax, unsigned int *ebx,
616 unsigned int *ecx, unsigned int *edx)
620 __cpuid(eax, ebx, ecx, edx);
624 * CPUID functions returning a single datum
626 static inline unsigned int cpuid_eax(unsigned int op)
628 unsigned int eax, ebx, ecx, edx;
630 cpuid(op, &eax, &ebx, &ecx, &edx);
633 static inline unsigned int cpuid_ebx(unsigned int op)
635 unsigned int eax, ebx, ecx, edx;
637 cpuid(op, &eax, &ebx, &ecx, &edx);
640 static inline unsigned int cpuid_ecx(unsigned int op)
642 unsigned int eax, ebx, ecx, edx;
644 cpuid(op, &eax, &ebx, &ecx, &edx);
647 static inline unsigned int cpuid_edx(unsigned int op)
649 unsigned int eax, ebx, ecx, edx;
651 cpuid(op, &eax, &ebx, &ecx, &edx);
655 /* generic versions from gas */
656 #define GENERIC_NOP1 ".byte 0x90\n"
657 #define GENERIC_NOP2 ".byte 0x89,0xf6\n"
658 #define GENERIC_NOP3 ".byte 0x8d,0x76,0x00\n"
659 #define GENERIC_NOP4 ".byte 0x8d,0x74,0x26,0x00\n"
660 #define GENERIC_NOP5 GENERIC_NOP1 GENERIC_NOP4
661 #define GENERIC_NOP6 ".byte 0x8d,0xb6,0x00,0x00,0x00,0x00\n"
662 #define GENERIC_NOP7 ".byte 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00\n"
663 #define GENERIC_NOP8 GENERIC_NOP1 GENERIC_NOP7
666 #define K8_NOP1 GENERIC_NOP1
667 #define K8_NOP2 ".byte 0x66,0x90\n"
668 #define K8_NOP3 ".byte 0x66,0x66,0x90\n"
669 #define K8_NOP4 ".byte 0x66,0x66,0x66,0x90\n"
670 #define K8_NOP5 K8_NOP3 K8_NOP2
671 #define K8_NOP6 K8_NOP3 K8_NOP3
672 #define K8_NOP7 K8_NOP4 K8_NOP3
673 #define K8_NOP8 K8_NOP4 K8_NOP4
676 /* uses eax dependencies (arbitary choice) */
677 #define K7_NOP1 GENERIC_NOP1
678 #define K7_NOP2 ".byte 0x8b,0xc0\n"
679 #define K7_NOP3 ".byte 0x8d,0x04,0x20\n"
680 #define K7_NOP4 ".byte 0x8d,0x44,0x20,0x00\n"
681 #define K7_NOP5 K7_NOP4 ASM_NOP1
682 #define K7_NOP6 ".byte 0x8d,0x80,0,0,0,0\n"
683 #define K7_NOP7 ".byte 0x8D,0x04,0x05,0,0,0,0\n"
684 #define K7_NOP8 K7_NOP7 ASM_NOP1
687 /* uses eax dependencies (Intel-recommended choice) */
688 #define P6_NOP1 GENERIC_NOP1
689 #define P6_NOP2 ".byte 0x66,0x90\n"
690 #define P6_NOP3 ".byte 0x0f,0x1f,0x00\n"
691 #define P6_NOP4 ".byte 0x0f,0x1f,0x40,0\n"
692 #define P6_NOP5 ".byte 0x0f,0x1f,0x44,0x00,0\n"
693 #define P6_NOP6 ".byte 0x66,0x0f,0x1f,0x44,0x00,0\n"
694 #define P6_NOP7 ".byte 0x0f,0x1f,0x80,0,0,0,0\n"
695 #define P6_NOP8 ".byte 0x0f,0x1f,0x84,0x00,0,0,0,0\n"
698 #define ASM_NOP1 K8_NOP1
699 #define ASM_NOP2 K8_NOP2
700 #define ASM_NOP3 K8_NOP3
701 #define ASM_NOP4 K8_NOP4
702 #define ASM_NOP5 K8_NOP5
703 #define ASM_NOP6 K8_NOP6
704 #define ASM_NOP7 K8_NOP7
705 #define ASM_NOP8 K8_NOP8
706 #elif defined(CONFIG_MK7)
707 #define ASM_NOP1 K7_NOP1
708 #define ASM_NOP2 K7_NOP2
709 #define ASM_NOP3 K7_NOP3
710 #define ASM_NOP4 K7_NOP4
711 #define ASM_NOP5 K7_NOP5
712 #define ASM_NOP6 K7_NOP6
713 #define ASM_NOP7 K7_NOP7
714 #define ASM_NOP8 K7_NOP8
715 #elif defined(CONFIG_M686) || defined(CONFIG_MPENTIUMII) || \
716 defined(CONFIG_MPENTIUMIII) || defined(CONFIG_MPENTIUMM) || \
717 defined(CONFIG_MCORE2) || defined(CONFIG_PENTIUM4)
718 #define ASM_NOP1 P6_NOP1
719 #define ASM_NOP2 P6_NOP2
720 #define ASM_NOP3 P6_NOP3
721 #define ASM_NOP4 P6_NOP4
722 #define ASM_NOP5 P6_NOP5
723 #define ASM_NOP6 P6_NOP6
724 #define ASM_NOP7 P6_NOP7
725 #define ASM_NOP8 P6_NOP8
727 #define ASM_NOP1 GENERIC_NOP1
728 #define ASM_NOP2 GENERIC_NOP2
729 #define ASM_NOP3 GENERIC_NOP3
730 #define ASM_NOP4 GENERIC_NOP4
731 #define ASM_NOP5 GENERIC_NOP5
732 #define ASM_NOP6 GENERIC_NOP6
733 #define ASM_NOP7 GENERIC_NOP7
734 #define ASM_NOP8 GENERIC_NOP8
737 #define ASM_NOP_MAX 8
739 /* Prefetch instructions for Pentium III and AMD Athlon */
740 /* It's not worth to care about 3dnow! prefetches for the K6
741 because they are microcoded there and very slow.
742 However we don't do prefetches for pre XP Athlons currently
743 That should be fixed. */
744 #define ARCH_HAS_PREFETCH
745 static inline void prefetch(const void *x)
747 alternative_input(ASM_NOP4,
753 #define ARCH_HAS_PREFETCH
754 #define ARCH_HAS_PREFETCHW
755 #define ARCH_HAS_SPINLOCK_PREFETCH
757 /* 3dnow! prefetch to get an exclusive cache line. Useful for
758 spinlocks to avoid one state transition in the cache coherency protocol. */
759 static inline void prefetchw(const void *x)
761 alternative_input(ASM_NOP4,
766 #define spin_lock_prefetch(x) prefetchw(x)
768 extern void select_idle_routine(const struct cpuinfo_x86 *c);
770 #define cache_line_size() (boot_cpu_data.x86_cache_alignment)
772 extern unsigned long boot_option_idle_override;
773 extern void enable_sep_cpu(void);
774 extern int sysenter_setup(void);
776 /* Defined in head.S */
777 extern struct Xgt_desc_struct early_gdt_descr;
779 extern void cpu_set_gdt(int);
780 extern void switch_to_new_gdt(void);
781 extern void cpu_init(void);
782 extern void init_gdt(int cpu);
784 extern int force_mwait;
786 #endif /* __ASM_I386_PROCESSOR_H */