Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 1 | #ifndef __ASM_X86_PROCESSOR_H |
| 2 | #define __ASM_X86_PROCESSOR_H |
| 3 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 4 | #include <asm/processor-flags.h> |
| 5 | |
Ingo Molnar | 58f6f6e | 2008-01-30 13:32:54 +0100 | [diff] [blame] | 6 | /* 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 Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 10 | /* Forward declaration, a strange C thing */ |
| 11 | struct task_struct; |
| 12 | struct mm_struct; |
| 13 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 14 | #include <asm/vm86.h> |
| 15 | #include <asm/math_emu.h> |
| 16 | #include <asm/segment.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 17 | #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 Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 22 | #include <asm/page.h> |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 23 | #include <asm/percpu.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 24 | #include <asm/msr.h> |
| 25 | #include <asm/desc_defs.h> |
Andi Kleen | bd61643 | 2008-01-30 13:32:38 +0100 | [diff] [blame] | 26 | #include <asm/nops.h> |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 27 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 28 | #include <linux/personality.h> |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 29 | #include <linux/cpumask.h> |
| 30 | #include <linux/cache.h> |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 31 | #include <linux/threads.h> |
| 32 | #include <linux/init.h> |
Glauber de Oliveira Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 33 | |
Glauber de Oliveira Costa | 0ccb8ac | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 34 | /* |
| 35 | * Default implementation of macro that returns current |
| 36 | * instruction pointer ("program counter"). |
| 37 | */ |
| 38 | static inline void *current_text_addr(void) |
| 39 | { |
| 40 | void *pc; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 41 | |
| 42 | asm volatile("mov $1f, %0; 1:":"=r" (pc)); |
| 43 | |
Glauber de Oliveira Costa | 0ccb8ac | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 44 | return pc; |
| 45 | } |
| 46 | |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 47 | #ifdef CONFIG_X86_VSMP |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 48 | # define ARCH_MIN_TASKALIGN (1 << INTERNODE_CACHE_SHIFT) |
| 49 | # define ARCH_MIN_MMSTRUCT_ALIGN (1 << INTERNODE_CACHE_SHIFT) |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 50 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 51 | # define ARCH_MIN_TASKALIGN 16 |
| 52 | # define ARCH_MIN_MMSTRUCT_ALIGN 0 |
Glauber de Oliveira Costa | dbcb466 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 53 | #endif |
| 54 | |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 55 | /* |
| 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 | |
| 61 | struct cpuinfo_x86 { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 62 | __u8 x86; /* CPU family */ |
| 63 | __u8 x86_vendor; /* CPU vendor */ |
| 64 | __u8 x86_model; |
| 65 | __u8 x86_mask; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 66 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 67 | 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 Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 77 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 78 | /* 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 Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 86 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 87 | /* 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 Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 97 | #ifdef CONFIG_SMP |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 98 | /* cpus sharing the last level cache: */ |
| 99 | cpumask_t llc_shared_map; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 100 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 101 | /* cpuid returned max cores value: */ |
| 102 | u16 x86_max_cores; |
| 103 | u16 apicid; |
| 104 | u16 x86_clflush_size; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 105 | #ifdef CONFIG_SMP |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 106 | /* 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 Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 114 | #endif |
| 115 | } __attribute__((__aligned__(SMP_CACHE_BYTES))); |
| 116 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 117 | #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 Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 128 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 129 | /* |
| 130 | * capabilities of CPUs |
| 131 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 132 | extern struct cpuinfo_x86 boot_cpu_data; |
| 133 | extern struct cpuinfo_x86 new_cpu_data; |
| 134 | |
| 135 | extern struct tss_struct doublefault_tss; |
| 136 | extern __u32 cleared_cpu_caps[NCAPINTS]; |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 137 | |
| 138 | #ifdef CONFIG_SMP |
| 139 | DECLARE_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 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 147 | #define cache_line_size() (boot_cpu_data.x86_cache_alignment) |
| 148 | |
| 149 | extern void cpu_detect(struct cpuinfo_x86 *c); |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 150 | |
| 151 | extern void identify_cpu(struct cpuinfo_x86 *); |
| 152 | extern void identify_boot_cpu(void); |
| 153 | extern void identify_secondary_cpu(struct cpuinfo_x86 *); |
Glauber de Oliveira Costa | 5300db8 | 2008-01-30 13:31:33 +0100 | [diff] [blame] | 154 | extern void print_cpu_info(struct cpuinfo_x86 *); |
| 155 | extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); |
| 156 | extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); |
| 157 | extern unsigned short num_cache_leaves; |
| 158 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 159 | #if defined(CONFIG_X86_HT) || defined(CONFIG_X86_64) |
| 160 | extern void detect_ht(struct cpuinfo_x86 *c); |
| 161 | #else |
| 162 | static inline void detect_ht(struct cpuinfo_x86 *c) {} |
| 163 | #endif |
| 164 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 165 | static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 166 | unsigned int *ecx, unsigned int *edx) |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 167 | { |
| 168 | /* ecx is often an input as well as an output. */ |
| 169 | __asm__("cpuid" |
| 170 | : "=a" (*eax), |
| 171 | "=b" (*ebx), |
| 172 | "=c" (*ecx), |
| 173 | "=d" (*edx) |
| 174 | : "0" (*eax), "2" (*ecx)); |
| 175 | } |
| 176 | |
Glauber de Oliveira Costa | c72dcf8 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 177 | static inline void load_cr3(pgd_t *pgdir) |
| 178 | { |
| 179 | write_cr3(__pa(pgdir)); |
| 180 | } |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 181 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 182 | #ifdef CONFIG_X86_32 |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 183 | /* This is the TSS defined by the hardware. */ |
| 184 | struct x86_hw_tss { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 185 | unsigned short back_link, __blh; |
| 186 | unsigned long sp0; |
| 187 | unsigned short ss0, __ss0h; |
| 188 | unsigned long sp1; |
| 189 | /* ss1 caches MSR_IA32_SYSENTER_CS: */ |
| 190 | unsigned short ss1, __ss1h; |
| 191 | unsigned long sp2; |
| 192 | unsigned short ss2, __ss2h; |
| 193 | unsigned long __cr3; |
| 194 | unsigned long ip; |
| 195 | unsigned long flags; |
| 196 | unsigned long ax; |
| 197 | unsigned long cx; |
| 198 | unsigned long dx; |
| 199 | unsigned long bx; |
| 200 | unsigned long sp; |
| 201 | unsigned long bp; |
| 202 | unsigned long si; |
| 203 | unsigned long di; |
| 204 | unsigned short es, __esh; |
| 205 | unsigned short cs, __csh; |
| 206 | unsigned short ss, __ssh; |
| 207 | unsigned short ds, __dsh; |
| 208 | unsigned short fs, __fsh; |
| 209 | unsigned short gs, __gsh; |
| 210 | unsigned short ldt, __ldth; |
| 211 | unsigned short trace; |
| 212 | unsigned short io_bitmap_base; |
| 213 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 214 | } __attribute__((packed)); |
| 215 | #else |
| 216 | struct x86_hw_tss { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 217 | u32 reserved1; |
| 218 | u64 sp0; |
| 219 | u64 sp1; |
| 220 | u64 sp2; |
| 221 | u64 reserved2; |
| 222 | u64 ist[7]; |
| 223 | u32 reserved3; |
| 224 | u32 reserved4; |
| 225 | u16 reserved5; |
| 226 | u16 io_bitmap_base; |
| 227 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 228 | } __attribute__((packed)) ____cacheline_aligned; |
| 229 | #endif |
| 230 | |
| 231 | /* |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 232 | * IO-bitmap sizes: |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 233 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 234 | #define IO_BITMAP_BITS 65536 |
| 235 | #define IO_BITMAP_BYTES (IO_BITMAP_BITS/8) |
| 236 | #define IO_BITMAP_LONGS (IO_BITMAP_BYTES/sizeof(long)) |
| 237 | #define IO_BITMAP_OFFSET offsetof(struct tss_struct, io_bitmap) |
| 238 | #define INVALID_IO_BITMAP_OFFSET 0x8000 |
| 239 | #define INVALID_IO_BITMAP_OFFSET_LAZY 0x9000 |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 240 | |
| 241 | struct tss_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 242 | /* |
| 243 | * The hardware state: |
| 244 | */ |
| 245 | struct x86_hw_tss x86_tss; |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 246 | |
| 247 | /* |
| 248 | * The extra 1 is there because the CPU will access an |
| 249 | * additional byte beyond the end of the IO permission |
| 250 | * bitmap. The extra byte must be all 1 bits, and must |
| 251 | * be within the limit. |
| 252 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 253 | unsigned long io_bitmap[IO_BITMAP_LONGS + 1]; |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 254 | /* |
| 255 | * Cache the current maximum and the last task that used the bitmap: |
| 256 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 257 | unsigned long io_bitmap_max; |
| 258 | struct thread_struct *io_bitmap_owner; |
| 259 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 260 | /* |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 261 | * Pad the TSS to be cacheline-aligned (size is 0x100): |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 262 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 263 | unsigned long __cacheline_filler[35]; |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 264 | /* |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 265 | * .. and then another 0x100 bytes for the emergency kernel stack: |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 266 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 267 | unsigned long stack[64]; |
| 268 | |
Glauber de Oliveira Costa | ca241c7 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 269 | } __attribute__((packed)); |
| 270 | |
| 271 | DECLARE_PER_CPU(struct tss_struct, init_tss); |
| 272 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 273 | /* |
| 274 | * Save the original ist values for checking stack pointers during debugging |
| 275 | */ |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 276 | struct orig_ist { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 277 | unsigned long ist[7]; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 278 | }; |
| 279 | |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 280 | #define MXCSR_DEFAULT 0x1f80 |
| 281 | |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 282 | struct i387_fsave_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 283 | u32 cwd; |
| 284 | u32 swd; |
| 285 | u32 twd; |
| 286 | u32 fip; |
| 287 | u32 fcs; |
| 288 | u32 foo; |
| 289 | u32 fos; |
| 290 | /* 8*10 bytes for each FP-reg = 80 bytes: */ |
| 291 | u32 st_space[20]; |
| 292 | /* Software status information: */ |
| 293 | u32 status; |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 294 | }; |
| 295 | |
| 296 | struct i387_fxsave_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 297 | u16 cwd; |
| 298 | u16 swd; |
| 299 | u16 twd; |
| 300 | u16 fop; |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 301 | union { |
| 302 | struct { |
| 303 | u64 rip; |
| 304 | u64 rdp; |
| 305 | }; |
| 306 | struct { |
| 307 | u32 fip; |
| 308 | u32 fcs; |
| 309 | u32 foo; |
| 310 | u32 fos; |
| 311 | }; |
| 312 | }; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 313 | u32 mxcsr; |
| 314 | u32 mxcsr_mask; |
| 315 | /* 8*16 bytes for each FP-reg = 128 bytes: */ |
| 316 | u32 st_space[32]; |
| 317 | /* 16*16 bytes for each XMM-reg = 256 bytes: */ |
| 318 | u32 xmm_space[64]; |
| 319 | u32 padding[24]; |
| 320 | |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 321 | } __attribute__((aligned(16))); |
| 322 | |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 323 | struct i387_soft_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 324 | u32 cwd; |
| 325 | u32 swd; |
| 326 | u32 twd; |
| 327 | u32 fip; |
| 328 | u32 fcs; |
| 329 | u32 foo; |
| 330 | u32 fos; |
| 331 | /* 8*10 bytes for each FP-reg = 80 bytes: */ |
| 332 | u32 st_space[20]; |
| 333 | u8 ftop; |
| 334 | u8 changed; |
| 335 | u8 lookahead; |
| 336 | u8 no_update; |
| 337 | u8 rm; |
| 338 | u8 alimit; |
| 339 | struct info *info; |
| 340 | u32 entry_eip; |
Glauber de Oliveira Costa | 46265df | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 341 | }; |
| 342 | |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 343 | union i387_union { |
| 344 | struct i387_fsave_struct fsave; |
| 345 | struct i387_fxsave_struct fxsave; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 346 | struct i387_soft_struct soft; |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 347 | }; |
| 348 | |
| 349 | #ifdef CONFIG_X86_32 |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 350 | DECLARE_PER_CPU(u8, cpu_llc_id); |
Roland McGrath | 99f8ecd | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 351 | #else |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 352 | DECLARE_PER_CPU(struct orig_ist, orig_ist); |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 353 | #endif |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 354 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 355 | extern void print_cpu_info(struct cpuinfo_x86 *); |
| 356 | extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); |
| 357 | extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); |
| 358 | extern unsigned short num_cache_leaves; |
| 359 | |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 360 | struct thread_struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 361 | /* Cached TLS descriptors: */ |
| 362 | struct desc_struct tls_array[GDT_ENTRY_TLS_ENTRIES]; |
| 363 | unsigned long sp0; |
| 364 | unsigned long sp; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 365 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 366 | unsigned long sysenter_cs; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 367 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 368 | unsigned long usersp; /* Copy from PDA */ |
| 369 | unsigned short es; |
| 370 | unsigned short ds; |
| 371 | unsigned short fsindex; |
| 372 | unsigned short gsindex; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 373 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 374 | unsigned long ip; |
| 375 | unsigned long fs; |
| 376 | unsigned long gs; |
| 377 | /* Hardware debugging registers: */ |
| 378 | unsigned long debugreg0; |
| 379 | unsigned long debugreg1; |
| 380 | unsigned long debugreg2; |
| 381 | unsigned long debugreg3; |
| 382 | unsigned long debugreg6; |
| 383 | unsigned long debugreg7; |
| 384 | /* Fault info: */ |
| 385 | unsigned long cr2; |
| 386 | unsigned long trap_no; |
| 387 | unsigned long error_code; |
| 388 | /* Floating point info: */ |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 389 | union i387_union i387 __attribute__((aligned(16)));; |
| 390 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 391 | /* Virtual 86 mode info */ |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 392 | struct vm86_struct __user *vm86_info; |
| 393 | unsigned long screen_bitmap; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 394 | unsigned long v86flags; |
| 395 | unsigned long v86mask; |
| 396 | unsigned long saved_sp0; |
| 397 | unsigned int saved_fs; |
| 398 | unsigned int saved_gs; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 399 | #endif |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 400 | /* IO permissions: */ |
| 401 | unsigned long *io_bitmap_ptr; |
| 402 | unsigned long iopl; |
| 403 | /* Max allowed port in the bitmap, in bytes: */ |
| 404 | unsigned io_bitmap_max; |
Glauber de Oliveira Costa | cb38d37 | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 405 | /* MSR_IA32_DEBUGCTLMSR value to switch in if TIF_DEBUGCTLMSR is set. */ |
| 406 | unsigned long debugctlmsr; |
| 407 | /* Debug Store - if not 0 points to a DS Save Area configuration; |
| 408 | * goes into MSR_IA32_DS_AREA */ |
| 409 | unsigned long ds_area_msr; |
| 410 | }; |
| 411 | |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 412 | static inline unsigned long native_get_debugreg(int regno) |
| 413 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 414 | unsigned long val = 0; /* Damn you, gcc! */ |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 415 | |
| 416 | switch (regno) { |
| 417 | case 0: |
| 418 | asm("mov %%db0, %0" :"=r" (val)); break; |
| 419 | case 1: |
| 420 | asm("mov %%db1, %0" :"=r" (val)); break; |
| 421 | case 2: |
| 422 | asm("mov %%db2, %0" :"=r" (val)); break; |
| 423 | case 3: |
| 424 | asm("mov %%db3, %0" :"=r" (val)); break; |
| 425 | case 6: |
| 426 | asm("mov %%db6, %0" :"=r" (val)); break; |
| 427 | case 7: |
| 428 | asm("mov %%db7, %0" :"=r" (val)); break; |
| 429 | default: |
| 430 | BUG(); |
| 431 | } |
| 432 | return val; |
| 433 | } |
| 434 | |
| 435 | static inline void native_set_debugreg(int regno, unsigned long value) |
| 436 | { |
| 437 | switch (regno) { |
| 438 | case 0: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 439 | asm("mov %0, %%db0" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 440 | break; |
| 441 | case 1: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 442 | asm("mov %0, %%db1" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 443 | break; |
| 444 | case 2: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 445 | asm("mov %0, %%db2" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 446 | break; |
| 447 | case 3: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 448 | asm("mov %0, %%db3" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 449 | break; |
| 450 | case 6: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 451 | asm("mov %0, %%db6" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 452 | break; |
| 453 | case 7: |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 454 | asm("mov %0, %%db7" ::"r" (value)); |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 455 | break; |
| 456 | default: |
| 457 | BUG(); |
| 458 | } |
| 459 | } |
| 460 | |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 461 | /* |
| 462 | * Set IOPL bits in EFLAGS from given mask |
| 463 | */ |
| 464 | static inline void native_set_iopl_mask(unsigned mask) |
| 465 | { |
| 466 | #ifdef CONFIG_X86_32 |
| 467 | unsigned int reg; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 468 | |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 469 | __asm__ __volatile__ ("pushfl;" |
| 470 | "popl %0;" |
| 471 | "andl %1, %0;" |
| 472 | "orl %2, %0;" |
| 473 | "pushl %0;" |
| 474 | "popfl" |
| 475 | : "=&r" (reg) |
| 476 | : "i" (~X86_EFLAGS_IOPL), "r" (mask)); |
| 477 | #endif |
| 478 | } |
| 479 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 480 | static inline void |
| 481 | native_load_sp0(struct tss_struct *tss, struct thread_struct *thread) |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 482 | { |
| 483 | tss->x86_tss.sp0 = thread->sp0; |
| 484 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 485 | /* Only happens when SEP is enabled, no need to test "SEP"arately: */ |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 486 | if (unlikely(tss->x86_tss.ss1 != thread->sysenter_cs)) { |
| 487 | tss->x86_tss.ss1 = thread->sysenter_cs; |
| 488 | wrmsr(MSR_IA32_SYSENTER_CS, thread->sysenter_cs, 0); |
| 489 | } |
| 490 | #endif |
| 491 | } |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 492 | |
Glauber de Oliveira Costa | e801f86 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 493 | static inline void native_swapgs(void) |
| 494 | { |
| 495 | #ifdef CONFIG_X86_64 |
| 496 | asm volatile("swapgs" ::: "memory"); |
| 497 | #endif |
| 498 | } |
| 499 | |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 500 | #ifdef CONFIG_PARAVIRT |
| 501 | #include <asm/paravirt.h> |
| 502 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 503 | #define __cpuid native_cpuid |
| 504 | #define paravirt_enabled() 0 |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 505 | |
| 506 | /* |
| 507 | * These special macros can be used to get or set a debugging register |
| 508 | */ |
| 509 | #define get_debugreg(var, register) \ |
| 510 | (var) = native_get_debugreg(register) |
| 511 | #define set_debugreg(value, register) \ |
| 512 | native_set_debugreg(register, value) |
| 513 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 514 | static inline void |
| 515 | load_sp0(struct tss_struct *tss, struct thread_struct *thread) |
Glauber de Oliveira Costa | 7818a1e | 2008-01-30 13:31:31 +0100 | [diff] [blame] | 516 | { |
| 517 | native_load_sp0(tss, thread); |
| 518 | } |
| 519 | |
Glauber de Oliveira Costa | 62d7d7e | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 520 | #define set_iopl_mask native_set_iopl_mask |
Glauber de Oliveira Costa | e801f86 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 521 | #define SWAPGS swapgs |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 522 | #endif /* CONFIG_PARAVIRT */ |
| 523 | |
| 524 | /* |
| 525 | * Save the cr4 feature set we're using (ie |
| 526 | * Pentium 4MB enable and PPro Global page |
| 527 | * enable), so that any CPU's that boot up |
| 528 | * after us can get the correct flags. |
| 529 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 530 | extern unsigned long mmu_cr4_features; |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 531 | |
| 532 | static inline void set_in_cr4(unsigned long mask) |
| 533 | { |
| 534 | unsigned cr4; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 535 | |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 536 | mmu_cr4_features |= mask; |
| 537 | cr4 = read_cr4(); |
| 538 | cr4 |= mask; |
| 539 | write_cr4(cr4); |
| 540 | } |
| 541 | |
| 542 | static inline void clear_in_cr4(unsigned long mask) |
| 543 | { |
| 544 | unsigned cr4; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 545 | |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 546 | mmu_cr4_features &= ~mask; |
| 547 | cr4 = read_cr4(); |
| 548 | cr4 &= ~mask; |
| 549 | write_cr4(cr4); |
| 550 | } |
| 551 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 552 | struct microcode_header { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 553 | unsigned int hdrver; |
| 554 | unsigned int rev; |
| 555 | unsigned int date; |
| 556 | unsigned int sig; |
| 557 | unsigned int cksum; |
| 558 | unsigned int ldrver; |
| 559 | unsigned int pf; |
| 560 | unsigned int datasize; |
| 561 | unsigned int totalsize; |
| 562 | unsigned int reserved[3]; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 563 | }; |
Glauber de Oliveira Costa | 1b46cbe | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 564 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 565 | struct microcode { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 566 | struct microcode_header hdr; |
| 567 | unsigned int bits[0]; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 568 | }; |
| 569 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 570 | typedef struct microcode microcode_t; |
| 571 | typedef struct microcode_header microcode_header_t; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 572 | |
| 573 | /* microcode format is extended from prescott processors */ |
| 574 | struct extended_signature { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 575 | unsigned int sig; |
| 576 | unsigned int pf; |
| 577 | unsigned int cksum; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 578 | }; |
| 579 | |
| 580 | struct extended_sigtable { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 581 | unsigned int count; |
| 582 | unsigned int cksum; |
| 583 | unsigned int reserved[3]; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 584 | struct extended_signature sigs[0]; |
| 585 | }; |
| 586 | |
Glauber de Oliveira Costa | fc87e90 | 2008-01-30 13:31:38 +0100 | [diff] [blame] | 587 | typedef struct { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 588 | unsigned long seg; |
Glauber de Oliveira Costa | fc87e90 | 2008-01-30 13:31:38 +0100 | [diff] [blame] | 589 | } mm_segment_t; |
| 590 | |
| 591 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 592 | /* |
| 593 | * create a kernel thread without removing it from tasklists |
| 594 | */ |
| 595 | extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); |
| 596 | |
| 597 | /* Free all resources held by a thread. */ |
| 598 | extern void release_thread(struct task_struct *); |
| 599 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 600 | /* Prepare to copy thread state - unlazy all lazy state */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 601 | extern void prepare_to_copy(struct task_struct *tsk); |
| 602 | |
| 603 | unsigned long get_wchan(struct task_struct *p); |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 604 | |
| 605 | /* |
| 606 | * Generic CPUID function |
| 607 | * clear %ecx since some cpus (Cyrix MII) do not set or clear %ecx |
| 608 | * resulting in stale register contents being returned. |
| 609 | */ |
| 610 | static inline void cpuid(unsigned int op, |
| 611 | unsigned int *eax, unsigned int *ebx, |
| 612 | unsigned int *ecx, unsigned int *edx) |
| 613 | { |
| 614 | *eax = op; |
| 615 | *ecx = 0; |
| 616 | __cpuid(eax, ebx, ecx, edx); |
| 617 | } |
| 618 | |
| 619 | /* Some CPUID calls want 'count' to be placed in ecx */ |
| 620 | static inline void cpuid_count(unsigned int op, int count, |
| 621 | unsigned int *eax, unsigned int *ebx, |
| 622 | unsigned int *ecx, unsigned int *edx) |
| 623 | { |
| 624 | *eax = op; |
| 625 | *ecx = count; |
| 626 | __cpuid(eax, ebx, ecx, edx); |
| 627 | } |
| 628 | |
| 629 | /* |
| 630 | * CPUID functions returning a single datum |
| 631 | */ |
| 632 | static inline unsigned int cpuid_eax(unsigned int op) |
| 633 | { |
| 634 | unsigned int eax, ebx, ecx, edx; |
| 635 | |
| 636 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 637 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 638 | return eax; |
| 639 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 640 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 641 | static inline unsigned int cpuid_ebx(unsigned int op) |
| 642 | { |
| 643 | unsigned int eax, ebx, ecx, edx; |
| 644 | |
| 645 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 646 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 647 | return ebx; |
| 648 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 649 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 650 | static inline unsigned int cpuid_ecx(unsigned int op) |
| 651 | { |
| 652 | unsigned int eax, ebx, ecx, edx; |
| 653 | |
| 654 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 655 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 656 | return ecx; |
| 657 | } |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 658 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 659 | static inline unsigned int cpuid_edx(unsigned int op) |
| 660 | { |
| 661 | unsigned int eax, ebx, ecx, edx; |
| 662 | |
| 663 | cpuid(op, &eax, &ebx, &ecx, &edx); |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 664 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 665 | return edx; |
| 666 | } |
| 667 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 668 | /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */ |
| 669 | static inline void rep_nop(void) |
| 670 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 671 | __asm__ __volatile__("rep; nop" ::: "memory"); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 672 | } |
| 673 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 674 | static inline void cpu_relax(void) |
| 675 | { |
| 676 | rep_nop(); |
| 677 | } |
| 678 | |
| 679 | /* Stop speculative execution: */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 680 | static inline void sync_core(void) |
| 681 | { |
| 682 | int tmp; |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 683 | |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 684 | asm volatile("cpuid" : "=a" (tmp) : "0" (1) |
| 685 | : "ebx", "ecx", "edx", "memory"); |
| 686 | } |
| 687 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 688 | static inline void |
| 689 | __monitor(const void *eax, unsigned long ecx, unsigned long edx) |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 690 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 691 | /* "monitor %eax, %ecx, %edx;" */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 692 | asm volatile( |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 693 | ".byte 0x0f, 0x01, 0xc8;" |
| 694 | :: "a" (eax), "c" (ecx), "d"(edx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | static inline void __mwait(unsigned long eax, unsigned long ecx) |
| 698 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 699 | /* "mwait %eax, %ecx;" */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 700 | asm volatile( |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 701 | ".byte 0x0f, 0x01, 0xc9;" |
| 702 | :: "a" (eax), "c" (ecx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | static inline void __sti_mwait(unsigned long eax, unsigned long ecx) |
| 706 | { |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 707 | /* "mwait %eax, %ecx;" */ |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 708 | asm volatile( |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 709 | "sti; .byte 0x0f, 0x01, 0xc9;" |
| 710 | :: "a" (eax), "c" (ecx)); |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | extern void mwait_idle_with_hints(unsigned long eax, unsigned long ecx); |
| 714 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 715 | extern int force_mwait; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 716 | |
| 717 | extern void select_idle_routine(const struct cpuinfo_x86 *c); |
| 718 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 719 | extern unsigned long boot_option_idle_override; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 720 | |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 721 | extern void enable_sep_cpu(void); |
| 722 | extern int sysenter_setup(void); |
| 723 | |
| 724 | /* Defined in head.S */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 725 | extern struct desc_ptr early_gdt_descr; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 726 | |
| 727 | extern void cpu_set_gdt(int); |
| 728 | extern void switch_to_new_gdt(void); |
| 729 | extern void cpu_init(void); |
| 730 | extern void init_gdt(int cpu); |
| 731 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 732 | /* |
| 733 | * from system description table in BIOS. Mostly for MCA use, but |
| 734 | * others may find it useful: |
| 735 | */ |
| 736 | extern unsigned int machine_id; |
| 737 | extern unsigned int machine_submodel_id; |
| 738 | extern unsigned int BIOS_revision; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 739 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 740 | /* Boot loader type from the setup header: */ |
| 741 | extern int bootloader_type; |
Glauber de Oliveira Costa | 1a53905 | 2008-01-30 13:31:39 +0100 | [diff] [blame] | 742 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 743 | extern char ignore_fpu_irq; |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 744 | |
| 745 | #define HAVE_ARCH_PICK_MMAP_LAYOUT 1 |
| 746 | #define ARCH_HAS_PREFETCHW |
| 747 | #define ARCH_HAS_SPINLOCK_PREFETCH |
| 748 | |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 749 | #ifdef CONFIG_X86_32 |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 750 | # define BASE_PREFETCH ASM_NOP4 |
| 751 | # define ARCH_HAS_PREFETCH |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 752 | #else |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 753 | # define BASE_PREFETCH "prefetcht0 (%1)" |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 754 | #endif |
| 755 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 756 | /* |
| 757 | * Prefetch instructions for Pentium III (+) and AMD Athlon (+) |
| 758 | * |
| 759 | * It's not worth to care about 3dnow prefetches for the K6 |
| 760 | * because they are microcoded there and very slow. |
| 761 | */ |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 762 | static inline void prefetch(const void *x) |
| 763 | { |
| 764 | alternative_input(BASE_PREFETCH, |
| 765 | "prefetchnta (%1)", |
| 766 | X86_FEATURE_XMM, |
| 767 | "r" (x)); |
| 768 | } |
| 769 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 770 | /* |
| 771 | * 3dnow prefetch to get an exclusive cache line. |
| 772 | * Useful for spinlocks to avoid one state transition in the |
| 773 | * cache coherency protocol: |
| 774 | */ |
Glauber de Oliveira Costa | ae2e15e | 2008-01-30 13:31:40 +0100 | [diff] [blame] | 775 | static inline void prefetchw(const void *x) |
| 776 | { |
| 777 | alternative_input(BASE_PREFETCH, |
| 778 | "prefetchw (%1)", |
| 779 | X86_FEATURE_3DNOW, |
| 780 | "r" (x)); |
| 781 | } |
| 782 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 783 | static inline void spin_lock_prefetch(const void *x) |
| 784 | { |
| 785 | prefetchw(x); |
| 786 | } |
| 787 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 788 | #ifdef CONFIG_X86_32 |
| 789 | /* |
| 790 | * User space process size: 3GB (default). |
| 791 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 792 | #define TASK_SIZE PAGE_OFFSET |
| 793 | #define STACK_TOP TASK_SIZE |
| 794 | #define STACK_TOP_MAX STACK_TOP |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 795 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 796 | #define INIT_THREAD { \ |
| 797 | .sp0 = sizeof(init_stack) + (long)&init_stack, \ |
| 798 | .vm86_info = NULL, \ |
| 799 | .sysenter_cs = __KERNEL_CS, \ |
| 800 | .io_bitmap_ptr = NULL, \ |
| 801 | .fs = __KERNEL_PERCPU, \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /* |
| 805 | * Note that the .io_bitmap member must be extra-big. This is because |
| 806 | * the CPU will access an additional byte beyond the end of the IO |
| 807 | * permission bitmap. The extra byte must be all 1 bits, and must |
| 808 | * be within the limit. |
| 809 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 810 | #define INIT_TSS { \ |
| 811 | .x86_tss = { \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 812 | .sp0 = sizeof(init_stack) + (long)&init_stack, \ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 813 | .ss0 = __KERNEL_DS, \ |
| 814 | .ss1 = __KERNEL_CS, \ |
| 815 | .io_bitmap_base = INVALID_IO_BITMAP_OFFSET, \ |
| 816 | }, \ |
| 817 | .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 }, \ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 818 | } |
| 819 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 820 | extern unsigned long thread_saved_pc(struct task_struct *tsk); |
| 821 | |
| 822 | #define THREAD_SIZE_LONGS (THREAD_SIZE/sizeof(unsigned long)) |
| 823 | #define KSTK_TOP(info) \ |
| 824 | ({ \ |
| 825 | unsigned long *__ptr = (unsigned long *)(info); \ |
| 826 | (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); \ |
| 827 | }) |
| 828 | |
| 829 | /* |
| 830 | * The below -8 is to reserve 8 bytes on top of the ring0 stack. |
| 831 | * This is necessary to guarantee that the entire "struct pt_regs" |
| 832 | * is accessable even if the CPU haven't stored the SS/ESP registers |
| 833 | * on the stack (interrupt gate does not save these registers |
| 834 | * when switching to the same priv ring). |
| 835 | * Therefore beware: accessing the ss/esp fields of the |
| 836 | * "struct pt_regs" is possible, but they may contain the |
| 837 | * completely wrong values. |
| 838 | */ |
| 839 | #define task_pt_regs(task) \ |
| 840 | ({ \ |
| 841 | struct pt_regs *__regs__; \ |
| 842 | __regs__ = (struct pt_regs *)(KSTK_TOP(task_stack_page(task))-8); \ |
| 843 | __regs__ - 1; \ |
| 844 | }) |
| 845 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 846 | #define KSTK_ESP(task) (task_pt_regs(task)->sp) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 847 | |
| 848 | #else |
| 849 | /* |
| 850 | * User space process size. 47bits minus one guard page. |
| 851 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 852 | #define TASK_SIZE64 (0x800000000000UL - 4096) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 853 | |
| 854 | /* This decides where the kernel will search for a free chunk of vm |
| 855 | * space during mmap's. |
| 856 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 857 | #define IA32_PAGE_OFFSET ((current->personality & ADDR_LIMIT_3GB) ? \ |
| 858 | 0xc0000000 : 0xFFFFe000) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 859 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 860 | #define TASK_SIZE (test_thread_flag(TIF_IA32) ? \ |
| 861 | IA32_PAGE_OFFSET : TASK_SIZE64) |
| 862 | #define TASK_SIZE_OF(child) ((test_tsk_thread_flag(child, TIF_IA32)) ? \ |
| 863 | IA32_PAGE_OFFSET : TASK_SIZE64) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 864 | |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 865 | #define STACK_TOP TASK_SIZE |
| 866 | #define STACK_TOP_MAX TASK_SIZE64 |
| 867 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 868 | #define INIT_THREAD { \ |
| 869 | .sp0 = (unsigned long)&init_stack + sizeof(init_stack) \ |
| 870 | } |
| 871 | |
| 872 | #define INIT_TSS { \ |
| 873 | .x86_tss.sp0 = (unsigned long)&init_stack + sizeof(init_stack) \ |
| 874 | } |
| 875 | |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 876 | /* |
| 877 | * Return saved PC of a blocked thread. |
| 878 | * What is this good for? it will be always the scheduler or ret_from_fork. |
| 879 | */ |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 880 | #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8)) |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 881 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 882 | #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1) |
| 883 | #define KSTK_ESP(tsk) -1 /* sorry. doesn't work for syscall. */ |
Glauber de Oliveira Costa | 2f66dcc | 2008-01-30 13:31:57 +0100 | [diff] [blame] | 884 | #endif /* CONFIG_X86_64 */ |
| 885 | |
Ingo Molnar | 513ad84 | 2008-02-21 05:18:40 +0100 | [diff] [blame] | 886 | extern void start_thread(struct pt_regs *regs, unsigned long new_ip, |
| 887 | unsigned long new_sp); |
| 888 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 889 | /* |
| 890 | * This decides where the kernel will search for a free chunk of vm |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 891 | * space during mmap's. |
| 892 | */ |
| 893 | #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3)) |
| 894 | |
Ingo Molnar | 4d46a89 | 2008-02-21 04:24:40 +0100 | [diff] [blame] | 895 | #define KSTK_EIP(task) (task_pt_regs(task)->ip) |
Glauber de Oliveira Costa | 683e025 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 896 | |
Glauber de Oliveira Costa | c758ecf | 2008-01-30 13:31:03 +0100 | [diff] [blame] | 897 | #endif |