- Updated to 2.6.22-rc2-git7:
[linux-flexiantxendom0-3.2.10.git] / include / asm-i386 / mach-xen / asm / processor.h
1 /*
2  * include/asm-i386/processor.h
3  *
4  * Copyright (C) 1994 Linus Torvalds
5  */
6
7 #ifndef __ASM_I386_PROCESSOR_H
8 #define __ASM_I386_PROCESSOR_H
9
10 #include <asm/vm86.h>
11 #include <asm/math_emu.h>
12 #include <asm/segment.h>
13 #include <asm/page.h>
14 #include <asm/types.h>
15 #include <asm/sigcontext.h>
16 #include <asm/cpufeature.h>
17 #include <asm/msr.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 <xen/interface/physdev.h>
25
26 /* flag for disabling the tsc */
27 #define tsc_disable 0
28
29 struct desc_struct {
30         unsigned long a,b;
31 };
32
33 #define desc_empty(desc) \
34                 (!((desc)->a | (desc)->b))
35
36 #define desc_equal(desc1, desc2) \
37                 (((desc1)->a == (desc2)->a) && ((desc1)->b == (desc2)->b))
38 /*
39  * Default implementation of macro that returns current
40  * instruction pointer ("program counter").
41  */
42 #define current_text_addr() ({ void *pc; __asm__("movl $1f,%0\n1:":"=g" (pc)); pc; })
43
44 /*
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]
48  */
49
50 struct cpuinfo_x86 {
51         __u8    x86;            /* CPU family */
52         __u8    x86_vendor;     /* CPU vendor */
53         __u8    x86_model;
54         __u8    x86_mask;
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 */
57         char    hard_math;
58         char    rfu;
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
64                                     call  */
65         int     x86_cache_alignment;    /* In bytes */
66         char    fdiv_bug;
67         char    f00f_bug;
68         char    coma_bug;
69         char    pad0;
70         int     x86_power;
71         unsigned long loops_per_jiffy;
72 #ifdef CONFIG_SMP
73         cpumask_t llc_shared_map;       /* cpus sharing the last level cache */
74 #endif
75         unsigned char x86_max_cores;    /* cpuid returned max cores value */
76         unsigned char apicid;
77         unsigned short x86_clflush_size;
78 #ifdef CONFIG_SMP
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 #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_RISE 6
92 #define X86_VENDOR_TRANSMETA 7
93 #define X86_VENDOR_NSC 8
94 #define X86_VENDOR_NUM 9
95 #define X86_VENDOR_UNKNOWN 0xff
96
97 /*
98  * capabilities of CPUs
99  */
100
101 extern struct cpuinfo_x86 boot_cpu_data;
102 extern struct cpuinfo_x86 new_cpu_data;
103 #ifndef CONFIG_X86_NO_TSS
104 extern struct tss_struct doublefault_tss;
105 DECLARE_PER_CPU(struct tss_struct, init_tss);
106 #endif
107
108 #ifdef CONFIG_SMP
109 extern struct cpuinfo_x86 cpu_data[];
110 #define current_cpu_data cpu_data[smp_processor_id()]
111 #else
112 #define cpu_data (&boot_cpu_data)
113 #define current_cpu_data boot_cpu_data
114 #endif
115
116 extern  int cpu_llc_id[NR_CPUS];
117 extern char ignore_fpu_irq;
118
119 void __init cpu_detect(struct cpuinfo_x86 *c);
120
121 extern void identify_cpu(struct cpuinfo_x86 *);
122 extern void print_cpu_info(struct cpuinfo_x86 *);
123 extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
124 extern unsigned short num_cache_leaves;
125
126 #ifdef CONFIG_X86_HT
127 extern void detect_ht(struct cpuinfo_x86 *c);
128 #else
129 static inline void detect_ht(struct cpuinfo_x86 *c) {}
130 #endif
131
132 /*
133  * EFLAGS bits
134  */
135 #define X86_EFLAGS_CF   0x00000001 /* Carry Flag */
136 #define X86_EFLAGS_PF   0x00000004 /* Parity Flag */
137 #define X86_EFLAGS_AF   0x00000010 /* Auxillary carry Flag */
138 #define X86_EFLAGS_ZF   0x00000040 /* Zero Flag */
139 #define X86_EFLAGS_SF   0x00000080 /* Sign Flag */
140 #define X86_EFLAGS_TF   0x00000100 /* Trap Flag */
141 #define X86_EFLAGS_IF   0x00000200 /* Interrupt Flag */
142 #define X86_EFLAGS_DF   0x00000400 /* Direction Flag */
143 #define X86_EFLAGS_OF   0x00000800 /* Overflow Flag */
144 #define X86_EFLAGS_IOPL 0x00003000 /* IOPL mask */
145 #define X86_EFLAGS_NT   0x00004000 /* Nested Task */
146 #define X86_EFLAGS_RF   0x00010000 /* Resume Flag */
147 #define X86_EFLAGS_VM   0x00020000 /* Virtual Mode */
148 #define X86_EFLAGS_AC   0x00040000 /* Alignment Check */
149 #define X86_EFLAGS_VIF  0x00080000 /* Virtual Interrupt Flag */
150 #define X86_EFLAGS_VIP  0x00100000 /* Virtual Interrupt Pending */
151 #define X86_EFLAGS_ID   0x00200000 /* CPUID detection flag */
152
153 static inline fastcall void native_cpuid(unsigned int *eax, unsigned int *ebx,
154                                          unsigned int *ecx, unsigned int *edx)
155 {
156         /* ecx is often an input as well as an output. */
157         __asm__(XEN_CPUID
158                 : "=a" (*eax),
159                   "=b" (*ebx),
160                   "=c" (*ecx),
161                   "=d" (*edx)
162                 : "0" (*eax), "2" (*ecx));
163 }
164
165 #define load_cr3(pgdir) write_cr3(__pa(pgdir))
166
167 /*
168  * Intel CPU features in CR4
169  */
170 #define X86_CR4_VME             0x0001  /* enable vm86 extensions */
171 #define X86_CR4_PVI             0x0002  /* virtual interrupts flag enable */
172 #define X86_CR4_TSD             0x0004  /* disable time stamp at ipl 3 */
173 #define X86_CR4_DE              0x0008  /* enable debugging extensions */
174 #define X86_CR4_PSE             0x0010  /* enable page size extensions */
175 #define X86_CR4_PAE             0x0020  /* enable physical address extensions */
176 #define X86_CR4_MCE             0x0040  /* Machine check enable */
177 #define X86_CR4_PGE             0x0080  /* enable global pages */
178 #define X86_CR4_PCE             0x0100  /* enable performance counters at ipl 3 */
179 #define X86_CR4_OSFXSR          0x0200  /* enable fast FPU save and restore */
180 #define X86_CR4_OSXMMEXCPT      0x0400  /* enable unmasked SSE exceptions */
181
182 /*
183  * Save the cr4 feature set we're using (ie
184  * Pentium 4MB enable and PPro Global page
185  * enable), so that any CPU's that boot up
186  * after us can get the correct flags.
187  */
188 extern unsigned long mmu_cr4_features;
189
190 static inline void set_in_cr4 (unsigned long mask)
191 {
192         unsigned cr4;
193         mmu_cr4_features |= mask;
194         cr4 = read_cr4();
195         cr4 |= mask;
196         write_cr4(cr4);
197 }
198
199 static inline void clear_in_cr4 (unsigned long mask)
200 {
201         unsigned cr4;
202         mmu_cr4_features &= ~mask;
203         cr4 = read_cr4();
204         cr4 &= ~mask;
205         write_cr4(cr4);
206 }
207
208 /*
209  *      NSC/Cyrix CPU configuration register indexes
210  */
211
212 #define CX86_PCR0 0x20
213 #define CX86_GCR  0xb8
214 #define CX86_CCR0 0xc0
215 #define CX86_CCR1 0xc1
216 #define CX86_CCR2 0xc2
217 #define CX86_CCR3 0xc3
218 #define CX86_CCR4 0xe8
219 #define CX86_CCR5 0xe9
220 #define CX86_CCR6 0xea
221 #define CX86_CCR7 0xeb
222 #define CX86_PCR1 0xf0
223 #define CX86_DIR0 0xfe
224 #define CX86_DIR1 0xff
225 #define CX86_ARR_BASE 0xc4
226 #define CX86_RCR_BASE 0xdc
227
228 /*
229  *      NSC/Cyrix CPU indexed register access macros
230  */
231
232 #define getCx86(reg) ({ outb((reg), 0x22); inb(0x23); })
233
234 #define setCx86(reg, data) do { \
235         outb((reg), 0x22); \
236         outb((data), 0x23); \
237 } while (0)
238
239 /* Stop speculative execution */
240 static inline void sync_core(void)
241 {
242         int tmp;
243         asm volatile("cpuid" : "=a" (tmp) : "0" (1) : "ebx","ecx","edx","memory");
244 }
245
246 static inline void __monitor(const void *eax, unsigned long ecx,
247                 unsigned long edx)
248 {
249         /* "monitor %eax,%ecx,%edx;" */
250         asm volatile(
251                 ".byte 0x0f,0x01,0xc8;"
252                 : :"a" (eax), "c" (ecx), "d"(edx));
253 }
254
255 static inline void __mwait(unsigned long eax, unsigned long ecx)
256 {
257         /* "mwait %eax,%ecx;" */
258         asm volatile(
259                 ".byte 0x0f,0x01,0xc9;"
260                 : :"a" (eax), "c" (ecx));
261 }
262
263 extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
264
265 /* from system description table in BIOS.  Mostly for MCA use, but
266 others may find it useful. */
267 extern unsigned int machine_id;
268 extern unsigned int machine_submodel_id;
269 extern unsigned int BIOS_revision;
270 extern unsigned int mca_pentium_flag;
271
272 /* Boot loader type from the setup header */
273 extern int bootloader_type;
274
275 /*
276  * User space process size: 3GB (default).
277  */
278 #define TASK_SIZE       (PAGE_OFFSET)
279
280 /* This decides where the kernel will search for a free chunk of vm
281  * space during mmap's.
282  */
283 #define TASK_UNMAPPED_BASE      (PAGE_ALIGN(TASK_SIZE / 3))
284
285 #define HAVE_ARCH_PICK_MMAP_LAYOUT
286
287 /*
288  * Size of io_bitmap.
289  */
290 #define IO_BITMAP_BITS  65536
291 #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
292 #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
293 #ifndef CONFIG_X86_NO_TSS
294 #define IO_BITMAP_OFFSET offsetof(struct tss_struct,io_bitmap)
295 #endif
296 #define INVALID_IO_BITMAP_OFFSET 0x8000
297 #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
298
299 struct i387_fsave_struct {
300         long    cwd;
301         long    swd;
302         long    twd;
303         long    fip;
304         long    fcs;
305         long    foo;
306         long    fos;
307         long    st_space[20];   /* 8*10 bytes for each FP-reg = 80 bytes */
308         long    status;         /* software status information */
309 };
310
311 struct i387_fxsave_struct {
312         unsigned short  cwd;
313         unsigned short  swd;
314         unsigned short  twd;
315         unsigned short  fop;
316         long    fip;
317         long    fcs;
318         long    foo;
319         long    fos;
320         long    mxcsr;
321         long    mxcsr_mask;
322         long    st_space[32];   /* 8*16 bytes for each FP-reg = 128 bytes */
323         long    xmm_space[32];  /* 8*16 bytes for each XMM-reg = 128 bytes */
324         long    padding[56];
325 } __attribute__ ((aligned (16)));
326
327 struct i387_soft_struct {
328         long    cwd;
329         long    swd;
330         long    twd;
331         long    fip;
332         long    fcs;
333         long    foo;
334         long    fos;
335         long    st_space[20];   /* 8*10 bytes for each FP-reg = 80 bytes */
336         unsigned char   ftop, changed, lookahead, no_update, rm, alimit;
337         struct info     *info;
338         unsigned long   entry_eip;
339 };
340
341 union i387_union {
342         struct i387_fsave_struct        fsave;
343         struct i387_fxsave_struct       fxsave;
344         struct i387_soft_struct soft;
345 };
346
347 typedef struct {
348         unsigned long seg;
349 } mm_segment_t;
350
351 struct thread_struct;
352
353 #ifndef CONFIG_X86_NO_TSS
354 struct tss_struct {
355         unsigned short  back_link,__blh;
356         unsigned long   esp0;
357         unsigned short  ss0,__ss0h;
358         unsigned long   esp1;
359         unsigned short  ss1,__ss1h;     /* ss1 is used to cache MSR_IA32_SYSENTER_CS */
360         unsigned long   esp2;
361         unsigned short  ss2,__ss2h;
362         unsigned long   __cr3;
363         unsigned long   eip;
364         unsigned long   eflags;
365         unsigned long   eax,ecx,edx,ebx;
366         unsigned long   esp;
367         unsigned long   ebp;
368         unsigned long   esi;
369         unsigned long   edi;
370         unsigned short  es, __esh;
371         unsigned short  cs, __csh;
372         unsigned short  ss, __ssh;
373         unsigned short  ds, __dsh;
374         unsigned short  fs, __fsh;
375         unsigned short  gs, __gsh;
376         unsigned short  ldt, __ldth;
377         unsigned short  trace, io_bitmap_base;
378         /*
379          * The extra 1 is there because the CPU will access an
380          * additional byte beyond the end of the IO permission
381          * bitmap. The extra byte must be all 1 bits, and must
382          * be within the limit.
383          */
384         unsigned long   io_bitmap[IO_BITMAP_LONGS + 1];
385         /*
386          * Cache the current maximum and the last task that used the bitmap:
387          */
388         unsigned long io_bitmap_max;
389         struct thread_struct *io_bitmap_owner;
390         /*
391          * pads the TSS to be cacheline-aligned (size is 0x100)
392          */
393         unsigned long __cacheline_filler[35];
394         /*
395          * .. and then another 0x100 bytes for emergency kernel stack
396          */
397         unsigned long stack[64];
398 } __attribute__((packed));
399 #endif
400
401 #define ARCH_MIN_TASKALIGN      16
402
403 struct thread_struct {
404 /* cached TLS descriptors. */
405         struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
406         unsigned long   esp0;
407         unsigned long   sysenter_cs;
408         unsigned long   eip;
409         unsigned long   esp;
410         unsigned long   fs;
411         unsigned long   gs;
412 /* Hardware debugging registers */
413         unsigned long   debugreg[8];  /* %%db0-7 debug registers */
414 /* fault info */
415         unsigned long   cr2, trap_no, error_code;
416 /* floating point info */
417         union i387_union        i387;
418 /* virtual 86 mode info */
419         struct vm86_struct __user * vm86_info;
420         unsigned long           screen_bitmap;
421         unsigned long           v86flags, v86mask, saved_esp0;
422         unsigned int            saved_fs, saved_gs;
423 /* IO permissions */
424         unsigned long   *io_bitmap_ptr;
425         unsigned long   iopl;
426 /* max allowed port in the bitmap, in bytes: */
427         unsigned long   io_bitmap_max;
428 };
429
430 #define INIT_THREAD  {                                                  \
431         .vm86_info = NULL,                                              \
432         .sysenter_cs = __KERNEL_CS,                                     \
433         .io_bitmap_ptr = NULL,                                          \
434         .fs = __KERNEL_PDA,                                             \
435 }
436
437 /*
438  * Note that the .io_bitmap member must be extra-big. This is because
439  * the CPU will access an additional byte beyond the end of the IO
440  * permission bitmap. The extra byte must be all 1 bits, and must
441  * be within the limit.
442  */
443 #define INIT_TSS  {                                                     \
444         .esp0           = sizeof(init_stack) + (long)&init_stack,       \
445         .ss0            = __KERNEL_DS,                                  \
446         .ss1            = __KERNEL_CS,                                  \
447         .io_bitmap_base = INVALID_IO_BITMAP_OFFSET,                     \
448         .io_bitmap      = { [ 0 ... IO_BITMAP_LONGS] = ~0 },            \
449 }
450
451 #define start_thread(regs, new_eip, new_esp) do {               \
452         __asm__("movl %0,%%gs": :"r" (0));                      \
453         regs->xfs = 0;                                          \
454         set_fs(USER_DS);                                        \
455         regs->xds = __USER_DS;                                  \
456         regs->xes = __USER_DS;                                  \
457         regs->xss = __USER_DS;                                  \
458         regs->xcs = __USER_CS;                                  \
459         regs->eip = new_eip;                                    \
460         regs->esp = new_esp;                                    \
461 } while (0)
462
463 /* Forward declaration, a strange C thing */
464 struct task_struct;
465 struct mm_struct;
466
467 /* Free all resources held by a thread. */
468 extern void release_thread(struct task_struct *);
469
470 /* Prepare to copy thread state - unlazy all lazy status */
471 extern void prepare_to_copy(struct task_struct *tsk);
472
473 /*
474  * create a kernel thread without removing it from tasklists
475  */
476 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
477
478 extern unsigned long thread_saved_pc(struct task_struct *tsk);
479 void show_trace(struct task_struct *task, struct pt_regs *regs, unsigned long *stack);
480
481 unsigned long get_wchan(struct task_struct *p);
482
483 #define THREAD_SIZE_LONGS      (THREAD_SIZE/sizeof(unsigned long))
484 #define KSTK_TOP(info)                                                 \
485 ({                                                                     \
486        unsigned long *__ptr = (unsigned long *)(info);                 \
487        (unsigned long)(&__ptr[THREAD_SIZE_LONGS]);                     \
488 })
489
490 /*
491  * The below -8 is to reserve 8 bytes on top of the ring0 stack.
492  * This is necessary to guarantee that the entire "struct pt_regs"
493  * is accessable even if the CPU haven't stored the SS/ESP registers
494  * on the stack (interrupt gate does not save these registers
495  * when switching to the same priv ring).
496  * Therefore beware: accessing the xss/esp fields of the
497  * "struct pt_regs" is possible, but they may contain the
498  * completely wrong values.
499  */
500 #define task_pt_regs(task)                                             \
501 ({                                                                     \
502        struct pt_regs *__regs__;                                       \
503        __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
504        __regs__ - 1;                                                   \
505 })
506
507 #define KSTK_EIP(task) (task_pt_regs(task)->eip)
508 #define KSTK_ESP(task) (task_pt_regs(task)->esp)
509
510
511 struct microcode_header {
512         unsigned int hdrver;
513         unsigned int rev;
514         unsigned int date;
515         unsigned int sig;
516         unsigned int cksum;
517         unsigned int ldrver;
518         unsigned int pf;
519         unsigned int datasize;
520         unsigned int totalsize;
521         unsigned int reserved[3];
522 };
523
524 struct microcode {
525         struct microcode_header hdr;
526         unsigned int bits[0];
527 };
528
529 typedef struct microcode microcode_t;
530 typedef struct microcode_header microcode_header_t;
531
532 /* microcode format is extended from prescott processors */
533 struct extended_signature {
534         unsigned int sig;
535         unsigned int pf;
536         unsigned int cksum;
537 };
538
539 struct extended_sigtable {
540         unsigned int count;
541         unsigned int cksum;
542         unsigned int reserved[3];
543         struct extended_signature sigs[0];
544 };
545
546 /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
547 static inline void rep_nop(void)
548 {
549         __asm__ __volatile__("rep;nop": : :"memory");
550 }
551
552 #define cpu_relax()     rep_nop()
553
554 #define paravirt_enabled() 0
555 #define __cpuid native_cpuid
556
557 #ifndef CONFIG_X86_NO_TSS
558 static inline void __load_esp0(struct tss_struct *tss, struct thread_struct *thread)
559 {
560         tss->esp0 = thread->esp0;
561         /* This can only happen when SEP is enabled, no need to test "SEP"arately */
562         if (unlikely(tss->ss1 != thread->sysenter_cs)) {
563                 tss->ss1 = thread->sysenter_cs;
564                 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
565         }
566 }
567 #define load_esp0(tss, thread) \
568         __load_esp0(tss, thread)
569 #else
570 #define load_esp0(tss, thread) \
571         HYPERVISOR_stack_switch(__KERNEL_DS, (thread)->esp0)
572 #endif
573
574
575 /*
576  * These special macros can be used to get or set a debugging register
577  */
578 #define get_debugreg(var, register)                             \
579                 (var) = HYPERVISOR_get_debugreg((register))
580 #define set_debugreg(value, register)                   \
581                 HYPERVISOR_set_debugreg((register), (value))
582
583 #define set_iopl_mask xen_set_iopl_mask
584
585 /*
586  * Set IOPL bits in EFLAGS from given mask
587  */
588 static inline void xen_set_iopl_mask(unsigned mask)
589 {
590         struct physdev_set_iopl set_iopl;
591
592         /* Force the change at ring 0. */
593         set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
594         HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
595 }
596
597
598 /*
599  * Generic CPUID function
600  * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
601  * resulting in stale register contents being returned.
602  */
603 static inline void cpuid(unsigned int op, unsigned int *eax, unsigned int *ebx, unsigned int *ecx, unsigned int *edx)
604 {
605         *eax = op;
606         *ecx = 0;
607         __cpuid(eax, ebx, ecx, edx);
608 }
609
610 /* Some CPUID calls want 'count' to be placed in ecx */
611 static inline void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx,
612                                int *edx)
613 {
614         *eax = op;
615         *ecx = count;
616         __cpuid(eax, ebx, ecx, edx);
617 }
618
619 /*
620  * CPUID functions returning a single datum
621  */
622 static inline unsigned int cpuid_eax(unsigned int op)
623 {
624         unsigned int eax, ebx, ecx, edx;
625
626         cpuid(op, &eax, &ebx, &ecx, &edx);
627         return eax;
628 }
629 static inline unsigned int cpuid_ebx(unsigned int op)
630 {
631         unsigned int eax, ebx, ecx, edx;
632
633         cpuid(op, &eax, &ebx, &ecx, &edx);
634         return ebx;
635 }
636 static inline unsigned int cpuid_ecx(unsigned int op)
637 {
638         unsigned int eax, ebx, ecx, edx;
639
640         cpuid(op, &eax, &ebx, &ecx, &edx);
641         return ecx;
642 }
643 static inline unsigned int cpuid_edx(unsigned int op)
644 {
645         unsigned int eax, ebx, ecx, edx;
646
647         cpuid(op, &eax, &ebx, &ecx, &edx);
648         return edx;
649 }
650
651 /* generic versions from gas */
652 #define GENERIC_NOP1    ".byte 0x90\n"
653 #define GENERIC_NOP2            ".byte 0x89,0xf6\n"
654 #define GENERIC_NOP3        ".byte 0x8d,0x76,0x00\n"
655 #define GENERIC_NOP4        ".byte 0x8d,0x74,0x26,0x00\n"
656 #define GENERIC_NOP5        GENERIC_NOP1 GENERIC_NOP4
657 #define GENERIC_NOP6    ".byte 0x8d,0xb6,0x00,0x00,0x00,0x00\n"
658 #define GENERIC_NOP7    ".byte 0x8d,0xb4,0x26,0x00,0x00,0x00,0x00\n"
659 #define GENERIC_NOP8    GENERIC_NOP1 GENERIC_NOP7
660
661 /* Opteron nops */
662 #define K8_NOP1 GENERIC_NOP1
663 #define K8_NOP2 ".byte 0x66,0x90\n" 
664 #define K8_NOP3 ".byte 0x66,0x66,0x90\n" 
665 #define K8_NOP4 ".byte 0x66,0x66,0x66,0x90\n" 
666 #define K8_NOP5 K8_NOP3 K8_NOP2 
667 #define K8_NOP6 K8_NOP3 K8_NOP3
668 #define K8_NOP7 K8_NOP4 K8_NOP3
669 #define K8_NOP8 K8_NOP4 K8_NOP4
670
671 /* K7 nops */
672 /* uses eax dependencies (arbitary choice) */
673 #define K7_NOP1  GENERIC_NOP1
674 #define K7_NOP2 ".byte 0x8b,0xc0\n" 
675 #define K7_NOP3 ".byte 0x8d,0x04,0x20\n"
676 #define K7_NOP4 ".byte 0x8d,0x44,0x20,0x00\n"
677 #define K7_NOP5 K7_NOP4 ASM_NOP1
678 #define K7_NOP6 ".byte 0x8d,0x80,0,0,0,0\n"
679 #define K7_NOP7        ".byte 0x8D,0x04,0x05,0,0,0,0\n"
680 #define K7_NOP8        K7_NOP7 ASM_NOP1
681
682 #ifdef CONFIG_MK8
683 #define ASM_NOP1 K8_NOP1
684 #define ASM_NOP2 K8_NOP2
685 #define ASM_NOP3 K8_NOP3
686 #define ASM_NOP4 K8_NOP4
687 #define ASM_NOP5 K8_NOP5
688 #define ASM_NOP6 K8_NOP6
689 #define ASM_NOP7 K8_NOP7
690 #define ASM_NOP8 K8_NOP8
691 #elif defined(CONFIG_MK7)
692 #define ASM_NOP1 K7_NOP1
693 #define ASM_NOP2 K7_NOP2
694 #define ASM_NOP3 K7_NOP3
695 #define ASM_NOP4 K7_NOP4
696 #define ASM_NOP5 K7_NOP5
697 #define ASM_NOP6 K7_NOP6
698 #define ASM_NOP7 K7_NOP7
699 #define ASM_NOP8 K7_NOP8
700 #else
701 #define ASM_NOP1 GENERIC_NOP1
702 #define ASM_NOP2 GENERIC_NOP2
703 #define ASM_NOP3 GENERIC_NOP3
704 #define ASM_NOP4 GENERIC_NOP4
705 #define ASM_NOP5 GENERIC_NOP5
706 #define ASM_NOP6 GENERIC_NOP6
707 #define ASM_NOP7 GENERIC_NOP7
708 #define ASM_NOP8 GENERIC_NOP8
709 #endif
710
711 #define ASM_NOP_MAX 8
712
713 /* Prefetch instructions for Pentium III and AMD Athlon */
714 /* It's not worth to care about 3dnow! prefetches for the K6
715    because they are microcoded there and very slow.
716    However we don't do prefetches for pre XP Athlons currently
717    That should be fixed. */
718 #define ARCH_HAS_PREFETCH
719 static inline void prefetch(const void *x)
720 {
721         alternative_input(ASM_NOP4,
722                           "prefetchnta (%1)",
723                           X86_FEATURE_XMM,
724                           "r" (x));
725 }
726
727 #define ARCH_HAS_PREFETCH
728 #define ARCH_HAS_PREFETCHW
729 #define ARCH_HAS_SPINLOCK_PREFETCH
730
731 /* 3dnow! prefetch to get an exclusive cache line. Useful for 
732    spinlocks to avoid one state transition in the cache coherency protocol. */
733 static inline void prefetchw(const void *x)
734 {
735         alternative_input(ASM_NOP4,
736                           "prefetchw (%1)",
737                           X86_FEATURE_3DNOW,
738                           "r" (x));
739 }
740 #define spin_lock_prefetch(x)   prefetchw(x)
741
742 extern void select_idle_routine(const struct cpuinfo_x86 *c);
743
744 #define cache_line_size() (boot_cpu_data.x86_cache_alignment)
745
746 extern unsigned long boot_option_idle_override;
747 extern void enable_sep_cpu(void);
748 extern int sysenter_setup(void);
749
750 extern int init_gdt(int cpu, struct task_struct *idle);
751 extern void cpu_set_gdt(int);
752 extern void secondary_cpu_init(void);
753
754 #endif /* __ASM_I386_PROCESSOR_H */