]>
Commit | Line | Data |
---|---|---|
c767a54b | 1 | /* |
4cedb334 GOC |
2 | * x86 SMP booting functions |
3 | * | |
87c6fe26 | 4 | * (c) 1995 Alan Cox, Building #3 <[email protected]> |
8f47e163 | 5 | * (c) 1998, 1999, 2000, 2009 Ingo Molnar <[email protected]> |
4cedb334 GOC |
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 | ||
c767a54b JP |
42 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
43 | ||
68a1c3f8 GC |
44 | #include <linux/init.h> |
45 | #include <linux/smp.h> | |
186f4360 | 46 | #include <linux/export.h> |
70708a18 | 47 | #include <linux/sched.h> |
69c18c15 | 48 | #include <linux/percpu.h> |
91718e8d | 49 | #include <linux/bootmem.h> |
cb3c8b90 GOC |
50 | #include <linux/err.h> |
51 | #include <linux/nmi.h> | |
69575d38 | 52 | #include <linux/tboot.h> |
35f720c5 | 53 | #include <linux/stackprotector.h> |
5a0e3ad6 | 54 | #include <linux/gfp.h> |
1a022e3f | 55 | #include <linux/cpuidle.h> |
69c18c15 | 56 | |
8aef135c | 57 | #include <asm/acpi.h> |
cb3c8b90 | 58 | #include <asm/desc.h> |
69c18c15 GC |
59 | #include <asm/nmi.h> |
60 | #include <asm/irq.h> | |
07bbc16a | 61 | #include <asm/idle.h> |
48927bbb | 62 | #include <asm/realmode.h> |
69c18c15 GC |
63 | #include <asm/cpu.h> |
64 | #include <asm/numa.h> | |
cb3c8b90 GOC |
65 | #include <asm/pgtable.h> |
66 | #include <asm/tlbflush.h> | |
67 | #include <asm/mtrr.h> | |
ea530692 | 68 | #include <asm/mwait.h> |
7b6aa335 | 69 | #include <asm/apic.h> |
7167d08e | 70 | #include <asm/io_apic.h> |
78f7f1e5 | 71 | #include <asm/fpu/internal.h> |
569712b2 | 72 | #include <asm/setup.h> |
bdbcdd48 | 73 | #include <asm/uv/uv.h> |
cb3c8b90 | 74 | #include <linux/mc146818rtc.h> |
b81bb373 | 75 | #include <asm/i8259.h> |
48927bbb | 76 | #include <asm/realmode.h> |
646e29a1 | 77 | #include <asm/misc.h> |
48927bbb | 78 | |
a355352b GC |
79 | /* Number of siblings per CPU package */ |
80 | int smp_num_siblings = 1; | |
81 | EXPORT_SYMBOL(smp_num_siblings); | |
82 | ||
83 | /* Last level cache ID of each logical CPU */ | |
0816b0f0 | 84 | DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID; |
a355352b | 85 | |
a355352b | 86 | /* representing HT siblings of each logical CPU */ |
0816b0f0 | 87 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_sibling_map); |
a355352b GC |
88 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); |
89 | ||
90 | /* representing HT and core siblings of each logical CPU */ | |
0816b0f0 | 91 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_core_map); |
a355352b GC |
92 | EXPORT_PER_CPU_SYMBOL(cpu_core_map); |
93 | ||
0816b0f0 | 94 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_llc_shared_map); |
b3d7336d | 95 | |
a355352b | 96 | /* Per CPU bogomips and other parameters */ |
2c773dd3 | 97 | DEFINE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info); |
a355352b | 98 | EXPORT_PER_CPU_SYMBOL(cpu_info); |
768d9505 | 99 | |
1f12e32f TG |
100 | /* Logical package management. We might want to allocate that dynamically */ |
101 | static int *physical_to_logical_pkg __read_mostly; | |
102 | static unsigned long *physical_package_map __read_mostly;; | |
1f12e32f TG |
103 | static unsigned int max_physical_pkg_id __read_mostly; |
104 | unsigned int __max_logical_packages __read_mostly; | |
105 | EXPORT_SYMBOL(__max_logical_packages); | |
7b0501b1 JO |
106 | static unsigned int logical_packages __read_mostly; |
107 | static bool logical_packages_frozen __read_mostly; | |
1f12e32f | 108 | |
70b8301f AK |
109 | /* Maximum number of SMT threads on any online core */ |
110 | int __max_smt_threads __read_mostly; | |
111 | ||
7d25127c TC |
112 | /* Flag to indicate if a complete sched domain rebuild is required */ |
113 | bool x86_topology_update; | |
114 | ||
115 | int arch_update_cpu_topology(void) | |
116 | { | |
117 | int retval = x86_topology_update; | |
118 | ||
119 | x86_topology_update = false; | |
120 | return retval; | |
121 | } | |
122 | ||
f77aa308 TG |
123 | static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip) |
124 | { | |
125 | unsigned long flags; | |
126 | ||
127 | spin_lock_irqsave(&rtc_lock, flags); | |
128 | CMOS_WRITE(0xa, 0xf); | |
129 | spin_unlock_irqrestore(&rtc_lock, flags); | |
130 | local_flush_tlb(); | |
131 | pr_debug("1.\n"); | |
132 | *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_HIGH)) = | |
133 | start_eip >> 4; | |
134 | pr_debug("2.\n"); | |
135 | *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) = | |
136 | start_eip & 0xf; | |
137 | pr_debug("3.\n"); | |
138 | } | |
139 | ||
140 | static inline void smpboot_restore_warm_reset_vector(void) | |
141 | { | |
142 | unsigned long flags; | |
143 | ||
144 | /* | |
145 | * Install writable page 0 entry to set BIOS data area. | |
146 | */ | |
147 | local_flush_tlb(); | |
148 | ||
149 | /* | |
150 | * Paranoid: Set warm reset code and vector here back | |
151 | * to default values. | |
152 | */ | |
153 | spin_lock_irqsave(&rtc_lock, flags); | |
154 | CMOS_WRITE(0, 0xf); | |
155 | spin_unlock_irqrestore(&rtc_lock, flags); | |
156 | ||
157 | *((volatile u32 *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) = 0; | |
158 | } | |
159 | ||
cb3c8b90 | 160 | /* |
30106c17 FY |
161 | * Report back to the Boot Processor during boot time or to the caller processor |
162 | * during CPU online. | |
cb3c8b90 | 163 | */ |
148f9bb8 | 164 | static void smp_callin(void) |
cb3c8b90 GOC |
165 | { |
166 | int cpuid, phys_id; | |
cb3c8b90 GOC |
167 | |
168 | /* | |
169 | * If waken up by an INIT in an 82489DX configuration | |
656bba30 LB |
170 | * cpu_callout_mask guarantees we don't get here before |
171 | * an INIT_deassert IPI reaches our local APIC, so it is | |
172 | * now safe to touch our local APIC. | |
cb3c8b90 | 173 | */ |
e1c467e6 | 174 | cpuid = smp_processor_id(); |
cb3c8b90 GOC |
175 | |
176 | /* | |
177 | * (This works even if the APIC is not enabled.) | |
178 | */ | |
4c9961d5 | 179 | phys_id = read_apic_id(); |
cb3c8b90 GOC |
180 | |
181 | /* | |
182 | * the boot CPU has finished the init stage and is spinning | |
183 | * on callin_map until we finish. We are free to set up this | |
184 | * CPU, first the APIC. (this is probably redundant on most | |
185 | * boards) | |
186 | */ | |
05f7e46d | 187 | apic_ap_setup(); |
cb3c8b90 | 188 | |
b565201c JS |
189 | /* |
190 | * Save our processor parameters. Note: this information | |
191 | * is needed for clock calibration. | |
192 | */ | |
193 | smp_store_cpu_info(cpuid); | |
194 | ||
cb3c8b90 GOC |
195 | /* |
196 | * Get our bogomips. | |
b565201c JS |
197 | * Update loops_per_jiffy in cpu_data. Previous call to |
198 | * smp_store_cpu_info() stored a value that is close but not as | |
199 | * accurate as the value just calculated. | |
cb3c8b90 | 200 | */ |
cb3c8b90 | 201 | calibrate_delay(); |
b565201c | 202 | cpu_data(cpuid).loops_per_jiffy = loops_per_jiffy; |
cfc1b9a6 | 203 | pr_debug("Stack at about %p\n", &cpuid); |
cb3c8b90 | 204 | |
5ef428c4 AK |
205 | /* |
206 | * This must be done before setting cpu_online_mask | |
207 | * or calling notify_cpu_starting. | |
208 | */ | |
209 | set_cpu_sibling_map(raw_smp_processor_id()); | |
210 | wmb(); | |
211 | ||
85257024 PZ |
212 | notify_cpu_starting(cpuid); |
213 | ||
cb3c8b90 GOC |
214 | /* |
215 | * Allow the master to continue. | |
216 | */ | |
c2d1cec1 | 217 | cpumask_set_cpu(cpuid, cpu_callin_mask); |
cb3c8b90 GOC |
218 | } |
219 | ||
e1c467e6 FY |
220 | static int cpu0_logical_apicid; |
221 | static int enable_start_cpu0; | |
bbc2ff6a GOC |
222 | /* |
223 | * Activate a secondary processor. | |
224 | */ | |
148f9bb8 | 225 | static void notrace start_secondary(void *unused) |
bbc2ff6a GOC |
226 | { |
227 | /* | |
228 | * Don't put *anything* before cpu_init(), SMP booting is too | |
229 | * fragile that we want to limit the things done here to the | |
230 | * most necessary things. | |
231 | */ | |
b40827fa | 232 | cpu_init(); |
df156f90 | 233 | x86_cpuinit.early_percpu_clock_init(); |
b40827fa BP |
234 | preempt_disable(); |
235 | smp_callin(); | |
fd89a137 | 236 | |
e1c467e6 FY |
237 | enable_start_cpu0 = 0; |
238 | ||
fd89a137 | 239 | #ifdef CONFIG_X86_32 |
b40827fa | 240 | /* switch away from the initial page table */ |
fd89a137 JR |
241 | load_cr3(swapper_pg_dir); |
242 | __flush_tlb_all(); | |
243 | #endif | |
244 | ||
bbc2ff6a GOC |
245 | /* otherwise gcc will move up smp_processor_id before the cpu_init */ |
246 | barrier(); | |
247 | /* | |
248 | * Check TSC synchronization with the BP: | |
249 | */ | |
250 | check_tsc_sync_target(); | |
251 | ||
bbc2ff6a | 252 | /* |
5a3f75e3 TG |
253 | * Lock vector_lock and initialize the vectors on this cpu |
254 | * before setting the cpu online. We must set it online with | |
255 | * vector_lock held to prevent a concurrent setup/teardown | |
256 | * from seeing a half valid vector space. | |
bbc2ff6a | 257 | */ |
d388e5fd | 258 | lock_vector_lock(); |
5a3f75e3 | 259 | setup_vector_irq(smp_processor_id()); |
c2d1cec1 | 260 | set_cpu_online(smp_processor_id(), true); |
d388e5fd | 261 | unlock_vector_lock(); |
2a442c9c | 262 | cpu_set_state_online(smp_processor_id()); |
78c06176 | 263 | x86_platform.nmi_init(); |
bbc2ff6a | 264 | |
0cefa5b9 MS |
265 | /* enable local interrupts */ |
266 | local_irq_enable(); | |
267 | ||
35f720c5 JP |
268 | /* to prevent fake stack check failure in clock setup */ |
269 | boot_init_stack_canary(); | |
0cefa5b9 | 270 | |
736decac | 271 | x86_cpuinit.setup_percpu_clockev(); |
bbc2ff6a GOC |
272 | |
273 | wmb(); | |
fc6d73d6 | 274 | cpu_startup_entry(CPUHP_AP_ONLINE_IDLE); |
bbc2ff6a GOC |
275 | } |
276 | ||
1f12e32f TG |
277 | int topology_update_package_map(unsigned int apicid, unsigned int cpu) |
278 | { | |
279 | unsigned int new, pkg = apicid >> boot_cpu_data.x86_coreid_bits; | |
280 | ||
281 | /* Called from early boot ? */ | |
282 | if (!physical_package_map) | |
283 | return 0; | |
284 | ||
285 | if (pkg >= max_physical_pkg_id) | |
286 | return -EINVAL; | |
287 | ||
288 | /* Set the logical package id */ | |
289 | if (test_and_set_bit(pkg, physical_package_map)) | |
290 | goto found; | |
291 | ||
7b0501b1 | 292 | if (logical_packages_frozen) { |
1f12e32f | 293 | physical_to_logical_pkg[pkg] = -1; |
7b0501b1 | 294 | pr_warn("APIC(%x) Package %u exceeds logical package max\n", |
1f12e32f TG |
295 | apicid, pkg); |
296 | return -ENOSPC; | |
297 | } | |
7b0501b1 JO |
298 | |
299 | new = logical_packages++; | |
1f12e32f TG |
300 | pr_info("APIC(%x) Converting physical %u to logical package %u\n", |
301 | apicid, pkg, new); | |
302 | physical_to_logical_pkg[pkg] = new; | |
303 | ||
304 | found: | |
305 | cpu_data(cpu).logical_proc_id = physical_to_logical_pkg[pkg]; | |
306 | return 0; | |
307 | } | |
308 | ||
309 | /** | |
310 | * topology_phys_to_logical_pkg - Map a physical package id to a logical | |
311 | * | |
312 | * Returns logical package id or -1 if not found | |
313 | */ | |
314 | int topology_phys_to_logical_pkg(unsigned int phys_pkg) | |
315 | { | |
316 | if (phys_pkg >= max_physical_pkg_id) | |
317 | return -1; | |
318 | return physical_to_logical_pkg[phys_pkg]; | |
319 | } | |
320 | EXPORT_SYMBOL(topology_phys_to_logical_pkg); | |
321 | ||
322 | static void __init smp_init_package_map(void) | |
323 | { | |
324 | unsigned int ncpus, cpu; | |
325 | size_t size; | |
326 | ||
327 | /* | |
328 | * Today neither Intel nor AMD support heterogenous systems. That | |
329 | * might change in the future.... | |
63d1e995 PZ |
330 | * |
331 | * While ideally we'd want '* smp_num_siblings' in the below @ncpus | |
332 | * computation, this won't actually work since some Intel BIOSes | |
333 | * report inconsistent HT data when they disable HT. | |
334 | * | |
335 | * In particular, they reduce the APIC-IDs to only include the cores, | |
336 | * but leave the CPUID topology to say there are (2) siblings. | |
337 | * This means we don't know how many threads there will be until | |
338 | * after the APIC enumeration. | |
339 | * | |
340 | * By not including this we'll sometimes over-estimate the number of | |
341 | * logical packages by the amount of !present siblings, but this is | |
342 | * still better than MAX_LOCAL_APIC. | |
3e8db224 TG |
343 | * |
344 | * We use total_cpus not nr_cpu_ids because nr_cpu_ids can be limited | |
345 | * on the command line leading to a similar issue as the HT disable | |
346 | * problem because the hyperthreads are usually enumerated after the | |
347 | * primary cores. | |
1f12e32f | 348 | */ |
63d1e995 | 349 | ncpus = boot_cpu_data.x86_max_cores; |
56402d63 TG |
350 | if (!ncpus) { |
351 | pr_warn("x86_max_cores == zero !?!?"); | |
352 | ncpus = 1; | |
353 | } | |
354 | ||
3e8db224 | 355 | __max_logical_packages = DIV_ROUND_UP(total_cpus, ncpus); |
7b0501b1 | 356 | logical_packages = 0; |
1f12e32f TG |
357 | |
358 | /* | |
359 | * Possibly larger than what we need as the number of apic ids per | |
360 | * package can be smaller than the actual used apic ids. | |
361 | */ | |
362 | max_physical_pkg_id = DIV_ROUND_UP(MAX_LOCAL_APIC, ncpus); | |
363 | size = max_physical_pkg_id * sizeof(unsigned int); | |
364 | physical_to_logical_pkg = kmalloc(size, GFP_KERNEL); | |
365 | memset(physical_to_logical_pkg, 0xff, size); | |
366 | size = BITS_TO_LONGS(max_physical_pkg_id) * sizeof(unsigned long); | |
367 | physical_package_map = kzalloc(size, GFP_KERNEL); | |
1f12e32f TG |
368 | |
369 | for_each_present_cpu(cpu) { | |
370 | unsigned int apicid = apic->cpu_present_to_apicid(cpu); | |
371 | ||
372 | if (apicid == BAD_APICID || !apic->apic_id_valid(apicid)) | |
373 | continue; | |
374 | if (!topology_update_package_map(apicid, cpu)) | |
375 | continue; | |
376 | pr_warn("CPU %u APICId %x disabled\n", cpu, apicid); | |
377 | per_cpu(x86_bios_cpu_apicid, cpu) = BAD_APICID; | |
378 | set_cpu_possible(cpu, false); | |
379 | set_cpu_present(cpu, false); | |
380 | } | |
7b0501b1 JO |
381 | |
382 | if (logical_packages > __max_logical_packages) { | |
383 | pr_warn("Detected more packages (%u), then computed by BIOS data (%u).\n", | |
384 | logical_packages, __max_logical_packages); | |
385 | logical_packages_frozen = true; | |
386 | __max_logical_packages = logical_packages; | |
387 | } | |
388 | ||
389 | pr_info("Max logical packages: %u\n", __max_logical_packages); | |
1f12e32f TG |
390 | } |
391 | ||
30106c17 FY |
392 | void __init smp_store_boot_cpu_info(void) |
393 | { | |
394 | int id = 0; /* CPU 0 */ | |
395 | struct cpuinfo_x86 *c = &cpu_data(id); | |
396 | ||
397 | *c = boot_cpu_data; | |
398 | c->cpu_index = id; | |
1f12e32f | 399 | smp_init_package_map(); |
30106c17 FY |
400 | } |
401 | ||
1d89a7f0 GOC |
402 | /* |
403 | * The bootstrap kernel entry code has set these up. Save them for | |
404 | * a given CPU | |
405 | */ | |
148f9bb8 | 406 | void smp_store_cpu_info(int id) |
1d89a7f0 GOC |
407 | { |
408 | struct cpuinfo_x86 *c = &cpu_data(id); | |
409 | ||
b3d7336d | 410 | *c = boot_cpu_data; |
1d89a7f0 | 411 | c->cpu_index = id; |
30106c17 FY |
412 | /* |
413 | * During boot time, CPU0 has this setup already. Save the info when | |
414 | * bringing up AP or offlined CPU0. | |
415 | */ | |
416 | identify_secondary_cpu(c); | |
1d89a7f0 GOC |
417 | } |
418 | ||
cebf15eb DH |
419 | static bool |
420 | topology_same_node(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) | |
421 | { | |
422 | int cpu1 = c->cpu_index, cpu2 = o->cpu_index; | |
423 | ||
424 | return (cpu_to_node(cpu1) == cpu_to_node(cpu2)); | |
425 | } | |
426 | ||
148f9bb8 | 427 | static bool |
316ad248 | 428 | topology_sane(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o, const char *name) |
d4fbe4f0 | 429 | { |
316ad248 PZ |
430 | int cpu1 = c->cpu_index, cpu2 = o->cpu_index; |
431 | ||
cebf15eb | 432 | return !WARN_ONCE(!topology_same_node(c, o), |
316ad248 PZ |
433 | "sched: CPU #%d's %s-sibling CPU #%d is not on the same node! " |
434 | "[node: %d != %d]. Ignoring dependency.\n", | |
435 | cpu1, name, cpu2, cpu_to_node(cpu1), cpu_to_node(cpu2)); | |
436 | } | |
437 | ||
7d79a7bd | 438 | #define link_mask(mfunc, c1, c2) \ |
316ad248 | 439 | do { \ |
7d79a7bd BG |
440 | cpumask_set_cpu((c1), mfunc(c2)); \ |
441 | cpumask_set_cpu((c2), mfunc(c1)); \ | |
316ad248 PZ |
442 | } while (0) |
443 | ||
148f9bb8 | 444 | static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) |
316ad248 | 445 | { |
362f924b | 446 | if (boot_cpu_has(X86_FEATURE_TOPOEXT)) { |
316ad248 PZ |
447 | int cpu1 = c->cpu_index, cpu2 = o->cpu_index; |
448 | ||
449 | if (c->phys_proc_id == o->phys_proc_id && | |
450 | per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2) && | |
8196dab4 | 451 | c->cpu_core_id == o->cpu_core_id) |
316ad248 PZ |
452 | return topology_sane(c, o, "smt"); |
453 | ||
454 | } else if (c->phys_proc_id == o->phys_proc_id && | |
455 | c->cpu_core_id == o->cpu_core_id) { | |
456 | return topology_sane(c, o, "smt"); | |
457 | } | |
458 | ||
459 | return false; | |
460 | } | |
461 | ||
148f9bb8 | 462 | static bool match_llc(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) |
316ad248 PZ |
463 | { |
464 | int cpu1 = c->cpu_index, cpu2 = o->cpu_index; | |
465 | ||
466 | if (per_cpu(cpu_llc_id, cpu1) != BAD_APICID && | |
467 | per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2)) | |
468 | return topology_sane(c, o, "llc"); | |
469 | ||
470 | return false; | |
d4fbe4f0 AH |
471 | } |
472 | ||
cebf15eb DH |
473 | /* |
474 | * Unlike the other levels, we do not enforce keeping a | |
475 | * multicore group inside a NUMA node. If this happens, we will | |
476 | * discard the MC level of the topology later. | |
477 | */ | |
478 | static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o) | |
316ad248 | 479 | { |
cebf15eb DH |
480 | if (c->phys_proc_id == o->phys_proc_id) |
481 | return true; | |
316ad248 PZ |
482 | return false; |
483 | } | |
1d89a7f0 | 484 | |
8f37961c | 485 | static struct sched_domain_topology_level x86_numa_in_package_topology[] = { |
cebf15eb DH |
486 | #ifdef CONFIG_SCHED_SMT |
487 | { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) }, | |
488 | #endif | |
489 | #ifdef CONFIG_SCHED_MC | |
490 | { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) }, | |
491 | #endif | |
492 | { NULL, }, | |
493 | }; | |
8f37961c TC |
494 | |
495 | static struct sched_domain_topology_level x86_topology[] = { | |
496 | #ifdef CONFIG_SCHED_SMT | |
497 | { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) }, | |
498 | #endif | |
499 | #ifdef CONFIG_SCHED_MC | |
500 | { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) }, | |
501 | #endif | |
502 | { cpu_cpu_mask, SD_INIT_NAME(DIE) }, | |
503 | { NULL, }, | |
504 | }; | |
505 | ||
cebf15eb | 506 | /* |
8f37961c TC |
507 | * Set if a package/die has multiple NUMA nodes inside. |
508 | * AMD Magny-Cours and Intel Cluster-on-Die have this. | |
cebf15eb | 509 | */ |
8f37961c | 510 | static bool x86_has_numa_in_package; |
cebf15eb | 511 | |
148f9bb8 | 512 | void set_cpu_sibling_map(int cpu) |
768d9505 | 513 | { |
316ad248 | 514 | bool has_smt = smp_num_siblings > 1; |
b0bc225d | 515 | bool has_mp = has_smt || boot_cpu_data.x86_max_cores > 1; |
768d9505 | 516 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
316ad248 | 517 | struct cpuinfo_x86 *o; |
70b8301f | 518 | int i, threads; |
768d9505 | 519 | |
c2d1cec1 | 520 | cpumask_set_cpu(cpu, cpu_sibling_setup_mask); |
768d9505 | 521 | |
b0bc225d | 522 | if (!has_mp) { |
7d79a7bd | 523 | cpumask_set_cpu(cpu, topology_sibling_cpumask(cpu)); |
316ad248 | 524 | cpumask_set_cpu(cpu, cpu_llc_shared_mask(cpu)); |
7d79a7bd | 525 | cpumask_set_cpu(cpu, topology_core_cpumask(cpu)); |
768d9505 GC |
526 | c->booted_cores = 1; |
527 | return; | |
528 | } | |
529 | ||
c2d1cec1 | 530 | for_each_cpu(i, cpu_sibling_setup_mask) { |
316ad248 PZ |
531 | o = &cpu_data(i); |
532 | ||
533 | if ((i == cpu) || (has_smt && match_smt(c, o))) | |
7d79a7bd | 534 | link_mask(topology_sibling_cpumask, cpu, i); |
316ad248 | 535 | |
b0bc225d | 536 | if ((i == cpu) || (has_mp && match_llc(c, o))) |
7d79a7bd | 537 | link_mask(cpu_llc_shared_mask, cpu, i); |
316ad248 | 538 | |
ceb1cbac KB |
539 | } |
540 | ||
541 | /* | |
542 | * This needs a separate iteration over the cpus because we rely on all | |
7d79a7bd | 543 | * topology_sibling_cpumask links to be set-up. |
ceb1cbac KB |
544 | */ |
545 | for_each_cpu(i, cpu_sibling_setup_mask) { | |
546 | o = &cpu_data(i); | |
547 | ||
cebf15eb | 548 | if ((i == cpu) || (has_mp && match_die(c, o))) { |
7d79a7bd | 549 | link_mask(topology_core_cpumask, cpu, i); |
316ad248 | 550 | |
768d9505 GC |
551 | /* |
552 | * Does this new cpu bringup a new core? | |
553 | */ | |
7d79a7bd BG |
554 | if (cpumask_weight( |
555 | topology_sibling_cpumask(cpu)) == 1) { | |
768d9505 GC |
556 | /* |
557 | * for each core in package, increment | |
558 | * the booted_cores for this new cpu | |
559 | */ | |
7d79a7bd BG |
560 | if (cpumask_first( |
561 | topology_sibling_cpumask(i)) == i) | |
768d9505 GC |
562 | c->booted_cores++; |
563 | /* | |
564 | * increment the core count for all | |
565 | * the other cpus in this package | |
566 | */ | |
567 | if (i != cpu) | |
568 | cpu_data(i).booted_cores++; | |
569 | } else if (i != cpu && !c->booted_cores) | |
570 | c->booted_cores = cpu_data(i).booted_cores; | |
571 | } | |
728e5653 | 572 | if (match_die(c, o) && !topology_same_node(c, o)) |
8f37961c | 573 | x86_has_numa_in_package = true; |
768d9505 | 574 | } |
70b8301f AK |
575 | |
576 | threads = cpumask_weight(topology_sibling_cpumask(cpu)); | |
577 | if (threads > __max_smt_threads) | |
578 | __max_smt_threads = threads; | |
768d9505 GC |
579 | } |
580 | ||
70708a18 | 581 | /* maps the cpu to the sched domain representing multi-core */ |
030bb203 | 582 | const struct cpumask *cpu_coregroup_mask(int cpu) |
70708a18 | 583 | { |
9f646389 | 584 | return cpu_llc_shared_mask(cpu); |
030bb203 RR |
585 | } |
586 | ||
a4928cff | 587 | static void impress_friends(void) |
904541e2 GOC |
588 | { |
589 | int cpu; | |
590 | unsigned long bogosum = 0; | |
591 | /* | |
592 | * Allow the user to impress friends. | |
593 | */ | |
c767a54b | 594 | pr_debug("Before bogomips\n"); |
904541e2 | 595 | for_each_possible_cpu(cpu) |
c2d1cec1 | 596 | if (cpumask_test_cpu(cpu, cpu_callout_mask)) |
904541e2 | 597 | bogosum += cpu_data(cpu).loops_per_jiffy; |
c767a54b | 598 | pr_info("Total of %d processors activated (%lu.%02lu BogoMIPS)\n", |
f68e00a3 | 599 | num_online_cpus(), |
904541e2 GOC |
600 | bogosum/(500000/HZ), |
601 | (bogosum/(5000/HZ))%100); | |
602 | ||
c767a54b | 603 | pr_debug("Before bogocount - setting activated=1\n"); |
904541e2 GOC |
604 | } |
605 | ||
569712b2 | 606 | void __inquire_remote_apic(int apicid) |
cb3c8b90 GOC |
607 | { |
608 | unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 }; | |
a6c23905 | 609 | const char * const names[] = { "ID", "VERSION", "SPIV" }; |
cb3c8b90 GOC |
610 | int timeout; |
611 | u32 status; | |
612 | ||
c767a54b | 613 | pr_info("Inquiring remote APIC 0x%x...\n", apicid); |
cb3c8b90 GOC |
614 | |
615 | for (i = 0; i < ARRAY_SIZE(regs); i++) { | |
c767a54b | 616 | pr_info("... APIC 0x%x %s: ", apicid, names[i]); |
cb3c8b90 GOC |
617 | |
618 | /* | |
619 | * Wait for idle. | |
620 | */ | |
621 | status = safe_apic_wait_icr_idle(); | |
622 | if (status) | |
c767a54b | 623 | pr_cont("a previous APIC delivery may have failed\n"); |
cb3c8b90 | 624 | |
1b374e4d | 625 | apic_icr_write(APIC_DM_REMRD | regs[i], apicid); |
cb3c8b90 GOC |
626 | |
627 | timeout = 0; | |
628 | do { | |
629 | udelay(100); | |
630 | status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK; | |
631 | } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000); | |
632 | ||
633 | switch (status) { | |
634 | case APIC_ICR_RR_VALID: | |
635 | status = apic_read(APIC_RRR); | |
c767a54b | 636 | pr_cont("%08x\n", status); |
cb3c8b90 GOC |
637 | break; |
638 | default: | |
c767a54b | 639 | pr_cont("failed\n"); |
cb3c8b90 GOC |
640 | } |
641 | } | |
642 | } | |
643 | ||
d68921f9 LB |
644 | /* |
645 | * The Multiprocessor Specification 1.4 (1997) example code suggests | |
646 | * that there should be a 10ms delay between the BSP asserting INIT | |
647 | * and de-asserting INIT, when starting a remote processor. | |
648 | * But that slows boot and resume on modern processors, which include | |
649 | * many cores and don't require that delay. | |
650 | * | |
651 | * Cmdline "init_cpu_udelay=" is available to over-ride this delay. | |
1a744cb3 | 652 | * Modern processor families are quirked to remove the delay entirely. |
d68921f9 LB |
653 | */ |
654 | #define UDELAY_10MS_DEFAULT 10000 | |
655 | ||
656279a1 | 656 | static unsigned int init_udelay = UINT_MAX; |
d68921f9 LB |
657 | |
658 | static int __init cpu_init_udelay(char *str) | |
659 | { | |
660 | get_option(&str, &init_udelay); | |
661 | ||
662 | return 0; | |
663 | } | |
664 | early_param("cpu_init_udelay", cpu_init_udelay); | |
665 | ||
1a744cb3 LB |
666 | static void __init smp_quirk_init_udelay(void) |
667 | { | |
668 | /* if cmdline changed it from default, leave it alone */ | |
656279a1 | 669 | if (init_udelay != UINT_MAX) |
1a744cb3 LB |
670 | return; |
671 | ||
672 | /* if modern processor, use no delay */ | |
673 | if (((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && (boot_cpu_data.x86 == 6)) || | |
656279a1 | 674 | ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && (boot_cpu_data.x86 >= 0xF))) { |
1a744cb3 | 675 | init_udelay = 0; |
656279a1 LB |
676 | return; |
677 | } | |
f1ccd249 LB |
678 | /* else, use legacy delay */ |
679 | init_udelay = UDELAY_10MS_DEFAULT; | |
1a744cb3 LB |
680 | } |
681 | ||
cb3c8b90 GOC |
682 | /* |
683 | * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal | |
684 | * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this | |
685 | * won't ... remember to clear down the APIC, etc later. | |
686 | */ | |
148f9bb8 | 687 | int |
e1c467e6 | 688 | wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip) |
cb3c8b90 GOC |
689 | { |
690 | unsigned long send_status, accept_status = 0; | |
691 | int maxlvt; | |
692 | ||
693 | /* Target chip */ | |
cb3c8b90 GOC |
694 | /* Boot on the stack */ |
695 | /* Kick the second */ | |
e1c467e6 | 696 | apic_icr_write(APIC_DM_NMI | apic->dest_logical, apicid); |
cb3c8b90 | 697 | |
cfc1b9a6 | 698 | pr_debug("Waiting for send to finish...\n"); |
cb3c8b90 GOC |
699 | send_status = safe_apic_wait_icr_idle(); |
700 | ||
701 | /* | |
702 | * Give the other CPU some time to accept the IPI. | |
703 | */ | |
704 | udelay(200); | |
cff9ab2b | 705 | if (APIC_INTEGRATED(boot_cpu_apic_version)) { |
59ef48a5 CG |
706 | maxlvt = lapic_get_maxlvt(); |
707 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ | |
708 | apic_write(APIC_ESR, 0); | |
709 | accept_status = (apic_read(APIC_ESR) & 0xEF); | |
710 | } | |
c767a54b | 711 | pr_debug("NMI sent\n"); |
cb3c8b90 GOC |
712 | |
713 | if (send_status) | |
c767a54b | 714 | pr_err("APIC never delivered???\n"); |
cb3c8b90 | 715 | if (accept_status) |
c767a54b | 716 | pr_err("APIC delivery error (%lx)\n", accept_status); |
cb3c8b90 GOC |
717 | |
718 | return (send_status | accept_status); | |
719 | } | |
cb3c8b90 | 720 | |
148f9bb8 | 721 | static int |
569712b2 | 722 | wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip) |
cb3c8b90 | 723 | { |
f5d6a52f | 724 | unsigned long send_status = 0, accept_status = 0; |
cb3c8b90 GOC |
725 | int maxlvt, num_starts, j; |
726 | ||
593f4a78 MR |
727 | maxlvt = lapic_get_maxlvt(); |
728 | ||
cb3c8b90 GOC |
729 | /* |
730 | * Be paranoid about clearing APIC errors. | |
731 | */ | |
cff9ab2b | 732 | if (APIC_INTEGRATED(boot_cpu_apic_version)) { |
593f4a78 MR |
733 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
734 | apic_write(APIC_ESR, 0); | |
cb3c8b90 GOC |
735 | apic_read(APIC_ESR); |
736 | } | |
737 | ||
c767a54b | 738 | pr_debug("Asserting INIT\n"); |
cb3c8b90 GOC |
739 | |
740 | /* | |
741 | * Turn INIT on target chip | |
742 | */ | |
cb3c8b90 GOC |
743 | /* |
744 | * Send IPI | |
745 | */ | |
1b374e4d SS |
746 | apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT, |
747 | phys_apicid); | |
cb3c8b90 | 748 | |
cfc1b9a6 | 749 | pr_debug("Waiting for send to finish...\n"); |
cb3c8b90 GOC |
750 | send_status = safe_apic_wait_icr_idle(); |
751 | ||
7cb68598 | 752 | udelay(init_udelay); |
cb3c8b90 | 753 | |
c767a54b | 754 | pr_debug("Deasserting INIT\n"); |
cb3c8b90 GOC |
755 | |
756 | /* Target chip */ | |
cb3c8b90 | 757 | /* Send IPI */ |
1b374e4d | 758 | apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid); |
cb3c8b90 | 759 | |
cfc1b9a6 | 760 | pr_debug("Waiting for send to finish...\n"); |
cb3c8b90 GOC |
761 | send_status = safe_apic_wait_icr_idle(); |
762 | ||
763 | mb(); | |
cb3c8b90 GOC |
764 | |
765 | /* | |
766 | * Should we send STARTUP IPIs ? | |
767 | * | |
768 | * Determine this based on the APIC version. | |
769 | * If we don't have an integrated APIC, don't send the STARTUP IPIs. | |
770 | */ | |
cff9ab2b | 771 | if (APIC_INTEGRATED(boot_cpu_apic_version)) |
cb3c8b90 GOC |
772 | num_starts = 2; |
773 | else | |
774 | num_starts = 0; | |
775 | ||
cb3c8b90 GOC |
776 | /* |
777 | * Run STARTUP IPI loop. | |
778 | */ | |
c767a54b | 779 | pr_debug("#startup loops: %d\n", num_starts); |
cb3c8b90 | 780 | |
cb3c8b90 | 781 | for (j = 1; j <= num_starts; j++) { |
c767a54b | 782 | pr_debug("Sending STARTUP #%d\n", j); |
593f4a78 MR |
783 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
784 | apic_write(APIC_ESR, 0); | |
cb3c8b90 | 785 | apic_read(APIC_ESR); |
c767a54b | 786 | pr_debug("After apic_write\n"); |
cb3c8b90 GOC |
787 | |
788 | /* | |
789 | * STARTUP IPI | |
790 | */ | |
791 | ||
792 | /* Target chip */ | |
cb3c8b90 GOC |
793 | /* Boot on the stack */ |
794 | /* Kick the second */ | |
1b374e4d SS |
795 | apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12), |
796 | phys_apicid); | |
cb3c8b90 GOC |
797 | |
798 | /* | |
799 | * Give the other CPU some time to accept the IPI. | |
800 | */ | |
fcafddec LB |
801 | if (init_udelay == 0) |
802 | udelay(10); | |
803 | else | |
a9bcaa02 | 804 | udelay(300); |
cb3c8b90 | 805 | |
c767a54b | 806 | pr_debug("Startup point 1\n"); |
cb3c8b90 | 807 | |
cfc1b9a6 | 808 | pr_debug("Waiting for send to finish...\n"); |
cb3c8b90 GOC |
809 | send_status = safe_apic_wait_icr_idle(); |
810 | ||
811 | /* | |
812 | * Give the other CPU some time to accept the IPI. | |
813 | */ | |
fcafddec LB |
814 | if (init_udelay == 0) |
815 | udelay(10); | |
816 | else | |
a9bcaa02 | 817 | udelay(200); |
cb3c8b90 | 818 | |
593f4a78 | 819 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
cb3c8b90 | 820 | apic_write(APIC_ESR, 0); |
cb3c8b90 GOC |
821 | accept_status = (apic_read(APIC_ESR) & 0xEF); |
822 | if (send_status || accept_status) | |
823 | break; | |
824 | } | |
c767a54b | 825 | pr_debug("After Startup\n"); |
cb3c8b90 GOC |
826 | |
827 | if (send_status) | |
c767a54b | 828 | pr_err("APIC never delivered???\n"); |
cb3c8b90 | 829 | if (accept_status) |
c767a54b | 830 | pr_err("APIC delivery error (%lx)\n", accept_status); |
cb3c8b90 GOC |
831 | |
832 | return (send_status | accept_status); | |
833 | } | |
cb3c8b90 | 834 | |
a17bce4d BP |
835 | void smp_announce(void) |
836 | { | |
837 | int num_nodes = num_online_nodes(); | |
838 | ||
839 | printk(KERN_INFO "x86: Booted up %d node%s, %d CPUs\n", | |
840 | num_nodes, (num_nodes > 1 ? "s" : ""), num_online_cpus()); | |
841 | } | |
842 | ||
2eaad1fd | 843 | /* reduce the number of lines printed when booting a large cpu count system */ |
148f9bb8 | 844 | static void announce_cpu(int cpu, int apicid) |
2eaad1fd MT |
845 | { |
846 | static int current_node = -1; | |
4adc8b71 | 847 | int node = early_cpu_to_node(cpu); |
a17bce4d | 848 | static int width, node_width; |
646e29a1 BP |
849 | |
850 | if (!width) | |
851 | width = num_digits(num_possible_cpus()) + 1; /* + '#' sign */ | |
2eaad1fd | 852 | |
a17bce4d BP |
853 | if (!node_width) |
854 | node_width = num_digits(num_possible_nodes()) + 1; /* + '#' */ | |
855 | ||
856 | if (cpu == 1) | |
857 | printk(KERN_INFO "x86: Booting SMP configuration:\n"); | |
858 | ||
2eaad1fd MT |
859 | if (system_state == SYSTEM_BOOTING) { |
860 | if (node != current_node) { | |
861 | if (current_node > (-1)) | |
a17bce4d | 862 | pr_cont("\n"); |
2eaad1fd | 863 | current_node = node; |
a17bce4d BP |
864 | |
865 | printk(KERN_INFO ".... node %*s#%d, CPUs: ", | |
866 | node_width - num_digits(node), " ", node); | |
2eaad1fd | 867 | } |
646e29a1 BP |
868 | |
869 | /* Add padding for the BSP */ | |
870 | if (cpu == 1) | |
871 | pr_cont("%*s", width + 1, " "); | |
872 | ||
873 | pr_cont("%*s#%d", width - num_digits(cpu), " ", cpu); | |
874 | ||
2eaad1fd MT |
875 | } else |
876 | pr_info("Booting Node %d Processor %d APIC 0x%x\n", | |
877 | node, cpu, apicid); | |
878 | } | |
879 | ||
e1c467e6 FY |
880 | static int wakeup_cpu0_nmi(unsigned int cmd, struct pt_regs *regs) |
881 | { | |
882 | int cpu; | |
883 | ||
884 | cpu = smp_processor_id(); | |
885 | if (cpu == 0 && !cpu_online(cpu) && enable_start_cpu0) | |
886 | return NMI_HANDLED; | |
887 | ||
888 | return NMI_DONE; | |
889 | } | |
890 | ||
891 | /* | |
892 | * Wake up AP by INIT, INIT, STARTUP sequence. | |
893 | * | |
894 | * Instead of waiting for STARTUP after INITs, BSP will execute the BIOS | |
895 | * boot-strap code which is not a desired behavior for waking up BSP. To | |
896 | * void the boot-strap code, wake up CPU0 by NMI instead. | |
897 | * | |
898 | * This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined | |
899 | * (i.e. physically hot removed and then hot added), NMI won't wake it up. | |
900 | * We'll change this code in the future to wake up hard offlined CPU0 if | |
901 | * real platform and request are available. | |
902 | */ | |
148f9bb8 | 903 | static int |
e1c467e6 FY |
904 | wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid, |
905 | int *cpu0_nmi_registered) | |
906 | { | |
907 | int id; | |
908 | int boot_error; | |
909 | ||
ea7bdc65 JK |
910 | preempt_disable(); |
911 | ||
e1c467e6 FY |
912 | /* |
913 | * Wake up AP by INIT, INIT, STARTUP sequence. | |
914 | */ | |
ea7bdc65 JK |
915 | if (cpu) { |
916 | boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip); | |
917 | goto out; | |
918 | } | |
e1c467e6 FY |
919 | |
920 | /* | |
921 | * Wake up BSP by nmi. | |
922 | * | |
923 | * Register a NMI handler to help wake up CPU0. | |
924 | */ | |
925 | boot_error = register_nmi_handler(NMI_LOCAL, | |
926 | wakeup_cpu0_nmi, 0, "wake_cpu0"); | |
927 | ||
928 | if (!boot_error) { | |
929 | enable_start_cpu0 = 1; | |
930 | *cpu0_nmi_registered = 1; | |
931 | if (apic->dest_logical == APIC_DEST_LOGICAL) | |
932 | id = cpu0_logical_apicid; | |
933 | else | |
934 | id = apicid; | |
935 | boot_error = wakeup_secondary_cpu_via_nmi(id, start_ip); | |
936 | } | |
ea7bdc65 JK |
937 | |
938 | out: | |
939 | preempt_enable(); | |
e1c467e6 FY |
940 | |
941 | return boot_error; | |
942 | } | |
943 | ||
3f85483b BO |
944 | void common_cpu_up(unsigned int cpu, struct task_struct *idle) |
945 | { | |
946 | /* Just in case we booted with a single CPU. */ | |
947 | alternatives_enable_smp(); | |
948 | ||
949 | per_cpu(current_task, cpu) = idle; | |
950 | ||
951 | #ifdef CONFIG_X86_32 | |
952 | /* Stack for startup_32 can be just as for start_secondary onwards */ | |
953 | irq_ctx_init(cpu); | |
954 | per_cpu(cpu_current_top_of_stack, cpu) = | |
955 | (unsigned long)task_stack_page(idle) + THREAD_SIZE; | |
956 | #else | |
3f85483b BO |
957 | initial_gs = per_cpu_offset(cpu); |
958 | #endif | |
3f85483b BO |
959 | } |
960 | ||
cb3c8b90 GOC |
961 | /* |
962 | * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad | |
963 | * (ie clustered apic addressing mode), this is a LOGICAL apic ID. | |
1f5bcabf IM |
964 | * Returns zero if CPU booted OK, else error code from |
965 | * ->wakeup_secondary_cpu. | |
cb3c8b90 | 966 | */ |
148f9bb8 | 967 | static int do_boot_cpu(int apicid, int cpu, struct task_struct *idle) |
cb3c8b90 | 968 | { |
48927bbb | 969 | volatile u32 *trampoline_status = |
b429dbf6 | 970 | (volatile u32 *) __va(real_mode_header->trampoline_status); |
48927bbb | 971 | /* start_ip had better be page-aligned! */ |
f37240f1 | 972 | unsigned long start_ip = real_mode_header->trampoline_start; |
48927bbb | 973 | |
cb3c8b90 | 974 | unsigned long boot_error = 0; |
e1c467e6 | 975 | int cpu0_nmi_registered = 0; |
ce4b1b16 | 976 | unsigned long timeout; |
cb3c8b90 | 977 | |
7eb43a6d TG |
978 | idle->thread.sp = (unsigned long) (((struct pt_regs *) |
979 | (THREAD_SIZE + task_stack_page(idle))) - 1); | |
cb3c8b90 | 980 | |
a939098a | 981 | early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu); |
3e970473 | 982 | initial_code = (unsigned long)start_secondary; |
b32f96c7 | 983 | initial_stack = idle->thread.sp; |
cb3c8b90 | 984 | |
20d5e4a9 ZG |
985 | /* |
986 | * Enable the espfix hack for this CPU | |
987 | */ | |
988 | #ifdef CONFIG_X86_ESPFIX64 | |
989 | init_espfix_ap(cpu); | |
990 | #endif | |
991 | ||
2eaad1fd MT |
992 | /* So we see what's up */ |
993 | announce_cpu(cpu, apicid); | |
cb3c8b90 GOC |
994 | |
995 | /* | |
996 | * This grunge runs the startup process for | |
997 | * the targeted processor. | |
998 | */ | |
999 | ||
34d05591 | 1000 | if (get_uv_system_type() != UV_NON_UNIQUE_APIC) { |
cb3c8b90 | 1001 | |
cfc1b9a6 | 1002 | pr_debug("Setting warm reset code and vector.\n"); |
cb3c8b90 | 1003 | |
34d05591 JS |
1004 | smpboot_setup_warm_reset_vector(start_ip); |
1005 | /* | |
1006 | * Be paranoid about clearing APIC errors. | |
db96b0a0 | 1007 | */ |
cff9ab2b | 1008 | if (APIC_INTEGRATED(boot_cpu_apic_version)) { |
db96b0a0 CG |
1009 | apic_write(APIC_ESR, 0); |
1010 | apic_read(APIC_ESR); | |
1011 | } | |
34d05591 | 1012 | } |
cb3c8b90 | 1013 | |
ce4b1b16 IM |
1014 | /* |
1015 | * AP might wait on cpu_callout_mask in cpu_init() with | |
1016 | * cpu_initialized_mask set if previous attempt to online | |
1017 | * it timed-out. Clear cpu_initialized_mask so that after | |
1018 | * INIT/SIPI it could start with a clean state. | |
1019 | */ | |
1020 | cpumask_clear_cpu(cpu, cpu_initialized_mask); | |
1021 | smp_mb(); | |
1022 | ||
cb3c8b90 | 1023 | /* |
e1c467e6 FY |
1024 | * Wake up a CPU in difference cases: |
1025 | * - Use the method in the APIC driver if it's defined | |
1026 | * Otherwise, | |
1027 | * - Use an INIT boot APIC message for APs or NMI for BSP. | |
cb3c8b90 | 1028 | */ |
1f5bcabf IM |
1029 | if (apic->wakeup_secondary_cpu) |
1030 | boot_error = apic->wakeup_secondary_cpu(apicid, start_ip); | |
1031 | else | |
e1c467e6 FY |
1032 | boot_error = wakeup_cpu_via_init_nmi(cpu, start_ip, apicid, |
1033 | &cpu0_nmi_registered); | |
cb3c8b90 GOC |
1034 | |
1035 | if (!boot_error) { | |
1036 | /* | |
6e38f1e7 | 1037 | * Wait 10s total for first sign of life from AP |
cb3c8b90 | 1038 | */ |
ce4b1b16 IM |
1039 | boot_error = -1; |
1040 | timeout = jiffies + 10*HZ; | |
1041 | while (time_before(jiffies, timeout)) { | |
1042 | if (cpumask_test_cpu(cpu, cpu_initialized_mask)) { | |
1043 | /* | |
1044 | * Tell AP to proceed with initialization | |
1045 | */ | |
1046 | cpumask_set_cpu(cpu, cpu_callout_mask); | |
1047 | boot_error = 0; | |
1048 | break; | |
1049 | } | |
ce4b1b16 IM |
1050 | schedule(); |
1051 | } | |
1052 | } | |
cb3c8b90 | 1053 | |
ce4b1b16 | 1054 | if (!boot_error) { |
cb3c8b90 | 1055 | /* |
ce4b1b16 | 1056 | * Wait till AP completes initial initialization |
cb3c8b90 | 1057 | */ |
ce4b1b16 | 1058 | while (!cpumask_test_cpu(cpu, cpu_callin_mask)) { |
68f202e4 SS |
1059 | /* |
1060 | * Allow other tasks to run while we wait for the | |
1061 | * AP to come online. This also gives a chance | |
1062 | * for the MTRR work(triggered by the AP coming online) | |
1063 | * to be completed in the stop machine context. | |
1064 | */ | |
1065 | schedule(); | |
cb3c8b90 | 1066 | } |
cb3c8b90 GOC |
1067 | } |
1068 | ||
1069 | /* mark "stuck" area as not stuck */ | |
48927bbb | 1070 | *trampoline_status = 0; |
cb3c8b90 | 1071 | |
02421f98 YL |
1072 | if (get_uv_system_type() != UV_NON_UNIQUE_APIC) { |
1073 | /* | |
1074 | * Cleanup possible dangling ends... | |
1075 | */ | |
1076 | smpboot_restore_warm_reset_vector(); | |
1077 | } | |
e1c467e6 FY |
1078 | /* |
1079 | * Clean up the nmi handler. Do this after the callin and callout sync | |
1080 | * to avoid impact of possible long unregister time. | |
1081 | */ | |
1082 | if (cpu0_nmi_registered) | |
1083 | unregister_nmi_handler(NMI_LOCAL, "wake_cpu0"); | |
1084 | ||
cb3c8b90 GOC |
1085 | return boot_error; |
1086 | } | |
1087 | ||
148f9bb8 | 1088 | int native_cpu_up(unsigned int cpu, struct task_struct *tidle) |
cb3c8b90 | 1089 | { |
a21769a4 | 1090 | int apicid = apic->cpu_present_to_apicid(cpu); |
cb3c8b90 GOC |
1091 | unsigned long flags; |
1092 | int err; | |
1093 | ||
1094 | WARN_ON(irqs_disabled()); | |
1095 | ||
cfc1b9a6 | 1096 | pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu); |
cb3c8b90 | 1097 | |
30106c17 | 1098 | if (apicid == BAD_APICID || |
c284b42a | 1099 | !physid_isset(apicid, phys_cpu_present_map) || |
fa63030e | 1100 | !apic->apic_id_valid(apicid)) { |
c767a54b | 1101 | pr_err("%s: bad cpu %d\n", __func__, cpu); |
cb3c8b90 GOC |
1102 | return -EINVAL; |
1103 | } | |
1104 | ||
1105 | /* | |
1106 | * Already booted CPU? | |
1107 | */ | |
c2d1cec1 | 1108 | if (cpumask_test_cpu(cpu, cpu_callin_mask)) { |
cfc1b9a6 | 1109 | pr_debug("do_boot_cpu %d Already started\n", cpu); |
cb3c8b90 GOC |
1110 | return -ENOSYS; |
1111 | } | |
1112 | ||
1113 | /* | |
1114 | * Save current MTRR state in case it was changed since early boot | |
1115 | * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync: | |
1116 | */ | |
1117 | mtrr_save_state(); | |
1118 | ||
2a442c9c PM |
1119 | /* x86 CPUs take themselves offline, so delayed offline is OK. */ |
1120 | err = cpu_check_up_prepare(cpu); | |
1121 | if (err && err != -EBUSY) | |
1122 | return err; | |
cb3c8b90 | 1123 | |
644c1541 VP |
1124 | /* the FPU context is blank, nobody can own it */ |
1125 | __cpu_disable_lazy_restore(cpu); | |
1126 | ||
3f85483b BO |
1127 | common_cpu_up(cpu, tidle); |
1128 | ||
7eb43a6d | 1129 | err = do_boot_cpu(apicid, cpu, tidle); |
61165d7a | 1130 | if (err) { |
feef1e8e | 1131 | pr_err("do_boot_cpu failed(%d) to wakeup CPU#%u\n", err, cpu); |
61165d7a | 1132 | return -EIO; |
cb3c8b90 GOC |
1133 | } |
1134 | ||
1135 | /* | |
1136 | * Check TSC synchronization with the AP (keep irqs disabled | |
1137 | * while doing so): | |
1138 | */ | |
1139 | local_irq_save(flags); | |
1140 | check_tsc_sync_source(cpu); | |
1141 | local_irq_restore(flags); | |
1142 | ||
7c04e64a | 1143 | while (!cpu_online(cpu)) { |
cb3c8b90 GOC |
1144 | cpu_relax(); |
1145 | touch_nmi_watchdog(); | |
1146 | } | |
1147 | ||
1148 | return 0; | |
1149 | } | |
1150 | ||
7167d08e HK |
1151 | /** |
1152 | * arch_disable_smp_support() - disables SMP support for x86 at runtime | |
1153 | */ | |
1154 | void arch_disable_smp_support(void) | |
1155 | { | |
1156 | disable_ioapic_support(); | |
1157 | } | |
1158 | ||
8aef135c GOC |
1159 | /* |
1160 | * Fall back to non SMP mode after errors. | |
1161 | * | |
1162 | * RED-PEN audit/test this more. I bet there is more state messed up here. | |
1163 | */ | |
1164 | static __init void disable_smp(void) | |
1165 | { | |
613c25ef TG |
1166 | pr_info("SMP disabled\n"); |
1167 | ||
ef4c59a4 TG |
1168 | disable_ioapic_support(); |
1169 | ||
4f062896 RR |
1170 | init_cpu_present(cpumask_of(0)); |
1171 | init_cpu_possible(cpumask_of(0)); | |
0f385d1d | 1172 | |
8aef135c | 1173 | if (smp_found_config) |
b6df1b8b | 1174 | physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); |
8aef135c | 1175 | else |
b6df1b8b | 1176 | physid_set_mask_of_physid(0, &phys_cpu_present_map); |
7d79a7bd BG |
1177 | cpumask_set_cpu(0, topology_sibling_cpumask(0)); |
1178 | cpumask_set_cpu(0, topology_core_cpumask(0)); | |
8aef135c GOC |
1179 | } |
1180 | ||
613c25ef TG |
1181 | enum { |
1182 | SMP_OK, | |
1183 | SMP_NO_CONFIG, | |
1184 | SMP_NO_APIC, | |
1185 | SMP_FORCE_UP, | |
1186 | }; | |
1187 | ||
8aef135c GOC |
1188 | /* |
1189 | * Various sanity checks. | |
1190 | */ | |
1191 | static int __init smp_sanity_check(unsigned max_cpus) | |
1192 | { | |
ac23d4ee | 1193 | preempt_disable(); |
a58f03b0 | 1194 | |
1ff2f20d | 1195 | #if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32) |
a58f03b0 YL |
1196 | if (def_to_bigsmp && nr_cpu_ids > 8) { |
1197 | unsigned int cpu; | |
1198 | unsigned nr; | |
1199 | ||
c767a54b JP |
1200 | pr_warn("More than 8 CPUs detected - skipping them\n" |
1201 | "Use CONFIG_X86_BIGSMP\n"); | |
a58f03b0 YL |
1202 | |
1203 | nr = 0; | |
1204 | for_each_present_cpu(cpu) { | |
1205 | if (nr >= 8) | |
c2d1cec1 | 1206 | set_cpu_present(cpu, false); |
a58f03b0 YL |
1207 | nr++; |
1208 | } | |
1209 | ||
1210 | nr = 0; | |
1211 | for_each_possible_cpu(cpu) { | |
1212 | if (nr >= 8) | |
c2d1cec1 | 1213 | set_cpu_possible(cpu, false); |
a58f03b0 YL |
1214 | nr++; |
1215 | } | |
1216 | ||
1217 | nr_cpu_ids = 8; | |
1218 | } | |
1219 | #endif | |
1220 | ||
8aef135c | 1221 | if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) { |
c767a54b | 1222 | pr_warn("weird, boot CPU (#%d) not listed by the BIOS\n", |
55c395b4 MT |
1223 | hard_smp_processor_id()); |
1224 | ||
8aef135c GOC |
1225 | physid_set(hard_smp_processor_id(), phys_cpu_present_map); |
1226 | } | |
1227 | ||
1228 | /* | |
1229 | * If we couldn't find an SMP configuration at boot time, | |
1230 | * get out of here now! | |
1231 | */ | |
1232 | if (!smp_found_config && !acpi_lapic) { | |
ac23d4ee | 1233 | preempt_enable(); |
c767a54b | 1234 | pr_notice("SMP motherboard not detected\n"); |
613c25ef | 1235 | return SMP_NO_CONFIG; |
8aef135c GOC |
1236 | } |
1237 | ||
1238 | /* | |
1239 | * Should not be necessary because the MP table should list the boot | |
1240 | * CPU too, but we do it for the sake of robustness anyway. | |
1241 | */ | |
a27a6210 | 1242 | if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) { |
c767a54b JP |
1243 | pr_notice("weird, boot CPU (#%d) not listed by the BIOS\n", |
1244 | boot_cpu_physical_apicid); | |
8aef135c GOC |
1245 | physid_set(hard_smp_processor_id(), phys_cpu_present_map); |
1246 | } | |
ac23d4ee | 1247 | preempt_enable(); |
8aef135c GOC |
1248 | |
1249 | /* | |
1250 | * If we couldn't find a local APIC, then get out of here now! | |
1251 | */ | |
cff9ab2b | 1252 | if (APIC_INTEGRATED(boot_cpu_apic_version) && |
93984fbd | 1253 | !boot_cpu_has(X86_FEATURE_APIC)) { |
103428e5 CG |
1254 | if (!disable_apic) { |
1255 | pr_err("BIOS bug, local APIC #%d not detected!...\n", | |
1256 | boot_cpu_physical_apicid); | |
c767a54b | 1257 | pr_err("... forcing use of dummy APIC emulation (tell your hw vendor)\n"); |
103428e5 | 1258 | } |
613c25ef | 1259 | return SMP_NO_APIC; |
8aef135c GOC |
1260 | } |
1261 | ||
8aef135c GOC |
1262 | /* |
1263 | * If SMP should be disabled, then really disable it! | |
1264 | */ | |
1265 | if (!max_cpus) { | |
c767a54b | 1266 | pr_info("SMP mode deactivated\n"); |
613c25ef | 1267 | return SMP_FORCE_UP; |
8aef135c GOC |
1268 | } |
1269 | ||
613c25ef | 1270 | return SMP_OK; |
8aef135c GOC |
1271 | } |
1272 | ||
1273 | static void __init smp_cpu_index_default(void) | |
1274 | { | |
1275 | int i; | |
1276 | struct cpuinfo_x86 *c; | |
1277 | ||
7c04e64a | 1278 | for_each_possible_cpu(i) { |
8aef135c GOC |
1279 | c = &cpu_data(i); |
1280 | /* mark all to hotplug */ | |
9628937d | 1281 | c->cpu_index = nr_cpu_ids; |
8aef135c GOC |
1282 | } |
1283 | } | |
1284 | ||
1285 | /* | |
1286 | * Prepare for SMP bootup. The MP table or ACPI has been read | |
1287 | * earlier. Just do some sanity checking here and enable APIC mode. | |
1288 | */ | |
1289 | void __init native_smp_prepare_cpus(unsigned int max_cpus) | |
1290 | { | |
7ad728f9 RR |
1291 | unsigned int i; |
1292 | ||
8aef135c | 1293 | smp_cpu_index_default(); |
792363d2 | 1294 | |
8aef135c GOC |
1295 | /* |
1296 | * Setup boot CPU information | |
1297 | */ | |
30106c17 | 1298 | smp_store_boot_cpu_info(); /* Final full version of the data */ |
792363d2 YL |
1299 | cpumask_copy(cpu_callin_mask, cpumask_of(0)); |
1300 | mb(); | |
bd22a2f1 | 1301 | |
7ad728f9 | 1302 | for_each_possible_cpu(i) { |
79f55997 LZ |
1303 | zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL); |
1304 | zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL); | |
b3d7336d | 1305 | zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL); |
7ad728f9 | 1306 | } |
8f37961c TC |
1307 | |
1308 | /* | |
1309 | * Set 'default' x86 topology, this matches default_topology() in that | |
1310 | * it has NUMA nodes as a topology level. See also | |
1311 | * native_smp_cpus_done(). | |
1312 | * | |
1313 | * Must be done before set_cpus_sibling_map() is ran. | |
1314 | */ | |
1315 | set_sched_topology(x86_topology); | |
1316 | ||
8aef135c GOC |
1317 | set_cpu_sibling_map(0); |
1318 | ||
613c25ef TG |
1319 | switch (smp_sanity_check(max_cpus)) { |
1320 | case SMP_NO_CONFIG: | |
8aef135c | 1321 | disable_smp(); |
613c25ef TG |
1322 | if (APIC_init_uniprocessor()) |
1323 | pr_notice("Local APIC not detected. Using dummy APIC emulation.\n"); | |
1324 | return; | |
1325 | case SMP_NO_APIC: | |
1326 | disable_smp(); | |
1327 | return; | |
1328 | case SMP_FORCE_UP: | |
1329 | disable_smp(); | |
374aab33 | 1330 | apic_bsp_setup(false); |
250a1ac6 | 1331 | return; |
613c25ef TG |
1332 | case SMP_OK: |
1333 | break; | |
8aef135c GOC |
1334 | } |
1335 | ||
4c9961d5 | 1336 | if (read_apic_id() != boot_cpu_physical_apicid) { |
8aef135c | 1337 | panic("Boot APIC ID in local APIC unexpected (%d vs %d)", |
4c9961d5 | 1338 | read_apic_id(), boot_cpu_physical_apicid); |
8aef135c GOC |
1339 | /* Or can we switch back to PIC here? */ |
1340 | } | |
1341 | ||
384d9fe3 | 1342 | default_setup_apic_routing(); |
374aab33 | 1343 | cpu0_logical_apicid = apic_bsp_setup(false); |
ef4c59a4 | 1344 | |
c767a54b | 1345 | pr_info("CPU%d: ", 0); |
8aef135c | 1346 | print_cpu_info(&cpu_data(0)); |
c4bd1fda MS |
1347 | |
1348 | if (is_uv_system()) | |
1349 | uv_system_init(); | |
d0af9eed SS |
1350 | |
1351 | set_mtrr_aps_delayed_init(); | |
1a744cb3 LB |
1352 | |
1353 | smp_quirk_init_udelay(); | |
8aef135c | 1354 | } |
d0af9eed SS |
1355 | |
1356 | void arch_enable_nonboot_cpus_begin(void) | |
1357 | { | |
1358 | set_mtrr_aps_delayed_init(); | |
1359 | } | |
1360 | ||
1361 | void arch_enable_nonboot_cpus_end(void) | |
1362 | { | |
1363 | mtrr_aps_init(); | |
1364 | } | |
1365 | ||
a8db8453 GOC |
1366 | /* |
1367 | * Early setup to make printk work. | |
1368 | */ | |
1369 | void __init native_smp_prepare_boot_cpu(void) | |
1370 | { | |
1371 | int me = smp_processor_id(); | |
552be871 | 1372 | switch_to_new_gdt(me); |
c2d1cec1 MT |
1373 | /* already set me in cpu_online_mask in boot_cpu_init() */ |
1374 | cpumask_set_cpu(me, cpu_callout_mask); | |
2a442c9c | 1375 | cpu_set_state_online(me); |
a8db8453 GOC |
1376 | } |
1377 | ||
83f7eb9c GOC |
1378 | void __init native_smp_cpus_done(unsigned int max_cpus) |
1379 | { | |
c767a54b | 1380 | pr_debug("Boot done\n"); |
83f7eb9c | 1381 | |
8f37961c TC |
1382 | if (x86_has_numa_in_package) |
1383 | set_sched_topology(x86_numa_in_package_topology); | |
1384 | ||
99e8b9ca | 1385 | nmi_selftest(); |
83f7eb9c | 1386 | impress_friends(); |
83f7eb9c | 1387 | setup_ioapic_dest(); |
d0af9eed | 1388 | mtrr_aps_init(); |
83f7eb9c GOC |
1389 | } |
1390 | ||
3b11ce7f MT |
1391 | static int __initdata setup_possible_cpus = -1; |
1392 | static int __init _setup_possible_cpus(char *str) | |
1393 | { | |
1394 | get_option(&str, &setup_possible_cpus); | |
1395 | return 0; | |
1396 | } | |
1397 | early_param("possible_cpus", _setup_possible_cpus); | |
1398 | ||
1399 | ||
68a1c3f8 | 1400 | /* |
4f062896 | 1401 | * cpu_possible_mask should be static, it cannot change as cpu's |
68a1c3f8 GC |
1402 | * are onlined, or offlined. The reason is per-cpu data-structures |
1403 | * are allocated by some modules at init time, and dont expect to | |
1404 | * do this dynamically on cpu arrival/departure. | |
4f062896 | 1405 | * cpu_present_mask on the other hand can change dynamically. |
68a1c3f8 GC |
1406 | * In case when cpu_hotplug is not compiled, then we resort to current |
1407 | * behaviour, which is cpu_possible == cpu_present. | |
1408 | * - Ashok Raj | |
1409 | * | |
1410 | * Three ways to find out the number of additional hotplug CPUs: | |
1411 | * - If the BIOS specified disabled CPUs in ACPI/mptables use that. | |
3b11ce7f | 1412 | * - The user can overwrite it with possible_cpus=NUM |
68a1c3f8 GC |
1413 | * - Otherwise don't reserve additional CPUs. |
1414 | * We do this because additional CPUs waste a lot of memory. | |
1415 | * -AK | |
1416 | */ | |
1417 | __init void prefill_possible_map(void) | |
1418 | { | |
cb48bb59 | 1419 | int i, possible; |
68a1c3f8 | 1420 | |
2a51fe08 PB |
1421 | /* No boot processor was found in mptable or ACPI MADT */ |
1422 | if (!num_processors) { | |
ff856051 VS |
1423 | if (boot_cpu_has(X86_FEATURE_APIC)) { |
1424 | int apicid = boot_cpu_physical_apicid; | |
1425 | int cpu = hard_smp_processor_id(); | |
2a51fe08 | 1426 | |
ff856051 | 1427 | pr_warn("Boot CPU (id %d) not listed by BIOS\n", cpu); |
2a51fe08 | 1428 | |
ff856051 VS |
1429 | /* Make sure boot cpu is enumerated */ |
1430 | if (apic->cpu_present_to_apicid(0) == BAD_APICID && | |
1431 | apic->apic_id_valid(apicid)) | |
1432 | generic_processor_info(apicid, boot_cpu_apic_version); | |
1433 | } | |
2a51fe08 PB |
1434 | |
1435 | if (!num_processors) | |
1436 | num_processors = 1; | |
1437 | } | |
329513a3 | 1438 | |
5f2eb550 JB |
1439 | i = setup_max_cpus ?: 1; |
1440 | if (setup_possible_cpus == -1) { | |
1441 | possible = num_processors; | |
1442 | #ifdef CONFIG_HOTPLUG_CPU | |
1443 | if (setup_max_cpus) | |
1444 | possible += disabled_cpus; | |
1445 | #else | |
1446 | if (possible > i) | |
1447 | possible = i; | |
1448 | #endif | |
1449 | } else | |
3b11ce7f MT |
1450 | possible = setup_possible_cpus; |
1451 | ||
730cf272 MT |
1452 | total_cpus = max_t(int, possible, num_processors + disabled_cpus); |
1453 | ||
2b633e3f YL |
1454 | /* nr_cpu_ids could be reduced via nr_cpus= */ |
1455 | if (possible > nr_cpu_ids) { | |
c767a54b | 1456 | pr_warn("%d Processors exceeds NR_CPUS limit of %d\n", |
2b633e3f YL |
1457 | possible, nr_cpu_ids); |
1458 | possible = nr_cpu_ids; | |
3b11ce7f | 1459 | } |
68a1c3f8 | 1460 | |
5f2eb550 JB |
1461 | #ifdef CONFIG_HOTPLUG_CPU |
1462 | if (!setup_max_cpus) | |
1463 | #endif | |
1464 | if (possible > i) { | |
c767a54b | 1465 | pr_warn("%d Processors exceeds max_cpus limit of %u\n", |
5f2eb550 JB |
1466 | possible, setup_max_cpus); |
1467 | possible = i; | |
1468 | } | |
1469 | ||
c767a54b | 1470 | pr_info("Allowing %d CPUs, %d hotplug CPUs\n", |
68a1c3f8 GC |
1471 | possible, max_t(int, possible - num_processors, 0)); |
1472 | ||
1473 | for (i = 0; i < possible; i++) | |
c2d1cec1 | 1474 | set_cpu_possible(i, true); |
5f2eb550 JB |
1475 | for (; i < NR_CPUS; i++) |
1476 | set_cpu_possible(i, false); | |
3461b0af MT |
1477 | |
1478 | nr_cpu_ids = possible; | |
68a1c3f8 | 1479 | } |
69c18c15 | 1480 | |
14adf855 CE |
1481 | #ifdef CONFIG_HOTPLUG_CPU |
1482 | ||
70b8301f AK |
1483 | /* Recompute SMT state for all CPUs on offline */ |
1484 | static void recompute_smt_state(void) | |
1485 | { | |
1486 | int max_threads, cpu; | |
1487 | ||
1488 | max_threads = 0; | |
1489 | for_each_online_cpu (cpu) { | |
1490 | int threads = cpumask_weight(topology_sibling_cpumask(cpu)); | |
1491 | ||
1492 | if (threads > max_threads) | |
1493 | max_threads = threads; | |
1494 | } | |
1495 | __max_smt_threads = max_threads; | |
1496 | } | |
1497 | ||
14adf855 CE |
1498 | static void remove_siblinginfo(int cpu) |
1499 | { | |
1500 | int sibling; | |
1501 | struct cpuinfo_x86 *c = &cpu_data(cpu); | |
1502 | ||
7d79a7bd BG |
1503 | for_each_cpu(sibling, topology_core_cpumask(cpu)) { |
1504 | cpumask_clear_cpu(cpu, topology_core_cpumask(sibling)); | |
14adf855 CE |
1505 | /*/ |
1506 | * last thread sibling in this cpu core going down | |
1507 | */ | |
7d79a7bd | 1508 | if (cpumask_weight(topology_sibling_cpumask(cpu)) == 1) |
14adf855 CE |
1509 | cpu_data(sibling).booted_cores--; |
1510 | } | |
1511 | ||
7d79a7bd BG |
1512 | for_each_cpu(sibling, topology_sibling_cpumask(cpu)) |
1513 | cpumask_clear_cpu(cpu, topology_sibling_cpumask(sibling)); | |
03bd4e1f WL |
1514 | for_each_cpu(sibling, cpu_llc_shared_mask(cpu)) |
1515 | cpumask_clear_cpu(cpu, cpu_llc_shared_mask(sibling)); | |
1516 | cpumask_clear(cpu_llc_shared_mask(cpu)); | |
7d79a7bd BG |
1517 | cpumask_clear(topology_sibling_cpumask(cpu)); |
1518 | cpumask_clear(topology_core_cpumask(cpu)); | |
14adf855 CE |
1519 | c->phys_proc_id = 0; |
1520 | c->cpu_core_id = 0; | |
c2d1cec1 | 1521 | cpumask_clear_cpu(cpu, cpu_sibling_setup_mask); |
70b8301f | 1522 | recompute_smt_state(); |
14adf855 CE |
1523 | } |
1524 | ||
4daa832d | 1525 | static void remove_cpu_from_maps(int cpu) |
69c18c15 | 1526 | { |
c2d1cec1 MT |
1527 | set_cpu_online(cpu, false); |
1528 | cpumask_clear_cpu(cpu, cpu_callout_mask); | |
1529 | cpumask_clear_cpu(cpu, cpu_callin_mask); | |
69c18c15 | 1530 | /* was set by cpu_init() */ |
c2d1cec1 | 1531 | cpumask_clear_cpu(cpu, cpu_initialized_mask); |
23ca4bba | 1532 | numa_remove_cpu(cpu); |
69c18c15 GC |
1533 | } |
1534 | ||
8227dce7 | 1535 | void cpu_disable_common(void) |
69c18c15 GC |
1536 | { |
1537 | int cpu = smp_processor_id(); | |
69c18c15 | 1538 | |
69c18c15 GC |
1539 | remove_siblinginfo(cpu); |
1540 | ||
1541 | /* It's now safe to remove this processor from the online map */ | |
d388e5fd | 1542 | lock_vector_lock(); |
69c18c15 | 1543 | remove_cpu_from_maps(cpu); |
d388e5fd | 1544 | unlock_vector_lock(); |
d7b381bb | 1545 | fixup_irqs(); |
8227dce7 AN |
1546 | } |
1547 | ||
1548 | int native_cpu_disable(void) | |
1549 | { | |
da6139e4 PB |
1550 | int ret; |
1551 | ||
1552 | ret = check_irq_vectors_for_cpu_disable(); | |
1553 | if (ret) | |
1554 | return ret; | |
1555 | ||
8227dce7 | 1556 | clear_local_APIC(); |
8227dce7 | 1557 | cpu_disable_common(); |
2ed53c0d | 1558 | |
69c18c15 GC |
1559 | return 0; |
1560 | } | |
1561 | ||
2a442c9c | 1562 | int common_cpu_die(unsigned int cpu) |
54279552 | 1563 | { |
2a442c9c | 1564 | int ret = 0; |
54279552 | 1565 | |
69c18c15 | 1566 | /* We don't do anything here: idle task is faking death itself. */ |
54279552 | 1567 | |
2ed53c0d | 1568 | /* They ack this in play_dead() by setting CPU_DEAD */ |
2a442c9c | 1569 | if (cpu_wait_death(cpu, 5)) { |
2ed53c0d LT |
1570 | if (system_state == SYSTEM_RUNNING) |
1571 | pr_info("CPU %u is now offline\n", cpu); | |
1572 | } else { | |
1573 | pr_err("CPU %u didn't die...\n", cpu); | |
2a442c9c | 1574 | ret = -1; |
69c18c15 | 1575 | } |
2a442c9c PM |
1576 | |
1577 | return ret; | |
1578 | } | |
1579 | ||
1580 | void native_cpu_die(unsigned int cpu) | |
1581 | { | |
1582 | common_cpu_die(cpu); | |
69c18c15 | 1583 | } |
a21f5d88 AN |
1584 | |
1585 | void play_dead_common(void) | |
1586 | { | |
1587 | idle_task_exit(); | |
1588 | reset_lazy_tlbstate(); | |
02c68a02 | 1589 | amd_e400_remove_cpu(raw_smp_processor_id()); |
a21f5d88 | 1590 | |
a21f5d88 | 1591 | /* Ack it */ |
2a442c9c | 1592 | (void)cpu_report_death(); |
a21f5d88 AN |
1593 | |
1594 | /* | |
1595 | * With physical CPU hotplug, we should halt the cpu | |
1596 | */ | |
1597 | local_irq_disable(); | |
1598 | } | |
1599 | ||
e1c467e6 FY |
1600 | static bool wakeup_cpu0(void) |
1601 | { | |
1602 | if (smp_processor_id() == 0 && enable_start_cpu0) | |
1603 | return true; | |
1604 | ||
1605 | return false; | |
1606 | } | |
1607 | ||
ea530692 PA |
1608 | /* |
1609 | * We need to flush the caches before going to sleep, lest we have | |
1610 | * dirty data in our caches when we come back up. | |
1611 | */ | |
1612 | static inline void mwait_play_dead(void) | |
1613 | { | |
1614 | unsigned int eax, ebx, ecx, edx; | |
1615 | unsigned int highest_cstate = 0; | |
1616 | unsigned int highest_subcstate = 0; | |
ce5f6824 | 1617 | void *mwait_ptr; |
576cfb40 | 1618 | int i; |
ea530692 | 1619 | |
69fb3676 | 1620 | if (!this_cpu_has(X86_FEATURE_MWAIT)) |
ea530692 | 1621 | return; |
840d2830 | 1622 | if (!this_cpu_has(X86_FEATURE_CLFLUSH)) |
ce5f6824 | 1623 | return; |
7b543a53 | 1624 | if (__this_cpu_read(cpu_info.cpuid_level) < CPUID_MWAIT_LEAF) |
ea530692 PA |
1625 | return; |
1626 | ||
1627 | eax = CPUID_MWAIT_LEAF; | |
1628 | ecx = 0; | |
1629 | native_cpuid(&eax, &ebx, &ecx, &edx); | |
1630 | ||
1631 | /* | |
1632 | * eax will be 0 if EDX enumeration is not valid. | |
1633 | * Initialized below to cstate, sub_cstate value when EDX is valid. | |
1634 | */ | |
1635 | if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED)) { | |
1636 | eax = 0; | |
1637 | } else { | |
1638 | edx >>= MWAIT_SUBSTATE_SIZE; | |
1639 | for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) { | |
1640 | if (edx & MWAIT_SUBSTATE_MASK) { | |
1641 | highest_cstate = i; | |
1642 | highest_subcstate = edx & MWAIT_SUBSTATE_MASK; | |
1643 | } | |
1644 | } | |
1645 | eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) | | |
1646 | (highest_subcstate - 1); | |
1647 | } | |
1648 | ||
ce5f6824 PA |
1649 | /* |
1650 | * This should be a memory location in a cache line which is | |
1651 | * unlikely to be touched by other processors. The actual | |
1652 | * content is immaterial as it is not actually modified in any way. | |
1653 | */ | |
1654 | mwait_ptr = ¤t_thread_info()->flags; | |
1655 | ||
a68e5c94 PA |
1656 | wbinvd(); |
1657 | ||
ea530692 | 1658 | while (1) { |
ce5f6824 PA |
1659 | /* |
1660 | * The CLFLUSH is a workaround for erratum AAI65 for | |
1661 | * the Xeon 7400 series. It's not clear it is actually | |
1662 | * needed, but it should be harmless in either case. | |
1663 | * The WBINVD is insufficient due to the spurious-wakeup | |
1664 | * case where we return around the loop. | |
1665 | */ | |
7d590cca | 1666 | mb(); |
ce5f6824 | 1667 | clflush(mwait_ptr); |
7d590cca | 1668 | mb(); |
ce5f6824 | 1669 | __monitor(mwait_ptr, 0, 0); |
ea530692 PA |
1670 | mb(); |
1671 | __mwait(eax, 0); | |
e1c467e6 FY |
1672 | /* |
1673 | * If NMI wants to wake up CPU0, start CPU0. | |
1674 | */ | |
1675 | if (wakeup_cpu0()) | |
1676 | start_cpu0(); | |
ea530692 PA |
1677 | } |
1678 | } | |
1679 | ||
406f992e | 1680 | void hlt_play_dead(void) |
ea530692 | 1681 | { |
7b543a53 | 1682 | if (__this_cpu_read(cpu_info.x86) >= 4) |
a68e5c94 PA |
1683 | wbinvd(); |
1684 | ||
ea530692 | 1685 | while (1) { |
ea530692 | 1686 | native_halt(); |
e1c467e6 FY |
1687 | /* |
1688 | * If NMI wants to wake up CPU0, start CPU0. | |
1689 | */ | |
1690 | if (wakeup_cpu0()) | |
1691 | start_cpu0(); | |
ea530692 PA |
1692 | } |
1693 | } | |
1694 | ||
a21f5d88 AN |
1695 | void native_play_dead(void) |
1696 | { | |
1697 | play_dead_common(); | |
86886e55 | 1698 | tboot_shutdown(TB_SHUTDOWN_WFS); |
ea530692 PA |
1699 | |
1700 | mwait_play_dead(); /* Only returns on failure */ | |
1a022e3f BO |
1701 | if (cpuidle_play_dead()) |
1702 | hlt_play_dead(); | |
a21f5d88 AN |
1703 | } |
1704 | ||
69c18c15 | 1705 | #else /* ... !CONFIG_HOTPLUG_CPU */ |
93be71b6 | 1706 | int native_cpu_disable(void) |
69c18c15 GC |
1707 | { |
1708 | return -ENOSYS; | |
1709 | } | |
1710 | ||
93be71b6 | 1711 | void native_cpu_die(unsigned int cpu) |
69c18c15 GC |
1712 | { |
1713 | /* We said "no" in __cpu_disable */ | |
1714 | BUG(); | |
1715 | } | |
a21f5d88 AN |
1716 | |
1717 | void native_play_dead(void) | |
1718 | { | |
1719 | BUG(); | |
1720 | } | |
1721 | ||
68a1c3f8 | 1722 | #endif |