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>
7#include <linux/bootmem.h>
8#include <asm/semaphore.h>
9#include <asm/processor.h>
10#include <asm/i387.h>
11#include <asm/msr.h>
12#include <asm/io.h>
13#include <asm/mmu_context.h>
14#include <asm/mtrr.h>
15#include <asm/mce.h>
16#ifdef CONFIG_X86_LOCAL_APIC
17#include <asm/mpspec.h>
18#include <asm/apic.h>
19#include <mach_apic.h>
20#endif
21
22#include "cpu.h"
23
24DEFINE_PER_CPU(struct gdt_page, gdt_page) = { .gdt = {
25 [GDT_ENTRY_KERNEL_CS] = { { { 0x0000ffff, 0x00cf9a00 } } },
26 [GDT_ENTRY_KERNEL_DS] = { { { 0x0000ffff, 0x00cf9200 } } },
27 [GDT_ENTRY_DEFAULT_USER_CS] = { { { 0x0000ffff, 0x00cffa00 } } },
28 [GDT_ENTRY_DEFAULT_USER_DS] = { { { 0x0000ffff, 0x00cff200 } } },
29
30
31
32
33
34
35 [GDT_ENTRY_PNPBIOS_CS32] = { { { 0x0000ffff, 0x00409a00 } } },
36
37 [GDT_ENTRY_PNPBIOS_CS16] = { { { 0x0000ffff, 0x00009a00 } } },
38
39 [GDT_ENTRY_PNPBIOS_DS] = { { { 0x0000ffff, 0x00009200 } } },
40
41 [GDT_ENTRY_PNPBIOS_TS1] = { { { 0x00000000, 0x00009200 } } },
42
43 [GDT_ENTRY_PNPBIOS_TS2] = { { { 0x00000000, 0x00009200 } } },
44
45
46
47
48
49 [GDT_ENTRY_APMBIOS_BASE] = { { { 0x0000ffff, 0x00409a00 } } },
50
51 [GDT_ENTRY_APMBIOS_BASE+1] = { { { 0x0000ffff, 0x00009a00 } } },
52
53 [GDT_ENTRY_APMBIOS_BASE+2] = { { { 0x0000ffff, 0x00409200 } } },
54
55 [GDT_ENTRY_ESPFIX_SS] = { { { 0x00000000, 0x00c09200 } } },
56 [GDT_ENTRY_PERCPU] = { { { 0x00000000, 0x00000000 } } },
57} };
58EXPORT_PER_CPU_SYMBOL_GPL(gdt_page);
59
60__u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata;
61
62static int cachesize_override __cpuinitdata = -1;
63static int disable_x86_serial_nr __cpuinitdata = 1;
64
65struct cpu_dev * cpu_devs[X86_VENDOR_NUM] = {};
66
67static void __cpuinit default_init(struct cpuinfo_x86 * c)
68{
69
70
71 if (c->cpuid_level == -1) {
72
73 if (c->x86 == 4)
74 strcpy(c->x86_model_id, "486");
75 else if (c->x86 == 3)
76 strcpy(c->x86_model_id, "386");
77 }
78}
79
80static struct cpu_dev __cpuinitdata default_cpu = {
81 .c_init = default_init,
82 .c_vendor = "Unknown",
83};
84static struct cpu_dev * this_cpu __cpuinitdata = &default_cpu;
85
86static int __init cachesize_setup(char *str)
87{
88 get_option (&str, &cachesize_override);
89 return 1;
90}
91__setup("cachesize=", cachesize_setup);
92
93int __cpuinit get_model_name(struct cpuinfo_x86 *c)
94{
95 unsigned int *v;
96 char *p, *q;
97
98 if (cpuid_eax(0x80000000) < 0x80000004)
99 return 0;
100
101 v = (unsigned int *) c->x86_model_id;
102 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
103 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
104 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
105 c->x86_model_id[48] = 0;
106
107
108
109 p = q = &c->x86_model_id[0];
110 while ( *p == ' ' )
111 p++;
112 if ( p != q ) {
113 while ( *p )
114 *q++ = *p++;
115 while ( q <= &c->x86_model_id[48] )
116 *q++ = '\0';
117 }
118
119 return 1;
120}
121
122
123void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c)
124{
125 unsigned int n, dummy, ecx, edx, l2size;
126
127 n = cpuid_eax(0x80000000);
128
129 if (n >= 0x80000005) {
130 cpuid(0x80000005, &dummy, &dummy, &ecx, &edx);
131 printk(KERN_INFO "CPU: L1 I Cache: %dK (%d bytes/line), D cache %dK (%d bytes/line)\n",
132 edx>>24, edx&0xFF, ecx>>24, ecx&0xFF);
133 c->x86_cache_size=(ecx>>24)+(edx>>24);
134 }
135
136 if (n < 0x80000006)
137 return;
138
139 ecx = cpuid_ecx(0x80000006);
140 l2size = ecx >> 16;
141
142
143 if (this_cpu->c_size_cache)
144 l2size = this_cpu->c_size_cache(c,l2size);
145
146
147 if (cachesize_override != -1)
148 l2size = cachesize_override;
149
150 if ( l2size == 0 )
151 return;
152
153 c->x86_cache_size = l2size;
154
155 printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n",
156 l2size, ecx & 0xFF);
157}
158
159
160
161
162
163
164static char __cpuinit *table_lookup_model(struct cpuinfo_x86 *c)
165{
166 struct cpu_model_info *info;
167
168 if ( c->x86_model >= 16 )
169 return NULL;
170
171 if (!this_cpu)
172 return NULL;
173
174 info = this_cpu->c_models;
175
176 while (info && info->family) {
177 if (info->family == c->x86)
178 return info->model_names[c->x86_model];
179 info++;
180 }
181 return NULL;
182}
183
184
185static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c, int early)
186{
187 char *v = c->x86_vendor_id;
188 int i;
189 static int printed;
190
191 for (i = 0; i < X86_VENDOR_NUM; i++) {
192 if (cpu_devs[i]) {
193 if (!strcmp(v,cpu_devs[i]->c_ident[0]) ||
194 (cpu_devs[i]->c_ident[1] &&
195 !strcmp(v,cpu_devs[i]->c_ident[1]))) {
196 c->x86_vendor = i;
197 if (!early)
198 this_cpu = cpu_devs[i];
199 return;
200 }
201 }
202 }
203 if (!printed) {
204 printed++;
205 printk(KERN_ERR "CPU: Vendor unknown, using generic init.\n");
206 printk(KERN_ERR "CPU: Your system may be unstable.\n");
207 }
208 c->x86_vendor = X86_VENDOR_UNKNOWN;
209 this_cpu = &default_cpu;
210}
211
212
213static int __init x86_fxsr_setup(char * s)
214{
215 setup_clear_cpu_cap(X86_FEATURE_FXSR);
216 setup_clear_cpu_cap(X86_FEATURE_XMM);
217 return 1;
218}
219__setup("nofxsr", x86_fxsr_setup);
220
221
222static int __init x86_sep_setup(char * s)
223{
224 setup_clear_cpu_cap(X86_FEATURE_SEP);
225 return 1;
226}
227__setup("nosep", x86_sep_setup);
228
229
230
231static inline int flag_is_changeable_p(u32 flag)
232{
233 u32 f1, f2;
234
235 asm("pushfl\n\t"
236 "pushfl\n\t"
237 "popl %0\n\t"
238 "movl %0,%1\n\t"
239 "xorl %2,%0\n\t"
240 "pushl %0\n\t"
241 "popfl\n\t"
242 "pushfl\n\t"
243 "popl %0\n\t"
244 "popfl\n\t"
245 : "=&r" (f1), "=&r" (f2)
246 : "ir" (flag));
247
248 return ((f1^f2) & flag) != 0;
249}
250
251
252
253static int __cpuinit have_cpuid_p(void)
254{
255 return flag_is_changeable_p(X86_EFLAGS_ID);
256}
257
258void __init cpu_detect(struct cpuinfo_x86 *c)
259{
260
261 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
262 (unsigned int *)&c->x86_vendor_id[0],
263 (unsigned int *)&c->x86_vendor_id[8],
264 (unsigned int *)&c->x86_vendor_id[4]);
265
266 c->x86 = 4;
267 if (c->cpuid_level >= 0x00000001) {
268 u32 junk, tfms, cap0, misc;
269 cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
270 c->x86 = (tfms >> 8) & 15;
271 c->x86_model = (tfms >> 4) & 15;
272 if (c->x86 == 0xf)
273 c->x86 += (tfms >> 20) & 0xff;
274 if (c->x86 >= 0x6)
275 c->x86_model += ((tfms >> 16) & 0xF) << 4;
276 c->x86_mask = tfms & 15;
277 if (cap0 & (1<<19)) {
278 c->x86_cache_alignment = ((misc >> 8) & 0xff) * 8;
279 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
280 }
281 }
282}
283static void __cpuinit early_get_cap(struct cpuinfo_x86 *c)
284{
285 u32 tfms, xlvl;
286 unsigned int ebx;
287
288 memset(&c->x86_capability, 0, sizeof c->x86_capability);
289 if (have_cpuid_p()) {
290
291 if (c->cpuid_level >= 0x00000001) {
292 u32 capability, excap;
293 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
294 c->x86_capability[0] = capability;
295 c->x86_capability[4] = excap;
296 }
297
298
299 xlvl = cpuid_eax(0x80000000);
300 if ((xlvl & 0xffff0000) == 0x80000000) {
301 if (xlvl >= 0x80000001) {
302 c->x86_capability[1] = cpuid_edx(0x80000001);
303 c->x86_capability[6] = cpuid_ecx(0x80000001);
304 }
305 }
306
307 }
308
309}
310
311
312
313
314
315
316
317static void __init early_cpu_detect(void)
318{
319 struct cpuinfo_x86 *c = &boot_cpu_data;
320
321 c->x86_cache_alignment = 32;
322 c->x86_clflush_size = 32;
323
324 if (!have_cpuid_p())
325 return;
326
327 cpu_detect(c);
328
329 get_cpu_vendor(c, 1);
330
331 switch (c->x86_vendor) {
332 case X86_VENDOR_AMD:
333 early_init_amd(c);
334 break;
335 case X86_VENDOR_INTEL:
336 early_init_intel(c);
337 break;
338 }
339
340 early_get_cap(c);
341}
342
343static void __cpuinit generic_identify(struct cpuinfo_x86 * c)
344{
345 u32 tfms, xlvl;
346 unsigned int ebx;
347
348 if (have_cpuid_p()) {
349
350 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
351 (unsigned int *)&c->x86_vendor_id[0],
352 (unsigned int *)&c->x86_vendor_id[8],
353 (unsigned int *)&c->x86_vendor_id[4]);
354
355 get_cpu_vendor(c, 0);
356
357
358
359
360 if ( c->cpuid_level >= 0x00000001 ) {
361 u32 capability, excap;
362 cpuid(0x00000001, &tfms, &ebx, &excap, &capability);
363 c->x86_capability[0] = capability;
364 c->x86_capability[4] = excap;
365 c->x86 = (tfms >> 8) & 15;
366 c->x86_model = (tfms >> 4) & 15;
367 if (c->x86 == 0xf)
368 c->x86 += (tfms >> 20) & 0xff;
369 if (c->x86 >= 0x6)
370 c->x86_model += ((tfms >> 16) & 0xF) << 4;
371 c->x86_mask = tfms & 15;
372#ifdef CONFIG_X86_HT
373 c->apicid = phys_pkg_id((ebx >> 24) & 0xFF, 0);
374#else
375 c->apicid = (ebx >> 24) & 0xFF;
376#endif
377 if (c->x86_capability[0] & (1<<19))
378 c->x86_clflush_size = ((ebx >> 8) & 0xff) * 8;
379 } else {
380
381 c->x86 = 4;
382 }
383
384
385 xlvl = cpuid_eax(0x80000000);
386 if ( (xlvl & 0xffff0000) == 0x80000000 ) {
387 if ( xlvl >= 0x80000001 ) {
388 c->x86_capability[1] = cpuid_edx(0x80000001);
389 c->x86_capability[6] = cpuid_ecx(0x80000001);
390 }
391 if ( xlvl >= 0x80000004 )
392 get_model_name(c);
393 }
394
395 init_scattered_cpuid_features(c);
396 }
397
398#ifdef CONFIG_X86_HT
399 c->phys_proc_id = (cpuid_ebx(1) >> 24) & 0xff;
400#endif
401}
402
403static void __cpuinit squash_the_stupid_serial_number(struct cpuinfo_x86 *c)
404{
405 if (cpu_has(c, X86_FEATURE_PN) && disable_x86_serial_nr ) {
406
407 unsigned long lo,hi;
408 rdmsr(MSR_IA32_BBL_CR_CTL,lo,hi);
409 lo |= 0x200000;
410 wrmsr(MSR_IA32_BBL_CR_CTL,lo,hi);
411 printk(KERN_NOTICE "CPU serial number disabled.\n");
412 clear_bit(X86_FEATURE_PN, c->x86_capability);
413
414
415 c->cpuid_level = cpuid_eax(0);
416 }
417}
418
419static int __init x86_serial_nr_setup(char *s)
420{
421 disable_x86_serial_nr = 0;
422 return 1;
423}
424__setup("serialnumber", x86_serial_nr_setup);
425
426
427
428
429
430
431void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
432{
433 int i;
434
435 c->loops_per_jiffy = loops_per_jiffy;
436 c->x86_cache_size = -1;
437 c->x86_vendor = X86_VENDOR_UNKNOWN;
438 c->cpuid_level = -1;
439 c->x86_model = c->x86_mask = 0;
440 c->x86_vendor_id[0] = '\0';
441 c->x86_model_id[0] = '\0';
442 c->x86_max_cores = 1;
443 c->x86_clflush_size = 32;
444 memset(&c->x86_capability, 0, sizeof c->x86_capability);
445
446 if (!have_cpuid_p()) {
447
448
449 if ( flag_is_changeable_p(X86_EFLAGS_AC) )
450 c->x86 = 4;
451 else
452 c->x86 = 3;
453 }
454
455 generic_identify(c);
456
457 if (this_cpu->c_identify)
458 this_cpu->c_identify(c);
459
460
461
462
463
464
465
466
467
468
469
470 if (this_cpu->c_init)
471 this_cpu->c_init(c);
472
473
474 squash_the_stupid_serial_number(c);
475
476
477
478
479
480
481
482 if ( !c->x86_model_id[0] ) {
483 char *p;
484 p = table_lookup_model(c);
485 if ( p )
486 strcpy(c->x86_model_id, p);
487 else
488
489 sprintf(c->x86_model_id, "%02x/%02x",
490 c->x86, c->x86_model);
491 }
492
493
494
495
496
497
498
499 if ( c != &boot_cpu_data ) {
500
501 for ( i = 0 ; i < NCAPINTS ; i++ )
502 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
503 }
504
505
506 for (i = 0; i < NCAPINTS; i++)
507 c->x86_capability[i] &= ~cleared_cpu_caps[i];
508
509
510 mcheck_init(c);
511
512 select_idle_routine(c);
513}
514
515void __init identify_boot_cpu(void)
516{
517 identify_cpu(&boot_cpu_data);
518 sysenter_setup();
519 enable_sep_cpu();
520}
521
522void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
523{
524 BUG_ON(c == &boot_cpu_data);
525 identify_cpu(c);
526 enable_sep_cpu();
527 mtrr_ap_init();
528}
529
530#ifdef CONFIG_X86_HT
531void __cpuinit detect_ht(struct cpuinfo_x86 *c)
532{
533 u32 eax, ebx, ecx, edx;
534 int index_msb, core_bits;
535
536 cpuid(1, &eax, &ebx, &ecx, &edx);
537
538 if (!cpu_has(c, X86_FEATURE_HT) || cpu_has(c, X86_FEATURE_CMP_LEGACY))
539 return;
540
541 smp_num_siblings = (ebx & 0xff0000) >> 16;
542
543 if (smp_num_siblings == 1) {
544 printk(KERN_INFO "CPU: Hyper-Threading is disabled\n");
545 } else if (smp_num_siblings > 1 ) {
546
547 if (smp_num_siblings > NR_CPUS) {
548 printk(KERN_WARNING "CPU: Unsupported number of the "
549 "siblings %d", smp_num_siblings);
550 smp_num_siblings = 1;
551 return;
552 }
553
554 index_msb = get_count_order(smp_num_siblings);
555 c->phys_proc_id = phys_pkg_id((ebx >> 24) & 0xFF, index_msb);
556
557 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
558 c->phys_proc_id);
559
560 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
561
562 index_msb = get_count_order(smp_num_siblings) ;
563
564 core_bits = get_count_order(c->x86_max_cores);
565
566 c->cpu_core_id = phys_pkg_id((ebx >> 24) & 0xFF, index_msb) &
567 ((1 << core_bits) - 1);
568
569 if (c->x86_max_cores > 1)
570 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
571 c->cpu_core_id);
572 }
573}
574#endif
575
576static __init int setup_noclflush(char *arg)
577{
578 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
579 return 1;
580}
581__setup("noclflush", setup_noclflush);
582
583void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
584{
585 char *vendor = NULL;
586
587 if (c->x86_vendor < X86_VENDOR_NUM)
588 vendor = this_cpu->c_vendor;
589 else if (c->cpuid_level >= 0)
590 vendor = c->x86_vendor_id;
591
592 if (vendor && strncmp(c->x86_model_id, vendor, strlen(vendor)))
593 printk("%s ", vendor);
594
595 if (!c->x86_model_id[0])
596 printk("%d86", c->x86);
597 else
598 printk("%s", c->x86_model_id);
599
600 if (c->x86_mask || c->cpuid_level >= 0)
601 printk(" stepping %02x\n", c->x86_mask);
602 else
603 printk("\n");
604}
605
606static __init int setup_disablecpuid(char *arg)
607{
608 int bit;
609 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
610 setup_clear_cpu_cap(bit);
611 else
612 return 0;
613 return 1;
614}
615__setup("clearcpuid=", setup_disablecpuid);
616
617cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE;
618
619
620
621
622
623
624
625
626void __init early_cpu_init(void)
627{
628 intel_cpu_init();
629 cyrix_init_cpu();
630 nsc_init_cpu();
631 amd_init_cpu();
632 centaur_init_cpu();
633 transmeta_init_cpu();
634 nexgen_init_cpu();
635 umc_init_cpu();
636 early_cpu_detect();
637}
638
639
640struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
641{
642 memset(regs, 0, sizeof(struct pt_regs));
643 regs->fs = __KERNEL_PERCPU;
644 return regs;
645}
646
647
648
649void switch_to_new_gdt(void)
650{
651 struct desc_ptr gdt_descr;
652
653 gdt_descr.address = (long)get_cpu_gdt_table(smp_processor_id());
654 gdt_descr.size = GDT_SIZE - 1;
655 load_gdt(&gdt_descr);
656 asm("mov %0, %%fs" : : "r" (__KERNEL_PERCPU) : "memory");
657}
658
659
660
661
662
663
664
665void __cpuinit cpu_init(void)
666{
667 int cpu = smp_processor_id();
668 struct task_struct *curr = current;
669 struct tss_struct * t = &per_cpu(init_tss, cpu);
670 struct thread_struct *thread = &curr->thread;
671
672 if (cpu_test_and_set(cpu, cpu_initialized)) {
673 printk(KERN_WARNING "CPU#%d already initialized!\n", cpu);
674 for (;;) local_irq_enable();
675 }
676
677 printk(KERN_INFO "Initializing CPU#%d\n", cpu);
678
679 if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
680 clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
681
682 load_idt(&idt_descr);
683 switch_to_new_gdt();
684
685
686
687
688 atomic_inc(&init_mm.mm_count);
689 curr->active_mm = &init_mm;
690 if (curr->mm)
691 BUG();
692 enter_lazy_tlb(&init_mm, curr);
693
694 load_sp0(t, thread);
695 set_tss_desc(cpu,t);
696 load_TR_desc();
697 load_LDT(&init_mm.context);
698
699#ifdef CONFIG_DOUBLEFAULT
700
701 __set_tss_desc(cpu, GDT_ENTRY_DOUBLEFAULT_TSS, &doublefault_tss);
702#endif
703
704
705 asm volatile ("mov %0, %%gs" : : "r" (0));
706
707
708 set_debugreg(0, 0);
709 set_debugreg(0, 1);
710 set_debugreg(0, 2);
711 set_debugreg(0, 3);
712 set_debugreg(0, 6);
713 set_debugreg(0, 7);
714
715
716
717
718 current_thread_info()->status = 0;
719 clear_used_math();
720 mxcsr_feature_mask_init();
721}
722
723#ifdef CONFIG_HOTPLUG_CPU
724void __cpuinit cpu_uninit(void)
725{
726 int cpu = raw_smp_processor_id();
727 cpu_clear(cpu, cpu_initialized);
728
729
730 per_cpu(cpu_tlbstate, cpu).state = 0;
731 per_cpu(cpu_tlbstate, cpu).active_mm = &init_mm;
732}
733#endif
734