common.c 27 KB

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