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