x86: use generic register name in the thread and tss structures
[deliverable/linux.git] / include / asm-x86 / processor_32.h
1 /*
2 * Copyright (C) 1994 Linus Torvalds
3 */
4
5 #ifndef __ASM_I386_PROCESSOR_H
6 #define __ASM_I386_PROCESSOR_H
7
8 #include <asm/vm86.h>
9 #include <asm/math_emu.h>
10 #include <asm/segment.h>
11 #include <asm/page.h>
12 #include <asm/types.h>
13 #include <asm/sigcontext.h>
14 #include <asm/cpufeature.h>
15 #include <asm/msr.h>
16 #include <asm/system.h>
17 #include <linux/cache.h>
18 #include <linux/threads.h>
19 #include <asm/percpu.h>
20 #include <linux/cpumask.h>
21 #include <linux/init.h>
22 #include <asm/processor-flags.h>
23
24 /* flag for disabling the tsc */
25 extern int tsc_disable;
26
27 struct desc_struct {
28 unsigned long a,b;
29 };
30
31 static inline int desc_empty(const void *ptr)
32 {
33 const u32 *desc = ptr;
34 return !(desc[0] | desc[1]);
35 }
36
37 /*
38 * Default implementation of macro that returns current
39 * instruction pointer ("program counter").
40 */
41 #define current_text_addr() ({ void *pc; __asm__("movl $1f,%0\n1:":"=g" (pc)); pc; })
42
43 /*
44 * CPU type and hardware bug flags. Kept separately for each CPU.
45 * Members of this structure are referenced in head.S, so think twice
46 * before touching them. [mj]
47 */
48
49 struct cpuinfo_x86 {
50 __u8 x86; /* CPU family */
51 __u8 x86_vendor; /* CPU vendor */
52 __u8 x86_model;
53 __u8 x86_mask;
54 char wp_works_ok; /* It doesn't on 386's */
55 char hlt_works_ok; /* Problems on some 486Dx4's and old 386's */
56 char hard_math;
57 char rfu;
58 int cpuid_level; /* Maximum supported CPUID level, -1=no CPUID */
59 unsigned long x86_capability[NCAPINTS];
60 char x86_vendor_id[16];
61 char x86_model_id[64];
62 int x86_cache_size; /* in KB - valid for CPUS which support this
63 call */
64 int x86_cache_alignment; /* In bytes */
65 char fdiv_bug;
66 char f00f_bug;
67 char coma_bug;
68 char pad0;
69 int x86_power;
70 unsigned long loops_per_jiffy;
71 #ifdef CONFIG_SMP
72 cpumask_t llc_shared_map; /* cpus sharing the last level cache */
73 #endif
74 unsigned char x86_max_cores; /* cpuid returned max cores value */
75 unsigned char apicid;
76 unsigned short x86_clflush_size;
77 #ifdef CONFIG_SMP
78 unsigned char booted_cores; /* number of cores as seen by OS */
79 __u8 phys_proc_id; /* Physical processor id. */
80 __u8 cpu_core_id; /* Core id */
81 __u8 cpu_index; /* index into per_cpu list */
82 #endif
83 } __attribute__((__aligned__(SMP_CACHE_BYTES)));
84
85 #define X86_VENDOR_INTEL 0
86 #define X86_VENDOR_CYRIX 1
87 #define X86_VENDOR_AMD 2
88 #define X86_VENDOR_UMC 3
89 #define X86_VENDOR_NEXGEN 4
90 #define X86_VENDOR_CENTAUR 5
91 #define X86_VENDOR_TRANSMETA 7
92 #define X86_VENDOR_NSC 8
93 #define X86_VENDOR_NUM 9
94 #define X86_VENDOR_UNKNOWN 0xff
95
96 /*
97 * capabilities of CPUs
98 */
99
100 extern struct cpuinfo_x86 boot_cpu_data;
101 extern struct cpuinfo_x86 new_cpu_data;
102 extern struct tss_struct doublefault_tss;
103 DECLARE_PER_CPU(struct tss_struct, init_tss);
104
105 #ifdef CONFIG_SMP
106 DECLARE_PER_CPU(struct cpuinfo_x86, cpu_info);
107 #define cpu_data(cpu) per_cpu(cpu_info, cpu)
108 #define current_cpu_data cpu_data(smp_processor_id())
109 #else
110 #define cpu_data(cpu) boot_cpu_data
111 #define current_cpu_data boot_cpu_data
112 #endif
113
114 /*
115 * the following now lives in the per cpu area:
116 * extern int cpu_llc_id[NR_CPUS];
117 */
118 DECLARE_PER_CPU(u8, cpu_llc_id);
119 extern char ignore_fpu_irq;
120
121 void __init cpu_detect(struct cpuinfo_x86 *c);
122
123 extern void identify_boot_cpu(void);
124 extern void identify_secondary_cpu(struct cpuinfo_x86 *);
125 extern void print_cpu_info(struct cpuinfo_x86 *);
126 extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
127 extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
128 extern unsigned short num_cache_leaves;
129
130 #ifdef CONFIG_X86_HT
131 extern void detect_ht(struct cpuinfo_x86 *c);
132 #else
133 static inline void detect_ht(struct cpuinfo_x86 *c) {}
134 #endif
135
136 static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
137 unsigned int *ecx, unsigned int *edx)
138 {
139 /* ecx is often an input as well as an output. */
140 __asm__("cpuid"
141 : "=a" (*eax),
142 "=b" (*ebx),
143 "=c" (*ecx),
144 "=d" (*edx)
145 : "0" (*eax), "2" (*ecx));
146 }
147
148 #define load_cr3(pgdir) write_cr3(__pa(pgdir))
149
150 /*
151 * Save the cr4 feature set we're using (ie
152 * Pentium 4MB enable and PPro Global page
153 * enable), so that any CPU's that boot up
154 * after us can get the correct flags.
155 */
156 extern unsigned long mmu_cr4_features;
157
158 static inline void set_in_cr4 (unsigned long mask)
159 {
160 unsigned cr4;
161 mmu_cr4_features |= mask;
162 cr4 = read_cr4();
163 cr4 |= mask;
164 write_cr4(cr4);
165 }
166
167 static inline void clear_in_cr4 (unsigned long mask)
168 {
169 unsigned cr4;
170 mmu_cr4_features &= ~mask;
171 cr4 = read_cr4();
172 cr4 &= ~mask;
173 write_cr4(cr4);
174 }
175
176 /* Stop speculative execution */
177 static inline void sync_core(void)
178 {
179 int tmp;
180 asm volatile("cpuid" : "=a" (tmp) : "0" (1) : "ebx","ecx","edx","memory");
181 }
182
183 static inline void __monitor(const void *eax, unsigned long ecx,
184 unsigned long edx)
185 {
186 /* "monitor %eax,%ecx,%edx;" */
187 asm volatile(
188 ".byte 0x0f,0x01,0xc8;"
189 : :"a" (eax), "c" (ecx), "d"(edx));
190 }
191
192 static inline void __mwait(unsigned long eax, unsigned long ecx)
193 {
194 /* "mwait %eax,%ecx;" */
195 asm volatile(
196 ".byte 0x0f,0x01,0xc9;"
197 : :"a" (eax), "c" (ecx));
198 }
199
200 extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
201
202 /* from system description table in BIOS. Mostly for MCA use, but
203 others may find it useful. */
204 extern unsigned int machine_id;
205 extern unsigned int machine_submodel_id;
206 extern unsigned int BIOS_revision;
207 extern unsigned int mca_pentium_flag;
208
209 /* Boot loader type from the setup header */
210 extern int bootloader_type;
211
212 /*
213 * User space process size: 3GB (default).
214 */
215 #define TASK_SIZE (PAGE_OFFSET)
216
217 /* This decides where the kernel will search for a free chunk of vm
218 * space during mmap's.
219 */
220 #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
221
222 #define HAVE_ARCH_PICK_MMAP_LAYOUT
223
224 extern void hard_disable_TSC(void);
225 extern void disable_TSC(void);
226 extern void hard_enable_TSC(void);
227
228 /*
229 * Size of io_bitmap.
230 */
231 #define IO_BITMAP_BITS 65536
232 #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
233 #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
234 #define IO_BITMAP_OFFSET offsetof(struct tss_struct,io_bitmap)
235 #define INVALID_IO_BITMAP_OFFSET 0x8000
236 #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
237
238 struct i387_fsave_struct {
239 long cwd;
240 long swd;
241 long twd;
242 long fip;
243 long fcs;
244 long foo;
245 long fos;
246 long st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
247 long status; /* software status information */
248 };
249
250 struct i387_fxsave_struct {
251 unsigned short cwd;
252 unsigned short swd;
253 unsigned short twd;
254 unsigned short fop;
255 long fip;
256 long fcs;
257 long foo;
258 long fos;
259 long mxcsr;
260 long mxcsr_mask;
261 long st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
262 long xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
263 long padding[56];
264 } __attribute__ ((aligned (16)));
265
266 struct i387_soft_struct {
267 long cwd;
268 long swd;
269 long twd;
270 long fip;
271 long fcs;
272 long foo;
273 long fos;
274 long st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
275 unsigned char ftop, changed, lookahead, no_update, rm, alimit;
276 struct info *info;
277 unsigned long entry_eip;
278 };
279
280 union i387_union {
281 struct i387_fsave_struct fsave;
282 struct i387_fxsave_struct fxsave;
283 struct i387_soft_struct soft;
284 };
285
286 typedef struct {
287 unsigned long seg;
288 } mm_segment_t;
289
290 struct thread_struct;
291
292 /* This is the TSS defined by the hardware. */
293 struct i386_hw_tss {
294 unsigned short back_link,__blh;
295 unsigned long sp0;
296 unsigned short ss0,__ss0h;
297 unsigned long sp1;
298 unsigned short ss1,__ss1h; /* ss1 is used to cache MSR_IA32_SYSENTER_CS */
299 unsigned long sp2;
300 unsigned short ss2,__ss2h;
301 unsigned long __cr3;
302 unsigned long ip;
303 unsigned long flags;
304 unsigned long ax, cx, dx, bx;
305 unsigned long sp, bp, si, di;
306 unsigned short es, __esh;
307 unsigned short cs, __csh;
308 unsigned short ss, __ssh;
309 unsigned short ds, __dsh;
310 unsigned short fs, __fsh;
311 unsigned short gs, __gsh;
312 unsigned short ldt, __ldth;
313 unsigned short trace, io_bitmap_base;
314 } __attribute__((packed));
315
316 struct tss_struct {
317 struct i386_hw_tss x86_tss;
318
319 /*
320 * The extra 1 is there because the CPU will access an
321 * additional byte beyond the end of the IO permission
322 * bitmap. The extra byte must be all 1 bits, and must
323 * be within the limit.
324 */
325 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
326 /*
327 * Cache the current maximum and the last task that used the bitmap:
328 */
329 unsigned long io_bitmap_max;
330 struct thread_struct *io_bitmap_owner;
331 /*
332 * pads the TSS to be cacheline-aligned (size is 0x100)
333 */
334 unsigned long __cacheline_filler[35];
335 /*
336 * .. and then another 0x100 bytes for emergency kernel stack
337 */
338 unsigned long stack[64];
339 } __attribute__((packed));
340
341 #define ARCH_MIN_TASKALIGN 16
342
343 struct thread_struct {
344 /* cached TLS descriptors. */
345 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
346 unsigned long sp0;
347 unsigned long sysenter_cs;
348 unsigned long ip;
349 unsigned long sp;
350 unsigned long fs;
351 unsigned long gs;
352 /* Hardware debugging registers */
353 unsigned long debugreg0;
354 unsigned long debugreg1;
355 unsigned long debugreg2;
356 unsigned long debugreg3;
357 unsigned long debugreg6;
358 unsigned long debugreg7;
359 /* fault info */
360 unsigned long cr2, trap_no, error_code;
361 /* floating point info */
362 union i387_union i387;
363 /* virtual 86 mode info */
364 struct vm86_struct __user * vm86_info;
365 unsigned long screen_bitmap;
366 unsigned long v86flags, v86mask, saved_sp0;
367 unsigned int saved_fs, saved_gs;
368 /* IO permissions */
369 unsigned long *io_bitmap_ptr;
370 unsigned long iopl;
371 /* max allowed port in the bitmap, in bytes: */
372 unsigned long io_bitmap_max;
373 /* MSR_IA32_DEBUGCTLMSR value to switch in if TIF_DEBUGCTLMSR is set. */
374 unsigned long debugctlmsr;
375 };
376
377 #define INIT_THREAD { \
378 .sp0 = sizeof(init_stack) + (long)&init_stack, \
379 .vm86_info = NULL, \
380 .sysenter_cs = __KERNEL_CS, \
381 .io_bitmap_ptr = NULL, \
382 .fs = __KERNEL_PERCPU, \
383 }
384
385 /*
386 * Note that the .io_bitmap member must be extra-big. This is because
387 * the CPU will access an additional byte beyond the end of the IO
388 * permission bitmap. The extra byte must be all 1 bits, and must
389 * be within the limit.
390 */
391 #define INIT_TSS { \
392 .x86_tss = { \
393 .sp0 = sizeof(init_stack) + (long)&init_stack, \
394 .ss0 = __KERNEL_DS, \
395 .ss1 = __KERNEL_CS, \
396 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
397 }, \
398 .io_bitmap = { [ 0 ... IO_BITMAP_LONGS] = ~0 }, \
399 }
400
401 #define start_thread(regs, new_eip, new_esp) do { \
402 __asm__("movl %0,%%gs": :"r" (0)); \
403 regs->fs = 0; \
404 set_fs(USER_DS); \
405 regs->ds = __USER_DS; \
406 regs->es = __USER_DS; \
407 regs->ss = __USER_DS; \
408 regs->cs = __USER_CS; \
409 regs->ip = new_eip; \
410 regs->sp = new_esp; \
411 } while (0)
412
413 /* Forward declaration, a strange C thing */
414 struct task_struct;
415 struct mm_struct;
416
417 /* Free all resources held by a thread. */
418 extern void release_thread(struct task_struct *);
419
420 /* Prepare to copy thread state - unlazy all lazy status */
421 extern void prepare_to_copy(struct task_struct *tsk);
422
423 /*
424 * create a kernel thread without removing it from tasklists
425 */
426 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
427
428 extern unsigned long thread_saved_pc(struct task_struct *tsk);
429
430 unsigned long get_wchan(struct task_struct *p);
431
432 #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
433 #define KSTK_TOP(info) \
434 ({ \
435 unsigned long *__ptr = (unsigned long *)(info); \
436 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
437 })
438
439 /*
440 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
441 * This is necessary to guarantee that the entire "struct pt_regs"
442 * is accessable even if the CPU haven't stored the SS/ESP registers
443 * on the stack (interrupt gate does not save these registers
444 * when switching to the same priv ring).
445 * Therefore beware: accessing the ss/esp fields of the
446 * "struct pt_regs" is possible, but they may contain the
447 * completely wrong values.
448 */
449 #define task_pt_regs(task) \
450 ({ \
451 struct pt_regs *__regs__; \
452 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
453 __regs__ - 1; \
454 })
455
456 #define KSTK_EIP(task) (task_pt_regs(task)->ip)
457 #define KSTK_ESP(task) (task_pt_regs(task)->sp)
458
459
460 struct microcode_header {
461 unsigned int hdrver;
462 unsigned int rev;
463 unsigned int date;
464 unsigned int sig;
465 unsigned int cksum;
466 unsigned int ldrver;
467 unsigned int pf;
468 unsigned int datasize;
469 unsigned int totalsize;
470 unsigned int reserved[3];
471 };
472
473 struct microcode {
474 struct microcode_header hdr;
475 unsigned int bits[0];
476 };
477
478 typedef struct microcode microcode_t;
479 typedef struct microcode_header microcode_header_t;
480
481 /* microcode format is extended from prescott processors */
482 struct extended_signature {
483 unsigned int sig;
484 unsigned int pf;
485 unsigned int cksum;
486 };
487
488 struct extended_sigtable {
489 unsigned int count;
490 unsigned int cksum;
491 unsigned int reserved[3];
492 struct extended_signature sigs[0];
493 };
494
495 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
496 static inline void rep_nop(void)
497 {
498 __asm__ __volatile__("rep;nop": : :"memory");
499 }
500
501 #define cpu_relax() rep_nop()
502
503 static inline void native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
504 {
505 tss->x86_tss.sp0 = thread->sp0;
506 /* This can only happen when SEP is enabled, no need to test "SEP"arately */
507 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
508 tss->x86_tss.ss1 = thread->sysenter_cs;
509 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
510 }
511 }
512
513
514 static inline unsigned long native_get_debugreg(int regno)
515 {
516 unsigned long val = 0; /* Damn you, gcc! */
517
518 switch (regno) {
519 case 0:
520 asm("movl %%db0, %0" :"=r" (val)); break;
521 case 1:
522 asm("movl %%db1, %0" :"=r" (val)); break;
523 case 2:
524 asm("movl %%db2, %0" :"=r" (val)); break;
525 case 3:
526 asm("movl %%db3, %0" :"=r" (val)); break;
527 case 6:
528 asm("movl %%db6, %0" :"=r" (val)); break;
529 case 7:
530 asm("movl %%db7, %0" :"=r" (val)); break;
531 default:
532 BUG();
533 }
534 return val;
535 }
536
537 static inline void native_set_debugreg(int regno, unsigned long value)
538 {
539 switch (regno) {
540 case 0:
541 asm("movl %0,%%db0" : /* no output */ :"r" (value));
542 break;
543 case 1:
544 asm("movl %0,%%db1" : /* no output */ :"r" (value));
545 break;
546 case 2:
547 asm("movl %0,%%db2" : /* no output */ :"r" (value));
548 break;
549 case 3:
550 asm("movl %0,%%db3" : /* no output */ :"r" (value));
551 break;
552 case 6:
553 asm("movl %0,%%db6" : /* no output */ :"r" (value));
554 break;
555 case 7:
556 asm("movl %0,%%db7" : /* no output */ :"r" (value));
557 break;
558 default:
559 BUG();
560 }
561 }
562
563 /*
564 * Set IOPL bits in EFLAGS from given mask
565 */
566 static inline void native_set_iopl_mask(unsigned mask)
567 {
568 unsigned int reg;
569 __asm__ __volatile__ ("pushfl;"
570 "popl %0;"
571 "andl %1, %0;"
572 "orl %2, %0;"
573 "pushl %0;"
574 "popfl"
575 : "=&r" (reg)
576 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
577 }
578
579 #ifdef CONFIG_PARAVIRT
580 #include <asm/paravirt.h>
581 #else
582 #define paravirt_enabled() 0
583 #define __cpuid native_cpuid
584
585 static inline void load_sp0(struct tss_struct *tss, struct thread_struct *thread)
586 {
587 native_load_sp0(tss, thread);
588 }
589
590 /*
591 * These special macros can be used to get or set a debugging register
592 */
593 #define get_debugreg(var, register) \
594 (var) = native_get_debugreg(register)
595 #define set_debugreg(value, register) \
596 native_set_debugreg(register, value)
597
598 #define set_iopl_mask native_set_iopl_mask
599 #endif /* CONFIG_PARAVIRT */
600
601 /*
602 * Generic CPUID function
603 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
604 * resulting in stale register contents being returned.
605 */
606 static inline void cpuid(unsigned int op,
607 unsigned int *eax, unsigned int *ebx,
608 unsigned int *ecx, unsigned int *edx)
609 {
610 *eax = op;
611 *ecx = 0;
612 __cpuid(eax, ebx, ecx, edx);
613 }
614
615 /* Some CPUID calls want 'count' to be placed in ecx */
616 static inline void cpuid_count(unsigned int op, int count,
617 unsigned int *eax, unsigned int *ebx,
618 unsigned int *ecx, unsigned int *edx)
619 {
620 *eax = op;
621 *ecx = count;
622 __cpuid(eax, ebx, ecx, edx);
623 }
624
625 /*
626 * CPUID functions returning a single datum
627 */
628 static inline unsigned int cpuid_eax(unsigned int op)
629 {
630 unsigned int eax, ebx, ecx, edx;
631
632 cpuid(op, &eax, &ebx, &ecx, &edx);
633 return eax;
634 }
635 static inline unsigned int cpuid_ebx(unsigned int op)
636 {
637 unsigned int eax, ebx, ecx, edx;
638
639 cpuid(op, &eax, &ebx, &ecx, &edx);
640 return ebx;
641 }
642 static inline unsigned int cpuid_ecx(unsigned int op)
643 {
644 unsigned int eax, ebx, ecx, edx;
645
646 cpuid(op, &eax, &ebx, &ecx, &edx);
647 return ecx;
648 }
649 static inline unsigned int cpuid_edx(unsigned int op)
650 {
651 unsigned int eax, ebx, ecx, edx;
652
653 cpuid(op, &eax, &ebx, &ecx, &edx);
654 return edx;
655 }
656
657 /* generic versions from gas */
658 #define GENERIC_NOP1 ".byte 0x90\n"
659 #define GENERIC_NOP2 ".byte 0x89,0xf6\n"
660 #define GENERIC_NOP3 ".byte 0x8d,0x76,0x00\n"
661 #define GENERIC_NOP4 ".byte 0x8d,0x74,0x26,0x00\n"
662 #define GENERIC_NOP5 GENERIC_NOP1 GENERIC_NOP4
663 #define GENERIC_NOP6 ".byte 0x8d,0xb6,0x00,0x00,0x00,0x00\n"
664 #define GENERIC_NOP7 ".byte 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00\n"
665 #define GENERIC_NOP8 GENERIC_NOP1 GENERIC_NOP7
666
667 /* Opteron nops */
668 #define K8_NOP1 GENERIC_NOP1
669 #define K8_NOP2 ".byte 0x66,0x90\n"
670 #define K8_NOP3 ".byte 0x66,0x66,0x90\n"
671 #define K8_NOP4 ".byte 0x66,0x66,0x66,0x90\n"
672 #define K8_NOP5 K8_NOP3 K8_NOP2
673 #define K8_NOP6 K8_NOP3 K8_NOP3
674 #define K8_NOP7 K8_NOP4 K8_NOP3
675 #define K8_NOP8 K8_NOP4 K8_NOP4
676
677 /* K7 nops */
678 /* uses eax dependencies (arbitary choice) */
679 #define K7_NOP1 GENERIC_NOP1
680 #define K7_NOP2 ".byte 0x8b,0xc0\n"
681 #define K7_NOP3 ".byte 0x8d,0x04,0x20\n"
682 #define K7_NOP4 ".byte 0x8d,0x44,0x20,0x00\n"
683 #define K7_NOP5 K7_NOP4 ASM_NOP1
684 #define K7_NOP6 ".byte 0x8d,0x80,0,0,0,0\n"
685 #define K7_NOP7 ".byte 0x8D,0x04,0x05,0,0,0,0\n"
686 #define K7_NOP8 K7_NOP7 ASM_NOP1
687
688 /* P6 nops */
689 /* uses eax dependencies (Intel-recommended choice) */
690 #define P6_NOP1 GENERIC_NOP1
691 #define P6_NOP2 ".byte 0x66,0x90\n"
692 #define P6_NOP3 ".byte 0x0f,0x1f,0x00\n"
693 #define P6_NOP4 ".byte 0x0f,0x1f,0x40,0\n"
694 #define P6_NOP5 ".byte 0x0f,0x1f,0x44,0x00,0\n"
695 #define P6_NOP6 ".byte 0x66,0x0f,0x1f,0x44,0x00,0\n"
696 #define P6_NOP7 ".byte 0x0f,0x1f,0x80,0,0,0,0\n"
697 #define P6_NOP8 ".byte 0x0f,0x1f,0x84,0x00,0,0,0,0\n"
698
699 #ifdef CONFIG_MK8
700 #define ASM_NOP1 K8_NOP1
701 #define ASM_NOP2 K8_NOP2
702 #define ASM_NOP3 K8_NOP3
703 #define ASM_NOP4 K8_NOP4
704 #define ASM_NOP5 K8_NOP5
705 #define ASM_NOP6 K8_NOP6
706 #define ASM_NOP7 K8_NOP7
707 #define ASM_NOP8 K8_NOP8
708 #elif defined(CONFIG_MK7)
709 #define ASM_NOP1 K7_NOP1
710 #define ASM_NOP2 K7_NOP2
711 #define ASM_NOP3 K7_NOP3
712 #define ASM_NOP4 K7_NOP4
713 #define ASM_NOP5 K7_NOP5
714 #define ASM_NOP6 K7_NOP6
715 #define ASM_NOP7 K7_NOP7
716 #define ASM_NOP8 K7_NOP8
717 #elif defined(CONFIG_M686) || defined(CONFIG_MPENTIUMII) || \
718 defined(CONFIG_MPENTIUMIII) || defined(CONFIG_MPENTIUMM) || \
719 defined(CONFIG_MCORE2) || defined(CONFIG_PENTIUM4)
720 #define ASM_NOP1 P6_NOP1
721 #define ASM_NOP2 P6_NOP2
722 #define ASM_NOP3 P6_NOP3
723 #define ASM_NOP4 P6_NOP4
724 #define ASM_NOP5 P6_NOP5
725 #define ASM_NOP6 P6_NOP6
726 #define ASM_NOP7 P6_NOP7
727 #define ASM_NOP8 P6_NOP8
728 #else
729 #define ASM_NOP1 GENERIC_NOP1
730 #define ASM_NOP2 GENERIC_NOP2
731 #define ASM_NOP3 GENERIC_NOP3
732 #define ASM_NOP4 GENERIC_NOP4
733 #define ASM_NOP5 GENERIC_NOP5
734 #define ASM_NOP6 GENERIC_NOP6
735 #define ASM_NOP7 GENERIC_NOP7
736 #define ASM_NOP8 GENERIC_NOP8
737 #endif
738
739 #define ASM_NOP_MAX 8
740
741 /* Prefetch instructions for Pentium III and AMD Athlon */
742 /* It's not worth to care about 3dnow! prefetches for the K6
743 because they are microcoded there and very slow.
744 However we don't do prefetches for pre XP Athlons currently
745 That should be fixed. */
746 #define ARCH_HAS_PREFETCH
747 static inline void prefetch(const void *x)
748 {
749 alternative_input(ASM_NOP4,
750 "prefetchnta (%1)",
751 X86_FEATURE_XMM,
752 "r" (x));
753 }
754
755 #define ARCH_HAS_PREFETCH
756 #define ARCH_HAS_PREFETCHW
757 #define ARCH_HAS_SPINLOCK_PREFETCH
758
759 /* 3dnow! prefetch to get an exclusive cache line. Useful for
760 spinlocks to avoid one state transition in the cache coherency protocol. */
761 static inline void prefetchw(const void *x)
762 {
763 alternative_input(ASM_NOP4,
764 "prefetchw (%1)",
765 X86_FEATURE_3DNOW,
766 "r" (x));
767 }
768 #define spin_lock_prefetch(x) prefetchw(x)
769
770 extern void select_idle_routine(const struct cpuinfo_x86 *c);
771
772 #define cache_line_size() (boot_cpu_data.x86_cache_alignment)
773
774 extern unsigned long boot_option_idle_override;
775 extern void enable_sep_cpu(void);
776 extern int sysenter_setup(void);
777
778 /* Defined in head.S */
779 extern struct Xgt_desc_struct early_gdt_descr;
780
781 extern void cpu_set_gdt(int);
782 extern void switch_to_new_gdt(void);
783 extern void cpu_init(void);
784 extern void init_gdt(int cpu);
785
786 extern int force_mwait;
787
788 #endif /* __ASM_I386_PROCESSOR_H */
This page took 0.046573 seconds and 5 git commands to generate.