smpboot.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446
  1. /*
  2. * x86 SMP booting functions
  3. *
  4. * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
  5. * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
  6. * Copyright 2001 Andi Kleen, SuSE Labs.
  7. *
  8. * Much of the core SMP work is based on previous work by Thomas Radke, to
  9. * whom a great many thanks are extended.
  10. *
  11. * Thanks to Intel for making available several different Pentium,
  12. * Pentium Pro and Pentium-II/Xeon MP machines.
  13. * Original development of Linux SMP code supported by Caldera.
  14. *
  15. * This code is released under the GNU General Public License version 2 or
  16. * later.
  17. *
  18. * Fixes
  19. * Felix Koop : NR_CPUS used properly
  20. * Jose Renau : Handle single CPU case.
  21. * Alan Cox : By repeated request 8) - Total BogoMIPS report.
  22. * Greg Wright : Fix for kernel stacks panic.
  23. * Erich Boleyn : MP v1.4 and additional changes.
  24. * Matthias Sattler : Changes for 2.1 kernel map.
  25. * Michel Lespinasse : Changes for 2.1 kernel map.
  26. * Michael Chastain : Change trampoline.S to gnu as.
  27. * Alan Cox : Dumb bug: 'B' step PPro's are fine
  28. * Ingo Molnar : Added APIC timers, based on code
  29. * from Jose Renau
  30. * Ingo Molnar : various cleanups and rewrites
  31. * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
  32. * Maciej W. Rozycki : Bits for genuine 82489DX APICs
  33. * Andi Kleen : Changed for SMP boot into long mode.
  34. * Martin J. Bligh : Added support for multi-quad systems
  35. * Dave Jones : Report invalid combinations of Athlon CPUs.
  36. * Rusty Russell : Hacked into shape for new "hotplug" boot process.
  37. * Andi Kleen : Converted to new state machine.
  38. * Ashok Raj : CPU hotplug support
  39. * Glauber Costa : i386 and x86_64 integration
  40. */
  41. #include <linux/init.h>
  42. #include <linux/smp.h>
  43. #include <linux/module.h>
  44. #include <linux/sched.h>
  45. #include <linux/percpu.h>
  46. #include <linux/bootmem.h>
  47. #include <linux/err.h>
  48. #include <linux/nmi.h>
  49. #include <asm/acpi.h>
  50. #include <asm/desc.h>
  51. #include <asm/nmi.h>
  52. #include <asm/irq.h>
  53. #include <asm/smp.h>
  54. #include <asm/trampoline.h>
  55. #include <asm/cpu.h>
  56. #include <asm/numa.h>
  57. #include <asm/pgtable.h>
  58. #include <asm/tlbflush.h>
  59. #include <asm/mtrr.h>
  60. #include <asm/nmi.h>
  61. #include <asm/vmi.h>
  62. #include <asm/genapic.h>
  63. #include <linux/mc146818rtc.h>
  64. #include <mach_apic.h>
  65. #include <mach_wakecpu.h>
  66. #include <smpboot_hooks.h>
  67. /*
  68. * FIXME: For x86_64, those are defined in other files. But moving them here,
  69. * would make the setup areas dependent on smp, which is a loss. When we
  70. * integrate apic between arches, we can probably do a better job, but
  71. * right now, they'll stay here -- glommer
  72. */
  73. /* which logical CPU number maps to which CPU (physical APIC ID) */
  74. u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
  75. { [0 ... NR_CPUS-1] = BAD_APICID };
  76. void *x86_cpu_to_apicid_early_ptr;
  77. u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
  78. = { [0 ... NR_CPUS-1] = BAD_APICID };
  79. void *x86_bios_cpu_apicid_early_ptr;
  80. #ifdef CONFIG_X86_32
  81. u8 apicid_2_node[MAX_APICID];
  82. #endif
  83. /* State of each CPU */
  84. DEFINE_PER_CPU(int, cpu_state) = { 0 };
  85. /* Store all idle threads, this can be reused instead of creating
  86. * a new thread. Also avoids complicated thread destroy functionality
  87. * for idle threads.
  88. */
  89. #ifdef CONFIG_HOTPLUG_CPU
  90. /*
  91. * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
  92. * removed after init for !CONFIG_HOTPLUG_CPU.
  93. */
  94. static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
  95. #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
  96. #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
  97. #else
  98. struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
  99. #define get_idle_for_cpu(x) (idle_thread_array[(x)])
  100. #define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
  101. #endif
  102. /* Number of siblings per CPU package */
  103. int smp_num_siblings = 1;
  104. EXPORT_SYMBOL(smp_num_siblings);
  105. /* Last level cache ID of each logical CPU */
  106. DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
  107. /* bitmap of online cpus */
  108. cpumask_t cpu_online_map __read_mostly;
  109. EXPORT_SYMBOL(cpu_online_map);
  110. cpumask_t cpu_callin_map;
  111. cpumask_t cpu_callout_map;
  112. cpumask_t cpu_possible_map;
  113. EXPORT_SYMBOL(cpu_possible_map);
  114. /* representing HT siblings of each logical CPU */
  115. DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
  116. EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
  117. /* representing HT and core siblings of each logical CPU */
  118. DEFINE_PER_CPU(cpumask_t, cpu_core_map);
  119. EXPORT_PER_CPU_SYMBOL(cpu_core_map);
  120. /* Per CPU bogomips and other parameters */
  121. DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
  122. EXPORT_PER_CPU_SYMBOL(cpu_info);
  123. static atomic_t init_deasserted;
  124. static int boot_cpu_logical_apicid;
  125. /* representing cpus for which sibling maps can be computed */
  126. static cpumask_t cpu_sibling_setup_map;
  127. /* Set if we find a B stepping CPU */
  128. int __cpuinitdata smp_b_stepping;
  129. #if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
  130. /* which logical CPUs are on which nodes */
  131. cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
  132. { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
  133. EXPORT_SYMBOL(node_to_cpumask_map);
  134. /* which node each logical CPU is on */
  135. int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
  136. EXPORT_SYMBOL(cpu_to_node_map);
  137. /* set up a mapping between cpu and node. */
  138. static void map_cpu_to_node(int cpu, int node)
  139. {
  140. printk(KERN_INFO "Mapping cpu %d to node %d\n", cpu, node);
  141. cpu_set(cpu, node_to_cpumask_map[node]);
  142. cpu_to_node_map[cpu] = node;
  143. }
  144. /* undo a mapping between cpu and node. */
  145. static void unmap_cpu_to_node(int cpu)
  146. {
  147. int node;
  148. printk(KERN_INFO "Unmapping cpu %d from all nodes\n", cpu);
  149. for (node = 0; node < MAX_NUMNODES; node++)
  150. cpu_clear(cpu, node_to_cpumask_map[node]);
  151. cpu_to_node_map[cpu] = 0;
  152. }
  153. #else /* !(CONFIG_NUMA && CONFIG_X86_32) */
  154. #define map_cpu_to_node(cpu, node) ({})
  155. #define unmap_cpu_to_node(cpu) ({})
  156. #endif
  157. #ifdef CONFIG_X86_32
  158. u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly =
  159. { [0 ... NR_CPUS-1] = BAD_APICID };
  160. static void map_cpu_to_logical_apicid(void)
  161. {
  162. int cpu = smp_processor_id();
  163. int apicid = logical_smp_processor_id();
  164. int node = apicid_to_node(apicid);
  165. if (!node_online(node))
  166. node = first_online_node;
  167. cpu_2_logical_apicid[cpu] = apicid;
  168. map_cpu_to_node(cpu, node);
  169. }
  170. static void unmap_cpu_to_logical_apicid(int cpu)
  171. {
  172. cpu_2_logical_apicid[cpu] = BAD_APICID;
  173. unmap_cpu_to_node(cpu);
  174. }
  175. #else
  176. #define unmap_cpu_to_logical_apicid(cpu) do {} while (0)
  177. #define map_cpu_to_logical_apicid() do {} while (0)
  178. #endif
  179. /*
  180. * Report back to the Boot Processor.
  181. * Running on AP.
  182. */
  183. static void __cpuinit smp_callin(void)
  184. {
  185. int cpuid, phys_id;
  186. unsigned long timeout;
  187. /*
  188. * If waken up by an INIT in an 82489DX configuration
  189. * we may get here before an INIT-deassert IPI reaches
  190. * our local APIC. We have to wait for the IPI or we'll
  191. * lock up on an APIC access.
  192. */
  193. wait_for_init_deassert(&init_deasserted);
  194. /*
  195. * (This works even if the APIC is not enabled.)
  196. */
  197. phys_id = GET_APIC_ID(read_apic_id());
  198. cpuid = smp_processor_id();
  199. if (cpu_isset(cpuid, cpu_callin_map)) {
  200. panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
  201. phys_id, cpuid);
  202. }
  203. Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
  204. /*
  205. * STARTUP IPIs are fragile beasts as they might sometimes
  206. * trigger some glue motherboard logic. Complete APIC bus
  207. * silence for 1 second, this overestimates the time the
  208. * boot CPU is spending to send the up to 2 STARTUP IPIs
  209. * by a factor of two. This should be enough.
  210. */
  211. /*
  212. * Waiting 2s total for startup (udelay is not yet working)
  213. */
  214. timeout = jiffies + 2*HZ;
  215. while (time_before(jiffies, timeout)) {
  216. /*
  217. * Has the boot CPU finished it's STARTUP sequence?
  218. */
  219. if (cpu_isset(cpuid, cpu_callout_map))
  220. break;
  221. cpu_relax();
  222. }
  223. if (!time_before(jiffies, timeout)) {
  224. panic("%s: CPU%d started up but did not get a callout!\n",
  225. __func__, cpuid);
  226. }
  227. /*
  228. * the boot CPU has finished the init stage and is spinning
  229. * on callin_map until we finish. We are free to set up this
  230. * CPU, first the APIC. (this is probably redundant on most
  231. * boards)
  232. */
  233. Dprintk("CALLIN, before setup_local_APIC().\n");
  234. smp_callin_clear_local_apic();
  235. setup_local_APIC();
  236. end_local_APIC_setup();
  237. map_cpu_to_logical_apicid();
  238. /*
  239. * Get our bogomips.
  240. *
  241. * Need to enable IRQs because it can take longer and then
  242. * the NMI watchdog might kill us.
  243. */
  244. local_irq_enable();
  245. calibrate_delay();
  246. local_irq_disable();
  247. Dprintk("Stack at about %p\n", &cpuid);
  248. /*
  249. * Save our processor parameters
  250. */
  251. smp_store_cpu_info(cpuid);
  252. /*
  253. * Allow the master to continue.
  254. */
  255. cpu_set(cpuid, cpu_callin_map);
  256. }
  257. /*
  258. * Activate a secondary processor.
  259. */
  260. static void __cpuinit start_secondary(void *unused)
  261. {
  262. /*
  263. * Don't put *anything* before cpu_init(), SMP booting is too
  264. * fragile that we want to limit the things done here to the
  265. * most necessary things.
  266. */
  267. #ifdef CONFIG_VMI
  268. vmi_bringup();
  269. #endif
  270. cpu_init();
  271. preempt_disable();
  272. smp_callin();
  273. /* otherwise gcc will move up smp_processor_id before the cpu_init */
  274. barrier();
  275. /*
  276. * Check TSC synchronization with the BP:
  277. */
  278. check_tsc_sync_target();
  279. if (nmi_watchdog == NMI_IO_APIC) {
  280. disable_8259A_irq(0);
  281. enable_NMI_through_LVT0();
  282. enable_8259A_irq(0);
  283. }
  284. /* This must be done before setting cpu_online_map */
  285. set_cpu_sibling_map(raw_smp_processor_id());
  286. wmb();
  287. /*
  288. * We need to hold call_lock, so there is no inconsistency
  289. * between the time smp_call_function() determines number of
  290. * IPI recipients, and the time when the determination is made
  291. * for which cpus receive the IPI. Holding this
  292. * lock helps us to not include this cpu in a currently in progress
  293. * smp_call_function().
  294. */
  295. lock_ipi_call_lock();
  296. #ifdef CONFIG_X86_64
  297. spin_lock(&vector_lock);
  298. /* Setup the per cpu irq handling data structures */
  299. __setup_vector_irq(smp_processor_id());
  300. /*
  301. * Allow the master to continue.
  302. */
  303. spin_unlock(&vector_lock);
  304. #endif
  305. cpu_set(smp_processor_id(), cpu_online_map);
  306. unlock_ipi_call_lock();
  307. per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
  308. setup_secondary_clock();
  309. wmb();
  310. cpu_idle();
  311. }
  312. #ifdef CONFIG_X86_32
  313. /*
  314. * Everything has been set up for the secondary
  315. * CPUs - they just need to reload everything
  316. * from the task structure
  317. * This function must not return.
  318. */
  319. void __devinit initialize_secondary(void)
  320. {
  321. /*
  322. * We don't actually need to load the full TSS,
  323. * basically just the stack pointer and the ip.
  324. */
  325. asm volatile(
  326. "movl %0,%%esp\n\t"
  327. "jmp *%1"
  328. :
  329. :"m" (current->thread.sp), "m" (current->thread.ip));
  330. }
  331. #endif
  332. static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c)
  333. {
  334. #ifdef CONFIG_X86_32
  335. /*
  336. * Mask B, Pentium, but not Pentium MMX
  337. */
  338. if (c->x86_vendor == X86_VENDOR_INTEL &&
  339. c->x86 == 5 &&
  340. c->x86_mask >= 1 && c->x86_mask <= 4 &&
  341. c->x86_model <= 3)
  342. /*
  343. * Remember we have B step Pentia with bugs
  344. */
  345. smp_b_stepping = 1;
  346. /*
  347. * Certain Athlons might work (for various values of 'work') in SMP
  348. * but they are not certified as MP capable.
  349. */
  350. if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
  351. if (num_possible_cpus() == 1)
  352. goto valid_k7;
  353. /* Athlon 660/661 is valid. */
  354. if ((c->x86_model == 6) && ((c->x86_mask == 0) ||
  355. (c->x86_mask == 1)))
  356. goto valid_k7;
  357. /* Duron 670 is valid */
  358. if ((c->x86_model == 7) && (c->x86_mask == 0))
  359. goto valid_k7;
  360. /*
  361. * Athlon 662, Duron 671, and Athlon >model 7 have capability
  362. * bit. It's worth noting that the A5 stepping (662) of some
  363. * Athlon XP's have the MP bit set.
  364. * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for
  365. * more.
  366. */
  367. if (((c->x86_model == 6) && (c->x86_mask >= 2)) ||
  368. ((c->x86_model == 7) && (c->x86_mask >= 1)) ||
  369. (c->x86_model > 7))
  370. if (cpu_has_mp)
  371. goto valid_k7;
  372. /* If we get here, not a certified SMP capable AMD system. */
  373. add_taint(TAINT_UNSAFE_SMP);
  374. }
  375. valid_k7:
  376. ;
  377. #endif
  378. }
  379. static void __cpuinit smp_checks(void)
  380. {
  381. if (smp_b_stepping)
  382. printk(KERN_WARNING "WARNING: SMP operation may be unreliable"
  383. "with B stepping processors.\n");
  384. /*
  385. * Don't taint if we are running SMP kernel on a single non-MP
  386. * approved Athlon
  387. */
  388. if (tainted & TAINT_UNSAFE_SMP) {
  389. if (num_online_cpus())
  390. printk(KERN_INFO "WARNING: This combination of AMD"
  391. "processors is not suitable for SMP.\n");
  392. else
  393. tainted &= ~TAINT_UNSAFE_SMP;
  394. }
  395. }
  396. /*
  397. * The bootstrap kernel entry code has set these up. Save them for
  398. * a given CPU
  399. */
  400. void __cpuinit smp_store_cpu_info(int id)
  401. {
  402. struct cpuinfo_x86 *c = &cpu_data(id);
  403. *c = boot_cpu_data;
  404. c->cpu_index = id;
  405. if (id != 0)
  406. identify_secondary_cpu(c);
  407. smp_apply_quirks(c);
  408. }
  409. void __cpuinit set_cpu_sibling_map(int cpu)
  410. {
  411. int i;
  412. struct cpuinfo_x86 *c = &cpu_data(cpu);
  413. cpu_set(cpu, cpu_sibling_setup_map);
  414. if (smp_num_siblings > 1) {
  415. for_each_cpu_mask(i, cpu_sibling_setup_map) {
  416. if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
  417. c->cpu_core_id == cpu_data(i).cpu_core_id) {
  418. cpu_set(i, per_cpu(cpu_sibling_map, cpu));
  419. cpu_set(cpu, per_cpu(cpu_sibling_map, i));
  420. cpu_set(i, per_cpu(cpu_core_map, cpu));
  421. cpu_set(cpu, per_cpu(cpu_core_map, i));
  422. cpu_set(i, c->llc_shared_map);
  423. cpu_set(cpu, cpu_data(i).llc_shared_map);
  424. }
  425. }
  426. } else {
  427. cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
  428. }
  429. cpu_set(cpu, c->llc_shared_map);
  430. if (current_cpu_data.x86_max_cores == 1) {
  431. per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
  432. c->booted_cores = 1;
  433. return;
  434. }
  435. for_each_cpu_mask(i, cpu_sibling_setup_map) {
  436. if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
  437. per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
  438. cpu_set(i, c->llc_shared_map);
  439. cpu_set(cpu, cpu_data(i).llc_shared_map);
  440. }
  441. if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
  442. cpu_set(i, per_cpu(cpu_core_map, cpu));
  443. cpu_set(cpu, per_cpu(cpu_core_map, i));
  444. /*
  445. * Does this new cpu bringup a new core?
  446. */
  447. if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
  448. /*
  449. * for each core in package, increment
  450. * the booted_cores for this new cpu
  451. */
  452. if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
  453. c->booted_cores++;
  454. /*
  455. * increment the core count for all
  456. * the other cpus in this package
  457. */
  458. if (i != cpu)
  459. cpu_data(i).booted_cores++;
  460. } else if (i != cpu && !c->booted_cores)
  461. c->booted_cores = cpu_data(i).booted_cores;
  462. }
  463. }
  464. }
  465. /* maps the cpu to the sched domain representing multi-core */
  466. cpumask_t cpu_coregroup_map(int cpu)
  467. {
  468. struct cpuinfo_x86 *c = &cpu_data(cpu);
  469. /*
  470. * For perf, we return last level cache shared map.
  471. * And for power savings, we return cpu_core_map
  472. */
  473. if (sched_mc_power_savings || sched_smt_power_savings)
  474. return per_cpu(cpu_core_map, cpu);
  475. else
  476. return c->llc_shared_map;
  477. }
  478. #ifdef CONFIG_X86_32
  479. /*
  480. * We are called very early to get the low memory for the
  481. * SMP bootup trampoline page.
  482. */
  483. void __init smp_alloc_memory(void)
  484. {
  485. trampoline_base = alloc_bootmem_low_pages(PAGE_SIZE);
  486. /*
  487. * Has to be in very low memory so we can execute
  488. * real-mode AP code.
  489. */
  490. if (__pa(trampoline_base) >= 0x9F000)
  491. BUG();
  492. }
  493. #endif
  494. static void impress_friends(void)
  495. {
  496. int cpu;
  497. unsigned long bogosum = 0;
  498. /*
  499. * Allow the user to impress friends.
  500. */
  501. Dprintk("Before bogomips.\n");
  502. for_each_possible_cpu(cpu)
  503. if (cpu_isset(cpu, cpu_callout_map))
  504. bogosum += cpu_data(cpu).loops_per_jiffy;
  505. printk(KERN_INFO
  506. "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
  507. num_online_cpus(),
  508. bogosum/(500000/HZ),
  509. (bogosum/(5000/HZ))%100);
  510. Dprintk("Before bogocount - setting activated=1.\n");
  511. }
  512. static inline void __inquire_remote_apic(int apicid)
  513. {
  514. unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
  515. char *names[] = { "ID", "VERSION", "SPIV" };
  516. int timeout;
  517. u32 status;
  518. printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
  519. for (i = 0; i < ARRAY_SIZE(regs); i++) {
  520. printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
  521. /*
  522. * Wait for idle.
  523. */
  524. status = safe_apic_wait_icr_idle();
  525. if (status)
  526. printk(KERN_CONT
  527. "a previous APIC delivery may have failed\n");
  528. apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
  529. apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
  530. timeout = 0;
  531. do {
  532. udelay(100);
  533. status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
  534. } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
  535. switch (status) {
  536. case APIC_ICR_RR_VALID:
  537. status = apic_read(APIC_RRR);
  538. printk(KERN_CONT "%08x\n", status);
  539. break;
  540. default:
  541. printk(KERN_CONT "failed\n");
  542. }
  543. }
  544. }
  545. #ifdef WAKE_SECONDARY_VIA_NMI
  546. /*
  547. * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
  548. * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
  549. * won't ... remember to clear down the APIC, etc later.
  550. */
  551. static int __devinit
  552. wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
  553. {
  554. unsigned long send_status, accept_status = 0;
  555. int maxlvt;
  556. /* Target chip */
  557. apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
  558. /* Boot on the stack */
  559. /* Kick the second */
  560. apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
  561. Dprintk("Waiting for send to finish...\n");
  562. send_status = safe_apic_wait_icr_idle();
  563. /*
  564. * Give the other CPU some time to accept the IPI.
  565. */
  566. udelay(200);
  567. /*
  568. * Due to the Pentium erratum 3AP.
  569. */
  570. maxlvt = lapic_get_maxlvt();
  571. if (maxlvt > 3) {
  572. apic_read_around(APIC_SPIV);
  573. apic_write(APIC_ESR, 0);
  574. }
  575. accept_status = (apic_read(APIC_ESR) & 0xEF);
  576. Dprintk("NMI sent.\n");
  577. if (send_status)
  578. printk(KERN_ERR "APIC never delivered???\n");
  579. if (accept_status)
  580. printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
  581. return (send_status | accept_status);
  582. }
  583. #endif /* WAKE_SECONDARY_VIA_NMI */
  584. #ifdef WAKE_SECONDARY_VIA_INIT
  585. static int __devinit
  586. wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
  587. {
  588. unsigned long send_status, accept_status = 0;
  589. int maxlvt, num_starts, j;
  590. if (get_uv_system_type() == UV_NON_UNIQUE_APIC) {
  591. send_status = uv_wakeup_secondary(phys_apicid, start_eip);
  592. atomic_set(&init_deasserted, 1);
  593. return send_status;
  594. }
  595. /*
  596. * Be paranoid about clearing APIC errors.
  597. */
  598. if (APIC_INTEGRATED(apic_version[phys_apicid])) {
  599. apic_read_around(APIC_SPIV);
  600. apic_write(APIC_ESR, 0);
  601. apic_read(APIC_ESR);
  602. }
  603. Dprintk("Asserting INIT.\n");
  604. /*
  605. * Turn INIT on target chip
  606. */
  607. apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
  608. /*
  609. * Send IPI
  610. */
  611. apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
  612. | APIC_DM_INIT);
  613. Dprintk("Waiting for send to finish...\n");
  614. send_status = safe_apic_wait_icr_idle();
  615. mdelay(10);
  616. Dprintk("Deasserting INIT.\n");
  617. /* Target chip */
  618. apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
  619. /* Send IPI */
  620. apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
  621. Dprintk("Waiting for send to finish...\n");
  622. send_status = safe_apic_wait_icr_idle();
  623. mb();
  624. atomic_set(&init_deasserted, 1);
  625. /*
  626. * Should we send STARTUP IPIs ?
  627. *
  628. * Determine this based on the APIC version.
  629. * If we don't have an integrated APIC, don't send the STARTUP IPIs.
  630. */
  631. if (APIC_INTEGRATED(apic_version[phys_apicid]))
  632. num_starts = 2;
  633. else
  634. num_starts = 0;
  635. /*
  636. * Paravirt / VMI wants a startup IPI hook here to set up the
  637. * target processor state.
  638. */
  639. startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
  640. #ifdef CONFIG_X86_64
  641. (unsigned long)init_rsp);
  642. #else
  643. (unsigned long)stack_start.sp);
  644. #endif
  645. /*
  646. * Run STARTUP IPI loop.
  647. */
  648. Dprintk("#startup loops: %d.\n", num_starts);
  649. maxlvt = lapic_get_maxlvt();
  650. for (j = 1; j <= num_starts; j++) {
  651. Dprintk("Sending STARTUP #%d.\n", j);
  652. apic_read_around(APIC_SPIV);
  653. apic_write(APIC_ESR, 0);
  654. apic_read(APIC_ESR);
  655. Dprintk("After apic_write.\n");
  656. /*
  657. * STARTUP IPI
  658. */
  659. /* Target chip */
  660. apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
  661. /* Boot on the stack */
  662. /* Kick the second */
  663. apic_write_around(APIC_ICR, APIC_DM_STARTUP
  664. | (start_eip >> 12));
  665. /*
  666. * Give the other CPU some time to accept the IPI.
  667. */
  668. udelay(300);
  669. Dprintk("Startup point 1.\n");
  670. Dprintk("Waiting for send to finish...\n");
  671. send_status = safe_apic_wait_icr_idle();
  672. /*
  673. * Give the other CPU some time to accept the IPI.
  674. */
  675. udelay(200);
  676. /*
  677. * Due to the Pentium erratum 3AP.
  678. */
  679. if (maxlvt > 3) {
  680. apic_read_around(APIC_SPIV);
  681. apic_write(APIC_ESR, 0);
  682. }
  683. accept_status = (apic_read(APIC_ESR) & 0xEF);
  684. if (send_status || accept_status)
  685. break;
  686. }
  687. Dprintk("After Startup.\n");
  688. if (send_status)
  689. printk(KERN_ERR "APIC never delivered???\n");
  690. if (accept_status)
  691. printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
  692. return (send_status | accept_status);
  693. }
  694. #endif /* WAKE_SECONDARY_VIA_INIT */
  695. struct create_idle {
  696. struct work_struct work;
  697. struct task_struct *idle;
  698. struct completion done;
  699. int cpu;
  700. };
  701. static void __cpuinit do_fork_idle(struct work_struct *work)
  702. {
  703. struct create_idle *c_idle =
  704. container_of(work, struct create_idle, work);
  705. c_idle->idle = fork_idle(c_idle->cpu);
  706. complete(&c_idle->done);
  707. }
  708. static int __cpuinit do_boot_cpu(int apicid, int cpu)
  709. /*
  710. * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
  711. * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
  712. * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
  713. */
  714. {
  715. unsigned long boot_error = 0;
  716. int timeout;
  717. unsigned long start_ip;
  718. unsigned short nmi_high = 0, nmi_low = 0;
  719. struct create_idle c_idle = {
  720. .cpu = cpu,
  721. .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
  722. };
  723. INIT_WORK(&c_idle.work, do_fork_idle);
  724. #ifdef CONFIG_X86_64
  725. /* allocate memory for gdts of secondary cpus. Hotplug is considered */
  726. if (!cpu_gdt_descr[cpu].address &&
  727. !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
  728. printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
  729. return -1;
  730. }
  731. /* Allocate node local memory for AP pdas */
  732. if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
  733. struct x8664_pda *newpda, *pda;
  734. int node = cpu_to_node(cpu);
  735. pda = cpu_pda(cpu);
  736. newpda = kmalloc_node(sizeof(struct x8664_pda), GFP_ATOMIC,
  737. node);
  738. if (newpda) {
  739. memcpy(newpda, pda, sizeof(struct x8664_pda));
  740. cpu_pda(cpu) = newpda;
  741. } else
  742. printk(KERN_ERR
  743. "Could not allocate node local PDA for CPU %d on node %d\n",
  744. cpu, node);
  745. }
  746. #endif
  747. alternatives_smp_switch(1);
  748. c_idle.idle = get_idle_for_cpu(cpu);
  749. /*
  750. * We can't use kernel_thread since we must avoid to
  751. * reschedule the child.
  752. */
  753. if (c_idle.idle) {
  754. c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
  755. (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
  756. init_idle(c_idle.idle, cpu);
  757. goto do_rest;
  758. }
  759. if (!keventd_up() || current_is_keventd())
  760. c_idle.work.func(&c_idle.work);
  761. else {
  762. schedule_work(&c_idle.work);
  763. wait_for_completion(&c_idle.done);
  764. }
  765. if (IS_ERR(c_idle.idle)) {
  766. printk("failed fork for CPU %d\n", cpu);
  767. return PTR_ERR(c_idle.idle);
  768. }
  769. set_idle_for_cpu(cpu, c_idle.idle);
  770. do_rest:
  771. #ifdef CONFIG_X86_32
  772. per_cpu(current_task, cpu) = c_idle.idle;
  773. init_gdt(cpu);
  774. early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
  775. c_idle.idle->thread.ip = (unsigned long) start_secondary;
  776. /* Stack for startup_32 can be just as for start_secondary onwards */
  777. stack_start.sp = (void *) c_idle.idle->thread.sp;
  778. irq_ctx_init(cpu);
  779. #else
  780. cpu_pda(cpu)->pcurrent = c_idle.idle;
  781. init_rsp = c_idle.idle->thread.sp;
  782. load_sp0(&per_cpu(init_tss, cpu), &c_idle.idle->thread);
  783. initial_code = (unsigned long)start_secondary;
  784. clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
  785. #endif
  786. /* start_ip had better be page-aligned! */
  787. start_ip = setup_trampoline();
  788. /* So we see what's up */
  789. printk(KERN_INFO "Booting processor %d/%d ip %lx\n",
  790. cpu, apicid, start_ip);
  791. /*
  792. * This grunge runs the startup process for
  793. * the targeted processor.
  794. */
  795. atomic_set(&init_deasserted, 0);
  796. if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
  797. Dprintk("Setting warm reset code and vector.\n");
  798. store_NMI_vector(&nmi_high, &nmi_low);
  799. smpboot_setup_warm_reset_vector(start_ip);
  800. /*
  801. * Be paranoid about clearing APIC errors.
  802. */
  803. apic_write(APIC_ESR, 0);
  804. apic_read(APIC_ESR);
  805. }
  806. /*
  807. * Starting actual IPI sequence...
  808. */
  809. boot_error = wakeup_secondary_cpu(apicid, start_ip);
  810. if (!boot_error) {
  811. /*
  812. * allow APs to start initializing.
  813. */
  814. Dprintk("Before Callout %d.\n", cpu);
  815. cpu_set(cpu, cpu_callout_map);
  816. Dprintk("After Callout %d.\n", cpu);
  817. /*
  818. * Wait 5s total for a response
  819. */
  820. for (timeout = 0; timeout < 50000; timeout++) {
  821. if (cpu_isset(cpu, cpu_callin_map))
  822. break; /* It has booted */
  823. udelay(100);
  824. }
  825. if (cpu_isset(cpu, cpu_callin_map)) {
  826. /* number CPUs logically, starting from 1 (BSP is 0) */
  827. Dprintk("OK.\n");
  828. printk(KERN_INFO "CPU%d: ", cpu);
  829. print_cpu_info(&cpu_data(cpu));
  830. Dprintk("CPU has booted.\n");
  831. } else {
  832. boot_error = 1;
  833. if (*((volatile unsigned char *)trampoline_base)
  834. == 0xA5)
  835. /* trampoline started but...? */
  836. printk(KERN_ERR "Stuck ??\n");
  837. else
  838. /* trampoline code not run */
  839. printk(KERN_ERR "Not responding.\n");
  840. if (get_uv_system_type() != UV_NON_UNIQUE_APIC)
  841. inquire_remote_apic(apicid);
  842. }
  843. }
  844. if (boot_error) {
  845. /* Try to put things back the way they were before ... */
  846. unmap_cpu_to_logical_apicid(cpu);
  847. #ifdef CONFIG_X86_64
  848. clear_node_cpumask(cpu); /* was set by numa_add_cpu */
  849. #endif
  850. cpu_clear(cpu, cpu_callout_map); /* was set by do_boot_cpu() */
  851. cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
  852. cpu_clear(cpu, cpu_possible_map);
  853. cpu_clear(cpu, cpu_present_map);
  854. per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
  855. }
  856. /* mark "stuck" area as not stuck */
  857. *((volatile unsigned long *)trampoline_base) = 0;
  858. /*
  859. * Cleanup possible dangling ends...
  860. */
  861. smpboot_restore_warm_reset_vector();
  862. return boot_error;
  863. }
  864. int __cpuinit native_cpu_up(unsigned int cpu)
  865. {
  866. int apicid = cpu_present_to_apicid(cpu);
  867. unsigned long flags;
  868. int err;
  869. WARN_ON(irqs_disabled());
  870. Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
  871. if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
  872. !physid_isset(apicid, phys_cpu_present_map)) {
  873. printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
  874. return -EINVAL;
  875. }
  876. /*
  877. * Already booted CPU?
  878. */
  879. if (cpu_isset(cpu, cpu_callin_map)) {
  880. Dprintk("do_boot_cpu %d Already started\n", cpu);
  881. return -ENOSYS;
  882. }
  883. /*
  884. * Save current MTRR state in case it was changed since early boot
  885. * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
  886. */
  887. mtrr_save_state();
  888. per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
  889. #ifdef CONFIG_X86_32
  890. /* init low mem mapping */
  891. clone_pgd_range(swapper_pg_dir, swapper_pg_dir + KERNEL_PGD_BOUNDARY,
  892. min_t(unsigned long, KERNEL_PGD_PTRS, KERNEL_PGD_BOUNDARY));
  893. flush_tlb_all();
  894. #endif
  895. err = do_boot_cpu(apicid, cpu);
  896. if (err < 0) {
  897. Dprintk("do_boot_cpu failed %d\n", err);
  898. return err;
  899. }
  900. /*
  901. * Check TSC synchronization with the AP (keep irqs disabled
  902. * while doing so):
  903. */
  904. local_irq_save(flags);
  905. check_tsc_sync_source(cpu);
  906. local_irq_restore(flags);
  907. while (!cpu_online(cpu)) {
  908. cpu_relax();
  909. touch_nmi_watchdog();
  910. }
  911. return 0;
  912. }
  913. /*
  914. * Fall back to non SMP mode after errors.
  915. *
  916. * RED-PEN audit/test this more. I bet there is more state messed up here.
  917. */
  918. static __init void disable_smp(void)
  919. {
  920. cpu_present_map = cpumask_of_cpu(0);
  921. cpu_possible_map = cpumask_of_cpu(0);
  922. #ifdef CONFIG_X86_32
  923. smpboot_clear_io_apic_irqs();
  924. #endif
  925. if (smp_found_config)
  926. phys_cpu_present_map =
  927. physid_mask_of_physid(boot_cpu_physical_apicid);
  928. else
  929. phys_cpu_present_map = physid_mask_of_physid(0);
  930. map_cpu_to_logical_apicid();
  931. cpu_set(0, per_cpu(cpu_sibling_map, 0));
  932. cpu_set(0, per_cpu(cpu_core_map, 0));
  933. }
  934. /*
  935. * Various sanity checks.
  936. */
  937. static int __init smp_sanity_check(unsigned max_cpus)
  938. {
  939. preempt_disable();
  940. if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
  941. printk(KERN_WARNING "weird, boot CPU (#%d) not listed"
  942. "by the BIOS.\n", hard_smp_processor_id());
  943. physid_set(hard_smp_processor_id(), phys_cpu_present_map);
  944. }
  945. /*
  946. * If we couldn't find an SMP configuration at boot time,
  947. * get out of here now!
  948. */
  949. if (!smp_found_config && !acpi_lapic) {
  950. preempt_enable();
  951. printk(KERN_NOTICE "SMP motherboard not detected.\n");
  952. disable_smp();
  953. if (APIC_init_uniprocessor())
  954. printk(KERN_NOTICE "Local APIC not detected."
  955. " Using dummy APIC emulation.\n");
  956. return -1;
  957. }
  958. /*
  959. * Should not be necessary because the MP table should list the boot
  960. * CPU too, but we do it for the sake of robustness anyway.
  961. */
  962. if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
  963. printk(KERN_NOTICE
  964. "weird, boot CPU (#%d) not listed by the BIOS.\n",
  965. boot_cpu_physical_apicid);
  966. physid_set(hard_smp_processor_id(), phys_cpu_present_map);
  967. }
  968. preempt_enable();
  969. /*
  970. * If we couldn't find a local APIC, then get out of here now!
  971. */
  972. if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
  973. !cpu_has_apic) {
  974. printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
  975. boot_cpu_physical_apicid);
  976. printk(KERN_ERR "... forcing use of dummy APIC emulation."
  977. "(tell your hw vendor)\n");
  978. smpboot_clear_io_apic();
  979. return -1;
  980. }
  981. verify_local_APIC();
  982. /*
  983. * If SMP should be disabled, then really disable it!
  984. */
  985. if (!max_cpus) {
  986. printk(KERN_INFO "SMP mode deactivated,"
  987. "forcing use of dummy APIC emulation.\n");
  988. smpboot_clear_io_apic();
  989. #ifdef CONFIG_X86_32
  990. connect_bsp_APIC();
  991. #endif
  992. setup_local_APIC();
  993. end_local_APIC_setup();
  994. return -1;
  995. }
  996. return 0;
  997. }
  998. static void __init smp_cpu_index_default(void)
  999. {
  1000. int i;
  1001. struct cpuinfo_x86 *c;
  1002. for_each_possible_cpu(i) {
  1003. c = &cpu_data(i);
  1004. /* mark all to hotplug */
  1005. c->cpu_index = NR_CPUS;
  1006. }
  1007. }
  1008. /*
  1009. * Prepare for SMP bootup. The MP table or ACPI has been read
  1010. * earlier. Just do some sanity checking here and enable APIC mode.
  1011. */
  1012. void __init native_smp_prepare_cpus(unsigned int max_cpus)
  1013. {
  1014. nmi_watchdog_default();
  1015. smp_cpu_index_default();
  1016. current_cpu_data = boot_cpu_data;
  1017. cpu_callin_map = cpumask_of_cpu(0);
  1018. mb();
  1019. /*
  1020. * Setup boot CPU information
  1021. */
  1022. smp_store_cpu_info(0); /* Final full version of the data */
  1023. boot_cpu_logical_apicid = logical_smp_processor_id();
  1024. current_thread_info()->cpu = 0; /* needed? */
  1025. set_cpu_sibling_map(0);
  1026. if (smp_sanity_check(max_cpus) < 0) {
  1027. printk(KERN_INFO "SMP disabled\n");
  1028. disable_smp();
  1029. return;
  1030. }
  1031. preempt_disable();
  1032. if (GET_APIC_ID(read_apic_id()) != boot_cpu_physical_apicid) {
  1033. panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
  1034. GET_APIC_ID(read_apic_id()), boot_cpu_physical_apicid);
  1035. /* Or can we switch back to PIC here? */
  1036. }
  1037. preempt_enable();
  1038. #ifdef CONFIG_X86_32
  1039. connect_bsp_APIC();
  1040. #endif
  1041. /*
  1042. * Switch from PIC to APIC mode.
  1043. */
  1044. setup_local_APIC();
  1045. #ifdef CONFIG_X86_64
  1046. /*
  1047. * Enable IO APIC before setting up error vector
  1048. */
  1049. if (!skip_ioapic_setup && nr_ioapics)
  1050. enable_IO_APIC();
  1051. #endif
  1052. end_local_APIC_setup();
  1053. map_cpu_to_logical_apicid();
  1054. setup_portio_remap();
  1055. smpboot_setup_io_apic();
  1056. /*
  1057. * Set up local APIC timer on boot CPU.
  1058. */
  1059. printk(KERN_INFO "CPU%d: ", 0);
  1060. print_cpu_info(&cpu_data(0));
  1061. setup_boot_clock();
  1062. }
  1063. /*
  1064. * Early setup to make printk work.
  1065. */
  1066. void __init native_smp_prepare_boot_cpu(void)
  1067. {
  1068. int me = smp_processor_id();
  1069. #ifdef CONFIG_X86_32
  1070. init_gdt(me);
  1071. switch_to_new_gdt();
  1072. #endif
  1073. /* already set me in cpu_online_map in boot_cpu_init() */
  1074. cpu_set(me, cpu_callout_map);
  1075. per_cpu(cpu_state, me) = CPU_ONLINE;
  1076. }
  1077. void __init native_smp_cpus_done(unsigned int max_cpus)
  1078. {
  1079. Dprintk("Boot done.\n");
  1080. impress_friends();
  1081. smp_checks();
  1082. #ifdef CONFIG_X86_IO_APIC
  1083. setup_ioapic_dest();
  1084. #endif
  1085. check_nmi_watchdog();
  1086. #ifdef CONFIG_X86_32
  1087. zap_low_mappings();
  1088. #endif
  1089. }
  1090. #ifdef CONFIG_HOTPLUG_CPU
  1091. # ifdef CONFIG_X86_32
  1092. void cpu_exit_clear(void)
  1093. {
  1094. int cpu = raw_smp_processor_id();
  1095. idle_task_exit();
  1096. cpu_uninit();
  1097. irq_ctx_exit(cpu);
  1098. cpu_clear(cpu, cpu_callout_map);
  1099. cpu_clear(cpu, cpu_callin_map);
  1100. unmap_cpu_to_logical_apicid(cpu);
  1101. }
  1102. # endif /* CONFIG_X86_32 */
  1103. static void remove_siblinginfo(int cpu)
  1104. {
  1105. int sibling;
  1106. struct cpuinfo_x86 *c = &cpu_data(cpu);
  1107. for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
  1108. cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
  1109. /*/
  1110. * last thread sibling in this cpu core going down
  1111. */
  1112. if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
  1113. cpu_data(sibling).booted_cores--;
  1114. }
  1115. for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
  1116. cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
  1117. cpus_clear(per_cpu(cpu_sibling_map, cpu));
  1118. cpus_clear(per_cpu(cpu_core_map, cpu));
  1119. c->phys_proc_id = 0;
  1120. c->cpu_core_id = 0;
  1121. cpu_clear(cpu, cpu_sibling_setup_map);
  1122. }
  1123. static int additional_cpus __initdata = -1;
  1124. static __init int setup_additional_cpus(char *s)
  1125. {
  1126. return s && get_option(&s, &additional_cpus) ? 0 : -EINVAL;
  1127. }
  1128. early_param("additional_cpus", setup_additional_cpus);
  1129. /*
  1130. * cpu_possible_map should be static, it cannot change as cpu's
  1131. * are onlined, or offlined. The reason is per-cpu data-structures
  1132. * are allocated by some modules at init time, and dont expect to
  1133. * do this dynamically on cpu arrival/departure.
  1134. * cpu_present_map on the other hand can change dynamically.
  1135. * In case when cpu_hotplug is not compiled, then we resort to current
  1136. * behaviour, which is cpu_possible == cpu_present.
  1137. * - Ashok Raj
  1138. *
  1139. * Three ways to find out the number of additional hotplug CPUs:
  1140. * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
  1141. * - The user can overwrite it with additional_cpus=NUM
  1142. * - Otherwise don't reserve additional CPUs.
  1143. * We do this because additional CPUs waste a lot of memory.
  1144. * -AK
  1145. */
  1146. __init void prefill_possible_map(void)
  1147. {
  1148. int i;
  1149. int possible;
  1150. if (additional_cpus == -1) {
  1151. if (disabled_cpus > 0)
  1152. additional_cpus = disabled_cpus;
  1153. else
  1154. additional_cpus = 0;
  1155. }
  1156. possible = num_processors + additional_cpus;
  1157. if (possible > NR_CPUS)
  1158. possible = NR_CPUS;
  1159. printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
  1160. possible, max_t(int, possible - num_processors, 0));
  1161. for (i = 0; i < possible; i++)
  1162. cpu_set(i, cpu_possible_map);
  1163. }
  1164. static void __ref remove_cpu_from_maps(int cpu)
  1165. {
  1166. cpu_clear(cpu, cpu_online_map);
  1167. #ifdef CONFIG_X86_64
  1168. cpu_clear(cpu, cpu_callout_map);
  1169. cpu_clear(cpu, cpu_callin_map);
  1170. /* was set by cpu_init() */
  1171. clear_bit(cpu, (unsigned long *)&cpu_initialized);
  1172. clear_node_cpumask(cpu);
  1173. #endif
  1174. }
  1175. int __cpu_disable(void)
  1176. {
  1177. int cpu = smp_processor_id();
  1178. /*
  1179. * Perhaps use cpufreq to drop frequency, but that could go
  1180. * into generic code.
  1181. *
  1182. * We won't take down the boot processor on i386 due to some
  1183. * interrupts only being able to be serviced by the BSP.
  1184. * Especially so if we're not using an IOAPIC -zwane
  1185. */
  1186. if (cpu == 0)
  1187. return -EBUSY;
  1188. if (nmi_watchdog == NMI_LOCAL_APIC)
  1189. stop_apic_nmi_watchdog(NULL);
  1190. clear_local_APIC();
  1191. /*
  1192. * HACK:
  1193. * Allow any queued timer interrupts to get serviced
  1194. * This is only a temporary solution until we cleanup
  1195. * fixup_irqs as we do for IA64.
  1196. */
  1197. local_irq_enable();
  1198. mdelay(1);
  1199. local_irq_disable();
  1200. remove_siblinginfo(cpu);
  1201. /* It's now safe to remove this processor from the online map */
  1202. remove_cpu_from_maps(cpu);
  1203. fixup_irqs(cpu_online_map);
  1204. return 0;
  1205. }
  1206. void __cpu_die(unsigned int cpu)
  1207. {
  1208. /* We don't do anything here: idle task is faking death itself. */
  1209. unsigned int i;
  1210. for (i = 0; i < 10; i++) {
  1211. /* They ack this in play_dead by setting CPU_DEAD */
  1212. if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
  1213. printk(KERN_INFO "CPU %d is now offline\n", cpu);
  1214. if (1 == num_online_cpus())
  1215. alternatives_smp_switch(0);
  1216. return;
  1217. }
  1218. msleep(100);
  1219. }
  1220. printk(KERN_ERR "CPU %u didn't die...\n", cpu);
  1221. }
  1222. #else /* ... !CONFIG_HOTPLUG_CPU */
  1223. int __cpu_disable(void)
  1224. {
  1225. return -ENOSYS;
  1226. }
  1227. void __cpu_die(unsigned int cpu)
  1228. {
  1229. /* We said "no" in __cpu_disable */
  1230. BUG();
  1231. }
  1232. #endif
  1233. /*
  1234. * If the BIOS enumerates physical processors before logical,
  1235. * maxcpus=N at enumeration-time can be used to disable HT.
  1236. */
  1237. static int __init parse_maxcpus(char *arg)
  1238. {
  1239. extern unsigned int maxcpus;
  1240. maxcpus = simple_strtoul(arg, NULL, 0);
  1241. return 0;
  1242. }
  1243. early_param("maxcpus", parse_maxcpus);