Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/init.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 2 | #include <linux/kernel.h> |
| 3 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/string.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 5 | #include <linux/bootmem.h> |
| 6 | #include <linux/bitops.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/kgdb.h> |
| 9 | #include <linux/topology.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/delay.h> |
| 11 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <asm/i387.h> |
| 14 | #include <asm/msr.h> |
| 15 | #include <asm/io.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 16 | #include <asm/linkage.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/mmu_context.h> |
Alexey Dobriyan | 27b07da | 2006-06-23 02:04:18 -0700 | [diff] [blame] | 18 | #include <asm/mtrr.h> |
Alexey Dobriyan | a03a3e2 | 2006-06-23 02:04:20 -0700 | [diff] [blame] | 19 | #include <asm/mce.h> |
Thomas Gleixner | 8d4a430 | 2008-05-08 09:18:43 +0200 | [diff] [blame] | 20 | #include <asm/pat.h> |
H. Peter Anvin | b6734c3 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 21 | #include <asm/asm.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 22 | #include <asm/numa.h> |
Ingo Molnar | b342797 | 2008-10-31 09:31:38 +0100 | [diff] [blame] | 23 | #include <asm/smp.h> |
Jaswinder Singh Rajput | f472cdb | 2009-01-07 21:34:25 +0530 | [diff] [blame] | 24 | #include <asm/cpu.h> |
Jaswinder Singh Rajput | 0687903 | 2009-01-10 12:17:37 +0530 | [diff] [blame] | 25 | #include <asm/cpumask.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #ifdef CONFIG_X86_LOCAL_APIC |
| 27 | #include <asm/mpspec.h> |
| 28 | #include <asm/apic.h> |
| 29 | #include <mach_apic.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 30 | #include <asm/genapic.h> |
Tejun Heo | bdbcdd4 | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 31 | #include <asm/uv/uv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #endif |
| 33 | |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 34 | #include <asm/pgtable.h> |
| 35 | #include <asm/processor.h> |
| 36 | #include <asm/desc.h> |
| 37 | #include <asm/atomic.h> |
| 38 | #include <asm/proto.h> |
| 39 | #include <asm/sections.h> |
| 40 | #include <asm/setup.h> |
Alok Kataria | 88b094f | 2008-10-27 10:41:46 -0700 | [diff] [blame] | 41 | #include <asm/hypervisor.h> |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 42 | #include <asm/stackprotector.h> |
Yinghai Lu | f0fc4af | 2008-09-04 20:09:00 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include "cpu.h" |
| 45 | |
Mike Travis | c2d1cec | 2009-01-04 05:18:03 -0800 | [diff] [blame] | 46 | #ifdef CONFIG_X86_64 |
| 47 | |
| 48 | /* all of these masks are initialized in setup_cpu_local_masks() */ |
| 49 | cpumask_var_t cpu_callin_mask; |
| 50 | cpumask_var_t cpu_callout_mask; |
| 51 | cpumask_var_t cpu_initialized_mask; |
| 52 | |
| 53 | /* representing cpus for which sibling maps can be computed */ |
| 54 | cpumask_var_t cpu_sibling_setup_mask; |
| 55 | |
Brian Gerst | 2f2f52b | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 56 | /* correctly size the local cpu masks */ |
Ingo Molnar | 4369f1f | 2009-01-27 12:03:24 +0100 | [diff] [blame] | 57 | void __init setup_cpu_local_masks(void) |
Brian Gerst | 2f2f52b | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 58 | { |
| 59 | alloc_bootmem_cpumask_var(&cpu_initialized_mask); |
| 60 | alloc_bootmem_cpumask_var(&cpu_callin_mask); |
| 61 | alloc_bootmem_cpumask_var(&cpu_callout_mask); |
| 62 | alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask); |
| 63 | } |
| 64 | |
Mike Travis | c2d1cec | 2009-01-04 05:18:03 -0800 | [diff] [blame] | 65 | #else /* CONFIG_X86_32 */ |
| 66 | |
| 67 | cpumask_t cpu_callin_map; |
| 68 | cpumask_t cpu_callout_map; |
| 69 | cpumask_t cpu_initialized; |
| 70 | cpumask_t cpu_sibling_setup_map; |
| 71 | |
| 72 | #endif /* CONFIG_X86_32 */ |
| 73 | |
| 74 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 75 | static struct cpu_dev *this_cpu __cpuinitdata; |
| 76 | |
Brian Gerst | 06deef8 | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 77 | DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = { |
Yinghai Lu | 950ad7f | 2008-09-04 20:09:01 -0700 | [diff] [blame] | 78 | #ifdef CONFIG_X86_64 |
Brian Gerst | 06deef8 | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 79 | /* |
| 80 | * We need valid kernel segments for data and code in long mode too |
| 81 | * IRET will check the segment types kkeil 2000/10/28 |
| 82 | * Also sysret mandates a special GDT layout |
| 83 | * |
| 84 | * The TLS descriptors are currently at a different place compared to i386. |
| 85 | * Hopefully nobody expects them at a fixed place (Wine?) |
| 86 | */ |
Yinghai Lu | 950ad7f | 2008-09-04 20:09:01 -0700 | [diff] [blame] | 87 | [GDT_ENTRY_KERNEL32_CS] = { { { 0x0000ffff, 0x00cf9b00 } } }, |
| 88 | [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00af9b00 } } }, |
| 89 | [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9300 } } }, |
| 90 | [GDT_ENTRY_DEFAULT_USER32_CS] = { { { 0x0000ffff, 0x00cffb00 } } }, |
| 91 | [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff300 } } }, |
| 92 | [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00affb00 } } }, |
Yinghai Lu | 950ad7f | 2008-09-04 20:09:01 -0700 | [diff] [blame] | 93 | #else |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 94 | [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } }, |
| 95 | [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } }, |
| 96 | [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } }, |
| 97 | [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 98 | /* |
| 99 | * Segments used for calling PnP BIOS have byte granularity. |
| 100 | * They code segments and data segments have fixed 64k limits, |
| 101 | * the transfer segment sizes are set at run time. |
| 102 | */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 103 | /* 32-bit code */ |
| 104 | [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } }, |
| 105 | /* 16-bit code */ |
| 106 | [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } }, |
| 107 | /* 16-bit data */ |
| 108 | [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } }, |
| 109 | /* 16-bit data */ |
| 110 | [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } }, |
| 111 | /* 16-bit data */ |
| 112 | [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 113 | /* |
| 114 | * The APM segments have byte granularity and their bases |
| 115 | * are set at run time. All have 64k limits. |
| 116 | */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 117 | /* 32-bit code */ |
| 118 | [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 119 | /* 16-bit code */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 120 | [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } }, |
| 121 | /* data */ |
| 122 | [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 123 | |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 124 | [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } }, |
Brian Gerst | 0dd76d7 | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 125 | [GDT_ENTRY_PERCPU] = { { { 0x0000ffff, 0x00cf9200 } } }, |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 126 | GDT_STACK_CANARY_INIT |
Yinghai Lu | 950ad7f | 2008-09-04 20:09:01 -0700 | [diff] [blame] | 127 | #endif |
Brian Gerst | 06deef8 | 2009-01-21 17:26:05 +0900 | [diff] [blame] | 128 | } }; |
Jeremy Fitzhardinge | 7a61d35 | 2007-05-02 19:27:15 +0200 | [diff] [blame] | 129 | EXPORT_PER_CPU_SYMBOL_GPL(gdt_page); |
Rusty Russell | ae1ee11 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 130 | |
Yinghai Lu | ba51dce | 2008-09-04 20:09:02 -0700 | [diff] [blame] | 131 | #ifdef CONFIG_X86_32 |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 132 | static int cachesize_override __cpuinitdata = -1; |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 133 | static int disable_x86_serial_nr __cpuinitdata = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | static int __init cachesize_setup(char *str) |
| 136 | { |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 137 | get_option(&str, &cachesize_override); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | return 1; |
| 139 | } |
| 140 | __setup("cachesize=", cachesize_setup); |
| 141 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 142 | static int __init x86_fxsr_setup(char *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Andi Kleen | 1353025 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 144 | setup_clear_cpu_cap(X86_FEATURE_FXSR); |
| 145 | setup_clear_cpu_cap(X86_FEATURE_XMM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return 1; |
| 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | __setup("nofxsr", x86_fxsr_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 150 | static int __init x86_sep_setup(char *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
Andi Kleen | 1353025 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 152 | setup_clear_cpu_cap(X86_FEATURE_SEP); |
Chuck Ebbert | 4f88651 | 2006-03-23 02:59:34 -0800 | [diff] [blame] | 153 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
Chuck Ebbert | 4f88651 | 2006-03-23 02:59:34 -0800 | [diff] [blame] | 155 | __setup("nosep", x86_sep_setup); |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* Standard macro to see if a specific flag is changeable */ |
| 158 | static inline int flag_is_changeable_p(u32 flag) |
| 159 | { |
| 160 | u32 f1, f2; |
| 161 | |
Krzysztof Helt | 94f6bac | 2008-09-30 23:17:51 +0200 | [diff] [blame] | 162 | /* |
| 163 | * Cyrix and IDT cpus allow disabling of CPUID |
| 164 | * so the code below may return different results |
| 165 | * when it is executed before and after enabling |
| 166 | * the CPUID. Add "volatile" to not allow gcc to |
| 167 | * optimize the subsequent calls to this function. |
| 168 | */ |
| 169 | asm volatile ("pushfl\n\t" |
| 170 | "pushfl\n\t" |
| 171 | "popl %0\n\t" |
| 172 | "movl %0,%1\n\t" |
| 173 | "xorl %2,%0\n\t" |
| 174 | "pushl %0\n\t" |
| 175 | "popfl\n\t" |
| 176 | "pushfl\n\t" |
| 177 | "popl %0\n\t" |
| 178 | "popfl\n\t" |
| 179 | : "=&r" (f1), "=&r" (f2) |
| 180 | : "ir" (flag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | return ((f1^f2) & flag) != 0; |
| 183 | } |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | /* Probe for the CPUID instruction */ |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 186 | static int __cpuinit have_cpuid_p(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 188 | return flag_is_changeable_p(X86_EFLAGS_ID); |
| 189 | } |
| 190 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 191 | static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c) |
| 192 | { |
| 193 | if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr) { |
| 194 | /* Disable processor serial number */ |
| 195 | unsigned long lo, hi; |
| 196 | rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi); |
| 197 | lo |= 0x200000; |
| 198 | wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi); |
| 199 | printk(KERN_NOTICE "CPU serial number disabled.\n"); |
| 200 | clear_cpu_cap(c, X86_FEATURE_PN); |
| 201 | |
| 202 | /* Disabling the serial number may affect the cpuid level */ |
| 203 | c->cpuid_level = cpuid_eax(0); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | static int __init x86_serial_nr_setup(char *s) |
| 208 | { |
| 209 | disable_x86_serial_nr = 0; |
| 210 | return 1; |
| 211 | } |
| 212 | __setup("serialnumber", x86_serial_nr_setup); |
Yinghai Lu | ba51dce | 2008-09-04 20:09:02 -0700 | [diff] [blame] | 213 | #else |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 214 | static inline int flag_is_changeable_p(u32 flag) |
| 215 | { |
| 216 | return 1; |
| 217 | } |
Yinghai Lu | ba51dce | 2008-09-04 20:09:02 -0700 | [diff] [blame] | 218 | /* Probe for the CPUID instruction */ |
| 219 | static inline int have_cpuid_p(void) |
| 220 | { |
| 221 | return 1; |
| 222 | } |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 223 | static inline void squash_the_stupid_serial_number(struct cpuinfo_x86 *c) |
| 224 | { |
| 225 | } |
Yinghai Lu | ba51dce | 2008-09-04 20:09:02 -0700 | [diff] [blame] | 226 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | /* |
| 229 | * Naming convention should be: <Name> [(<Codename>)] |
| 230 | * This table only is used unless init_<vendor>() below doesn't set it; |
| 231 | * in particular, if CPUID levels 0x80000002..4 are supported, this isn't used |
| 232 | * |
| 233 | */ |
| 234 | |
| 235 | /* Look up CPU names by table lookup. */ |
| 236 | static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c) |
| 237 | { |
| 238 | struct cpu_model_info *info; |
| 239 | |
| 240 | if (c->x86_model >= 16) |
| 241 | return NULL; /* Range check */ |
| 242 | |
| 243 | if (!this_cpu) |
| 244 | return NULL; |
| 245 | |
| 246 | info = this_cpu->c_models; |
| 247 | |
| 248 | while (info && info->family) { |
| 249 | if (info->family == c->x86) |
| 250 | return info->model_names[c->x86_model]; |
| 251 | info++; |
| 252 | } |
| 253 | return NULL; /* Not found */ |
| 254 | } |
| 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | __u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Jeremy Fitzhardinge | 11e3a84 | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 258 | void load_percpu_segment(int cpu) |
| 259 | { |
| 260 | #ifdef CONFIG_X86_32 |
| 261 | loadsegment(fs, __KERNEL_PERCPU); |
| 262 | #else |
| 263 | loadsegment(gs, 0); |
| 264 | wrmsrl(MSR_GS_BASE, (unsigned long)per_cpu(irq_stack_union.gs_base, cpu)); |
| 265 | #endif |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 266 | load_stack_canary_segment(); |
Jeremy Fitzhardinge | 11e3a84 | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 267 | } |
| 268 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 269 | /* Current gdt points %fs at the "master" per-cpu area: after this, |
| 270 | * it's on the real one. */ |
Brian Gerst | 552be87 | 2009-01-30 17:47:53 +0900 | [diff] [blame] | 271 | void switch_to_new_gdt(int cpu) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 272 | { |
| 273 | struct desc_ptr gdt_descr; |
| 274 | |
Brian Gerst | 2697fbd | 2009-01-27 12:56:48 +0900 | [diff] [blame] | 275 | gdt_descr.address = (long)get_cpu_gdt_table(cpu); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 276 | gdt_descr.size = GDT_SIZE - 1; |
| 277 | load_gdt(&gdt_descr); |
Brian Gerst | 2697fbd | 2009-01-27 12:56:48 +0900 | [diff] [blame] | 278 | /* Reload the per-cpu base */ |
Jeremy Fitzhardinge | 11e3a84 | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 279 | |
| 280 | load_percpu_segment(cpu); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 281 | } |
| 282 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 283 | static struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | static void __cpuinit default_init(struct cpuinfo_x86 *c) |
| 286 | { |
Yinghai Lu | b9e67f0 | 2008-09-04 20:09:06 -0700 | [diff] [blame] | 287 | #ifdef CONFIG_X86_64 |
| 288 | display_cacheinfo(c); |
| 289 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | /* Not much we can do here... */ |
| 291 | /* Check if at least it has cpuid */ |
| 292 | if (c->cpuid_level == -1) { |
| 293 | /* No cpuid. It must be an ancient CPU */ |
| 294 | if (c->x86 == 4) |
| 295 | strcpy(c->x86_model_id, "486"); |
| 296 | else if (c->x86 == 3) |
| 297 | strcpy(c->x86_model_id, "386"); |
| 298 | } |
Yinghai Lu | b9e67f0 | 2008-09-04 20:09:06 -0700 | [diff] [blame] | 299 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | static struct cpu_dev __cpuinitdata default_cpu = { |
| 303 | .c_init = default_init, |
| 304 | .c_vendor = "Unknown", |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 305 | .c_x86_vendor = X86_VENDOR_UNKNOWN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Yinghai Lu | 1b05d60 | 2008-09-06 01:52:27 -0700 | [diff] [blame] | 308 | static void __cpuinit get_model_name(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
| 310 | unsigned int *v; |
| 311 | char *p, *q; |
| 312 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 313 | if (c->extended_cpuid_level < 0x80000004) |
Yinghai Lu | 1b05d60 | 2008-09-06 01:52:27 -0700 | [diff] [blame] | 314 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | v = (unsigned int *) c->x86_model_id; |
| 317 | cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]); |
| 318 | cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]); |
| 319 | cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]); |
| 320 | c->x86_model_id[48] = 0; |
| 321 | |
| 322 | /* Intel chips right-justify this string for some dumb reason; |
| 323 | undo that brain damage */ |
| 324 | p = q = &c->x86_model_id[0]; |
| 325 | while (*p == ' ') |
| 326 | p++; |
| 327 | if (p != q) { |
| 328 | while (*p) |
| 329 | *q++ = *p++; |
| 330 | while (q <= &c->x86_model_id[48]) |
| 331 | *q++ = '\0'; /* Zero-pad the rest */ |
| 332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c) |
| 336 | { |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 337 | unsigned int n, dummy, ebx, ecx, edx, l2size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 339 | n = c->extended_cpuid_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
| 341 | if (n >= 0x80000005) { |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 342 | cpuid(0x80000005, &dummy, &ebx, &ecx, &edx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | printk(KERN_INFO "CPU: L1 I Cache: %dK (%d bytes/line), D cache %dK (%d bytes/line)\n", |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 344 | edx>>24, edx&0xFF, ecx>>24, ecx&0xFF); |
| 345 | c->x86_cache_size = (ecx>>24) + (edx>>24); |
Yinghai Lu | 140fc72 | 2008-09-04 20:09:07 -0700 | [diff] [blame] | 346 | #ifdef CONFIG_X86_64 |
| 347 | /* On K8 L1 TLB is inclusive, so don't count it */ |
| 348 | c->x86_tlbsize = 0; |
| 349 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | if (n < 0x80000006) /* Some chips just has a large L1. */ |
| 353 | return; |
| 354 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 355 | cpuid(0x80000006, &dummy, &ebx, &ecx, &edx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | l2size = ecx >> 16; |
| 357 | |
Yinghai Lu | 140fc72 | 2008-09-04 20:09:07 -0700 | [diff] [blame] | 358 | #ifdef CONFIG_X86_64 |
| 359 | c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff); |
| 360 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* do processor-specific cache resizing */ |
| 362 | if (this_cpu->c_size_cache) |
| 363 | l2size = this_cpu->c_size_cache(c, l2size); |
| 364 | |
| 365 | /* Allow user to override all this if necessary. */ |
| 366 | if (cachesize_override != -1) |
| 367 | l2size = cachesize_override; |
| 368 | |
| 369 | if (l2size == 0) |
| 370 | return; /* Again, no L2 cache is possible */ |
Yinghai Lu | 140fc72 | 2008-09-04 20:09:07 -0700 | [diff] [blame] | 371 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
| 373 | c->x86_cache_size = l2size; |
| 374 | |
| 375 | printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n", |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 376 | l2size, ecx & 0xFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 379 | void __cpuinit detect_ht(struct cpuinfo_x86 *c) |
| 380 | { |
Yinghai Lu | 97e4db7 | 2008-09-04 20:08:59 -0700 | [diff] [blame] | 381 | #ifdef CONFIG_X86_HT |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 382 | u32 eax, ebx, ecx, edx; |
| 383 | int index_msb, core_bits; |
| 384 | |
| 385 | if (!cpu_has(c, X86_FEATURE_HT)) |
| 386 | return; |
| 387 | |
| 388 | if (cpu_has(c, X86_FEATURE_CMP_LEGACY)) |
| 389 | goto out; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 390 | |
Yinghai Lu | 1cd7877 | 2008-09-04 20:09:08 -0700 | [diff] [blame] | 391 | if (cpu_has(c, X86_FEATURE_XTOPOLOGY)) |
| 392 | return; |
| 393 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 394 | cpuid(1, &eax, &ebx, &ecx, &edx); |
| 395 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 396 | smp_num_siblings = (ebx & 0xff0000) >> 16; |
| 397 | |
| 398 | if (smp_num_siblings == 1) { |
| 399 | printk(KERN_INFO "CPU: Hyper-Threading is disabled\n"); |
| 400 | } else if (smp_num_siblings > 1) { |
| 401 | |
Mike Travis | 9628937 | 2008-12-31 18:08:46 -0800 | [diff] [blame] | 402 | if (smp_num_siblings > nr_cpu_ids) { |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 403 | printk(KERN_WARNING "CPU: Unsupported number of siblings %d", |
| 404 | smp_num_siblings); |
| 405 | smp_num_siblings = 1; |
| 406 | return; |
| 407 | } |
| 408 | |
| 409 | index_msb = get_count_order(smp_num_siblings); |
Yinghai Lu | 1cd7877 | 2008-09-04 20:09:08 -0700 | [diff] [blame] | 410 | #ifdef CONFIG_X86_64 |
| 411 | c->phys_proc_id = phys_pkg_id(index_msb); |
| 412 | #else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 413 | c->phys_proc_id = phys_pkg_id(c->initial_apicid, index_msb); |
Yinghai Lu | 1cd7877 | 2008-09-04 20:09:08 -0700 | [diff] [blame] | 414 | #endif |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 415 | |
| 416 | smp_num_siblings = smp_num_siblings / c->x86_max_cores; |
| 417 | |
| 418 | index_msb = get_count_order(smp_num_siblings); |
| 419 | |
| 420 | core_bits = get_count_order(c->x86_max_cores); |
| 421 | |
Yinghai Lu | 1cd7877 | 2008-09-04 20:09:08 -0700 | [diff] [blame] | 422 | #ifdef CONFIG_X86_64 |
| 423 | c->cpu_core_id = phys_pkg_id(index_msb) & |
| 424 | ((1 << core_bits) - 1); |
| 425 | #else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 426 | c->cpu_core_id = phys_pkg_id(c->initial_apicid, index_msb) & |
| 427 | ((1 << core_bits) - 1); |
Yinghai Lu | 1cd7877 | 2008-09-04 20:09:08 -0700 | [diff] [blame] | 428 | #endif |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 429 | } |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 430 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 431 | out: |
| 432 | if ((c->x86_max_cores * smp_num_siblings) > 1) { |
| 433 | printk(KERN_INFO "CPU: Physical Processor ID: %d\n", |
| 434 | c->phys_proc_id); |
| 435 | printk(KERN_INFO "CPU: Processor Core ID: %d\n", |
| 436 | c->cpu_core_id); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 437 | } |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 438 | #endif |
Yinghai Lu | 97e4db7 | 2008-09-04 20:08:59 -0700 | [diff] [blame] | 439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 441 | static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | { |
| 443 | char *v = c->x86_vendor_id; |
| 444 | int i; |
| 445 | static int printed; |
| 446 | |
| 447 | for (i = 0; i < X86_VENDOR_NUM; i++) { |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 448 | if (!cpu_devs[i]) |
| 449 | break; |
| 450 | |
| 451 | if (!strcmp(v, cpu_devs[i]->c_ident[0]) || |
| 452 | (cpu_devs[i]->c_ident[1] && |
| 453 | !strcmp(v, cpu_devs[i]->c_ident[1]))) { |
| 454 | this_cpu = cpu_devs[i]; |
| 455 | c->x86_vendor = this_cpu->c_x86_vendor; |
| 456 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
| 458 | } |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | if (!printed) { |
| 461 | printed++; |
Hans Schou | 43603c8 | 2008-10-09 20:47:24 +0200 | [diff] [blame] | 462 | printk(KERN_ERR "CPU: vendor_id '%s' unknown, using generic init.\n", v); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | printk(KERN_ERR "CPU: Your system may be unstable.\n"); |
| 464 | } |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | c->x86_vendor = X86_VENDOR_UNKNOWN; |
| 467 | this_cpu = &default_cpu; |
| 468 | } |
| 469 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 470 | void __cpuinit cpu_detect(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* Get vendor name */ |
Harvey Harrison | 4a14851 | 2008-02-01 17:49:43 +0100 | [diff] [blame] | 473 | cpuid(0x00000000, (unsigned int *)&c->cpuid_level, |
| 474 | (unsigned int *)&c->x86_vendor_id[0], |
| 475 | (unsigned int *)&c->x86_vendor_id[8], |
| 476 | (unsigned int *)&c->x86_vendor_id[4]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | c->x86 = 4; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 479 | /* Intel-defined flags: level 0x00000001 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | if (c->cpuid_level >= 0x00000001) { |
| 481 | u32 junk, tfms, cap0, misc; |
| 482 | cpuid(0x00000001, &tfms, &misc, &junk, &cap0); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 483 | c->x86 = (tfms >> 8) & 0xf; |
| 484 | c->x86_model = (tfms >> 4) & 0xf; |
| 485 | c->x86_mask = tfms & 0xf; |
Suresh Siddha | f5f786d | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 486 | if (c->x86 == 0xf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | c->x86 += (tfms >> 20) & 0xff; |
Suresh Siddha | f5f786d | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 488 | if (c->x86 >= 0x6) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 489 | c->x86_model += ((tfms >> 16) & 0xf) << 4; |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 490 | if (cap0 & (1<<19)) { |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 491 | c->x86_clflush_size = ((misc >> 8) & 0xff) * 8; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 492 | c->x86_cache_alignment = c->x86_clflush_size; |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 496 | |
| 497 | static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c) |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 498 | { |
| 499 | u32 tfms, xlvl; |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 500 | u32 ebx; |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 501 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 502 | /* Intel-defined flags: level 0x00000001 */ |
| 503 | if (c->cpuid_level >= 0x00000001) { |
| 504 | u32 capability, excap; |
| 505 | cpuid(0x00000001, &tfms, &ebx, &excap, &capability); |
| 506 | c->x86_capability[0] = capability; |
| 507 | c->x86_capability[4] = excap; |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 508 | } |
| 509 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 510 | /* AMD-defined flags: level 0x80000001 */ |
| 511 | xlvl = cpuid_eax(0x80000000); |
| 512 | c->extended_cpuid_level = xlvl; |
| 513 | if ((xlvl & 0xffff0000) == 0x80000000) { |
| 514 | if (xlvl >= 0x80000001) { |
| 515 | c->x86_capability[1] = cpuid_edx(0x80000001); |
| 516 | c->x86_capability[6] = cpuid_ecx(0x80000001); |
| 517 | } |
| 518 | } |
Yinghai Lu | 5122c89 | 2008-09-04 20:09:09 -0700 | [diff] [blame] | 519 | |
| 520 | #ifdef CONFIG_X86_64 |
Yinghai Lu | 5122c89 | 2008-09-04 20:09:09 -0700 | [diff] [blame] | 521 | if (c->extended_cpuid_level >= 0x80000008) { |
| 522 | u32 eax = cpuid_eax(0x80000008); |
| 523 | |
| 524 | c->x86_virt_bits = (eax >> 8) & 0xff; |
| 525 | c->x86_phys_bits = eax & 0xff; |
| 526 | } |
| 527 | #endif |
Yinghai Lu | e322423 | 2008-09-06 01:52:28 -0700 | [diff] [blame] | 528 | |
| 529 | if (c->extended_cpuid_level >= 0x80000007) |
| 530 | c->x86_power = cpuid_edx(0x80000007); |
| 531 | |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 532 | } |
Yinghai Lu | aef93c8 | 2008-09-14 02:33:15 -0700 | [diff] [blame] | 533 | |
| 534 | static void __cpuinit identify_cpu_without_cpuid(struct cpuinfo_x86 *c) |
| 535 | { |
| 536 | #ifdef CONFIG_X86_32 |
| 537 | int i; |
| 538 | |
| 539 | /* |
| 540 | * First of all, decide if this is a 486 or higher |
| 541 | * It's a 486 if we can modify the AC flag |
| 542 | */ |
| 543 | if (flag_is_changeable_p(X86_EFLAGS_AC)) |
| 544 | c->x86 = 4; |
| 545 | else |
| 546 | c->x86 = 3; |
| 547 | |
| 548 | for (i = 0; i < X86_VENDOR_NUM; i++) |
| 549 | if (cpu_devs[i] && cpu_devs[i]->c_identify) { |
| 550 | c->x86_vendor_id[0] = 0; |
| 551 | cpu_devs[i]->c_identify(c); |
| 552 | if (c->x86_vendor_id[0]) { |
| 553 | get_cpu_vendor(c); |
| 554 | break; |
| 555 | } |
| 556 | } |
| 557 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } |
| 559 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 560 | /* |
| 561 | * Do minimum CPU detection early. |
| 562 | * Fields really needed: vendor, cpuid_level, family, model, mask, |
| 563 | * cache alignment. |
| 564 | * The others are not touched to avoid unwanted side effects. |
| 565 | * |
| 566 | * WARNING: this function is only called on the BP. Don't add code here |
| 567 | * that is supposed to run on all CPUs. |
| 568 | */ |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 569 | static void __init early_identify_cpu(struct cpuinfo_x86 *c) |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 570 | { |
Yinghai Lu | 6627d24 | 2008-09-04 20:09:10 -0700 | [diff] [blame] | 571 | #ifdef CONFIG_X86_64 |
| 572 | c->x86_clflush_size = 64; |
| 573 | #else |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 574 | c->x86_clflush_size = 32; |
Yinghai Lu | 6627d24 | 2008-09-04 20:09:10 -0700 | [diff] [blame] | 575 | #endif |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 576 | c->x86_cache_alignment = c->x86_clflush_size; |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 577 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 578 | memset(&c->x86_capability, 0, sizeof c->x86_capability); |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 579 | c->extended_cpuid_level = 0; |
| 580 | |
Yinghai Lu | aef93c8 | 2008-09-14 02:33:15 -0700 | [diff] [blame] | 581 | if (!have_cpuid_p()) |
| 582 | identify_cpu_without_cpuid(c); |
| 583 | |
| 584 | /* cyrix could have cpuid enabled via c_identify()*/ |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 585 | if (!have_cpuid_p()) |
| 586 | return; |
| 587 | |
| 588 | cpu_detect(c); |
| 589 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 590 | get_cpu_vendor(c); |
Andi Kleen | 2b16a23 | 2008-01-30 13:32:40 +0100 | [diff] [blame] | 591 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 592 | get_cpu_cap(c); |
Krzysztof Helt | 12cf105 | 2008-09-04 21:09:43 +0200 | [diff] [blame] | 593 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 594 | if (this_cpu->c_early_init) |
| 595 | this_cpu->c_early_init(c); |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 596 | |
| 597 | validate_pat_support(c); |
James Bottomley | bfcb4c1 | 2008-10-30 16:13:37 -0500 | [diff] [blame] | 598 | |
Ingo Molnar | 1c4acdb | 2008-10-31 00:43:03 +0100 | [diff] [blame] | 599 | #ifdef CONFIG_SMP |
James Bottomley | bfcb4c1 | 2008-10-30 16:13:37 -0500 | [diff] [blame] | 600 | c->cpu_index = boot_cpu_id; |
Ingo Molnar | 1c4acdb | 2008-10-31 00:43:03 +0100 | [diff] [blame] | 601 | #endif |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 602 | } |
| 603 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 604 | void __init early_cpu_init(void) |
| 605 | { |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 606 | struct cpu_dev **cdev; |
| 607 | int count = 0; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 608 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 609 | printk("KERNEL supported cpus:\n"); |
| 610 | for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) { |
| 611 | struct cpu_dev *cpudev = *cdev; |
| 612 | unsigned int j; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 613 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 614 | if (count >= X86_VENDOR_NUM) |
| 615 | break; |
| 616 | cpu_devs[count] = cpudev; |
| 617 | count++; |
| 618 | |
| 619 | for (j = 0; j < 2; j++) { |
| 620 | if (!cpudev->c_ident[j]) |
| 621 | continue; |
| 622 | printk(" %s %s\n", cpudev->c_vendor, |
| 623 | cpudev->c_ident[j]); |
| 624 | } |
| 625 | } |
| 626 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 627 | early_identify_cpu(&boot_cpu_data); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
H. Peter Anvin | b6734c3 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 630 | /* |
| 631 | * The NOPL instruction is supposed to exist on all CPUs with |
H. Peter Anvin | ba0593b | 2008-09-16 09:29:40 -0700 | [diff] [blame] | 632 | * family >= 6; unfortunately, that's not true in practice because |
H. Peter Anvin | b6734c3 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 633 | * of early VIA chips and (more importantly) broken virtualizers that |
H. Peter Anvin | ba0593b | 2008-09-16 09:29:40 -0700 | [diff] [blame] | 634 | * are not easy to detect. In the latter case it doesn't even *fail* |
| 635 | * reliably, so probing for it doesn't even work. Disable it completely |
| 636 | * unless we can find a reliable way to detect all the broken cases. |
H. Peter Anvin | b6734c3 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 637 | */ |
| 638 | static void __cpuinit detect_nopl(struct cpuinfo_x86 *c) |
| 639 | { |
H. Peter Anvin | b6734c3 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 640 | clear_cpu_cap(c, X86_FEATURE_NOPL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 643 | static void __cpuinit generic_identify(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 645 | c->extended_cpuid_level = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Yinghai Lu | aef93c8 | 2008-09-14 02:33:15 -0700 | [diff] [blame] | 647 | if (!have_cpuid_p()) |
| 648 | identify_cpu_without_cpuid(c); |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 649 | |
Yinghai Lu | aef93c8 | 2008-09-14 02:33:15 -0700 | [diff] [blame] | 650 | /* cyrix could have cpuid enabled via c_identify()*/ |
Ingo Molnar | a9853dd | 2008-09-14 14:46:58 +0200 | [diff] [blame] | 651 | if (!have_cpuid_p()) |
Yinghai Lu | aef93c8 | 2008-09-14 02:33:15 -0700 | [diff] [blame] | 652 | return; |
| 653 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 654 | cpu_detect(c); |
| 655 | |
| 656 | get_cpu_vendor(c); |
| 657 | |
| 658 | get_cpu_cap(c); |
| 659 | |
| 660 | if (c->cpuid_level >= 0x00000001) { |
| 661 | c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF; |
Yinghai Lu | b89d3b3 | 2008-09-04 20:09:12 -0700 | [diff] [blame] | 662 | #ifdef CONFIG_X86_32 |
| 663 | # ifdef CONFIG_X86_HT |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 664 | c->apicid = phys_pkg_id(c->initial_apicid, 0); |
Yinghai Lu | b89d3b3 | 2008-09-04 20:09:12 -0700 | [diff] [blame] | 665 | # else |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 666 | c->apicid = c->initial_apicid; |
Yinghai Lu | b89d3b3 | 2008-09-04 20:09:12 -0700 | [diff] [blame] | 667 | # endif |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 668 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Yinghai Lu | b89d3b3 | 2008-09-04 20:09:12 -0700 | [diff] [blame] | 670 | #ifdef CONFIG_X86_HT |
| 671 | c->phys_proc_id = c->initial_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 674 | |
Yinghai Lu | 1b05d60 | 2008-09-06 01:52:27 -0700 | [diff] [blame] | 675 | get_model_name(c); /* Default name */ |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 676 | |
| 677 | init_scattered_cpuid_features(c); |
| 678 | detect_nopl(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | } |
| 680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | /* |
| 682 | * This does the hard work of actually picking apart the CPU stuff... |
| 683 | */ |
Yinghai Lu | 9a25034 | 2008-06-21 03:24:00 -0700 | [diff] [blame] | 684 | static void __cpuinit identify_cpu(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
| 686 | int i; |
| 687 | |
| 688 | c->loops_per_jiffy = loops_per_jiffy; |
| 689 | c->x86_cache_size = -1; |
| 690 | c->x86_vendor = X86_VENDOR_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | c->x86_model = c->x86_mask = 0; /* So far unknown... */ |
| 692 | c->x86_vendor_id[0] = '\0'; /* Unset */ |
| 693 | c->x86_model_id[0] = '\0'; /* Unset */ |
Siddha, Suresh B | 94605ef | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 694 | c->x86_max_cores = 1; |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 695 | c->x86_coreid_bits = 0; |
Yinghai Lu | 11fdd25 | 2008-09-07 17:58:50 -0700 | [diff] [blame] | 696 | #ifdef CONFIG_X86_64 |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 697 | c->x86_clflush_size = 64; |
| 698 | #else |
| 699 | c->cpuid_level = -1; /* CPUID not detected */ |
Andi Kleen | 770d132 | 2006-12-07 02:14:05 +0100 | [diff] [blame] | 700 | c->x86_clflush_size = 32; |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 701 | #endif |
| 702 | c->x86_cache_alignment = c->x86_clflush_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | memset(&c->x86_capability, 0, sizeof c->x86_capability); |
| 704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | generic_identify(c); |
| 706 | |
Andi Kleen | 3898534 | 2008-01-30 13:32:49 +0100 | [diff] [blame] | 707 | if (this_cpu->c_identify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | this_cpu->c_identify(c); |
| 709 | |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 710 | #ifdef CONFIG_X86_64 |
| 711 | c->apicid = phys_pkg_id(0); |
| 712 | #endif |
| 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | /* |
| 715 | * Vendor-specific initialization. In this section we |
| 716 | * canonicalize the feature flags, meaning if there are |
| 717 | * features a certain CPU supports which CPUID doesn't |
| 718 | * tell us, CPUID claiming incorrect flags, or other bugs, |
| 719 | * we handle them here. |
| 720 | * |
| 721 | * At the end of this section, c->x86_capability better |
| 722 | * indicate the features this CPU genuinely supports! |
| 723 | */ |
| 724 | if (this_cpu->c_init) |
| 725 | this_cpu->c_init(c); |
| 726 | |
| 727 | /* Disable the PN if appropriate */ |
| 728 | squash_the_stupid_serial_number(c); |
| 729 | |
| 730 | /* |
| 731 | * The vendor-specific functions might have changed features. Now |
| 732 | * we do "generic changes." |
| 733 | */ |
| 734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | /* If the model name is still unset, do table lookup. */ |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 736 | if (!c->x86_model_id[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | char *p; |
| 738 | p = table_lookup_model(c); |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 739 | if (p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | strcpy(c->x86_model_id, p); |
| 741 | else |
| 742 | /* Last resort... */ |
| 743 | sprintf(c->x86_model_id, "%02x/%02x", |
Chuck Ebbert | 54a20f8 | 2006-03-23 02:59:36 -0800 | [diff] [blame] | 744 | c->x86, c->x86_model); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 746 | |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 747 | #ifdef CONFIG_X86_64 |
| 748 | detect_ht(c); |
| 749 | #endif |
| 750 | |
Alok Kataria | 88b094f | 2008-10-27 10:41:46 -0700 | [diff] [blame] | 751 | init_hypervisor(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | /* |
| 753 | * On SMP, boot_cpu_data holds the common feature set between |
| 754 | * all CPUs; so make sure that we indicate which features are |
| 755 | * common between the CPUs. The first time this routine gets |
| 756 | * executed, c == &boot_cpu_data. |
| 757 | */ |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 758 | if (c != &boot_cpu_data) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | /* AND the already accumulated flags with these */ |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 760 | for (i = 0; i < NCAPINTS; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | boot_cpu_data.x86_capability[i] &= c->x86_capability[i]; |
| 762 | } |
| 763 | |
Andi Kleen | 7d851c8 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 764 | /* Clear all flags overriden by options */ |
| 765 | for (i = 0; i < NCAPINTS; i++) |
Mikael Pettersson | 12c247a | 2008-02-24 18:27:03 +0100 | [diff] [blame] | 766 | c->x86_capability[i] &= ~cleared_cpu_caps[i]; |
Andi Kleen | 7d851c8 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 767 | |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 768 | #ifdef CONFIG_X86_MCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | /* Init Machine Check Exception if available. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | mcheck_init(c); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 771 | #endif |
Andi Kleen | 30d432d | 2008-01-30 13:33:16 +0100 | [diff] [blame] | 772 | |
| 773 | select_idle_routine(c); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 774 | |
| 775 | #if defined(CONFIG_NUMA) && defined(CONFIG_X86_64) |
| 776 | numa_add_cpu(smp_processor_id()); |
| 777 | #endif |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 778 | } |
Shaohua Li | 31ab269 | 2005-11-07 00:58:42 -0800 | [diff] [blame] | 779 | |
Glauber Costa | e04d645 | 2008-09-22 14:35:08 -0300 | [diff] [blame] | 780 | #ifdef CONFIG_X86_64 |
| 781 | static void vgetcpu_set_mode(void) |
| 782 | { |
| 783 | if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP)) |
| 784 | vgetcpu_mode = VGETCPU_RDTSCP; |
| 785 | else |
| 786 | vgetcpu_mode = VGETCPU_LSL; |
| 787 | } |
| 788 | #endif |
| 789 | |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 790 | void __init identify_boot_cpu(void) |
| 791 | { |
| 792 | identify_cpu(&boot_cpu_data); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 793 | #ifdef CONFIG_X86_32 |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 794 | sysenter_setup(); |
Li Shaohua | 6fe940d | 2005-06-25 14:54:53 -0700 | [diff] [blame] | 795 | enable_sep_cpu(); |
Glauber Costa | e04d645 | 2008-09-22 14:35:08 -0300 | [diff] [blame] | 796 | #else |
| 797 | vgetcpu_set_mode(); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 798 | #endif |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 799 | } |
Shaohua Li | 3b520b2 | 2005-07-07 17:56:38 -0700 | [diff] [blame] | 800 | |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 801 | void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c) |
| 802 | { |
| 803 | BUG_ON(c == &boot_cpu_data); |
| 804 | identify_cpu(c); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 805 | #ifdef CONFIG_X86_32 |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 806 | enable_sep_cpu(); |
Yinghai Lu | 102bbe3a | 2008-09-04 20:09:13 -0700 | [diff] [blame] | 807 | #endif |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 808 | mtrr_ap_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 811 | struct msr_range { |
| 812 | unsigned min; |
| 813 | unsigned max; |
| 814 | }; |
| 815 | |
| 816 | static struct msr_range msr_range_array[] __cpuinitdata = { |
| 817 | { 0x00000000, 0x00000418}, |
| 818 | { 0xc0000000, 0xc000040b}, |
| 819 | { 0xc0010000, 0xc0010142}, |
| 820 | { 0xc0011000, 0xc001103b}, |
| 821 | }; |
| 822 | |
| 823 | static void __cpuinit print_cpu_msr(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 825 | unsigned index; |
| 826 | u64 val; |
| 827 | int i; |
| 828 | unsigned index_min, index_max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 830 | for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) { |
| 831 | index_min = msr_range_array[i].min; |
| 832 | index_max = msr_range_array[i].max; |
| 833 | for (index = index_min; index < index_max; index++) { |
| 834 | if (rdmsrl_amd_safe(index, &val)) |
| 835 | continue; |
| 836 | printk(KERN_INFO " MSR%08x: %016llx\n", index, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | } |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 840 | |
| 841 | static int show_msr __cpuinitdata; |
| 842 | static __init int setup_show_msr(char *arg) |
| 843 | { |
| 844 | int num; |
| 845 | |
| 846 | get_option(&arg, &num); |
| 847 | |
| 848 | if (num > 0) |
| 849 | show_msr = num; |
| 850 | return 1; |
| 851 | } |
| 852 | __setup("show_msr=", setup_show_msr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Andi Kleen | 191679f | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 854 | static __init int setup_noclflush(char *arg) |
| 855 | { |
| 856 | setup_clear_cpu_cap(X86_FEATURE_CLFLSH); |
| 857 | return 1; |
| 858 | } |
| 859 | __setup("noclflush", setup_noclflush); |
| 860 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 861 | void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | { |
| 863 | char *vendor = NULL; |
| 864 | |
| 865 | if (c->x86_vendor < X86_VENDOR_NUM) |
| 866 | vendor = this_cpu->c_vendor; |
| 867 | else if (c->cpuid_level >= 0) |
| 868 | vendor = c->x86_vendor_id; |
| 869 | |
Yinghai Lu | bd32a8cf | 2008-09-19 18:41:16 -0700 | [diff] [blame] | 870 | if (vendor && !strstr(c->x86_model_id, vendor)) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 871 | printk(KERN_CONT "%s ", vendor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 873 | if (c->x86_model_id[0]) |
| 874 | printk(KERN_CONT "%s", c->x86_model_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 876 | printk(KERN_CONT "%d86", c->x86); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 878 | if (c->x86_mask || c->cpuid_level >= 0) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 879 | printk(KERN_CONT " stepping %02x\n", c->x86_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 881 | printk(KERN_CONT "\n"); |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 882 | |
| 883 | #ifdef CONFIG_SMP |
| 884 | if (c->cpu_index < show_msr) |
| 885 | print_cpu_msr(); |
| 886 | #else |
| 887 | if (show_msr) |
| 888 | print_cpu_msr(); |
| 889 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Andi Kleen | ac72e78 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 892 | static __init int setup_disablecpuid(char *arg) |
| 893 | { |
| 894 | int bit; |
| 895 | if (get_option(&arg, &bit) && bit < NCAPINTS*32) |
| 896 | setup_clear_cpu_cap(bit); |
| 897 | else |
| 898 | return 0; |
| 899 | return 1; |
| 900 | } |
| 901 | __setup("clearcpuid=", setup_disablecpuid); |
| 902 | |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 903 | #ifdef CONFIG_X86_64 |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 904 | struct desc_ptr idt_descr = { 256 * 16 - 1, (unsigned long) idt_table }; |
| 905 | |
Brian Gerst | 947e76c | 2009-01-19 12:21:28 +0900 | [diff] [blame] | 906 | DEFINE_PER_CPU_FIRST(union irq_stack_union, |
| 907 | irq_stack_union) __aligned(PAGE_SIZE); |
Brian Gerst | 26f80bd | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 908 | DEFINE_PER_CPU(char *, irq_stack_ptr) = |
Brian Gerst | 2add8e2 | 2009-02-08 09:58:39 -0500 | [diff] [blame] | 909 | init_per_cpu_var(irq_stack_union.irq_stack) + IRQ_STACK_SIZE - 64; |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 910 | |
Brian Gerst | 9af4565 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 911 | DEFINE_PER_CPU(unsigned long, kernel_stack) = |
| 912 | (unsigned long)&init_thread_union - KERNEL_STACK_OFFSET + THREAD_SIZE; |
| 913 | EXPORT_PER_CPU_SYMBOL(kernel_stack); |
| 914 | |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 915 | DEFINE_PER_CPU(unsigned int, irq_count) = -1; |
| 916 | |
Brian Gerst | 92d65b2 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 917 | static DEFINE_PER_CPU_PAGE_ALIGNED(char, exception_stacks |
| 918 | [(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]) |
| 919 | __aligned(PAGE_SIZE); |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 920 | |
| 921 | extern asmlinkage void ignore_sysret(void); |
| 922 | |
| 923 | /* May not be marked __init: used by software suspend */ |
| 924 | void syscall_init(void) |
| 925 | { |
| 926 | /* |
| 927 | * LSTAR and STAR live in a bit strange symbiosis. |
| 928 | * They both write to the same internal register. STAR allows to |
| 929 | * set CS/DS but only a 32bit target. LSTAR sets the 64bit rip. |
| 930 | */ |
| 931 | wrmsrl(MSR_STAR, ((u64)__USER32_CS)<<48 | ((u64)__KERNEL_CS)<<32); |
| 932 | wrmsrl(MSR_LSTAR, system_call); |
| 933 | wrmsrl(MSR_CSTAR, ignore_sysret); |
| 934 | |
| 935 | #ifdef CONFIG_IA32_EMULATION |
| 936 | syscall32_cpu_init(); |
| 937 | #endif |
| 938 | |
| 939 | /* Flags to clear on syscall */ |
| 940 | wrmsrl(MSR_SYSCALL_MASK, |
| 941 | X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL); |
| 942 | } |
| 943 | |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 944 | unsigned long kernel_eflags; |
| 945 | |
| 946 | /* |
| 947 | * Copies of the original ist values from the tss are only accessed during |
| 948 | * debugging, no special alignment required. |
| 949 | */ |
| 950 | DEFINE_PER_CPU(struct orig_ist, orig_ist); |
| 951 | |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 952 | #else /* x86_64 */ |
Yinghai Lu | d5494d4 | 2008-09-04 20:09:03 -0700 | [diff] [blame] | 953 | |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 954 | #ifdef CONFIG_CC_STACKPROTECTOR |
| 955 | DEFINE_PER_CPU(unsigned long, stack_canary); |
| 956 | #endif |
| 957 | |
| 958 | /* Make sure %fs and %gs are initialized properly in idle threads */ |
Adrian Bunk | 6b2fb3c | 2008-02-06 01:37:55 -0800 | [diff] [blame] | 959 | struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs) |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 960 | { |
| 961 | memset(regs, 0, sizeof(struct pt_regs)); |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 962 | regs->fs = __KERNEL_PERCPU; |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 963 | regs->gs = __KERNEL_STACK_CANARY; |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 964 | return regs; |
| 965 | } |
Tejun Heo | 60a5317 | 2009-02-09 22:17:40 +0900 | [diff] [blame^] | 966 | #endif /* x86_64 */ |
Jeremy Fitzhardinge | c5413fb | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 967 | |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 968 | /* |
| 969 | * cpu_init() initializes state that is per-CPU. Some data is already |
| 970 | * initialized (naturally) in the bootstrap process, such as the GDT |
| 971 | * and IDT. We reload them nevertheless, this function acts as a |
| 972 | * 'CPU state barrier', nothing should get across. |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 973 | * A lot of state is already set up in PDA init for 64 bit |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 974 | */ |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 975 | #ifdef CONFIG_X86_64 |
| 976 | void __cpuinit cpu_init(void) |
| 977 | { |
| 978 | int cpu = stack_smp_processor_id(); |
| 979 | struct tss_struct *t = &per_cpu(init_tss, cpu); |
| 980 | struct orig_ist *orig_ist = &per_cpu(orig_ist, cpu); |
| 981 | unsigned long v; |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 982 | struct task_struct *me; |
| 983 | int i; |
| 984 | |
Brian Gerst | e7a22c1 | 2009-01-19 00:38:59 +0900 | [diff] [blame] | 985 | #ifdef CONFIG_NUMA |
| 986 | if (cpu != 0 && percpu_read(node_number) == 0 && |
| 987 | cpu_to_node(cpu) != NUMA_NO_NODE) |
| 988 | percpu_write(node_number, cpu_to_node(cpu)); |
| 989 | #endif |
| 990 | |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 991 | me = current; |
| 992 | |
Mike Travis | c2d1cec | 2009-01-04 05:18:03 -0800 | [diff] [blame] | 993 | if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 994 | panic("CPU#%d already initialized!\n", cpu); |
| 995 | |
| 996 | printk(KERN_INFO "Initializing CPU#%d\n", cpu); |
| 997 | |
| 998 | clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE); |
| 999 | |
| 1000 | /* |
| 1001 | * Initialize the per-CPU GDT with the boot GDT, |
| 1002 | * and set up the GDT descriptor: |
| 1003 | */ |
| 1004 | |
Brian Gerst | 552be87 | 2009-01-30 17:47:53 +0900 | [diff] [blame] | 1005 | switch_to_new_gdt(cpu); |
Brian Gerst | 2697fbd | 2009-01-27 12:56:48 +0900 | [diff] [blame] | 1006 | loadsegment(fs, 0); |
| 1007 | |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 1008 | load_idt((const struct desc_ptr *)&idt_descr); |
| 1009 | |
| 1010 | memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8); |
| 1011 | syscall_init(); |
| 1012 | |
| 1013 | wrmsrl(MSR_FS_BASE, 0); |
| 1014 | wrmsrl(MSR_KERNEL_GS_BASE, 0); |
| 1015 | barrier(); |
| 1016 | |
| 1017 | check_efer(); |
| 1018 | if (cpu != 0 && x2apic) |
| 1019 | enable_x2apic(); |
| 1020 | |
| 1021 | /* |
| 1022 | * set up and load the per-CPU TSS |
| 1023 | */ |
| 1024 | if (!orig_ist->ist[0]) { |
Brian Gerst | 92d65b2 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1025 | static const unsigned int sizes[N_EXCEPTION_STACKS] = { |
| 1026 | [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ, |
| 1027 | [DEBUG_STACK - 1] = DEBUG_STKSZ |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 1028 | }; |
Brian Gerst | 92d65b2 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1029 | char *estacks = per_cpu(exception_stacks, cpu); |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 1030 | for (v = 0; v < N_EXCEPTION_STACKS; v++) { |
Brian Gerst | 92d65b2 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1031 | estacks += sizes[v]; |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 1032 | orig_ist->ist[v] = t->x86_tss.ist[v] = |
| 1033 | (unsigned long)estacks; |
| 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap); |
| 1038 | /* |
| 1039 | * <= is required because the CPU will access up to |
| 1040 | * 8 bits beyond the end of the IO permission bitmap. |
| 1041 | */ |
| 1042 | for (i = 0; i <= IO_BITMAP_LONGS; i++) |
| 1043 | t->io_bitmap[i] = ~0UL; |
| 1044 | |
| 1045 | atomic_inc(&init_mm.mm_count); |
| 1046 | me->active_mm = &init_mm; |
| 1047 | if (me->mm) |
| 1048 | BUG(); |
| 1049 | enter_lazy_tlb(&init_mm, me); |
| 1050 | |
| 1051 | load_sp0(t, ¤t->thread); |
| 1052 | set_tss_desc(cpu, t); |
| 1053 | load_TR_desc(); |
| 1054 | load_LDT(&init_mm.context); |
| 1055 | |
| 1056 | #ifdef CONFIG_KGDB |
| 1057 | /* |
| 1058 | * If the kgdb is connected no debug regs should be altered. This |
| 1059 | * is only applicable when KGDB and a KGDB I/O module are built |
| 1060 | * into the kernel and you are using early debugging with |
| 1061 | * kgdbwait. KGDB will control the kernel HW breakpoint registers. |
| 1062 | */ |
| 1063 | if (kgdb_connected && arch_kgdb_ops.correct_hw_break) |
| 1064 | arch_kgdb_ops.correct_hw_break(); |
| 1065 | else { |
| 1066 | #endif |
| 1067 | /* |
| 1068 | * Clear all 6 debug registers: |
| 1069 | */ |
| 1070 | |
| 1071 | set_debugreg(0UL, 0); |
| 1072 | set_debugreg(0UL, 1); |
| 1073 | set_debugreg(0UL, 2); |
| 1074 | set_debugreg(0UL, 3); |
| 1075 | set_debugreg(0UL, 6); |
| 1076 | set_debugreg(0UL, 7); |
| 1077 | #ifdef CONFIG_KGDB |
| 1078 | /* If the kgdb is connected no debug regs should be altered. */ |
| 1079 | } |
| 1080 | #endif |
| 1081 | |
| 1082 | fpu_init(); |
| 1083 | |
| 1084 | raw_local_save_flags(kernel_eflags); |
| 1085 | |
| 1086 | if (is_uv_system()) |
| 1087 | uv_cpu_init(); |
| 1088 | } |
| 1089 | |
| 1090 | #else |
| 1091 | |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 1092 | void __cpuinit cpu_init(void) |
James Bottomley | 9ee79a3 | 2007-01-22 09:18:31 -0600 | [diff] [blame] | 1093 | { |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 1094 | int cpu = smp_processor_id(); |
| 1095 | struct task_struct *curr = current; |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 1096 | struct tss_struct *t = &per_cpu(init_tss, cpu); |
James Bottomley | 9ee79a3 | 2007-01-22 09:18:31 -0600 | [diff] [blame] | 1097 | struct thread_struct *thread = &curr->thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Mike Travis | c2d1cec | 2009-01-04 05:18:03 -0800 | [diff] [blame] | 1099 | if (cpumask_test_and_set_cpu(cpu, cpu_initialized_mask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | printk(KERN_WARNING "CPU#%d already initialized!\n", cpu); |
| 1101 | for (;;) local_irq_enable(); |
| 1102 | } |
Jeremy Fitzhardinge | 6211119 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 1103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | printk(KERN_INFO "Initializing CPU#%d\n", cpu); |
| 1105 | |
| 1106 | if (cpu_has_vme || cpu_has_tsc || cpu_has_de) |
| 1107 | clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | |
Zachary Amsden | 4d37e7e | 2005-09-03 15:56:38 -0700 | [diff] [blame] | 1109 | load_idt(&idt_descr); |
Brian Gerst | 552be87 | 2009-01-30 17:47:53 +0900 | [diff] [blame] | 1110 | switch_to_new_gdt(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | |
| 1112 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | * Set up and load the per-CPU TSS and LDT |
| 1114 | */ |
| 1115 | atomic_inc(&init_mm.mm_count); |
Jeremy Fitzhardinge | 6211119 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 1116 | curr->active_mm = &init_mm; |
| 1117 | if (curr->mm) |
| 1118 | BUG(); |
| 1119 | enter_lazy_tlb(&init_mm, curr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | |
H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1121 | load_sp0(t, thread); |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 1122 | set_tss_desc(cpu, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | load_TR_desc(); |
| 1124 | load_LDT(&init_mm.context); |
| 1125 | |
Matt Mackall | 22c4e30 | 2006-01-08 01:05:24 -0800 | [diff] [blame] | 1126 | #ifdef CONFIG_DOUBLEFAULT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | /* Set up doublefault TSS pointer in the GDT */ |
| 1128 | __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss); |
Matt Mackall | 22c4e30 | 2006-01-08 01:05:24 -0800 | [diff] [blame] | 1129 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | /* Clear all 6 debug registers: */ |
Zachary Amsden | 4bb0d3e | 2005-09-03 15:56:36 -0700 | [diff] [blame] | 1132 | set_debugreg(0, 0); |
| 1133 | set_debugreg(0, 1); |
| 1134 | set_debugreg(0, 2); |
| 1135 | set_debugreg(0, 3); |
| 1136 | set_debugreg(0, 6); |
| 1137 | set_debugreg(0, 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
| 1139 | /* |
| 1140 | * Force FPU initialization: |
| 1141 | */ |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 1142 | if (cpu_has_xsave) |
| 1143 | current_thread_info()->status = TS_XSAVE; |
| 1144 | else |
| 1145 | current_thread_info()->status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | clear_used_math(); |
| 1147 | mxcsr_feature_mask_init(); |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 1148 | |
| 1149 | /* |
| 1150 | * Boot processor to setup the FP and extended state context info. |
| 1151 | */ |
James Bottomley | b3572e3 | 2008-10-30 16:00:59 -0500 | [diff] [blame] | 1152 | if (smp_processor_id() == boot_cpu_id) |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 1153 | init_thread_xstate(); |
| 1154 | |
| 1155 | xsave_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | } |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 1157 | |
Yinghai Lu | 1ba7658 | 2008-09-04 20:09:04 -0700 | [diff] [blame] | 1158 | |
| 1159 | #endif |