blob: e49e5e69ebb07a373fdbcba16fa099f84cff612d [file] [log] [blame]
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +01001#ifndef __ASM_X86_PROCESSOR_H
2#define __ASM_X86_PROCESSOR_H
3
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004#include <asm/processor-flags.h>
5
Ingo Molnar58f6f6e2008-01-30 13:32:54 +01006/* migration helpers, for KVM - will be removed in 2.6.25: */
7#include <asm/vm86.h>
8#define Xgt_desc_struct desc_ptr
9
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +010010/* Forward declaration, a strange C thing */
11struct task_struct;
12struct mm_struct;
13
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010014#include <asm/vm86.h>
15#include <asm/math_emu.h>
16#include <asm/segment.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010017#include <asm/types.h>
18#include <asm/sigcontext.h>
19#include <asm/current.h>
20#include <asm/cpufeature.h>
21#include <asm/system.h>
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +010022#include <asm/page.h>
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +010023#include <asm/percpu.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010024#include <asm/msr.h>
25#include <asm/desc_defs.h>
Andi Kleenbd616432008-01-30 13:32:38 +010026#include <asm/nops.h>
Ingo Molnar4d46a892008-02-21 04:24:40 +010027
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010028#include <linux/personality.h>
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010029#include <linux/cpumask.h>
30#include <linux/cache.h>
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +010031#include <linux/threads.h>
32#include <linux/init.h>
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +010033
Glauber de Oliveira Costa0ccb8ac2008-01-30 13:31:27 +010034/*
35 * Default implementation of macro that returns current
36 * instruction pointer ("program counter").
37 */
38static inline void *current_text_addr(void)
39{
40 void *pc;
Ingo Molnar4d46a892008-02-21 04:24:40 +010041
42 asm volatile("mov $1f, %0; 1:":"=r" (pc));
43
Glauber de Oliveira Costa0ccb8ac2008-01-30 13:31:27 +010044 return pc;
45}
46
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010047#ifdef CONFIG_X86_VSMP
Ingo Molnar4d46a892008-02-21 04:24:40 +010048# define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT)
49# define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT)
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010050#else
Ingo Molnar4d46a892008-02-21 04:24:40 +010051# define ARCH_MIN_TASKALIGN 16
52# define ARCH_MIN_MMSTRUCT_ALIGN 0
Glauber de Oliveira Costadbcb4662008-01-30 13:31:31 +010053#endif
54
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010055/*
56 * CPU type and hardware bug flags. Kept separately for each CPU.
57 * Members of this structure are referenced in head.S, so think twice
58 * before touching them. [mj]
59 */
60
61struct cpuinfo_x86 {
Ingo Molnar4d46a892008-02-21 04:24:40 +010062 __u8 x86; /* CPU family */
63 __u8 x86_vendor; /* CPU vendor */
64 __u8 x86_model;
65 __u8 x86_mask;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010066#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +010067 char wp_works_ok; /* It doesn't on 386's */
68
69 /* Problems on some 486Dx4's and old 386's: */
70 char hlt_works_ok;
71 char hard_math;
72 char rfu;
73 char fdiv_bug;
74 char f00f_bug;
75 char coma_bug;
76 char pad0;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010077#else
Ingo Molnar4d46a892008-02-21 04:24:40 +010078 /* Number of 4K pages in DTLB/ITLB combined(in pages): */
79 int x86_tlbsize;
80 __u8 x86_virt_bits;
81 __u8 x86_phys_bits;
82 /* CPUID returned core id bits: */
83 __u8 x86_coreid_bits;
84 /* Max extended CPUID function supported: */
85 __u32 extended_cpuid_level;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010086#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +010087 /* Maximum supported CPUID level, -1=no CPUID: */
88 int cpuid_level;
89 __u32 x86_capability[NCAPINTS];
90 char x86_vendor_id[16];
91 char x86_model_id[64];
92 /* in KB - valid for CPUS which support this call: */
93 int x86_cache_size;
94 int x86_cache_alignment; /* In bytes */
95 int x86_power;
96 unsigned long loops_per_jiffy;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +010097#ifdef CONFIG_SMP
Ingo Molnar4d46a892008-02-21 04:24:40 +010098 /* cpus sharing the last level cache: */
99 cpumask_t llc_shared_map;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100100#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100101 /* cpuid returned max cores value: */
102 u16 x86_max_cores;
103 u16 apicid;
104 u16 x86_clflush_size;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100105#ifdef CONFIG_SMP
Ingo Molnar4d46a892008-02-21 04:24:40 +0100106 /* number of cores as seen by the OS: */
107 u16 booted_cores;
108 /* Physical processor id: */
109 u16 phys_proc_id;
110 /* Core id: */
111 u16 cpu_core_id;
112 /* Index into per_cpu list: */
113 u16 cpu_index;
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100114#endif
115} __attribute__((__aligned__(SMP_CACHE_BYTES)));
116
Ingo Molnar4d46a892008-02-21 04:24:40 +0100117#define X86_VENDOR_INTEL 0
118#define X86_VENDOR_CYRIX 1
119#define X86_VENDOR_AMD 2
120#define X86_VENDOR_UMC 3
121#define X86_VENDOR_NEXGEN 4
122#define X86_VENDOR_CENTAUR 5
123#define X86_VENDOR_TRANSMETA 7
124#define X86_VENDOR_NSC 8
125#define X86_VENDOR_NUM 9
126
127#define X86_VENDOR_UNKNOWN 0xff
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100128
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100129/*
130 * capabilities of CPUs
131 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100132extern struct cpuinfo_x86 boot_cpu_data;
133extern struct cpuinfo_x86 new_cpu_data;
134
135extern struct tss_struct doublefault_tss;
136extern __u32 cleared_cpu_caps[NCAPINTS];
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100137
138#ifdef CONFIG_SMP
139DECLARE_PER_CPU(struct cpuinfo_x86, cpu_info);
140#define cpu_data(cpu) per_cpu(cpu_info, cpu)
141#define current_cpu_data cpu_data(smp_processor_id())
142#else
143#define cpu_data(cpu) boot_cpu_data
144#define current_cpu_data boot_cpu_data
145#endif
146
Glauber Costa3d3f4872008-03-03 14:12:48 -0300147static inline int hlt_works(int cpu)
148{
149#ifdef CONFIG_X86_32
150 return cpu_data(cpu).hlt_works_ok;
151#else
152 return 1;
153#endif
154}
155
Ingo Molnar4d46a892008-02-21 04:24:40 +0100156#define cache_line_size() (boot_cpu_data.x86_cache_alignment)
157
158extern void cpu_detect(struct cpuinfo_x86 *c);
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100159
160extern void identify_cpu(struct cpuinfo_x86 *);
161extern void identify_boot_cpu(void);
162extern void identify_secondary_cpu(struct cpuinfo_x86 *);
Glauber de Oliveira Costa5300db82008-01-30 13:31:33 +0100163extern void print_cpu_info(struct cpuinfo_x86 *);
164extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
165extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
166extern unsigned short num_cache_leaves;
167
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100168#if defined(CONFIG_X86_HT) || defined(CONFIG_X86_64)
169extern void detect_ht(struct cpuinfo_x86 *c);
170#else
171static inline void detect_ht(struct cpuinfo_x86 *c) {}
172#endif
173
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100174static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
Ingo Molnar4d46a892008-02-21 04:24:40 +0100175 unsigned int *ecx, unsigned int *edx)
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100176{
177 /* ecx is often an input as well as an output. */
178 __asm__("cpuid"
179 : "=a" (*eax),
180 "=b" (*ebx),
181 "=c" (*ecx),
182 "=d" (*edx)
183 : "0" (*eax), "2" (*ecx));
184}
185
Glauber de Oliveira Costac72dcf82008-01-30 13:31:27 +0100186static inline void load_cr3(pgd_t *pgdir)
187{
188 write_cr3(__pa(pgdir));
189}
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100190
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200191#ifdef CONFIG_X86_32
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100192/* This is the TSS defined by the hardware. */
193struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100194 unsigned short back_link, __blh;
195 unsigned long sp0;
196 unsigned short ss0, __ss0h;
197 unsigned long sp1;
198 /* ss1 caches MSR_IA32_SYSENTER_CS: */
199 unsigned short ss1, __ss1h;
200 unsigned long sp2;
201 unsigned short ss2, __ss2h;
202 unsigned long __cr3;
203 unsigned long ip;
204 unsigned long flags;
205 unsigned long ax;
206 unsigned long cx;
207 unsigned long dx;
208 unsigned long bx;
209 unsigned long sp;
210 unsigned long bp;
211 unsigned long si;
212 unsigned long di;
213 unsigned short es, __esh;
214 unsigned short cs, __csh;
215 unsigned short ss, __ssh;
216 unsigned short ds, __dsh;
217 unsigned short fs, __fsh;
218 unsigned short gs, __gsh;
219 unsigned short ldt, __ldth;
220 unsigned short trace;
221 unsigned short io_bitmap_base;
222
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100223} __attribute__((packed));
224#else
225struct x86_hw_tss {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100226 u32 reserved1;
227 u64 sp0;
228 u64 sp1;
229 u64 sp2;
230 u64 reserved2;
231 u64 ist[7];
232 u32 reserved3;
233 u32 reserved4;
234 u16 reserved5;
235 u16 io_bitmap_base;
236
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100237} __attribute__((packed)) ____cacheline_aligned;
238#endif
239
240/*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100241 * IO-bitmap sizes:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100242 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100243#define IO_BITMAP_BITS 65536
244#define IO_BITMAP_BYTES (IO_BITMAP_BITS/8)
245#define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long))
246#define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap)
247#define INVALID_IO_BITMAP_OFFSET 0x8000
248#define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100249
250struct tss_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100251 /*
252 * The hardware state:
253 */
254 struct x86_hw_tss x86_tss;
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100255
256 /*
257 * The extra 1 is there because the CPU will access an
258 * additional byte beyond the end of the IO permission
259 * bitmap. The extra byte must be all 1 bits, and must
260 * be within the limit.
261 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100262 unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100263 /*
264 * Cache the current maximum and the last task that used the bitmap:
265 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100266 unsigned long io_bitmap_max;
267 struct thread_struct *io_bitmap_owner;
268
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100269 /*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100270 * Pad the TSS to be cacheline-aligned (size is 0x100):
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100271 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100272 unsigned long __cacheline_filler[35];
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100273 /*
Ingo Molnar4d46a892008-02-21 04:24:40 +0100274 * .. and then another 0x100 bytes for the emergency kernel stack:
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100275 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100276 unsigned long stack[64];
277
Glauber de Oliveira Costaca241c72008-01-30 13:31:31 +0100278} __attribute__((packed));
279
280DECLARE_PER_CPU(struct tss_struct, init_tss);
281
Ingo Molnar4d46a892008-02-21 04:24:40 +0100282/*
283 * Save the original ist values for checking stack pointers during debugging
284 */
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100285struct orig_ist {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100286 unsigned long ist[7];
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100287};
288
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100289#define MXCSR_DEFAULT 0x1f80
290
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100291struct i387_fsave_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100292 u32 cwd;
293 u32 swd;
294 u32 twd;
295 u32 fip;
296 u32 fcs;
297 u32 foo;
298 u32 fos;
299 /* 8*10 bytes for each FP-reg = 80 bytes: */
300 u32 st_space[20];
301 /* Software status information: */
302 u32 status;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100303};
304
305struct i387_fxsave_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100306 u16 cwd;
307 u16 swd;
308 u16 twd;
309 u16 fop;
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100310 union {
311 struct {
312 u64 rip;
313 u64 rdp;
314 };
315 struct {
316 u32 fip;
317 u32 fcs;
318 u32 foo;
319 u32 fos;
320 };
321 };
Ingo Molnar4d46a892008-02-21 04:24:40 +0100322 u32 mxcsr;
323 u32 mxcsr_mask;
324 /* 8*16 bytes for each FP-reg = 128 bytes: */
325 u32 st_space[32];
326 /* 16*16 bytes for each XMM-reg = 256 bytes: */
327 u32 xmm_space[64];
328 u32 padding[24];
329
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100330} __attribute__((aligned(16)));
331
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100332struct i387_soft_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100333 u32 cwd;
334 u32 swd;
335 u32 twd;
336 u32 fip;
337 u32 fcs;
338 u32 foo;
339 u32 fos;
340 /* 8*10 bytes for each FP-reg = 80 bytes: */
341 u32 st_space[20];
342 u8 ftop;
343 u8 changed;
344 u8 lookahead;
345 u8 no_update;
346 u8 rm;
347 u8 alimit;
348 struct info *info;
349 u32 entry_eip;
Glauber de Oliveira Costa46265df2008-01-30 13:31:41 +0100350};
351
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100352union i387_union {
353 struct i387_fsave_struct fsave;
354 struct i387_fxsave_struct fxsave;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100355 struct i387_soft_struct soft;
Roland McGrath99f8ecd2008-01-30 13:31:48 +0100356};
357
Glauber Costafe676202008-03-03 14:12:56 -0300358#ifdef CONFIG_X86_64
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100359DECLARE_PER_CPU(struct orig_ist, orig_ist);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200360#endif
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100361
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100362extern void print_cpu_info(struct cpuinfo_x86 *);
363extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
364extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c);
365extern unsigned short num_cache_leaves;
366
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100367struct thread_struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100368 /* Cached TLS descriptors: */
369 struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES];
370 unsigned long sp0;
371 unsigned long sp;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100372#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100373 unsigned long sysenter_cs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100374#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100375 unsigned long usersp; /* Copy from PDA */
376 unsigned short es;
377 unsigned short ds;
378 unsigned short fsindex;
379 unsigned short gsindex;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100380#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100381 unsigned long ip;
382 unsigned long fs;
383 unsigned long gs;
384 /* Hardware debugging registers: */
385 unsigned long debugreg0;
386 unsigned long debugreg1;
387 unsigned long debugreg2;
388 unsigned long debugreg3;
389 unsigned long debugreg6;
390 unsigned long debugreg7;
391 /* Fault info: */
392 unsigned long cr2;
393 unsigned long trap_no;
394 unsigned long error_code;
395 /* Floating point info: */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100396 union i387_union i387 __attribute__((aligned(16)));;
397#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100398 /* Virtual 86 mode info */
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100399 struct vm86_struct __user *vm86_info;
400 unsigned long screen_bitmap;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100401 unsigned long v86flags;
402 unsigned long v86mask;
403 unsigned long saved_sp0;
404 unsigned int saved_fs;
405 unsigned int saved_gs;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100406#endif
Ingo Molnar4d46a892008-02-21 04:24:40 +0100407 /* IO permissions: */
408 unsigned long *io_bitmap_ptr;
409 unsigned long iopl;
410 /* Max allowed port in the bitmap, in bytes: */
411 unsigned io_bitmap_max;
Glauber de Oliveira Costacb38d372008-01-30 13:31:31 +0100412/* MSR_IA32_DEBUGCTLMSR value to switch in if TIF_DEBUGCTLMSR is set. */
413 unsigned long debugctlmsr;
414/* Debug Store - if not 0 points to a DS Save Area configuration;
415 * goes into MSR_IA32_DS_AREA */
416 unsigned long ds_area_msr;
417};
418
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100419static inline unsigned long native_get_debugreg(int regno)
420{
Ingo Molnar4d46a892008-02-21 04:24:40 +0100421 unsigned long val = 0; /* Damn you, gcc! */
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100422
423 switch (regno) {
424 case 0:
425 asm("mov %%db0, %0" :"=r" (val)); break;
426 case 1:
427 asm("mov %%db1, %0" :"=r" (val)); break;
428 case 2:
429 asm("mov %%db2, %0" :"=r" (val)); break;
430 case 3:
431 asm("mov %%db3, %0" :"=r" (val)); break;
432 case 6:
433 asm("mov %%db6, %0" :"=r" (val)); break;
434 case 7:
435 asm("mov %%db7, %0" :"=r" (val)); break;
436 default:
437 BUG();
438 }
439 return val;
440}
441
442static inline void native_set_debugreg(int regno, unsigned long value)
443{
444 switch (regno) {
445 case 0:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100446 asm("mov %0, %%db0" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100447 break;
448 case 1:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100449 asm("mov %0, %%db1" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100450 break;
451 case 2:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100452 asm("mov %0, %%db2" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100453 break;
454 case 3:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100455 asm("mov %0, %%db3" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100456 break;
457 case 6:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100458 asm("mov %0, %%db6" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100459 break;
460 case 7:
Ingo Molnar4d46a892008-02-21 04:24:40 +0100461 asm("mov %0, %%db7" ::"r" (value));
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100462 break;
463 default:
464 BUG();
465 }
466}
467
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100468/*
469 * Set IOPL bits in EFLAGS from given mask
470 */
471static inline void native_set_iopl_mask(unsigned mask)
472{
473#ifdef CONFIG_X86_32
474 unsigned int reg;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100475
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100476 __asm__ __volatile__ ("pushfl;"
477 "popl %0;"
478 "andl %1, %0;"
479 "orl %2, %0;"
480 "pushl %0;"
481 "popfl"
482 : "=&r" (reg)
483 : "i" (~X86_EFLAGS_IOPL), "r" (mask));
484#endif
485}
486
Ingo Molnar4d46a892008-02-21 04:24:40 +0100487static inline void
488native_load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100489{
490 tss->x86_tss.sp0 = thread->sp0;
491#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100492 /* Only happens when SEP is enabled, no need to test "SEP"arately: */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100493 if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) {
494 tss->x86_tss.ss1 = thread->sysenter_cs;
495 wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0);
496 }
497#endif
498}
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100499
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100500static inline void native_swapgs(void)
501{
502#ifdef CONFIG_X86_64
503 asm volatile("swapgs" ::: "memory");
504#endif
505}
506
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100507#ifdef CONFIG_PARAVIRT
508#include <asm/paravirt.h>
509#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100510#define __cpuid native_cpuid
511#define paravirt_enabled() 0
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100512
513/*
514 * These special macros can be used to get or set a debugging register
515 */
516#define get_debugreg(var, register) \
517 (var) = native_get_debugreg(register)
518#define set_debugreg(value, register) \
519 native_set_debugreg(register, value)
520
Ingo Molnar4d46a892008-02-21 04:24:40 +0100521static inline void
522load_sp0(struct tss_struct *tss, struct thread_struct *thread)
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100523{
524 native_load_sp0(tss, thread);
525}
526
Glauber de Oliveira Costa62d7d7e2008-01-30 13:31:27 +0100527#define set_iopl_mask native_set_iopl_mask
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100528#define SWAPGS swapgs
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100529#endif /* CONFIG_PARAVIRT */
530
531/*
532 * Save the cr4 feature set we're using (ie
533 * Pentium 4MB enable and PPro Global page
534 * enable), so that any CPU's that boot up
535 * after us can get the correct flags.
536 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100537extern unsigned long mmu_cr4_features;
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100538
539static inline void set_in_cr4(unsigned long mask)
540{
541 unsigned cr4;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100542
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100543 mmu_cr4_features |= mask;
544 cr4 = read_cr4();
545 cr4 |= mask;
546 write_cr4(cr4);
547}
548
549static inline void clear_in_cr4(unsigned long mask)
550{
551 unsigned cr4;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100552
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100553 mmu_cr4_features &= ~mask;
554 cr4 = read_cr4();
555 cr4 &= ~mask;
556 write_cr4(cr4);
557}
558
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100559struct microcode_header {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100560 unsigned int hdrver;
561 unsigned int rev;
562 unsigned int date;
563 unsigned int sig;
564 unsigned int cksum;
565 unsigned int ldrver;
566 unsigned int pf;
567 unsigned int datasize;
568 unsigned int totalsize;
569 unsigned int reserved[3];
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100570};
Glauber de Oliveira Costa1b46cbe2008-01-30 13:31:27 +0100571
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100572struct microcode {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100573 struct microcode_header hdr;
574 unsigned int bits[0];
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100575};
576
Ingo Molnar4d46a892008-02-21 04:24:40 +0100577typedef struct microcode microcode_t;
578typedef struct microcode_header microcode_header_t;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100579
580/* microcode format is extended from prescott processors */
581struct extended_signature {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100582 unsigned int sig;
583 unsigned int pf;
584 unsigned int cksum;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100585};
586
587struct extended_sigtable {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100588 unsigned int count;
589 unsigned int cksum;
590 unsigned int reserved[3];
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100591 struct extended_signature sigs[0];
592};
593
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100594typedef struct {
Ingo Molnar4d46a892008-02-21 04:24:40 +0100595 unsigned long seg;
Glauber de Oliveira Costafc87e902008-01-30 13:31:38 +0100596} mm_segment_t;
597
598
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100599/*
600 * create a kernel thread without removing it from tasklists
601 */
602extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
603
604/* Free all resources held by a thread. */
605extern void release_thread(struct task_struct *);
606
Ingo Molnar4d46a892008-02-21 04:24:40 +0100607/* Prepare to copy thread state - unlazy all lazy state */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100608extern void prepare_to_copy(struct task_struct *tsk);
609
610unsigned long get_wchan(struct task_struct *p);
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100611
612/*
613 * Generic CPUID function
614 * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx
615 * resulting in stale register contents being returned.
616 */
617static inline void cpuid(unsigned int op,
618 unsigned int *eax, unsigned int *ebx,
619 unsigned int *ecx, unsigned int *edx)
620{
621 *eax = op;
622 *ecx = 0;
623 __cpuid(eax, ebx, ecx, edx);
624}
625
626/* Some CPUID calls want 'count' to be placed in ecx */
627static inline void cpuid_count(unsigned int op, int count,
628 unsigned int *eax, unsigned int *ebx,
629 unsigned int *ecx, unsigned int *edx)
630{
631 *eax = op;
632 *ecx = count;
633 __cpuid(eax, ebx, ecx, edx);
634}
635
636/*
637 * CPUID functions returning a single datum
638 */
639static inline unsigned int cpuid_eax(unsigned int op)
640{
641 unsigned int eax, ebx, ecx, edx;
642
643 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100644
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100645 return eax;
646}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100647
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100648static inline unsigned int cpuid_ebx(unsigned int op)
649{
650 unsigned int eax, ebx, ecx, edx;
651
652 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100653
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100654 return ebx;
655}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100656
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100657static inline unsigned int cpuid_ecx(unsigned int op)
658{
659 unsigned int eax, ebx, ecx, edx;
660
661 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100662
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100663 return ecx;
664}
Ingo Molnar4d46a892008-02-21 04:24:40 +0100665
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100666static inline unsigned int cpuid_edx(unsigned int op)
667{
668 unsigned int eax, ebx, ecx, edx;
669
670 cpuid(op, &eax, &ebx, &ecx, &edx);
Ingo Molnar4d46a892008-02-21 04:24:40 +0100671
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100672 return edx;
673}
674
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100675/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
676static inline void rep_nop(void)
677{
Ingo Molnar4d46a892008-02-21 04:24:40 +0100678 __asm__ __volatile__("rep; nop" ::: "memory");
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100679}
680
Ingo Molnar4d46a892008-02-21 04:24:40 +0100681static inline void cpu_relax(void)
682{
683 rep_nop();
684}
685
686/* Stop speculative execution: */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100687static inline void sync_core(void)
688{
689 int tmp;
Ingo Molnar4d46a892008-02-21 04:24:40 +0100690
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100691 asm volatile("cpuid" : "=a" (tmp) : "0" (1)
692 : "ebx", "ecx", "edx", "memory");
693}
694
Ingo Molnar4d46a892008-02-21 04:24:40 +0100695static inline void
696__monitor(const void *eax, unsigned long ecx, unsigned long edx)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100697{
Ingo Molnar4d46a892008-02-21 04:24:40 +0100698 /* "monitor %eax, %ecx, %edx;" */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100699 asm volatile(
Ingo Molnar4d46a892008-02-21 04:24:40 +0100700 ".byte 0x0f, 0x01, 0xc8;"
701 :: "a" (eax), "c" (ecx), "d"(edx));
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100702}
703
704static inline void __mwait(unsigned long eax, unsigned long ecx)
705{
Ingo Molnar4d46a892008-02-21 04:24:40 +0100706 /* "mwait %eax, %ecx;" */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100707 asm volatile(
Ingo Molnar4d46a892008-02-21 04:24:40 +0100708 ".byte 0x0f, 0x01, 0xc9;"
709 :: "a" (eax), "c" (ecx));
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100710}
711
712static inline void __sti_mwait(unsigned long eax, unsigned long ecx)
713{
Ingo Molnar4d46a892008-02-21 04:24:40 +0100714 /* "mwait %eax, %ecx;" */
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100715 asm volatile(
Ingo Molnar4d46a892008-02-21 04:24:40 +0100716 "sti; .byte 0x0f, 0x01, 0xc9;"
717 :: "a" (eax), "c" (ecx));
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100718}
719
720extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx);
721
Ingo Molnar4d46a892008-02-21 04:24:40 +0100722extern int force_mwait;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100723
724extern void select_idle_routine(const struct cpuinfo_x86 *c);
725
Ingo Molnar4d46a892008-02-21 04:24:40 +0100726extern unsigned long boot_option_idle_override;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100727
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100728extern void enable_sep_cpu(void);
729extern int sysenter_setup(void);
730
731/* Defined in head.S */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100732extern struct desc_ptr early_gdt_descr;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100733
734extern void cpu_set_gdt(int);
735extern void switch_to_new_gdt(void);
736extern void cpu_init(void);
737extern void init_gdt(int cpu);
738
Ingo Molnar4d46a892008-02-21 04:24:40 +0100739/*
740 * from system description table in BIOS. Mostly for MCA use, but
741 * others may find it useful:
742 */
743extern unsigned int machine_id;
744extern unsigned int machine_submodel_id;
745extern unsigned int BIOS_revision;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100746
Ingo Molnar4d46a892008-02-21 04:24:40 +0100747/* Boot loader type from the setup header: */
748extern int bootloader_type;
Glauber de Oliveira Costa1a539052008-01-30 13:31:39 +0100749
Ingo Molnar4d46a892008-02-21 04:24:40 +0100750extern char ignore_fpu_irq;
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100751
752#define HAVE_ARCH_PICK_MMAP_LAYOUT 1
753#define ARCH_HAS_PREFETCHW
754#define ARCH_HAS_SPINLOCK_PREFETCH
755
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100756#ifdef CONFIG_X86_32
Ingo Molnar4d46a892008-02-21 04:24:40 +0100757# define BASE_PREFETCH ASM_NOP4
758# define ARCH_HAS_PREFETCH
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100759#else
Ingo Molnar4d46a892008-02-21 04:24:40 +0100760# define BASE_PREFETCH "prefetcht0 (%1)"
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100761#endif
762
Ingo Molnar4d46a892008-02-21 04:24:40 +0100763/*
764 * Prefetch instructions for Pentium III (+) and AMD Athlon (+)
765 *
766 * It's not worth to care about 3dnow prefetches for the K6
767 * because they are microcoded there and very slow.
768 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100769static inline void prefetch(const void *x)
770{
771 alternative_input(BASE_PREFETCH,
772 "prefetchnta (%1)",
773 X86_FEATURE_XMM,
774 "r" (x));
775}
776
Ingo Molnar4d46a892008-02-21 04:24:40 +0100777/*
778 * 3dnow prefetch to get an exclusive cache line.
779 * Useful for spinlocks to avoid one state transition in the
780 * cache coherency protocol:
781 */
Glauber de Oliveira Costaae2e15e2008-01-30 13:31:40 +0100782static inline void prefetchw(const void *x)
783{
784 alternative_input(BASE_PREFETCH,
785 "prefetchw (%1)",
786 X86_FEATURE_3DNOW,
787 "r" (x));
788}
789
Ingo Molnar4d46a892008-02-21 04:24:40 +0100790static inline void spin_lock_prefetch(const void *x)
791{
792 prefetchw(x);
793}
794
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100795#ifdef CONFIG_X86_32
796/*
797 * User space process size: 3GB (default).
798 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100799#define TASK_SIZE PAGE_OFFSET
800#define STACK_TOP TASK_SIZE
801#define STACK_TOP_MAX STACK_TOP
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100802
Ingo Molnar4d46a892008-02-21 04:24:40 +0100803#define INIT_THREAD { \
804 .sp0 = sizeof(init_stack) + (long)&init_stack, \
805 .vm86_info = NULL, \
806 .sysenter_cs = __KERNEL_CS, \
807 .io_bitmap_ptr = NULL, \
808 .fs = __KERNEL_PERCPU, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100809}
810
811/*
812 * Note that the .io_bitmap member must be extra-big. This is because
813 * the CPU will access an additional byte beyond the end of the IO
814 * permission bitmap. The extra byte must be all 1 bits, and must
815 * be within the limit.
816 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100817#define INIT_TSS { \
818 .x86_tss = { \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100819 .sp0 = sizeof(init_stack) + (long)&init_stack, \
Ingo Molnar4d46a892008-02-21 04:24:40 +0100820 .ss0 = __KERNEL_DS, \
821 .ss1 = __KERNEL_CS, \
822 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \
823 }, \
824 .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100825}
826
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100827extern unsigned long thread_saved_pc(struct task_struct *tsk);
828
829#define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long))
830#define KSTK_TOP(info) \
831({ \
832 unsigned long *__ptr = (unsigned long *)(info); \
833 (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \
834})
835
836/*
837 * The below -8 is to reserve 8 bytes on top of the ring0 stack.
838 * This is necessary to guarantee that the entire "struct pt_regs"
839 * is accessable even if the CPU haven't stored the SS/ESP registers
840 * on the stack (interrupt gate does not save these registers
841 * when switching to the same priv ring).
842 * Therefore beware: accessing the ss/esp fields of the
843 * "struct pt_regs" is possible, but they may contain the
844 * completely wrong values.
845 */
846#define task_pt_regs(task) \
847({ \
848 struct pt_regs *__regs__; \
849 __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \
850 __regs__ - 1; \
851})
852
Ingo Molnar4d46a892008-02-21 04:24:40 +0100853#define KSTK_ESP(task) (task_pt_regs(task)->sp)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100854
855#else
856/*
857 * User space process size. 47bits minus one guard page.
858 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100859#define TASK_SIZE64 (0x800000000000UL - 4096)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100860
861/* This decides where the kernel will search for a free chunk of vm
862 * space during mmap's.
863 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100864#define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \
865 0xc0000000 : 0xFFFFe000)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100866
Ingo Molnar4d46a892008-02-21 04:24:40 +0100867#define TASK_SIZE (test_thread_flag(TIF_IA32) ? \
868 IA32_PAGE_OFFSET : TASK_SIZE64)
869#define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_IA32)) ? \
870 IA32_PAGE_OFFSET : TASK_SIZE64)
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100871
David Howells922a70d2008-02-08 04:19:26 -0800872#define STACK_TOP TASK_SIZE
873#define STACK_TOP_MAX TASK_SIZE64
874
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100875#define INIT_THREAD { \
876 .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
877}
878
879#define INIT_TSS { \
880 .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \
881}
882
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100883/*
884 * Return saved PC of a blocked thread.
885 * What is this good for? it will be always the scheduler or ret_from_fork.
886 */
Ingo Molnar4d46a892008-02-21 04:24:40 +0100887#define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8))
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100888
Ingo Molnar4d46a892008-02-21 04:24:40 +0100889#define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1)
890#define KSTK_ESP(tsk) -1 /* sorry. doesn't work for syscall. */
Glauber de Oliveira Costa2f66dcc2008-01-30 13:31:57 +0100891#endif /* CONFIG_X86_64 */
892
Ingo Molnar513ad842008-02-21 05:18:40 +0100893extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
894 unsigned long new_sp);
895
Ingo Molnar4d46a892008-02-21 04:24:40 +0100896/*
897 * This decides where the kernel will search for a free chunk of vm
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100898 * space during mmap's.
899 */
900#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
901
Ingo Molnar4d46a892008-02-21 04:24:40 +0100902#define KSTK_EIP(task) (task_pt_regs(task)->ip)
Glauber de Oliveira Costa683e0252008-01-30 13:31:27 +0100903
Glauber de Oliveira Costac758ecf2008-01-30 13:31:03 +0100904#endif