Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/init.h> |
| 2 | #include <linux/string.h> |
| 3 | #include <linux/delay.h> |
| 4 | #include <linux/smp.h> |
| 5 | #include <linux/module.h> |
| 6 | #include <linux/percpu.h> |
James Bottomley | 2b932f6 | 2006-02-24 13:04:14 -0800 | [diff] [blame] | 7 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <asm/processor.h> |
| 9 | #include <asm/i387.h> |
| 10 | #include <asm/msr.h> |
| 11 | #include <asm/io.h> |
| 12 | #include <asm/mmu_context.h> |
Alexey Dobriyan | 27b07da | 2006-06-23 02:04:18 -0700 | [diff] [blame] | 13 | #include <asm/mtrr.h> |
Alexey Dobriyan | a03a3e2 | 2006-06-23 02:04:20 -0700 | [diff] [blame] | 14 | #include <asm/mce.h> |
Thomas Gleixner | 8d4a430 | 2008-05-08 09:18:43 +0200 | [diff] [blame] | 15 | #include <asm/pat.h> |
H. Peter Anvin | 7e00df5 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 16 | #include <asm/asm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #ifdef CONFIG_X86_LOCAL_APIC |
| 18 | #include <asm/mpspec.h> |
| 19 | #include <asm/apic.h> |
| 20 | #include <mach_apic.h> |
| 21 | #endif |
| 22 | |
| 23 | #include "cpu.h" |
| 24 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 25 | static struct cpu_dev *this_cpu __cpuinitdata; |
| 26 | |
Eric Dumazet | 63cc8c7 | 2008-05-12 15:44:40 +0200 | [diff] [blame] | 27 | DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = { |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 28 | [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } }, |
| 29 | [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } }, |
| 30 | [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } }, |
| 31 | [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 32 | /* |
| 33 | * Segments used for calling PnP BIOS have byte granularity. |
| 34 | * They code segments and data segments have fixed 64k limits, |
| 35 | * the transfer segment sizes are set at run time. |
| 36 | */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 37 | /* 32-bit code */ |
| 38 | [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } }, |
| 39 | /* 16-bit code */ |
| 40 | [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } }, |
| 41 | /* 16-bit data */ |
| 42 | [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } }, |
| 43 | /* 16-bit data */ |
| 44 | [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } }, |
| 45 | /* 16-bit data */ |
| 46 | [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 47 | /* |
| 48 | * The APM segments have byte granularity and their bases |
| 49 | * are set at run time. All have 64k limits. |
| 50 | */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 51 | /* 32-bit code */ |
| 52 | [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 53 | /* 16-bit code */ |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 54 | [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } }, |
| 55 | /* data */ |
| 56 | [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } }, |
Rusty Russell | bf504672 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 57 | |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 58 | [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } }, |
| 59 | [GDT_ENTRY_PERCPU] = { { { 0x00000000, 0x00000000 } } }, |
Jeremy Fitzhardinge | 7a61d35 | 2007-05-02 19:27:15 +0200 | [diff] [blame] | 60 | } }; |
| 61 | EXPORT_PER_CPU_SYMBOL_GPL(gdt_page); |
Rusty Russell | ae1ee11 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 62 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 63 | static int cachesize_override __cpuinitdata = -1; |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 64 | static int disable_x86_serial_nr __cpuinitdata = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | static int __init cachesize_setup(char *str) |
| 67 | { |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 68 | get_option(&str, &cachesize_override); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return 1; |
| 70 | } |
| 71 | __setup("cachesize=", cachesize_setup); |
| 72 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 73 | /* |
| 74 | * Naming convention should be: <Name> [(<Codename>)] |
| 75 | * This table only is used unless init_<vendor>() below doesn't set it; |
| 76 | * in particular, if CPUID levels 0x80000002..4 are supported, this isn't used |
| 77 | * |
| 78 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* Look up CPU names by table lookup. */ |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 81 | static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
| 83 | struct cpu_model_info *info; |
| 84 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 85 | if (c->x86_model >= 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | return NULL; /* Range check */ |
| 87 | |
| 88 | if (!this_cpu) |
| 89 | return NULL; |
| 90 | |
| 91 | info = this_cpu->c_models; |
| 92 | |
| 93 | while (info && info->family) { |
| 94 | if (info->family == c->x86) |
| 95 | return info->model_names[c->x86_model]; |
| 96 | info++; |
| 97 | } |
| 98 | return NULL; /* Not found */ |
| 99 | } |
| 100 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 101 | static int __init x86_fxsr_setup(char *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Andi Kleen | 1353025 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 103 | setup_clear_cpu_cap(X86_FEATURE_FXSR); |
| 104 | setup_clear_cpu_cap(X86_FEATURE_XMM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return 1; |
| 106 | } |
| 107 | __setup("nofxsr", x86_fxsr_setup); |
| 108 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 109 | static int __init x86_sep_setup(char *s) |
Chuck Ebbert | 4f88651 | 2006-03-23 02:59:34 -0800 | [diff] [blame] | 110 | { |
Andi Kleen | 1353025 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 111 | setup_clear_cpu_cap(X86_FEATURE_SEP); |
Chuck Ebbert | 4f88651 | 2006-03-23 02:59:34 -0800 | [diff] [blame] | 112 | return 1; |
| 113 | } |
| 114 | __setup("nosep", x86_sep_setup); |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* Standard macro to see if a specific flag is changeable */ |
| 117 | static inline int flag_is_changeable_p(u32 flag) |
| 118 | { |
| 119 | u32 f1, f2; |
| 120 | |
| 121 | asm("pushfl\n\t" |
| 122 | "pushfl\n\t" |
| 123 | "popl %0\n\t" |
| 124 | "movl %0,%1\n\t" |
| 125 | "xorl %2,%0\n\t" |
| 126 | "pushl %0\n\t" |
| 127 | "popfl\n\t" |
| 128 | "pushfl\n\t" |
| 129 | "popl %0\n\t" |
| 130 | "popfl\n\t" |
| 131 | : "=&r" (f1), "=&r" (f2) |
| 132 | : "ir" (flag)); |
| 133 | |
| 134 | return ((f1^f2) & flag) != 0; |
| 135 | } |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* Probe for the CPUID instruction */ |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 138 | static int __cpuinit have_cpuid_p(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
| 140 | return flag_is_changeable_p(X86_EFLAGS_ID); |
| 141 | } |
| 142 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 143 | static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c) |
| 144 | { |
| 145 | if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr) { |
| 146 | /* Disable processor serial number */ |
| 147 | unsigned long lo, hi; |
| 148 | rdmsr(MSR_IA32_BBL_CR_CTL, lo, hi); |
| 149 | lo |= 0x200000; |
| 150 | wrmsr(MSR_IA32_BBL_CR_CTL, lo, hi); |
| 151 | printk(KERN_NOTICE "CPU serial number disabled.\n"); |
| 152 | clear_cpu_cap(c, X86_FEATURE_PN); |
| 153 | |
| 154 | /* Disabling the serial number may affect the cpuid level */ |
| 155 | c->cpuid_level = cpuid_eax(0); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | static int __init x86_serial_nr_setup(char *s) |
| 160 | { |
| 161 | disable_x86_serial_nr = 0; |
| 162 | return 1; |
| 163 | } |
| 164 | __setup("serialnumber", x86_serial_nr_setup); |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | __u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata; |
| 167 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 168 | /* Current gdt points %fs at the "master" per-cpu area: after this, |
| 169 | * it's on the real one. */ |
| 170 | void switch_to_new_gdt(void) |
| 171 | { |
| 172 | struct desc_ptr gdt_descr; |
| 173 | |
| 174 | gdt_descr.address = (long)get_cpu_gdt_table(smp_processor_id()); |
| 175 | gdt_descr.size = GDT_SIZE - 1; |
| 176 | load_gdt(&gdt_descr); |
| 177 | asm("mov %0, %%fs" : : "r" (__KERNEL_PERCPU) : "memory"); |
| 178 | } |
| 179 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 180 | static struct cpu_dev *cpu_devs[X86_VENDOR_NUM] = {}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | static void __cpuinit default_init(struct cpuinfo_x86 *c) |
| 183 | { |
| 184 | /* Not much we can do here... */ |
| 185 | /* Check if at least it has cpuid */ |
| 186 | if (c->cpuid_level == -1) { |
| 187 | /* No cpuid. It must be an ancient CPU */ |
| 188 | if (c->x86 == 4) |
| 189 | strcpy(c->x86_model_id, "486"); |
| 190 | else if (c->x86 == 3) |
| 191 | strcpy(c->x86_model_id, "386"); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | static struct cpu_dev __cpuinitdata default_cpu = { |
| 196 | .c_init = default_init, |
| 197 | .c_vendor = "Unknown", |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 198 | .c_x86_vendor = X86_VENDOR_UNKNOWN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | int __cpuinit get_model_name(struct cpuinfo_x86 *c) |
| 202 | { |
| 203 | unsigned int *v; |
| 204 | char *p, *q; |
| 205 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 206 | if (c->extended_cpuid_level < 0x80000004) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return 0; |
| 208 | |
| 209 | v = (unsigned int *) c->x86_model_id; |
| 210 | cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]); |
| 211 | cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]); |
| 212 | cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]); |
| 213 | c->x86_model_id[48] = 0; |
| 214 | |
| 215 | /* Intel chips right-justify this string for some dumb reason; |
| 216 | undo that brain damage */ |
| 217 | p = q = &c->x86_model_id[0]; |
| 218 | while (*p == ' ') |
| 219 | p++; |
| 220 | if (p != q) { |
| 221 | while (*p) |
| 222 | *q++ = *p++; |
| 223 | while (q <= &c->x86_model_id[48]) |
| 224 | *q++ = '\0'; /* Zero-pad the rest */ |
| 225 | } |
| 226 | |
| 227 | return 1; |
| 228 | } |
| 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c) |
| 231 | { |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 232 | unsigned int n, dummy, ebx, ecx, edx, l2size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 234 | n = c->extended_cpuid_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | if (n >= 0x80000005) { |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 237 | cpuid(0x80000005, &dummy, &ebx, &ecx, &edx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | 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] | 239 | edx>>24, edx&0xFF, ecx>>24, ecx&0xFF); |
| 240 | c->x86_cache_size = (ecx>>24) + (edx>>24); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | if (n < 0x80000006) /* Some chips just has a large L1. */ |
| 244 | return; |
| 245 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 246 | cpuid(0x80000006, &dummy, &ebx, &ecx, &edx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | l2size = ecx >> 16; |
| 248 | |
| 249 | /* do processor-specific cache resizing */ |
| 250 | if (this_cpu->c_size_cache) |
| 251 | l2size = this_cpu->c_size_cache(c, l2size); |
| 252 | |
| 253 | /* Allow user to override all this if necessary. */ |
| 254 | if (cachesize_override != -1) |
| 255 | l2size = cachesize_override; |
| 256 | |
| 257 | if (l2size == 0) |
| 258 | return; /* Again, no L2 cache is possible */ |
| 259 | |
| 260 | c->x86_cache_size = l2size; |
| 261 | |
| 262 | printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n", |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 263 | l2size, ecx & 0xFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 266 | void __cpuinit detect_ht(struct cpuinfo_x86 *c) |
| 267 | { |
Yinghai Lu | 97e4db7 | 2008-09-04 20:08:59 -0700 | [diff] [blame^] | 268 | #ifdef CONFIG_X86_HT |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 269 | u32 eax, ebx, ecx, edx; |
| 270 | int index_msb, core_bits; |
| 271 | |
| 272 | if (!cpu_has(c, X86_FEATURE_HT)) |
| 273 | return; |
| 274 | |
| 275 | if (cpu_has(c, X86_FEATURE_CMP_LEGACY)) |
| 276 | goto out; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 277 | |
| 278 | cpuid(1, &eax, &ebx, &ecx, &edx); |
| 279 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 280 | smp_num_siblings = (ebx & 0xff0000) >> 16; |
| 281 | |
| 282 | if (smp_num_siblings == 1) { |
| 283 | printk(KERN_INFO "CPU: Hyper-Threading is disabled\n"); |
| 284 | } else if (smp_num_siblings > 1) { |
| 285 | |
| 286 | if (smp_num_siblings > NR_CPUS) { |
| 287 | printk(KERN_WARNING "CPU: Unsupported number of siblings %d", |
| 288 | smp_num_siblings); |
| 289 | smp_num_siblings = 1; |
| 290 | return; |
| 291 | } |
| 292 | |
| 293 | index_msb = get_count_order(smp_num_siblings); |
| 294 | c->phys_proc_id = phys_pkg_id(c->initial_apicid, index_msb); |
| 295 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 296 | |
| 297 | smp_num_siblings = smp_num_siblings / c->x86_max_cores; |
| 298 | |
| 299 | index_msb = get_count_order(smp_num_siblings); |
| 300 | |
| 301 | core_bits = get_count_order(c->x86_max_cores); |
| 302 | |
| 303 | c->cpu_core_id = phys_pkg_id(c->initial_apicid, index_msb) & |
| 304 | ((1 << core_bits) - 1); |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 305 | } |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 306 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 307 | out: |
| 308 | if ((c->x86_max_cores * smp_num_siblings) > 1) { |
| 309 | printk(KERN_INFO "CPU: Physical Processor ID: %d\n", |
| 310 | c->phys_proc_id); |
| 311 | printk(KERN_INFO "CPU: Processor Core ID: %d\n", |
| 312 | c->cpu_core_id); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 313 | } |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 314 | #endif |
Yinghai Lu | 97e4db7 | 2008-09-04 20:08:59 -0700 | [diff] [blame^] | 315 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 317 | static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
| 319 | char *v = c->x86_vendor_id; |
| 320 | int i; |
| 321 | static int printed; |
| 322 | |
| 323 | for (i = 0; i < X86_VENDOR_NUM; i++) { |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 324 | if (!cpu_devs[i]) |
| 325 | break; |
| 326 | |
| 327 | if (!strcmp(v, cpu_devs[i]->c_ident[0]) || |
| 328 | (cpu_devs[i]->c_ident[1] && |
| 329 | !strcmp(v, cpu_devs[i]->c_ident[1]))) { |
| 330 | this_cpu = cpu_devs[i]; |
| 331 | c->x86_vendor = this_cpu->c_x86_vendor; |
| 332 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
| 334 | } |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | if (!printed) { |
| 337 | printed++; |
| 338 | printk(KERN_ERR "CPU: Vendor unknown, using generic init.\n"); |
| 339 | printk(KERN_ERR "CPU: Your system may be unstable.\n"); |
| 340 | } |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | c->x86_vendor = X86_VENDOR_UNKNOWN; |
| 343 | this_cpu = &default_cpu; |
| 344 | } |
| 345 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 346 | void __cpuinit cpu_detect(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /* Get vendor name */ |
Harvey Harrison | 4a14851 | 2008-02-01 17:49:43 +0100 | [diff] [blame] | 349 | cpuid(0x00000000, (unsigned int *)&c->cpuid_level, |
| 350 | (unsigned int *)&c->x86_vendor_id[0], |
| 351 | (unsigned int *)&c->x86_vendor_id[8], |
| 352 | (unsigned int *)&c->x86_vendor_id[4]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | c->x86 = 4; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 355 | /* Intel-defined flags: level 0x00000001 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | if (c->cpuid_level >= 0x00000001) { |
| 357 | u32 junk, tfms, cap0, misc; |
| 358 | cpuid(0x00000001, &tfms, &misc, &junk, &cap0); |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 359 | c->x86 = (tfms >> 8) & 0xf; |
| 360 | c->x86_model = (tfms >> 4) & 0xf; |
| 361 | c->x86_mask = tfms & 0xf; |
Suresh Siddha | f5f786d | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 362 | if (c->x86 == 0xf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | c->x86 += (tfms >> 20) & 0xff; |
Suresh Siddha | f5f786d | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 364 | if (c->x86 >= 0x6) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 365 | c->x86_model += ((tfms >> 16) & 0xf) << 4; |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 366 | if (cap0 & (1<<19)) { |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 367 | c->x86_clflush_size = ((misc >> 8) & 0xff) * 8; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 368 | c->x86_cache_alignment = c->x86_clflush_size; |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 372 | |
| 373 | static void __cpuinit get_cpu_cap(struct cpuinfo_x86 *c) |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 374 | { |
| 375 | u32 tfms, xlvl; |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 376 | u32 ebx; |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 377 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 378 | /* Intel-defined flags: level 0x00000001 */ |
| 379 | if (c->cpuid_level >= 0x00000001) { |
| 380 | u32 capability, excap; |
| 381 | cpuid(0x00000001, &tfms, &ebx, &excap, &capability); |
| 382 | c->x86_capability[0] = capability; |
| 383 | c->x86_capability[4] = excap; |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 384 | } |
| 385 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 386 | /* AMD-defined flags: level 0x80000001 */ |
| 387 | xlvl = cpuid_eax(0x80000000); |
| 388 | c->extended_cpuid_level = xlvl; |
| 389 | if ((xlvl & 0xffff0000) == 0x80000000) { |
| 390 | if (xlvl >= 0x80000001) { |
| 391 | c->x86_capability[1] = cpuid_edx(0x80000001); |
| 392 | c->x86_capability[6] = cpuid_ecx(0x80000001); |
| 393 | } |
| 394 | } |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 395 | } |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 396 | /* |
| 397 | * Do minimum CPU detection early. |
| 398 | * Fields really needed: vendor, cpuid_level, family, model, mask, |
| 399 | * cache alignment. |
| 400 | * The others are not touched to avoid unwanted side effects. |
| 401 | * |
| 402 | * WARNING: this function is only called on the BP. Don't add code here |
| 403 | * that is supposed to run on all CPUs. |
| 404 | */ |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 405 | static void __init early_identify_cpu(struct cpuinfo_x86 *c) |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 406 | { |
Huang, Ying | d4387bd | 2008-01-31 22:05:45 +0100 | [diff] [blame] | 407 | c->x86_clflush_size = 32; |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 408 | c->x86_cache_alignment = c->x86_clflush_size; |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 409 | |
| 410 | if (!have_cpuid_p()) |
| 411 | return; |
| 412 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 413 | memset(&c->x86_capability, 0, sizeof c->x86_capability); |
| 414 | |
Yinghai Lu | 0a488a5 | 2008-09-04 21:09:47 +0200 | [diff] [blame] | 415 | c->extended_cpuid_level = 0; |
| 416 | |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 417 | cpu_detect(c); |
| 418 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 419 | get_cpu_vendor(c); |
Andi Kleen | 2b16a23 | 2008-01-30 13:32:40 +0100 | [diff] [blame] | 420 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 421 | get_cpu_cap(c); |
Yinghai Lu | 093af8d | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 422 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 423 | if (this_cpu->c_early_init) |
| 424 | this_cpu->c_early_init(c); |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 425 | |
| 426 | validate_pat_support(c); |
Rusty Russell | d7cd561 | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 427 | } |
| 428 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 429 | void __init early_cpu_init(void) |
| 430 | { |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 431 | struct cpu_dev **cdev; |
| 432 | int count = 0; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 433 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 434 | printk("KERNEL supported cpus:\n"); |
| 435 | for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) { |
| 436 | struct cpu_dev *cpudev = *cdev; |
| 437 | unsigned int j; |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 438 | |
Yinghai Lu | 10a434f | 2008-09-04 21:09:45 +0200 | [diff] [blame] | 439 | if (count >= X86_VENDOR_NUM) |
| 440 | break; |
| 441 | cpu_devs[count] = cpudev; |
| 442 | count++; |
| 443 | |
| 444 | for (j = 0; j < 2; j++) { |
| 445 | if (!cpudev->c_ident[j]) |
| 446 | continue; |
| 447 | printk(" %s %s\n", cpudev->c_vendor, |
| 448 | cpudev->c_ident[j]); |
| 449 | } |
| 450 | } |
| 451 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 452 | early_identify_cpu(&boot_cpu_data); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 453 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
H. Peter Anvin | 7e00df5 | 2008-08-18 17:39:32 -0700 | [diff] [blame] | 455 | /* |
| 456 | * The NOPL instruction is supposed to exist on all CPUs with |
| 457 | * family >= 6, unfortunately, that's not true in practice because |
| 458 | * of early VIA chips and (more importantly) broken virtualizers that |
| 459 | * are not easy to detect. Hence, probe for it based on first |
| 460 | * principles. |
| 461 | */ |
| 462 | static void __cpuinit detect_nopl(struct cpuinfo_x86 *c) |
| 463 | { |
| 464 | const u32 nopl_signature = 0x888c53b1; /* Random number */ |
| 465 | u32 has_nopl = nopl_signature; |
| 466 | |
| 467 | clear_cpu_cap(c, X86_FEATURE_NOPL); |
| 468 | if (c->x86 >= 6) { |
| 469 | asm volatile("\n" |
| 470 | "1: .byte 0x0f,0x1f,0xc0\n" /* nopl %eax */ |
| 471 | "2:\n" |
| 472 | " .section .fixup,\"ax\"\n" |
| 473 | "3: xor %0,%0\n" |
| 474 | " jmp 2b\n" |
| 475 | " .previous\n" |
| 476 | _ASM_EXTABLE(1b,3b) |
| 477 | : "+a" (has_nopl)); |
| 478 | |
| 479 | if (has_nopl == nopl_signature) |
| 480 | set_cpu_cap(c, X86_FEATURE_NOPL); |
| 481 | } |
| 482 | } |
| 483 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 484 | static void __cpuinit generic_identify(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | { |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 486 | if (!have_cpuid_p()) |
| 487 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 489 | c->extended_cpuid_level = 0; |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 490 | |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 491 | cpu_detect(c); |
| 492 | |
| 493 | get_cpu_vendor(c); |
| 494 | |
| 495 | get_cpu_cap(c); |
| 496 | |
| 497 | if (c->cpuid_level >= 0x00000001) { |
| 498 | c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF; |
James Bottomley | 96c5274 | 2006-06-27 02:53:49 -0700 | [diff] [blame] | 499 | #ifdef CONFIG_X86_HT |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 500 | c->apicid = phys_pkg_id(c->initial_apicid, 0); |
| 501 | c->phys_proc_id = c->initial_apicid; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 502 | #else |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 503 | c->apicid = c->initial_apicid; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 504 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | } |
Yinghai Lu | 3da99c9 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 506 | |
| 507 | if (c->extended_cpuid_level >= 0x80000004) |
| 508 | get_model_name(c); /* Default name */ |
| 509 | |
| 510 | init_scattered_cpuid_features(c); |
| 511 | detect_nopl(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | /* |
| 515 | * This does the hard work of actually picking apart the CPU stuff... |
| 516 | */ |
Yinghai Lu | 9a25034 | 2008-06-21 03:24:00 -0700 | [diff] [blame] | 517 | static void __cpuinit identify_cpu(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
| 519 | int i; |
| 520 | |
| 521 | c->loops_per_jiffy = loops_per_jiffy; |
| 522 | c->x86_cache_size = -1; |
| 523 | c->x86_vendor = X86_VENDOR_UNKNOWN; |
| 524 | c->cpuid_level = -1; /* CPUID not detected */ |
| 525 | c->x86_model = c->x86_mask = 0; /* So far unknown... */ |
| 526 | c->x86_vendor_id[0] = '\0'; /* Unset */ |
| 527 | c->x86_model_id[0] = '\0'; /* Unset */ |
Siddha, Suresh B | 94605ef | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 528 | c->x86_max_cores = 1; |
Andi Kleen | 770d132 | 2006-12-07 02:14:05 +0100 | [diff] [blame] | 529 | c->x86_clflush_size = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | memset(&c->x86_capability, 0, sizeof c->x86_capability); |
| 531 | |
| 532 | if (!have_cpuid_p()) { |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 533 | /* |
| 534 | * First of all, decide if this is a 486 or higher |
| 535 | * It's a 486 if we can modify the AC flag |
| 536 | */ |
| 537 | if (flag_is_changeable_p(X86_EFLAGS_AC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | c->x86 = 4; |
| 539 | else |
| 540 | c->x86 = 3; |
| 541 | } |
| 542 | |
| 543 | generic_identify(c); |
| 544 | |
Andi Kleen | 3898534 | 2008-01-30 13:32:49 +0100 | [diff] [blame] | 545 | if (this_cpu->c_identify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | this_cpu->c_identify(c); |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | /* |
| 549 | * Vendor-specific initialization. In this section we |
| 550 | * canonicalize the feature flags, meaning if there are |
| 551 | * features a certain CPU supports which CPUID doesn't |
| 552 | * tell us, CPUID claiming incorrect flags, or other bugs, |
| 553 | * we handle them here. |
| 554 | * |
| 555 | * At the end of this section, c->x86_capability better |
| 556 | * indicate the features this CPU genuinely supports! |
| 557 | */ |
| 558 | if (this_cpu->c_init) |
| 559 | this_cpu->c_init(c); |
| 560 | |
| 561 | /* Disable the PN if appropriate */ |
| 562 | squash_the_stupid_serial_number(c); |
| 563 | |
| 564 | /* |
| 565 | * The vendor-specific functions might have changed features. Now |
| 566 | * we do "generic changes." |
| 567 | */ |
| 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* If the model name is still unset, do table lookup. */ |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 570 | if (!c->x86_model_id[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | char *p; |
| 572 | p = table_lookup_model(c); |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 573 | if (p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | strcpy(c->x86_model_id, p); |
| 575 | else |
| 576 | /* Last resort... */ |
| 577 | sprintf(c->x86_model_id, "%02x/%02x", |
Chuck Ebbert | 54a20f8 | 2006-03-23 02:59:36 -0800 | [diff] [blame] | 578 | c->x86, c->x86_model); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | /* |
| 582 | * On SMP, boot_cpu_data holds the common feature set between |
| 583 | * all CPUs; so make sure that we indicate which features are |
| 584 | * common between the CPUs. The first time this routine gets |
| 585 | * executed, c == &boot_cpu_data. |
| 586 | */ |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 587 | if (c != &boot_cpu_data) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | /* AND the already accumulated flags with these */ |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 589 | for (i = 0; i < NCAPINTS; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | boot_cpu_data.x86_capability[i] &= c->x86_capability[i]; |
| 591 | } |
| 592 | |
Andi Kleen | 7d851c8 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 593 | /* Clear all flags overriden by options */ |
| 594 | for (i = 0; i < NCAPINTS; i++) |
Mikael Pettersson | 12c247a | 2008-02-24 18:27:03 +0100 | [diff] [blame] | 595 | c->x86_capability[i] &= ~cleared_cpu_caps[i]; |
Andi Kleen | 7d851c8 | 2008-01-30 13:33:20 +0100 | [diff] [blame] | 596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | /* Init Machine Check Exception if available. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | mcheck_init(c); |
Andi Kleen | 30d432d | 2008-01-30 13:33:16 +0100 | [diff] [blame] | 599 | |
| 600 | select_idle_routine(c); |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 601 | } |
Shaohua Li | 31ab269 | 2005-11-07 00:58:42 -0800 | [diff] [blame] | 602 | |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 603 | void __init identify_boot_cpu(void) |
| 604 | { |
| 605 | identify_cpu(&boot_cpu_data); |
| 606 | sysenter_setup(); |
Li Shaohua | 6fe940d | 2005-06-25 14:54:53 -0700 | [diff] [blame] | 607 | enable_sep_cpu(); |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 608 | } |
Shaohua Li | 3b520b2 | 2005-07-07 17:56:38 -0700 | [diff] [blame] | 609 | |
Jeremy Fitzhardinge | a6c4e07 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 610 | void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c) |
| 611 | { |
| 612 | BUG_ON(c == &boot_cpu_data); |
| 613 | identify_cpu(c); |
| 614 | enable_sep_cpu(); |
| 615 | mtrr_ap_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 618 | struct msr_range { |
| 619 | unsigned min; |
| 620 | unsigned max; |
| 621 | }; |
| 622 | |
| 623 | static struct msr_range msr_range_array[] __cpuinitdata = { |
| 624 | { 0x00000000, 0x00000418}, |
| 625 | { 0xc0000000, 0xc000040b}, |
| 626 | { 0xc0010000, 0xc0010142}, |
| 627 | { 0xc0011000, 0xc001103b}, |
| 628 | }; |
| 629 | |
| 630 | static void __cpuinit print_cpu_msr(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 632 | unsigned index; |
| 633 | u64 val; |
| 634 | int i; |
| 635 | unsigned index_min, index_max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 637 | for (i = 0; i < ARRAY_SIZE(msr_range_array); i++) { |
| 638 | index_min = msr_range_array[i].min; |
| 639 | index_max = msr_range_array[i].max; |
| 640 | for (index = index_min; index < index_max; index++) { |
| 641 | if (rdmsrl_amd_safe(index, &val)) |
| 642 | continue; |
| 643 | printk(KERN_INFO " MSR%08x: %016llx\n", index, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | } |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 647 | |
| 648 | static int show_msr __cpuinitdata; |
| 649 | static __init int setup_show_msr(char *arg) |
| 650 | { |
| 651 | int num; |
| 652 | |
| 653 | get_option(&arg, &num); |
| 654 | |
| 655 | if (num > 0) |
| 656 | show_msr = num; |
| 657 | return 1; |
| 658 | } |
| 659 | __setup("show_msr=", setup_show_msr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Andi Kleen | 191679f | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 661 | static __init int setup_noclflush(char *arg) |
| 662 | { |
| 663 | setup_clear_cpu_cap(X86_FEATURE_CLFLSH); |
| 664 | return 1; |
| 665 | } |
| 666 | __setup("noclflush", setup_noclflush); |
| 667 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 668 | void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
| 670 | char *vendor = NULL; |
| 671 | |
| 672 | if (c->x86_vendor < X86_VENDOR_NUM) |
| 673 | vendor = this_cpu->c_vendor; |
| 674 | else if (c->cpuid_level >= 0) |
| 675 | vendor = c->x86_vendor_id; |
| 676 | |
| 677 | if (vendor && strncmp(c->x86_model_id, vendor, strlen(vendor))) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 678 | printk(KERN_CONT "%s ", vendor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 680 | if (c->x86_model_id[0]) |
| 681 | printk(KERN_CONT "%s", c->x86_model_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 683 | printk(KERN_CONT "%d86", c->x86); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 685 | if (c->x86_mask || c->cpuid_level >= 0) |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 686 | printk(KERN_CONT " stepping %02x\n", c->x86_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | else |
Yinghai Lu | 9d31d35 | 2008-09-04 21:09:44 +0200 | [diff] [blame] | 688 | printk(KERN_CONT "\n"); |
Yinghai Lu | a0854a4 | 2008-09-04 21:09:46 +0200 | [diff] [blame] | 689 | |
| 690 | #ifdef CONFIG_SMP |
| 691 | if (c->cpu_index < show_msr) |
| 692 | print_cpu_msr(); |
| 693 | #else |
| 694 | if (show_msr) |
| 695 | print_cpu_msr(); |
| 696 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Andi Kleen | ac72e78 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 699 | static __init int setup_disablecpuid(char *arg) |
| 700 | { |
| 701 | int bit; |
| 702 | if (get_option(&arg, &bit) && bit < NCAPINTS*32) |
| 703 | setup_clear_cpu_cap(bit); |
| 704 | else |
| 705 | return 0; |
| 706 | return 1; |
| 707 | } |
| 708 | __setup("clearcpuid=", setup_disablecpuid); |
| 709 | |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 710 | cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
Jeremy Fitzhardinge | 7c3576d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 712 | /* Make sure %fs is initialized properly in idle threads */ |
Adrian Bunk | 6b2fb3c | 2008-02-06 01:37:55 -0800 | [diff] [blame] | 713 | struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs) |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 714 | { |
| 715 | memset(regs, 0, sizeof(struct pt_regs)); |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 716 | regs->fs = __KERNEL_PERCPU; |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 717 | return regs; |
| 718 | } |
| 719 | |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 720 | /* |
| 721 | * cpu_init() initializes state that is per-CPU. Some data is already |
| 722 | * initialized (naturally) in the bootstrap process, such as the GDT |
| 723 | * and IDT. We reload them nevertheless, this function acts as a |
| 724 | * 'CPU state barrier', nothing should get across. |
| 725 | */ |
| 726 | void __cpuinit cpu_init(void) |
James Bottomley | 9ee79a3 | 2007-01-22 09:18:31 -0600 | [diff] [blame] | 727 | { |
Rusty Russell | d2cbcc4 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 728 | int cpu = smp_processor_id(); |
| 729 | struct task_struct *curr = current; |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 730 | struct tss_struct *t = &per_cpu(init_tss, cpu); |
James Bottomley | 9ee79a3 | 2007-01-22 09:18:31 -0600 | [diff] [blame] | 731 | struct thread_struct *thread = &curr->thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | |
| 733 | if (cpu_test_and_set(cpu, cpu_initialized)) { |
| 734 | printk(KERN_WARNING "CPU#%d already initialized!\n", cpu); |
| 735 | for (;;) local_irq_enable(); |
| 736 | } |
Jeremy Fitzhardinge | 6211119 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | printk(KERN_INFO "Initializing CPU#%d\n", cpu); |
| 739 | |
| 740 | if (cpu_has_vme || cpu_has_tsc || cpu_has_de) |
| 741 | 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] | 742 | |
Zachary Amsden | 4d37e7e | 2005-09-03 15:56:38 -0700 | [diff] [blame] | 743 | load_idt(&idt_descr); |
Jeremy Fitzhardinge | c5413fb | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 744 | switch_to_new_gdt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | |
| 746 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | * Set up and load the per-CPU TSS and LDT |
| 748 | */ |
| 749 | atomic_inc(&init_mm.mm_count); |
Jeremy Fitzhardinge | 6211119 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 750 | curr->active_mm = &init_mm; |
| 751 | if (curr->mm) |
| 752 | BUG(); |
| 753 | enter_lazy_tlb(&init_mm, curr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 755 | load_sp0(t, thread); |
Paolo Ciarrocchi | 34048c9 | 2008-02-24 11:58:13 +0100 | [diff] [blame] | 756 | set_tss_desc(cpu, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | load_TR_desc(); |
| 758 | load_LDT(&init_mm.context); |
| 759 | |
Matt Mackall | 22c4e30 | 2006-01-08 01:05:24 -0800 | [diff] [blame] | 760 | #ifdef CONFIG_DOUBLEFAULT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | /* Set up doublefault TSS pointer in the GDT */ |
| 762 | __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss); |
Matt Mackall | 22c4e30 | 2006-01-08 01:05:24 -0800 | [diff] [blame] | 763 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 765 | /* Clear %gs. */ |
| 766 | asm volatile ("mov %0, %%gs" : : "r" (0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
| 768 | /* Clear all 6 debug registers: */ |
Zachary Amsden | 4bb0d3e | 2005-09-03 15:56:36 -0700 | [diff] [blame] | 769 | set_debugreg(0, 0); |
| 770 | set_debugreg(0, 1); |
| 771 | set_debugreg(0, 2); |
| 772 | set_debugreg(0, 3); |
| 773 | set_debugreg(0, 6); |
| 774 | set_debugreg(0, 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | /* |
| 777 | * Force FPU initialization: |
| 778 | */ |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 779 | if (cpu_has_xsave) |
| 780 | current_thread_info()->status = TS_XSAVE; |
| 781 | else |
| 782 | current_thread_info()->status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | clear_used_math(); |
| 784 | mxcsr_feature_mask_init(); |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 785 | |
| 786 | /* |
| 787 | * Boot processor to setup the FP and extended state context info. |
| 788 | */ |
| 789 | if (!smp_processor_id()) |
| 790 | init_thread_xstate(); |
| 791 | |
| 792 | xsave_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | } |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 794 | |
| 795 | #ifdef CONFIG_HOTPLUG_CPU |
Chuck Ebbert | 3bc9b76 | 2006-03-23 02:59:33 -0800 | [diff] [blame] | 796 | void __cpuinit cpu_uninit(void) |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 797 | { |
| 798 | int cpu = raw_smp_processor_id(); |
| 799 | cpu_clear(cpu, cpu_initialized); |
| 800 | |
| 801 | /* lazy TLB state */ |
| 802 | per_cpu(cpu_tlbstate, cpu).state = 0; |
| 803 | per_cpu(cpu_tlbstate, cpu).active_mm = &init_mm; |
| 804 | } |
| 805 | #endif |