x86: geode: define geode_has_vsa2() even if CONFIG_MGEODE_LX is not set
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / kernel / setup_64.c
CommitLineData
1da177e4 1/*
1da177e4 2 * Copyright (C) 1995 Linus Torvalds
1da177e4
LT
3 */
4
5/*
6 * This file handles the architecture-dependent parts of initialization
7 */
8
9#include <linux/errno.h>
10#include <linux/sched.h>
11#include <linux/kernel.h>
12#include <linux/mm.h>
13#include <linux/stddef.h>
14#include <linux/unistd.h>
15#include <linux/ptrace.h>
16#include <linux/slab.h>
17#include <linux/user.h>
894673ee 18#include <linux/screen_info.h>
1da177e4
LT
19#include <linux/ioport.h>
20#include <linux/delay.h>
1da177e4
LT
21#include <linux/init.h>
22#include <linux/initrd.h>
23#include <linux/highmem.h>
24#include <linux/bootmem.h>
25#include <linux/module.h>
26#include <asm/processor.h>
27#include <linux/console.h>
28#include <linux/seq_file.h>
aac04b32 29#include <linux/crash_dump.h>
1da177e4
LT
30#include <linux/root_dev.h>
31#include <linux/pci.h>
eee206c3 32#include <asm/pci-direct.h>
5b83683f 33#include <linux/efi.h>
1da177e4
LT
34#include <linux/acpi.h>
35#include <linux/kallsyms.h>
36#include <linux/edd.h>
138fe4e0 37#include <linux/iscsi_ibft.h>
bbfceef4 38#include <linux/mmzone.h>
5f5609df 39#include <linux/kexec.h>
95235ca2 40#include <linux/cpufreq.h>
e9928674 41#include <linux/dmi.h>
17a941d8 42#include <linux/dma-mapping.h>
681558fd 43#include <linux/ctype.h>
eee206c3 44#include <linux/sort.h>
746ef0cd 45#include <linux/uaccess.h>
f212ec4b 46#include <linux/init_ohci1394_dma.h>
790c73f6 47#include <linux/kvm_para.h>
bbfceef4 48
1da177e4
LT
49#include <asm/mtrr.h>
50#include <asm/uaccess.h>
51#include <asm/system.h>
e4026440 52#include <asm/vsyscall.h>
1da177e4
LT
53#include <asm/io.h>
54#include <asm/smp.h>
55#include <asm/msr.h>
56#include <asm/desc.h>
57#include <video/edid.h>
58#include <asm/e820.h>
59#include <asm/dma.h>
aaf23042 60#include <asm/gart.h>
1da177e4
LT
61#include <asm/mpspec.h>
62#include <asm/mmu_context.h>
1da177e4
LT
63#include <asm/proto.h>
64#include <asm/setup.h>
1da177e4 65#include <asm/numa.h>
2bc0414e 66#include <asm/sections.h>
f2d3efed 67#include <asm/dmi.h>
00bf4098 68#include <asm/cacheflush.h>
af7a78e9 69#include <asm/mce.h>
eee3af4a 70#include <asm/ds.h>
df3825c5 71#include <asm/topology.h>
e44b7b75 72#include <asm/trampoline.h>
1da177e4 73
dd46e3ca 74#include <mach_apic.h>
746ef0cd
GOC
75#ifdef CONFIG_PARAVIRT
76#include <asm/paravirt.h>
77#else
78#define ARCH_SETUP
79#endif
80
1da177e4
LT
81/*
82 * Machine setup..
83 */
84
6c231b7b 85struct cpuinfo_x86 boot_cpu_data __read_mostly;
2ee60e17 86EXPORT_SYMBOL(boot_cpu_data);
1da177e4 87
7d851c8d
AK
88__u32 cleared_cpu_caps[NCAPINTS] __cpuinitdata;
89
1da177e4
LT
90unsigned long mmu_cr4_features;
91
1da177e4
LT
92/* Boot loader ID as an integer, for the benefit of proc_dointvec */
93int bootloader_type;
94
95unsigned long saved_video_mode;
96
f039b754
AK
97int force_mwait __cpuinitdata;
98
04e1ba85 99/*
f2d3efed
AK
100 * Early DMI memory
101 */
102int dmi_alloc_index;
103char dmi_alloc_data[DMI_MAX_DATA];
104
1da177e4
LT
105/*
106 * Setup options
107 */
1da177e4 108struct screen_info screen_info;
2ee60e17 109EXPORT_SYMBOL(screen_info);
1da177e4
LT
110struct sys_desc_table_struct {
111 unsigned short length;
112 unsigned char table[0];
113};
114
115struct edid_info edid_info;
ba70710e 116EXPORT_SYMBOL_GPL(edid_info);
1da177e4
LT
117
118extern int root_mountflags;
1da177e4 119
adf48856 120char __initdata command_line[COMMAND_LINE_SIZE];
1da177e4 121
a2b4bd9c 122static struct resource standard_io_resources[] = {
1da177e4
LT
123 { .name = "dma1", .start = 0x00, .end = 0x1f,
124 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
125 { .name = "pic1", .start = 0x20, .end = 0x21,
126 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
127 { .name = "timer0", .start = 0x40, .end = 0x43,
128 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
129 { .name = "timer1", .start = 0x50, .end = 0x53,
130 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
131 { .name = "keyboard", .start = 0x60, .end = 0x6f,
132 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
133 { .name = "dma page reg", .start = 0x80, .end = 0x8f,
134 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
135 { .name = "pic2", .start = 0xa0, .end = 0xa1,
136 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
137 { .name = "dma2", .start = 0xc0, .end = 0xdf,
138 .flags = IORESOURCE_BUSY | IORESOURCE_IO },
139 { .name = "fpu", .start = 0xf0, .end = 0xff,
140 .flags = IORESOURCE_BUSY | IORESOURCE_IO }
141};
142
1da177e4
LT
143#define IORESOURCE_RAM (IORESOURCE_BUSY | IORESOURCE_MEM)
144
c9cce83d 145static struct resource data_resource = {
1da177e4
LT
146 .name = "Kernel data",
147 .start = 0,
148 .end = 0,
149 .flags = IORESOURCE_RAM,
150};
c9cce83d 151static struct resource code_resource = {
1da177e4
LT
152 .name = "Kernel code",
153 .start = 0,
154 .end = 0,
155 .flags = IORESOURCE_RAM,
156};
c9cce83d 157static struct resource bss_resource = {
00bf4098
BW
158 .name = "Kernel bss",
159 .start = 0,
160 .end = 0,
161 .flags = IORESOURCE_RAM,
162};
1da177e4 163
8c61b900
TG
164static void __cpuinit early_identify_cpu(struct cpuinfo_x86 *c);
165
2c8c0e6b
AK
166#ifdef CONFIG_PROC_VMCORE
167/* elfcorehdr= specifies the location of elf core header
168 * stored by the crashed kernel. This option will be passed
169 * by kexec loader to the capture kernel.
170 */
171static int __init setup_elfcorehdr(char *arg)
681558fd 172{
2c8c0e6b
AK
173 char *end;
174 if (!arg)
175 return -EINVAL;
176 elfcorehdr_addr = memparse(arg, &end);
177 return end > arg ? 0 : -EINVAL;
681558fd 178}
2c8c0e6b 179early_param("elfcorehdr", setup_elfcorehdr);
e2c03888
AK
180#endif
181
2b97690f 182#ifndef CONFIG_NUMA
bbfceef4
MT
183static void __init
184contig_initmem_init(unsigned long start_pfn, unsigned long end_pfn)
1da177e4 185{
bbfceef4
MT
186 unsigned long bootmap_size, bootmap;
187
bbfceef4 188 bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT;
24a5da73
YL
189 bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size,
190 PAGE_SIZE);
bbfceef4 191 if (bootmap == -1L)
04e1ba85 192 panic("Cannot find bootmem map of size %ld\n", bootmap_size);
bbfceef4 193 bootmap_size = init_bootmem(bootmap >> PAGE_SHIFT, end_pfn);
5cb248ab
MG
194 e820_register_active_regions(0, start_pfn, end_pfn);
195 free_bootmem_with_active_regions(0, end_pfn);
1a27fc0a 196 early_res_to_bootmem(0, end_pfn<<PAGE_SHIFT);
72a7fe39 197 reserve_bootmem(bootmap, bootmap_size, BOOTMEM_DEFAULT);
04e1ba85 198}
1da177e4
LT
199#endif
200
1da177e4
LT
201#if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
202struct edd edd;
203#ifdef CONFIG_EDD_MODULE
204EXPORT_SYMBOL(edd);
205#endif
206/**
207 * copy_edd() - Copy the BIOS EDD information
208 * from boot_params into a safe place.
209 *
210 */
211static inline void copy_edd(void)
212{
30c82645
PA
213 memcpy(edd.mbr_signature, boot_params.edd_mbr_sig_buffer,
214 sizeof(edd.mbr_signature));
215 memcpy(edd.edd_info, boot_params.eddbuf, sizeof(edd.edd_info));
216 edd.mbr_signature_nr = boot_params.edd_mbr_sig_buf_entries;
217 edd.edd_info_nr = boot_params.eddbuf_entries;
1da177e4
LT
218}
219#else
220static inline void copy_edd(void)
221{
222}
223#endif
224
5c3391f9
BW
225#ifdef CONFIG_KEXEC
226static void __init reserve_crashkernel(void)
227{
18a01a3b 228 unsigned long long total_mem;
5c3391f9
BW
229 unsigned long long crash_size, crash_base;
230 int ret;
231
18a01a3b 232 total_mem = ((unsigned long long)max_low_pfn - min_low_pfn) << PAGE_SHIFT;
5c3391f9 233
18a01a3b 234 ret = parse_crashkernel(boot_command_line, total_mem,
5c3391f9
BW
235 &crash_size, &crash_base);
236 if (ret == 0 && crash_size) {
18a01a3b 237 if (crash_base <= 0) {
5c3391f9
BW
238 printk(KERN_INFO "crashkernel reservation failed - "
239 "you have to specify a base address\n");
18a01a3b
BW
240 return;
241 }
242
243 if (reserve_bootmem(crash_base, crash_size,
244 BOOTMEM_EXCLUSIVE) < 0) {
245 printk(KERN_INFO "crashkernel reservation failed - "
246 "memory is in use\n");
247 return;
248 }
249
250 printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
251 "for crashkernel (System RAM: %ldMB)\n",
252 (unsigned long)(crash_size >> 20),
253 (unsigned long)(crash_base >> 20),
254 (unsigned long)(total_mem >> 20));
255 crashk_res.start = crash_base;
256 crashk_res.end = crash_base + crash_size - 1;
3def3d6d 257 insert_resource(&iomem_resource, &crashk_res);
5c3391f9
BW
258 }
259}
260#else
261static inline void __init reserve_crashkernel(void)
262{}
263#endif
264
746ef0cd 265/* Overridden in paravirt.c if CONFIG_PARAVIRT */
e3cfac84 266void __attribute__((weak)) __init memory_setup(void)
746ef0cd
GOC
267{
268 machine_specific_memory_setup();
269}
270
8b664aa6
HY
271static void __init parse_setup_data(void)
272{
273 struct setup_data *data;
274 unsigned long pa_data;
275
276 if (boot_params.hdr.version < 0x0209)
277 return;
278 pa_data = boot_params.hdr.setup_data;
279 while (pa_data) {
280 data = early_ioremap(pa_data, PAGE_SIZE);
281 switch (data->type) {
282 default:
283 break;
284 }
c14b2adf 285#ifndef CONFIG_DEBUG_BOOT_PARAMS
8b664aa6 286 free_early(pa_data, pa_data+sizeof(*data)+data->len);
c14b2adf 287#endif
8b664aa6
HY
288 pa_data = data->next;
289 early_iounmap(data, PAGE_SIZE);
290 }
291}
292
5f0b2976
YL
293#ifdef CONFIG_PCI_MMCONFIG
294extern void __cpuinit fam10h_check_enable_mmcfg(void);
295extern void __init check_enable_amd_mmconf_dmi(void);
296#else
297void __cpuinit fam10h_check_enable_mmcfg(void)
298{
299}
300void __init check_enable_amd_mmconf_dmi(void)
301{
302}
303#endif
304
f212ec4b
BK
305/*
306 * setup_arch - architecture-specific boot-time initializations
307 *
308 * Note: On x86_64, fixmaps are ready for use even before this is called.
309 */
1da177e4
LT
310void __init setup_arch(char **cmdline_p)
311{
04e1ba85
TG
312 unsigned i;
313
adf48856 314 printk(KERN_INFO "Command line: %s\n", boot_command_line);
43c85c9c 315
30c82645
PA
316 ROOT_DEV = old_decode_dev(boot_params.hdr.root_dev);
317 screen_info = boot_params.screen_info;
318 edid_info = boot_params.edid_info;
319 saved_video_mode = boot_params.hdr.vid_mode;
320 bootloader_type = boot_params.hdr.type_of_loader;
1da177e4
LT
321
322#ifdef CONFIG_BLK_DEV_RAM
30c82645
PA
323 rd_image_start = boot_params.hdr.ram_size & RAMDISK_IMAGE_START_MASK;
324 rd_prompt = ((boot_params.hdr.ram_size & RAMDISK_PROMPT_FLAG) != 0);
325 rd_doload = ((boot_params.hdr.ram_size & RAMDISK_LOAD_FLAG) != 0);
1da177e4 326#endif
5b83683f
HY
327#ifdef CONFIG_EFI
328 if (!strncmp((char *)&boot_params.efi_info.efi_loader_signature,
329 "EL64", 4))
330 efi_enabled = 1;
331#endif
746ef0cd
GOC
332
333 ARCH_SETUP
334
335 memory_setup();
1da177e4
LT
336 copy_edd();
337
30c82645 338 if (!boot_params.hdr.root_flags)
1da177e4
LT
339 root_mountflags &= ~MS_RDONLY;
340 init_mm.start_code = (unsigned long) &_text;
341 init_mm.end_code = (unsigned long) &_etext;
342 init_mm.end_data = (unsigned long) &_edata;
343 init_mm.brk = (unsigned long) &_end;
344
e3ebadd9
LT
345 code_resource.start = virt_to_phys(&_text);
346 code_resource.end = virt_to_phys(&_etext)-1;
347 data_resource.start = virt_to_phys(&_etext);
348 data_resource.end = virt_to_phys(&_edata)-1;
00bf4098
BW
349 bss_resource.start = virt_to_phys(&__bss_start);
350 bss_resource.end = virt_to_phys(&__bss_stop)-1;
1da177e4 351
1da177e4
LT
352 early_identify_cpu(&boot_cpu_data);
353
adf48856 354 strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
2c8c0e6b
AK
355 *cmdline_p = command_line;
356
8b664aa6
HY
357 parse_setup_data();
358
2c8c0e6b
AK
359 parse_early_param();
360
f212ec4b
BK
361#ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
362 if (init_ohci1394_dma_early)
363 init_ohci1394_dma_on_all_controllers();
364#endif
365
2c8c0e6b 366 finish_e820_parsing();
9ca33eb6 367
3def3d6d
YL
368 /* after parse_early_param, so could debug it */
369 insert_resource(&iomem_resource, &code_resource);
370 insert_resource(&iomem_resource, &data_resource);
371 insert_resource(&iomem_resource, &bss_resource);
372
aaf23042
YL
373 early_gart_iommu_check();
374
5cb248ab 375 e820_register_active_regions(0, 0, -1UL);
1da177e4
LT
376 /*
377 * partially used pages are not usable - thus
378 * we are rounding upwards:
379 */
380 end_pfn = e820_end_of_ram();
99fc8d42
JB
381 /* update e820 for memory not covered by WB MTRRs */
382 mtrr_bp_init();
383 if (mtrr_trim_uncached_memory(end_pfn)) {
384 e820_register_active_regions(0, 0, -1UL);
385 end_pfn = e820_end_of_ram();
386 }
387
caff0710 388 num_physpages = end_pfn;
1da177e4
LT
389
390 check_efer();
391
cc615032 392 max_pfn_mapped = init_memory_mapping(0, (max_pfn_mapped << PAGE_SHIFT));
5b83683f
HY
393 if (efi_enabled)
394 efi_init();
1da177e4 395
2785c8d0 396 vsmp_init();
2785c8d0 397
f2d3efed
AK
398 dmi_scan_machine();
399
b02aae9c
RH
400 io_delay_init();
401
790c73f6
GOC
402#ifdef CONFIG_KVM_CLOCK
403 kvmclock_init();
404#endif
405
71fff5e6 406#ifdef CONFIG_SMP
df3825c5 407 /* setup to use the early static init tables during kernel startup */
3effef1f
YL
408 x86_cpu_to_apicid_early_ptr = (void *)x86_cpu_to_apicid_init;
409 x86_bios_cpu_apicid_early_ptr = (void *)x86_bios_cpu_apicid_init;
e8c10ef9 410#ifdef CONFIG_NUMA
3effef1f 411 x86_cpu_to_node_map_early_ptr = (void *)x86_cpu_to_node_map_init;
71fff5e6 412#endif
e8c10ef9 413#endif
71fff5e6 414
888ba6c6 415#ifdef CONFIG_ACPI
1da177e4
LT
416 /*
417 * Initialize the ACPI boot-time table parser (gets the RSDP and SDT).
418 * Call this early for SRAT node setup.
419 */
420 acpi_boot_table_init();
421#endif
422
caff0710
JB
423 /* How many end-of-memory variables you have, grandma! */
424 max_low_pfn = end_pfn;
425 max_pfn = end_pfn;
426 high_memory = (void *)__va(end_pfn * PAGE_SIZE - 1) + 1;
427
5cb248ab
MG
428 /* Remove active ranges so rediscovery with NUMA-awareness happens */
429 remove_all_active_ranges();
430
1da177e4
LT
431#ifdef CONFIG_ACPI_NUMA
432 /*
433 * Parse SRAT to discover nodes.
434 */
435 acpi_numa_init();
436#endif
437
2b97690f 438#ifdef CONFIG_NUMA
04e1ba85 439 numa_initmem_init(0, end_pfn);
1da177e4 440#else
bbfceef4 441 contig_initmem_init(0, end_pfn);
1da177e4
LT
442#endif
443
752bea4a
YL
444 dma32_reserve_bootmem();
445
673d5b43 446#ifdef CONFIG_ACPI_SLEEP
1da177e4 447 /*
04e1ba85 448 * Reserve low memory region for sleep support.
1da177e4 449 */
04e1ba85
TG
450 acpi_reserve_bootmem();
451#endif
5b83683f 452
a3828064 453 if (efi_enabled)
5b83683f 454 efi_reserve_bootmem();
5b83683f 455
04e1ba85
TG
456 /*
457 * Find and reserve possible boot-time SMP configuration:
458 */
1da177e4 459 find_smp_config();
1da177e4 460#ifdef CONFIG_BLK_DEV_INITRD
30c82645
PA
461 if (boot_params.hdr.type_of_loader && boot_params.hdr.ramdisk_image) {
462 unsigned long ramdisk_image = boot_params.hdr.ramdisk_image;
463 unsigned long ramdisk_size = boot_params.hdr.ramdisk_size;
464 unsigned long ramdisk_end = ramdisk_image + ramdisk_size;
465 unsigned long end_of_mem = end_pfn << PAGE_SHIFT;
466
467 if (ramdisk_end <= end_of_mem) {
2b8106a0
YL
468 /*
469 * don't need to reserve again, already reserved early
470 * in x86_64_start_kernel, and early_res_to_bootmem
471 * convert that to reserved in bootmem
472 */
30c82645
PA
473 initrd_start = ramdisk_image + PAGE_OFFSET;
474 initrd_end = initrd_start+ramdisk_size;
475 } else {
75175278 476 free_bootmem(ramdisk_image, ramdisk_size);
1da177e4 477 printk(KERN_ERR "initrd extends beyond end of memory "
30c82645
PA
478 "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
479 ramdisk_end, end_of_mem);
1da177e4
LT
480 initrd_start = 0;
481 }
482 }
483#endif
5c3391f9 484 reserve_crashkernel();
138fe4e0
KR
485
486 reserve_ibft_region();
487
1da177e4 488 paging_init();
e4026440 489 map_vsyscall();
1da177e4 490
dfa4698c 491 early_quirks();
1da177e4 492
888ba6c6 493#ifdef CONFIG_ACPI
1da177e4
LT
494 /*
495 * Read APIC and some other early information from ACPI tables.
496 */
497 acpi_boot_init();
498#endif
499
05b3cbd8
RT
500 init_cpu_to_node();
501
1da177e4
LT
502 /*
503 * get boot-time SMP configuration:
504 */
505 if (smp_found_config)
506 get_smp_config();
507 init_apic_mappings();
3e35a0e5 508 ioapic_init_mappings();
1da177e4 509
0cf1bfd2
MT
510 kvm_guest_init();
511
1da177e4 512 /*
fc986db4 513 * We trust e820 completely. No explicit ROM probing in memory.
04e1ba85 514 */
3def3d6d 515 e820_reserve_resources();
e8eff5ac 516 e820_mark_nosave_regions();
1da177e4 517
1da177e4 518 /* request I/O space for devices used on all i[345]86 PCs */
9d0ef4fd 519 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
1da177e4 520 request_resource(&ioport_resource, &standard_io_resources[i]);
1da177e4 521
a1e97782 522 e820_setup_gap();
1da177e4 523
1da177e4
LT
524#ifdef CONFIG_VT
525#if defined(CONFIG_VGA_CONSOLE)
5b83683f
HY
526 if (!efi_enabled || (efi_mem_type(0xa0000) != EFI_CONVENTIONAL_MEMORY))
527 conswitchp = &vga_con;
1da177e4
LT
528#elif defined(CONFIG_DUMMY_CONSOLE)
529 conswitchp = &dummy_con;
530#endif
531#endif
5f0b2976
YL
532
533 /* do this before identify_cpu for boot cpu */
534 check_enable_amd_mmconf_dmi();
1da177e4
LT
535}
536
e6982c67 537static int __cpuinit get_model_name(struct cpuinfo_x86 *c)
1da177e4
LT
538{
539 unsigned int *v;
540
ebfcaa96 541 if (c->extended_cpuid_level < 0x80000004)
1da177e4
LT
542 return 0;
543
544 v = (unsigned int *) c->x86_model_id;
545 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
546 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
547 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
548 c->x86_model_id[48] = 0;
549 return 1;
550}
551
552
e6982c67 553static void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c)
1da177e4
LT
554{
555 unsigned int n, dummy, eax, ebx, ecx, edx;
556
ebfcaa96 557 n = c->extended_cpuid_level;
1da177e4
LT
558
559 if (n >= 0x80000005) {
560 cpuid(0x80000005, &dummy, &ebx, &ecx, &edx);
04e1ba85
TG
561 printk(KERN_INFO "CPU: L1 I Cache: %dK (%d bytes/line), "
562 "D cache %dK (%d bytes/line)\n",
563 edx>>24, edx&0xFF, ecx>>24, ecx&0xFF);
564 c->x86_cache_size = (ecx>>24) + (edx>>24);
1da177e4
LT
565 /* On K8 L1 TLB is inclusive, so don't count it */
566 c->x86_tlbsize = 0;
567 }
568
569 if (n >= 0x80000006) {
570 cpuid(0x80000006, &dummy, &ebx, &ecx, &edx);
571 ecx = cpuid_ecx(0x80000006);
572 c->x86_cache_size = ecx >> 16;
573 c->x86_tlbsize += ((ebx >> 16) & 0xfff) + (ebx & 0xfff);
574
575 printk(KERN_INFO "CPU: L2 Cache: %dK (%d bytes/line)\n",
576 c->x86_cache_size, ecx & 0xFF);
577 }
1da177e4 578 if (n >= 0x80000008) {
04e1ba85 579 cpuid(0x80000008, &eax, &dummy, &dummy, &dummy);
1da177e4
LT
580 c->x86_virt_bits = (eax >> 8) & 0xff;
581 c->x86_phys_bits = eax & 0xff;
582 }
583}
584
3f098c26 585#ifdef CONFIG_NUMA
08acb672 586static int __cpuinit nearby_node(int apicid)
3f098c26 587{
04e1ba85
TG
588 int i, node;
589
3f098c26 590 for (i = apicid - 1; i >= 0; i--) {
04e1ba85 591 node = apicid_to_node[i];
3f098c26
AK
592 if (node != NUMA_NO_NODE && node_online(node))
593 return node;
594 }
595 for (i = apicid + 1; i < MAX_LOCAL_APIC; i++) {
04e1ba85 596 node = apicid_to_node[i];
3f098c26
AK
597 if (node != NUMA_NO_NODE && node_online(node))
598 return node;
599 }
600 return first_node(node_online_map); /* Shouldn't happen */
601}
602#endif
603
63518644
AK
604/*
605 * On a AMD dual core setup the lower bits of the APIC id distingush the cores.
606 * Assumes number of cores is a power of two.
607 */
adb8daed 608static void __cpuinit amd_detect_cmp(struct cpuinfo_x86 *c)
63518644
AK
609{
610#ifdef CONFIG_SMP
b41e2939 611 unsigned bits;
3f098c26 612#ifdef CONFIG_NUMA
f3fa8ebc 613 int cpu = smp_processor_id();
3f098c26 614 int node = 0;
60c1bc82 615 unsigned apicid = hard_smp_processor_id();
3f098c26 616#endif
a860b63c 617 bits = c->x86_coreid_bits;
b41e2939
AK
618
619 /* Low order bits define the core id (index of core in socket) */
01aaea1a
YL
620 c->cpu_core_id = c->initial_apicid & ((1 << bits)-1);
621 /* Convert the initial APIC ID into the socket ID */
622 c->phys_proc_id = c->initial_apicid >> bits;
63518644
AK
623
624#ifdef CONFIG_NUMA
04e1ba85
TG
625 node = c->phys_proc_id;
626 if (apicid_to_node[apicid] != NUMA_NO_NODE)
627 node = apicid_to_node[apicid];
628 if (!node_online(node)) {
629 /* Two possibilities here:
630 - The CPU is missing memory and no node was created.
631 In that case try picking one from a nearby CPU
632 - The APIC IDs differ from the HyperTransport node IDs
633 which the K8 northbridge parsing fills in.
634 Assume they are all increased by a constant offset,
635 but in the same order as the HT nodeids.
636 If that doesn't result in a usable node fall back to the
637 path for the previous case. */
638
01aaea1a 639 int ht_nodeid = c->initial_apicid;
04e1ba85
TG
640
641 if (ht_nodeid >= 0 &&
642 apicid_to_node[ht_nodeid] != NUMA_NO_NODE)
643 node = apicid_to_node[ht_nodeid];
644 /* Pick a nearby node */
645 if (!node_online(node))
646 node = nearby_node(apicid);
647 }
69d81fcd 648 numa_set_node(cpu, node);
3f098c26 649
e42f9437 650 printk(KERN_INFO "CPU %d/%x -> Node %d\n", cpu, apicid, node);
63518644 651#endif
63518644
AK
652#endif
653}
1da177e4 654
2b16a235 655static void __cpuinit early_init_amd_mc(struct cpuinfo_x86 *c)
a860b63c
YL
656{
657#ifdef CONFIG_SMP
658 unsigned bits, ecx;
659
660 /* Multi core CPU? */
661 if (c->extended_cpuid_level < 0x80000008)
662 return;
663
664 ecx = cpuid_ecx(0x80000008);
665
666 c->x86_max_cores = (ecx & 0xff) + 1;
667
668 /* CPU telling us the core id bits shift? */
669 bits = (ecx >> 12) & 0xF;
670
671 /* Otherwise recompute */
672 if (bits == 0) {
673 while ((1 << bits) < c->x86_max_cores)
674 bits++;
675 }
676
677 c->x86_coreid_bits = bits;
678
679#endif
680}
681
fb79d22e
TG
682#define ENABLE_C1E_MASK 0x18000000
683#define CPUID_PROCESSOR_SIGNATURE 1
684#define CPUID_XFAM 0x0ff00000
685#define CPUID_XFAM_K8 0x00000000
686#define CPUID_XFAM_10H 0x00100000
687#define CPUID_XFAM_11H 0x00200000
688#define CPUID_XMOD 0x000f0000
689#define CPUID_XMOD_REV_F 0x00040000
690
691/* AMD systems with C1E don't have a working lAPIC timer. Check for that. */
692static __cpuinit int amd_apic_timer_broken(void)
693{
04e1ba85
TG
694 u32 lo, hi, eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE);
695
fb79d22e
TG
696 switch (eax & CPUID_XFAM) {
697 case CPUID_XFAM_K8:
698 if ((eax & CPUID_XMOD) < CPUID_XMOD_REV_F)
699 break;
700 case CPUID_XFAM_10H:
701 case CPUID_XFAM_11H:
702 rdmsr(MSR_K8_ENABLE_C1E, lo, hi);
703 if (lo & ENABLE_C1E_MASK)
704 return 1;
705 break;
706 default:
707 /* err on the side of caution */
708 return 1;
709 }
710 return 0;
711}
712
2b16a235
AK
713static void __cpuinit early_init_amd(struct cpuinfo_x86 *c)
714{
715 early_init_amd_mc(c);
716
717 /* c->x86_power is 8000_0007 edx. Bit 8 is constant TSC */
718 if (c->x86_power & (1<<8))
719 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
720}
721
ed77504b 722static void __cpuinit init_amd(struct cpuinfo_x86 *c)
1da177e4 723{
7bcd3f34 724 unsigned level;
1da177e4 725
bc5e8fdf
LT
726#ifdef CONFIG_SMP
727 unsigned long value;
728
7d318d77
AK
729 /*
730 * Disable TLB flush filter by setting HWCR.FFDIS on K8
731 * bit 6 of msr C001_0015
04e1ba85 732 *
7d318d77
AK
733 * Errata 63 for SH-B3 steppings
734 * Errata 122 for all steppings (F+ have it disabled by default)
735 */
736 if (c->x86 == 15) {
737 rdmsrl(MSR_K8_HWCR, value);
738 value |= 1 << 6;
739 wrmsrl(MSR_K8_HWCR, value);
740 }
bc5e8fdf
LT
741#endif
742
1da177e4
LT
743 /* Bit 31 in normal CPUID used for nonstandard 3DNow ID;
744 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway */
9716951e 745 clear_cpu_cap(c, 0*32+31);
04e1ba85 746
7bcd3f34
AK
747 /* On C+ stepping K8 rep microcode works well for copy/memset */
748 level = cpuid_eax(1);
04e1ba85
TG
749 if (c->x86 == 15 && ((level >= 0x0f48 && level < 0x0f50) ||
750 level >= 0x0f58))
53756d37 751 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
99741faa 752 if (c->x86 == 0x10 || c->x86 == 0x11)
53756d37 753 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
7bcd3f34 754
18bd057b
AK
755 /* Enable workaround for FXSAVE leak */
756 if (c->x86 >= 6)
53756d37 757 set_cpu_cap(c, X86_FEATURE_FXSAVE_LEAK);
18bd057b 758
e42f9437
RS
759 level = get_model_name(c);
760 if (!level) {
04e1ba85 761 switch (c->x86) {
1da177e4
LT
762 case 15:
763 /* Should distinguish Models here, but this is only
764 a fallback anyways. */
765 strcpy(c->x86_model_id, "Hammer");
04e1ba85
TG
766 break;
767 }
768 }
1da177e4
LT
769 display_cacheinfo(c);
770
faee9a5d
AK
771 /* Multi core CPU? */
772 if (c->extended_cpuid_level >= 0x80000008)
63518644 773 amd_detect_cmp(c);
1da177e4 774
67cddd94
AK
775 if (c->extended_cpuid_level >= 0x80000006 &&
776 (cpuid_edx(0x80000006) & 0xf000))
777 num_cache_leaves = 4;
778 else
779 num_cache_leaves = 3;
2049336f 780
0bd8acd1 781 if (c->x86 == 0xf || c->x86 == 0x10 || c->x86 == 0x11)
53756d37 782 set_cpu_cap(c, X86_FEATURE_K8);
0bd8acd1 783
de421863
AK
784 /* MFENCE stops RDTSC speculation */
785 set_cpu_cap(c, X86_FEATURE_MFENCE_RDTSC);
f039b754 786
eee206c3 787 if (c->x86 == 0x10)
d39398a3 788 fam10h_check_enable_mmcfg();
eee206c3 789
fb79d22e
TG
790 if (amd_apic_timer_broken())
791 disable_apic_timer = 1;
8346ea17
AK
792
793 if (c == &boot_cpu_data && c->x86 >= 0xf && c->x86 <= 0x11) {
794 unsigned long long tseg;
795
796 /*
797 * Split up direct mapping around the TSEG SMM area.
798 * Don't do it for gbpages because there seems very little
799 * benefit in doing so.
800 */
801 if (!rdmsrl_safe(MSR_K8_TSEG_ADDR, &tseg) &&
802 (tseg >> PMD_SHIFT) < (max_pfn_mapped >> (PMD_SHIFT-PAGE_SHIFT)))
803 set_memory_4k((unsigned long)__va(tseg), 1);
804 }
1da177e4
LT
805}
806
1a53905a 807void __cpuinit detect_ht(struct cpuinfo_x86 *c)
1da177e4
LT
808{
809#ifdef CONFIG_SMP
04e1ba85
TG
810 u32 eax, ebx, ecx, edx;
811 int index_msb, core_bits;
94605eff
SS
812
813 cpuid(1, &eax, &ebx, &ecx, &edx);
814
94605eff 815
e42f9437 816 if (!cpu_has(c, X86_FEATURE_HT))
1da177e4 817 return;
04e1ba85 818 if (cpu_has(c, X86_FEATURE_CMP_LEGACY))
e42f9437 819 goto out;
1da177e4 820
1da177e4 821 smp_num_siblings = (ebx & 0xff0000) >> 16;
94605eff 822
1da177e4
LT
823 if (smp_num_siblings == 1) {
824 printk(KERN_INFO "CPU: Hyper-Threading is disabled\n");
04e1ba85 825 } else if (smp_num_siblings > 1) {
94605eff 826
1da177e4 827 if (smp_num_siblings > NR_CPUS) {
04e1ba85
TG
828 printk(KERN_WARNING "CPU: Unsupported number of "
829 "siblings %d", smp_num_siblings);
1da177e4
LT
830 smp_num_siblings = 1;
831 return;
832 }
94605eff
SS
833
834 index_msb = get_count_order(smp_num_siblings);
f3fa8ebc 835 c->phys_proc_id = phys_pkg_id(index_msb);
3dd9d514 836
94605eff 837 smp_num_siblings = smp_num_siblings / c->x86_max_cores;
3dd9d514 838
04e1ba85 839 index_msb = get_count_order(smp_num_siblings);
94605eff
SS
840
841 core_bits = get_count_order(c->x86_max_cores);
3dd9d514 842
f3fa8ebc 843 c->cpu_core_id = phys_pkg_id(index_msb) &
94605eff 844 ((1 << core_bits) - 1);
1da177e4 845 }
e42f9437
RS
846out:
847 if ((c->x86_max_cores * smp_num_siblings) > 1) {
04e1ba85
TG
848 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
849 c->phys_proc_id);
850 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
851 c->cpu_core_id);
e42f9437
RS
852 }
853
1da177e4
LT
854#endif
855}
856
3dd9d514
AK
857/*
858 * find out the number of processor cores on the die
859 */
e6982c67 860static int __cpuinit intel_num_cpu_cores(struct cpuinfo_x86 *c)
3dd9d514 861{
2bbc419f 862 unsigned int eax, t;
3dd9d514
AK
863
864 if (c->cpuid_level < 4)
865 return 1;
866
2bbc419f 867 cpuid_count(4, 0, &eax, &t, &t, &t);
3dd9d514
AK
868
869 if (eax & 0x1f)
870 return ((eax >> 26) + 1);
871 else
872 return 1;
873}
874
04d733bd 875static void __cpuinit srat_detect_node(void)
df0cc26b
AK
876{
877#ifdef CONFIG_NUMA
ddea7be0 878 unsigned node;
df0cc26b 879 int cpu = smp_processor_id();
e42f9437 880 int apicid = hard_smp_processor_id();
df0cc26b
AK
881
882 /* Don't do the funky fallback heuristics the AMD version employs
883 for now. */
e42f9437 884 node = apicid_to_node[apicid];
475613b9 885 if (node == NUMA_NO_NODE || !node_online(node))
0d015324 886 node = first_node(node_online_map);
69d81fcd 887 numa_set_node(cpu, node);
df0cc26b 888
c31fbb1a 889 printk(KERN_INFO "CPU %d/%x -> Node %d\n", cpu, apicid, node);
df0cc26b
AK
890#endif
891}
892
2b16a235
AK
893static void __cpuinit early_init_intel(struct cpuinfo_x86 *c)
894{
895 if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
896 (c->x86 == 0x6 && c->x86_model >= 0x0e))
9716951e 897 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
2b16a235
AK
898}
899
e6982c67 900static void __cpuinit init_intel(struct cpuinfo_x86 *c)
1da177e4
LT
901{
902 /* Cache sizes */
903 unsigned n;
904
905 init_intel_cacheinfo(c);
04e1ba85 906 if (c->cpuid_level > 9) {
0080e667
VP
907 unsigned eax = cpuid_eax(10);
908 /* Check for version and the number of counters */
909 if ((eax & 0xff) && (((eax>>8) & 0xff) > 1))
53756d37 910 set_cpu_cap(c, X86_FEATURE_ARCH_PERFMON);
0080e667
VP
911 }
912
36b2a8d5
SE
913 if (cpu_has_ds) {
914 unsigned int l1, l2;
915 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
ee58fad5 916 if (!(l1 & (1<<11)))
53756d37 917 set_cpu_cap(c, X86_FEATURE_BTS);
36b2a8d5 918 if (!(l1 & (1<<12)))
53756d37 919 set_cpu_cap(c, X86_FEATURE_PEBS);
36b2a8d5
SE
920 }
921
eee3af4a
MM
922
923 if (cpu_has_bts)
924 ds_init_intel(c);
925
ebfcaa96 926 n = c->extended_cpuid_level;
1da177e4
LT
927 if (n >= 0x80000008) {
928 unsigned eax = cpuid_eax(0x80000008);
929 c->x86_virt_bits = (eax >> 8) & 0xff;
930 c->x86_phys_bits = eax & 0xff;
af9c142d
SL
931 /* CPUID workaround for Intel 0F34 CPU */
932 if (c->x86_vendor == X86_VENDOR_INTEL &&
933 c->x86 == 0xF && c->x86_model == 0x3 &&
934 c->x86_mask == 0x4)
935 c->x86_phys_bits = 36;
1da177e4
LT
936 }
937
938 if (c->x86 == 15)
939 c->x86_cache_alignment = c->x86_clflush_size * 2;
27fbe5b2 940 if (c->x86 == 6)
53756d37 941 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
707fa8ed 942 set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
04e1ba85 943 c->x86_max_cores = intel_num_cpu_cores(c);
df0cc26b
AK
944
945 srat_detect_node();
1da177e4
LT
946}
947
0e03eb86
DJ
948static void __cpuinit early_init_centaur(struct cpuinfo_x86 *c)
949{
950 if (c->x86 == 0x6 && c->x86_model >= 0xf)
951 set_bit(X86_FEATURE_CONSTANT_TSC, &c->x86_capability);
952}
953
954static void __cpuinit init_centaur(struct cpuinfo_x86 *c)
955{
956 /* Cache sizes */
957 unsigned n;
958
959 n = c->extended_cpuid_level;
960 if (n >= 0x80000008) {
961 unsigned eax = cpuid_eax(0x80000008);
962 c->x86_virt_bits = (eax >> 8) & 0xff;
963 c->x86_phys_bits = eax & 0xff;
964 }
965
966 if (c->x86 == 0x6 && c->x86_model >= 0xf) {
967 c->x86_cache_alignment = c->x86_clflush_size * 2;
968 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
969 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
970 }
971 set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
972}
973
672289e9 974static void __cpuinit get_cpu_vendor(struct cpuinfo_x86 *c)
1da177e4
LT
975{
976 char *v = c->x86_vendor_id;
977
978 if (!strcmp(v, "AuthenticAMD"))
979 c->x86_vendor = X86_VENDOR_AMD;
980 else if (!strcmp(v, "GenuineIntel"))
981 c->x86_vendor = X86_VENDOR_INTEL;
0e03eb86
DJ
982 else if (!strcmp(v, "CentaurHauls"))
983 c->x86_vendor = X86_VENDOR_CENTAUR;
1da177e4
LT
984 else
985 c->x86_vendor = X86_VENDOR_UNKNOWN;
986}
987
1da177e4
LT
988/* Do some early cpuid on the boot CPU to get some parameter that are
989 needed before check_bugs. Everything advanced is in identify_cpu
990 below. */
8c61b900 991static void __cpuinit early_identify_cpu(struct cpuinfo_x86 *c)
1da177e4 992{
a860b63c 993 u32 tfms, xlvl;
1da177e4
LT
994
995 c->loops_per_jiffy = loops_per_jiffy;
996 c->x86_cache_size = -1;
997 c->x86_vendor = X86_VENDOR_UNKNOWN;
998 c->x86_model = c->x86_mask = 0; /* So far unknown... */
999 c->x86_vendor_id[0] = '\0'; /* Unset */
1000 c->x86_model_id[0] = '\0'; /* Unset */
1001 c->x86_clflush_size = 64;
1002 c->x86_cache_alignment = c->x86_clflush_size;
94605eff 1003 c->x86_max_cores = 1;
a860b63c 1004 c->x86_coreid_bits = 0;
ebfcaa96 1005 c->extended_cpuid_level = 0;
1da177e4
LT
1006 memset(&c->x86_capability, 0, sizeof c->x86_capability);
1007
1008 /* Get vendor name */
1009 cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
1010 (unsigned int *)&c->x86_vendor_id[0],
1011 (unsigned int *)&c->x86_vendor_id[8],
1012 (unsigned int *)&c->x86_vendor_id[4]);
04e1ba85 1013
1da177e4
LT
1014 get_cpu_vendor(c);
1015
1016 /* Initialize the standard set of capabilities */
1017 /* Note that the vendor-specific code below might override */
1018
1019 /* Intel-defined flags: level 0x00000001 */
1020 if (c->cpuid_level >= 0x00000001) {
1021 __u32 misc;
1022 cpuid(0x00000001, &tfms, &misc, &c->x86_capability[4],
1023 &c->x86_capability[0]);
1024 c->x86 = (tfms >> 8) & 0xf;
1025 c->x86_model = (tfms >> 4) & 0xf;
1026 c->x86_mask = tfms & 0xf;
f5f786d0 1027 if (c->x86 == 0xf)
1da177e4 1028 c->x86 += (tfms >> 20) & 0xff;
f5f786d0 1029 if (c->x86 >= 0x6)
1da177e4 1030 c->x86_model += ((tfms >> 16) & 0xF) << 4;
9716951e 1031 if (test_cpu_cap(c, X86_FEATURE_CLFLSH))
1da177e4 1032 c->x86_clflush_size = ((misc >> 8) & 0xff) * 8;
1da177e4
LT
1033 } else {
1034 /* Have CPUID level 0 only - unheard of */
1035 c->x86 = 4;
1036 }
a158608b 1037
01aaea1a 1038 c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xff;
a158608b 1039#ifdef CONFIG_SMP
01aaea1a 1040 c->phys_proc_id = c->initial_apicid;
a158608b 1041#endif
1da177e4
LT
1042 /* AMD-defined flags: level 0x80000001 */
1043 xlvl = cpuid_eax(0x80000000);
ebfcaa96 1044 c->extended_cpuid_level = xlvl;
1da177e4
LT
1045 if ((xlvl & 0xffff0000) == 0x80000000) {
1046 if (xlvl >= 0x80000001) {
1047 c->x86_capability[1] = cpuid_edx(0x80000001);
5b7abc6f 1048 c->x86_capability[6] = cpuid_ecx(0x80000001);
1da177e4
LT
1049 }
1050 if (xlvl >= 0x80000004)
1051 get_model_name(c); /* Default name */
1052 }
1053
1054 /* Transmeta-defined flags: level 0x80860001 */
1055 xlvl = cpuid_eax(0x80860000);
1056 if ((xlvl & 0xffff0000) == 0x80860000) {
1057 /* Don't set x86_cpuid_level here for now to not confuse. */
1058 if (xlvl >= 0x80860001)
1059 c->x86_capability[2] = cpuid_edx(0x80860001);
1060 }
1061
9566e91d
AH
1062 c->extended_cpuid_level = cpuid_eax(0x80000000);
1063 if (c->extended_cpuid_level >= 0x80000007)
1064 c->x86_power = cpuid_edx(0x80000007);
1065
9307caca
YL
1066
1067 clear_cpu_cap(c, X86_FEATURE_PAT);
1068
a860b63c
YL
1069 switch (c->x86_vendor) {
1070 case X86_VENDOR_AMD:
1071 early_init_amd(c);
9307caca
YL
1072 if (c->x86 >= 0xf && c->x86 <= 0x11)
1073 set_cpu_cap(c, X86_FEATURE_PAT);
a860b63c 1074 break;
71617bf1
YL
1075 case X86_VENDOR_INTEL:
1076 early_init_intel(c);
9307caca
YL
1077 if (c->x86 == 0xF || (c->x86 == 6 && c->x86_model >= 15))
1078 set_cpu_cap(c, X86_FEATURE_PAT);
71617bf1 1079 break;
0e03eb86
DJ
1080 case X86_VENDOR_CENTAUR:
1081 early_init_centaur(c);
1082 break;
a860b63c
YL
1083 }
1084
1085}
1086
1087/*
1088 * This does the hard work of actually picking apart the CPU stuff...
1089 */
1090void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
1091{
1092 int i;
1093
1094 early_identify_cpu(c);
1095
1d67953f
VP
1096 init_scattered_cpuid_features(c);
1097
1e9f28fa
SS
1098 c->apicid = phys_pkg_id(0);
1099
1da177e4
LT
1100 /*
1101 * Vendor-specific initialization. In this section we
1102 * canonicalize the feature flags, meaning if there are
1103 * features a certain CPU supports which CPUID doesn't
1104 * tell us, CPUID claiming incorrect flags, or other bugs,
1105 * we handle them here.
1106 *
1107 * At the end of this section, c->x86_capability better
1108 * indicate the features this CPU genuinely supports!
1109 */
1110 switch (c->x86_vendor) {
1111 case X86_VENDOR_AMD:
1112 init_amd(c);
1113 break;
1114
1115 case X86_VENDOR_INTEL:
1116 init_intel(c);
1117 break;
1118
0e03eb86
DJ
1119 case X86_VENDOR_CENTAUR:
1120 init_centaur(c);
1121 break;
1122
1da177e4
LT
1123 case X86_VENDOR_UNKNOWN:
1124 default:
1125 display_cacheinfo(c);
1126 break;
1127 }
1128
04e1ba85 1129 detect_ht(c);
1da177e4
LT
1130
1131 /*
1132 * On SMP, boot_cpu_data holds the common feature set between
1133 * all CPUs; so make sure that we indicate which features are
1134 * common between the CPUs. The first time this routine gets
1135 * executed, c == &boot_cpu_data.
1136 */
1137 if (c != &boot_cpu_data) {
1138 /* AND the already accumulated flags with these */
04e1ba85 1139 for (i = 0; i < NCAPINTS; i++)
1da177e4
LT
1140 boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
1141 }
1142
7d851c8d
AK
1143 /* Clear all flags overriden by options */
1144 for (i = 0; i < NCAPINTS; i++)
12c247a6 1145 c->x86_capability[i] &= ~cleared_cpu_caps[i];
7d851c8d 1146
1da177e4
LT
1147#ifdef CONFIG_X86_MCE
1148 mcheck_init(c);
1149#endif
74ff305b
HS
1150 select_idle_routine(c);
1151
1da177e4 1152#ifdef CONFIG_NUMA
3019e8eb 1153 numa_add_cpu(smp_processor_id());
1da177e4 1154#endif
2b16a235 1155
1da177e4 1156}
1da177e4 1157
7a636af6
GOC
1158void __cpuinit identify_boot_cpu(void)
1159{
1160 identify_cpu(&boot_cpu_data);
1161}
1162
1163void __cpuinit identify_secondary_cpu(struct cpuinfo_x86 *c)
1164{
1165 BUG_ON(c == &boot_cpu_data);
1166 identify_cpu(c);
1167 mtrr_ap_init();
1168}
1169
191679fd
AK
1170static __init int setup_noclflush(char *arg)
1171{
1172 setup_clear_cpu_cap(X86_FEATURE_CLFLSH);
1173 return 1;
1174}
1175__setup("noclflush", setup_noclflush);
1176
e6982c67 1177void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
1da177e4
LT
1178{
1179 if (c->x86_model_id[0])
d8ff0bbf 1180 printk(KERN_CONT "%s", c->x86_model_id);
1da177e4 1181
04e1ba85
TG
1182 if (c->x86_mask || c->cpuid_level >= 0)
1183 printk(KERN_CONT " stepping %02x\n", c->x86_mask);
1da177e4 1184 else
04e1ba85 1185 printk(KERN_CONT "\n");
1da177e4
LT
1186}
1187
ac72e788
AK
1188static __init int setup_disablecpuid(char *arg)
1189{
1190 int bit;
1191 if (get_option(&arg, &bit) && bit < NCAPINTS*32)
1192 setup_clear_cpu_cap(bit);
1193 else
1194 return 0;
1195 return 1;
1196}
1197__setup("clearcpuid=", setup_disablecpuid);