1 #include <linux/init.h>
3 #include <linux/module.h>
4 #include <linux/sched.h>
5 #include <linux/percpu.h>
6 #include <linux/bootmem.h>
14 /* Number of siblings per CPU package */
15 int smp_num_siblings = 1;
16 EXPORT_SYMBOL(smp_num_siblings);
18 /* Last level cache ID of each logical CPU */
19 DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
21 /* bitmap of online cpus */
22 cpumask_t cpu_online_map __read_mostly;
23 EXPORT_SYMBOL(cpu_online_map);
25 cpumask_t cpu_callin_map;
26 cpumask_t cpu_callout_map;
27 cpumask_t cpu_possible_map;
28 EXPORT_SYMBOL(cpu_possible_map);
30 /* representing HT siblings of each logical CPU */
31 DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
32 EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
34 /* representing HT and core siblings of each logical CPU */
35 DEFINE_PER_CPU(cpumask_t, cpu_core_map);
36 EXPORT_PER_CPU_SYMBOL(cpu_core_map);
38 /* Per CPU bogomips and other parameters */
39 DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
40 EXPORT_PER_CPU_SYMBOL(cpu_info);
42 /* ready for x86_64, no harm for x86, since it will overwrite after alloc */
43 unsigned char *trampoline_base = __va(SMP_TRAMPOLINE_BASE);
45 /* representing cpus for which sibling maps can be computed */
46 static cpumask_t cpu_sibling_setup_map;
48 void __cpuinit set_cpu_sibling_map(int cpu)
51 struct cpuinfo_x86 *c = &cpu_data(cpu);
53 cpu_set(cpu, cpu_sibling_setup_map);
55 if (smp_num_siblings > 1) {
56 for_each_cpu_mask(i, cpu_sibling_setup_map) {
57 if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
58 c->cpu_core_id == cpu_data(i).cpu_core_id) {
59 cpu_set(i, per_cpu(cpu_sibling_map, cpu));
60 cpu_set(cpu, per_cpu(cpu_sibling_map, i));
61 cpu_set(i, per_cpu(cpu_core_map, cpu));
62 cpu_set(cpu, per_cpu(cpu_core_map, i));
63 cpu_set(i, c->llc_shared_map);
64 cpu_set(cpu, cpu_data(i).llc_shared_map);
68 cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
71 cpu_set(cpu, c->llc_shared_map);
73 if (current_cpu_data.x86_max_cores == 1) {
74 per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
79 for_each_cpu_mask(i, cpu_sibling_setup_map) {
80 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
81 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
82 cpu_set(i, c->llc_shared_map);
83 cpu_set(cpu, cpu_data(i).llc_shared_map);
85 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
86 cpu_set(i, per_cpu(cpu_core_map, cpu));
87 cpu_set(cpu, per_cpu(cpu_core_map, i));
89 * Does this new cpu bringup a new core?
91 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
93 * for each core in package, increment
94 * the booted_cores for this new cpu
96 if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
99 * increment the core count for all
100 * the other cpus in this package
103 cpu_data(i).booted_cores++;
104 } else if (i != cpu && !c->booted_cores)
105 c->booted_cores = cpu_data(i).booted_cores;
110 /* maps the cpu to the sched domain representing multi-core */
111 cpumask_t cpu_coregroup_map(int cpu)
113 struct cpuinfo_x86 *c = &cpu_data(cpu);
115 * For perf, we return last level cache shared map.
116 * And for power savings, we return cpu_core_map
118 if (sched_mc_power_savings || sched_smt_power_savings)
119 return per_cpu(cpu_core_map, cpu);
121 return c->llc_shared_map;
125 * Currently trivial. Write the real->protected mode
126 * bootstrap into the page concerned. The caller
127 * has made sure it's suitably aligned.
130 unsigned long __cpuinit setup_trampoline(void)
132 memcpy(trampoline_base, trampoline_data,
133 trampoline_end - trampoline_data);
134 return virt_to_phys(trampoline_base);
139 * We are called very early to get the low memory for the
140 * SMP bootup trampoline page.
142 void __init smp_alloc_memory(void)
144 trampoline_base = alloc_bootmem_low_pages(PAGE_SIZE);
146 * Has to be in very low memory so we can execute
149 if (__pa(trampoline_base) >= 0x9F000)
154 #ifdef CONFIG_HOTPLUG_CPU
155 void remove_siblinginfo(int cpu)
158 struct cpuinfo_x86 *c = &cpu_data(cpu);
160 for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
161 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
163 * last thread sibling in this cpu core going down
165 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
166 cpu_data(sibling).booted_cores--;
169 for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
170 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
171 cpus_clear(per_cpu(cpu_sibling_map, cpu));
172 cpus_clear(per_cpu(cpu_core_map, cpu));
175 cpu_clear(cpu, cpu_sibling_setup_map);
178 int additional_cpus __initdata = -1;
180 static __init int setup_additional_cpus(char *s)
182 return s && get_option(&s, &additional_cpus) ? 0 : -EINVAL;
184 early_param("additional_cpus", setup_additional_cpus);
187 * cpu_possible_map should be static, it cannot change as cpu's
188 * are onlined, or offlined. The reason is per-cpu data-structures
189 * are allocated by some modules at init time, and dont expect to
190 * do this dynamically on cpu arrival/departure.
191 * cpu_present_map on the other hand can change dynamically.
192 * In case when cpu_hotplug is not compiled, then we resort to current
193 * behaviour, which is cpu_possible == cpu_present.
196 * Three ways to find out the number of additional hotplug CPUs:
197 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
198 * - The user can overwrite it with additional_cpus=NUM
199 * - Otherwise don't reserve additional CPUs.
200 * We do this because additional CPUs waste a lot of memory.
203 __init void prefill_possible_map(void)
208 if (additional_cpus == -1) {
209 if (disabled_cpus > 0)
210 additional_cpus = disabled_cpus;
214 possible = num_processors + additional_cpus;
215 if (possible > NR_CPUS)
218 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
219 possible, max_t(int, possible - num_processors, 0));
221 for (i = 0; i < possible; i++)
222 cpu_set(i, cpu_possible_map);
225 static void __ref remove_cpu_from_maps(int cpu)
227 cpu_clear(cpu, cpu_online_map);
229 cpu_clear(cpu, cpu_callout_map);
230 cpu_clear(cpu, cpu_callin_map);
231 /* was set by cpu_init() */
232 clear_bit(cpu, (unsigned long *)&cpu_initialized);
233 clear_node_cpumask(cpu);
237 int __cpu_disable(void)
239 int cpu = smp_processor_id();
242 * Perhaps use cpufreq to drop frequency, but that could go
245 * We won't take down the boot processor on i386 due to some
246 * interrupts only being able to be serviced by the BSP.
247 * Especially so if we're not using an IOAPIC -zwane
252 if (nmi_watchdog == NMI_LOCAL_APIC)
253 stop_apic_nmi_watchdog(NULL);
258 * Allow any queued timer interrupts to get serviced
259 * This is only a temporary solution until we cleanup
260 * fixup_irqs as we do for IA64.
266 remove_siblinginfo(cpu);
268 /* It's now safe to remove this processor from the online map */
269 remove_cpu_from_maps(cpu);
270 fixup_irqs(cpu_online_map);
274 void __cpu_die(unsigned int cpu)
276 /* We don't do anything here: idle task is faking death itself. */
279 for (i = 0; i < 10; i++) {
280 /* They ack this in play_dead by setting CPU_DEAD */
281 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
282 printk(KERN_INFO "CPU %d is now offline\n", cpu);
283 if (1 == num_online_cpus())
284 alternatives_smp_switch(0);
289 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
291 #else /* ... !CONFIG_HOTPLUG_CPU */
292 int __cpu_disable(void)
297 void __cpu_die(unsigned int cpu)
299 /* We said "no" in __cpu_disable */
305 * If the BIOS enumerates physical processors before logical,
306 * maxcpus=N at enumeration-time can be used to disable HT.
308 static int __init parse_maxcpus(char *arg)
310 extern unsigned int maxcpus;
312 maxcpus = simple_strtoul(arg, NULL, 0);
315 early_param("maxcpus", parse_maxcpus);