1 // SPDX-License-Identifier: GPL-2.0-only
5 * The APIC IDs describe the system topology in multiple domain levels.
6 * The CPUID topology parser provides the information which part of the
7 * APIC ID is associated to the individual levels:
9 * [PACKAGE][DIEGRP][DIE][TILE][MODULE][CORE][THREAD]
11 * The root space contains the package (socket) IDs.
13 * Not enumerated levels consume 0 bits space, but conceptually they are
14 * always represented. If e.g. only CORE and THREAD levels are enumerated
15 * then the DIE, MODULE and TILE have the same physical ID as the PACKAGE.
17 * If SMT is not supported, then the THREAD domain is still used. It then
18 * has the same physical ID as the CORE domain and is the only child of
21 * This allows a unified view on the system independent of the enumerated
22 * domain levels without requiring any conditionals in the code.
24 #define pr_fmt(fmt) "CPU topo: " fmt
25 #include <linux/cpu.h>
30 #include <asm/hypervisor.h>
31 #include <asm/io_apic.h>
32 #include <asm/mpspec.h>
38 * Map cpu index to physical APIC ID
40 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_apicid, BAD_APICID);
41 DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, CPU_ACPIID_INVALID);
42 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
43 EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid);
45 /* Bitmap of physically present CPUs. */
46 DECLARE_BITMAP(phys_cpu_present_map, MAX_LOCAL_APIC) __read_mostly;
48 /* Used for CPU number allocation and parallel CPU bringup */
49 u32 cpuid_to_apicid[] __ro_after_init = { [0 ... NR_CPUS - 1] = BAD_APICID, };
51 /* Bitmaps to mark registered APICs at each topology domain */
52 static struct { DECLARE_BITMAP(map, MAX_LOCAL_APIC); } apic_maps[TOPO_MAX_DOMAIN] __ro_after_init;
55 * Keep track of assigned, disabled and rejected CPUs. Present assigned
56 * with 1 as CPU #0 is reserved for the boot CPU.
59 unsigned int nr_assigned_cpus;
60 unsigned int nr_disabled_cpus;
61 unsigned int nr_rejected_cpus;
64 } topo_info __ro_after_init = {
65 .nr_assigned_cpus = 1,
66 .boot_cpu_apic_id = BAD_APICID,
67 .real_bsp_apic_id = BAD_APICID,
70 #define domain_weight(_dom) bitmap_weight(apic_maps[_dom].map, MAX_LOCAL_APIC)
72 bool arch_match_cpu_phys_id(int cpu, u64 phys_id)
74 return phys_id == (u64)cpuid_to_apicid[cpu];
78 static void cpu_mark_primary_thread(unsigned int cpu, unsigned int apicid)
80 if (!(apicid & (__max_threads_per_core - 1)))
81 cpumask_set_cpu(cpu, &__cpu_primary_thread_mask);
84 static inline void cpu_mark_primary_thread(unsigned int cpu, unsigned int apicid) { }
88 * Convert the APIC ID to a domain level ID by masking out the low bits
89 * below the domain level @dom.
91 static inline u32 topo_apicid(u32 apicid, enum x86_topology_domains dom)
93 if (dom == TOPO_SMT_DOMAIN)
95 return apicid & (UINT_MAX << x86_topo_system.dom_shifts[dom - 1]);
98 static int topo_lookup_cpuid(u32 apic_id)
102 /* CPU# to APICID mapping is persistent once it is established */
103 for (i = 0; i < topo_info.nr_assigned_cpus; i++) {
104 if (cpuid_to_apicid[i] == apic_id)
110 static __init int topo_get_cpunr(u32 apic_id)
112 int cpu = topo_lookup_cpuid(apic_id);
117 return topo_info.nr_assigned_cpus++;
120 static void topo_set_cpuids(unsigned int cpu, u32 apic_id, u32 acpi_id)
122 #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
123 early_per_cpu(x86_cpu_to_apicid, cpu) = apic_id;
124 early_per_cpu(x86_cpu_to_acpiid, cpu) = acpi_id;
126 set_cpu_present(cpu, true);
129 static __init bool check_for_real_bsp(u32 apic_id)
131 bool is_bsp = false, has_apic_base = boot_cpu_data.x86 >= 6;
135 * There is no real good way to detect whether this a kdump()
136 * kernel, but except on the Voyager SMP monstrosity which is not
137 * longer supported, the real BSP APIC ID is the first one which is
138 * enumerated by firmware. That allows to detect whether the boot
139 * CPU is the real BSP. If it is not, then do not register the APIC
140 * because sending INIT to the real BSP would reset the whole
143 * The first APIC ID which is enumerated by firmware is detectable
144 * because the boot CPU APIC ID is registered before that without
145 * invoking this code.
147 if (topo_info.real_bsp_apic_id != BAD_APICID)
151 * Check whether the enumeration order is broken by evaluating the
152 * BSP bit in the APICBASE MSR. If the CPU does not have the
153 * APICBASE MSR then the BSP detection is not possible and the
154 * kernel must rely on the firmware enumeration order.
157 rdmsrl(MSR_IA32_APICBASE, msr);
158 is_bsp = !!(msr & MSR_IA32_APICBASE_BSP);
161 if (apic_id == topo_info.boot_cpu_apic_id) {
163 * If the boot CPU has the APIC BSP bit set then the
164 * firmware enumeration is agreeing. If the CPU does not
165 * have the APICBASE MSR then the only choice is to trust
166 * the enumeration order.
168 if (is_bsp || !has_apic_base) {
169 topo_info.real_bsp_apic_id = apic_id;
173 * If the boot APIC is enumerated first, but the APICBASE
174 * MSR does not have the BSP bit set, then there is no way
175 * to discover the real BSP here. Assume a crash kernel and
176 * limit the number of CPUs to 1 as an INIT to the real BSP
177 * would reset the machine.
179 pr_warn("Enumerated BSP APIC %x is not marked in APICBASE MSR\n", apic_id);
180 pr_warn("Assuming crash kernel. Limiting to one CPU to prevent machine INIT\n");
185 pr_warn("Boot CPU APIC ID not the first enumerated APIC ID: %x != %x\n",
186 topo_info.boot_cpu_apic_id, apic_id);
190 * The boot CPU has the APIC BSP bit set. Use it and complain
191 * about the broken firmware enumeration.
193 topo_info.real_bsp_apic_id = topo_info.boot_cpu_apic_id;
197 pr_warn("Crash kernel detected. Disabling real BSP to prevent machine INIT\n");
199 topo_info.real_bsp_apic_id = apic_id;
203 pr_warn(FW_BUG "APIC enumeration order not specification compliant\n");
207 static unsigned int topo_unit_count(u32 lvlid, enum x86_topology_domains at_level,
210 unsigned int id, end, cnt = 0;
212 /* Calculate the exclusive end */
213 end = lvlid + (1U << x86_topo_system.dom_shifts[at_level]);
215 /* Unfortunately there is no bitmap_weight_range() */
216 for (id = find_next_bit(map, end, lvlid); id < end; id = find_next_bit(map, end, ++id))
221 static __init void topo_register_apic(u32 apic_id, u32 acpi_id, bool present)
226 set_bit(apic_id, phys_cpu_present_map);
229 * Double registration is valid in case of the boot CPU
230 * APIC because that is registered before the enumeration
231 * of the APICs via firmware parsers or VM guest
234 if (apic_id == topo_info.boot_cpu_apic_id)
237 cpu = topo_get_cpunr(apic_id);
239 cpuid_to_apicid[cpu] = apic_id;
240 topo_set_cpuids(cpu, apic_id, acpi_id);
242 u32 pkgid = topo_apicid(apic_id, TOPO_PKG_DOMAIN);
245 * Check for present APICs in the same package when running
246 * on bare metal. Allow the bogosity in a guest.
248 if (hypervisor_is_type(X86_HYPER_NATIVE) &&
249 topo_unit_count(pkgid, TOPO_PKG_DOMAIN, phys_cpu_present_map)) {
250 pr_info_once("Ignoring hot-pluggable APIC ID %x in present package.\n",
252 topo_info.nr_rejected_cpus++;
256 topo_info.nr_disabled_cpus++;
260 * Register present and possible CPUs in the domain
261 * maps. cpu_possible_map will be updated in
262 * topology_init_possible_cpus() after enumeration is done.
264 for (dom = TOPO_SMT_DOMAIN; dom < TOPO_MAX_DOMAIN; dom++)
265 set_bit(topo_apicid(apic_id, dom), apic_maps[dom].map);
269 * topology_register_apic - Register an APIC in early topology maps
270 * @apic_id: The APIC ID to set up
271 * @acpi_id: The ACPI ID associated to the APIC
272 * @present: True if the corresponding CPU is present
274 void __init topology_register_apic(u32 apic_id, u32 acpi_id, bool present)
276 if (apic_id >= MAX_LOCAL_APIC) {
277 pr_err_once("APIC ID %x exceeds kernel limit of: %x\n", apic_id, MAX_LOCAL_APIC - 1);
278 topo_info.nr_rejected_cpus++;
282 if (check_for_real_bsp(apic_id)) {
283 topo_info.nr_rejected_cpus++;
287 /* CPU numbers exhausted? */
288 if (apic_id != topo_info.boot_cpu_apic_id && topo_info.nr_assigned_cpus >= nr_cpu_ids) {
289 pr_warn_once("CPU limit of %d reached. Ignoring further CPUs\n", nr_cpu_ids);
290 topo_info.nr_rejected_cpus++;
294 topo_register_apic(apic_id, acpi_id, present);
298 * topology_register_boot_apic - Register the boot CPU APIC
299 * @apic_id: The APIC ID to set up
301 * Separate so CPU #0 can be assigned
303 void __init topology_register_boot_apic(u32 apic_id)
305 WARN_ON_ONCE(topo_info.boot_cpu_apic_id != BAD_APICID);
307 topo_info.boot_cpu_apic_id = apic_id;
308 topo_register_apic(apic_id, CPU_ACPIID_INVALID, true);
312 * topology_get_logical_id - Retrieve the logical ID at a given topology domain level
313 * @apicid: The APIC ID for which to lookup the logical ID
314 * @at_level: The topology domain level to use
316 * @apicid must be a full APIC ID, not the normalized variant. It's valid to have
317 * all bits below the domain level specified by @at_level to be clear. So both
318 * real APIC IDs and backshifted normalized APIC IDs work correctly.
321 * - >= 0: The requested logical ID
322 * - -ERANGE: @apicid is out of range
323 * - -ENODEV: @apicid is not registered
325 int topology_get_logical_id(u32 apicid, enum x86_topology_domains at_level)
327 /* Remove the bits below @at_level to get the proper level ID of @apicid */
328 unsigned int lvlid = topo_apicid(apicid, at_level);
330 if (lvlid >= MAX_LOCAL_APIC)
332 if (!test_bit(lvlid, apic_maps[at_level].map))
334 /* Get the number of set bits before @lvlid. */
335 return bitmap_weight(apic_maps[at_level].map, lvlid);
337 EXPORT_SYMBOL_GPL(topology_get_logical_id);
340 * topology_unit_count - Retrieve the count of specified units at a given topology domain level
341 * @apicid: The APIC ID which specifies the search range
342 * @which_units: The domain level specifying the units to count
343 * @at_level: The domain level at which @which_units have to be counted
345 * This returns the number of possible units according to the enumerated
348 * E.g. topology_count_units(apicid, TOPO_CORE_DOMAIN, TOPO_PKG_DOMAIN)
349 * counts the number of possible cores in the package to which @apicid
352 * @at_level must obviously be greater than @which_level to produce useful
353 * results. If @at_level is equal to @which_units the result is
354 * unsurprisingly 1. If @at_level is less than @which_units the results
355 * is by definition undefined and the function returns 0.
357 unsigned int topology_unit_count(u32 apicid, enum x86_topology_domains which_units,
358 enum x86_topology_domains at_level)
360 /* Remove the bits below @at_level to get the proper level ID of @apicid */
361 unsigned int lvlid = topo_apicid(apicid, at_level);
363 if (lvlid >= MAX_LOCAL_APIC)
365 if (!test_bit(lvlid, apic_maps[at_level].map))
367 if (which_units > at_level)
369 if (which_units == at_level)
371 return topo_unit_count(lvlid, at_level, apic_maps[which_units].map);
374 #ifdef CONFIG_ACPI_HOTPLUG_CPU
376 * topology_hotplug_apic - Handle a physical hotplugged APIC after boot
377 * @apic_id: The APIC ID to set up
378 * @acpi_id: The ACPI ID associated to the APIC
380 int topology_hotplug_apic(u32 apic_id, u32 acpi_id)
384 if (apic_id >= MAX_LOCAL_APIC)
387 /* Reject if the APIC ID was not registered during enumeration. */
388 if (!test_bit(apic_id, apic_maps[TOPO_SMT_DOMAIN].map))
391 cpu = topo_lookup_cpuid(apic_id);
395 set_bit(apic_id, phys_cpu_present_map);
396 topo_set_cpuids(cpu, apic_id, acpi_id);
397 cpu_mark_primary_thread(cpu, apic_id);
402 * topology_hotunplug_apic - Remove a physical hotplugged APIC after boot
403 * @cpu: The CPU number for which the APIC ID is removed
405 void topology_hotunplug_apic(unsigned int cpu)
407 u32 apic_id = cpuid_to_apicid[cpu];
409 if (apic_id == BAD_APICID)
412 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
413 clear_bit(apic_id, phys_cpu_present_map);
414 set_cpu_present(cpu, false);
418 #ifdef CONFIG_X86_LOCAL_APIC
419 static unsigned int max_possible_cpus __initdata = NR_CPUS;
422 * topology_apply_cmdline_limits_early - Apply topology command line limits early
424 * Ensure that command line limits are in effect before firmware parsing
427 void __init topology_apply_cmdline_limits_early(void)
429 unsigned int possible = nr_cpu_ids;
431 /* 'maxcpus=0' 'nosmp' 'nolapic' 'disableapic' */
432 if (!setup_max_cpus || apic_is_disabled)
435 /* 'possible_cpus=N' */
436 possible = min_t(unsigned int, max_possible_cpus, possible);
438 if (possible < nr_cpu_ids) {
439 pr_info("Limiting to %u possible CPUs\n", possible);
440 set_nr_cpu_ids(possible);
444 static __init bool restrict_to_up(void)
446 if (!smp_found_config)
449 * XEN PV is special as it does not advertise the local APIC
450 * properly, but provides a fake topology for it so that the
451 * infrastructure works. So don't apply the restrictions vs. APIC
457 return apic_is_disabled;
460 void __init topology_init_possible_cpus(void)
462 unsigned int assigned = topo_info.nr_assigned_cpus;
463 unsigned int disabled = topo_info.nr_disabled_cpus;
464 unsigned int cnta, cntb, cpu, allowed = 1;
465 unsigned int total = assigned + disabled;
469 * If there was no APIC registered, then fake one so that the
470 * topology bitmap is populated. That ensures that the code below
471 * is valid and the various query interfaces can be used
472 * unconditionally. This does not affect the actual APIC code in
473 * any way because either the local APIC address has not been
474 * registered or the local APIC was disabled on the command line.
476 if (topo_info.boot_cpu_apic_id == BAD_APICID)
477 topology_register_boot_apic(0);
479 if (!restrict_to_up()) {
480 if (WARN_ON_ONCE(assigned > nr_cpu_ids)) {
481 disabled += assigned - nr_cpu_ids;
482 assigned = nr_cpu_ids;
484 allowed = min_t(unsigned int, total, nr_cpu_ids);
488 pr_warn("%u possible CPUs exceed the limit of %u\n", total, allowed);
490 assigned = min_t(unsigned int, allowed, assigned);
491 disabled = allowed - assigned;
493 topo_info.nr_assigned_cpus = assigned;
494 topo_info.nr_disabled_cpus = disabled;
496 total_cpus = allowed;
497 set_nr_cpu_ids(allowed);
499 cnta = domain_weight(TOPO_PKG_DOMAIN);
500 cntb = domain_weight(TOPO_DIE_DOMAIN);
501 __max_logical_packages = cnta;
502 __max_dies_per_package = 1U << (get_count_order(cntb) - get_count_order(cnta));
504 pr_info("Max. logical packages: %3u\n", cnta);
505 pr_info("Max. logical dies: %3u\n", cntb);
506 pr_info("Max. dies per package: %3u\n", __max_dies_per_package);
508 cnta = domain_weight(TOPO_CORE_DOMAIN);
509 cntb = domain_weight(TOPO_SMT_DOMAIN);
511 * Can't use order delta here as order(cnta) can be equal
512 * order(cntb) even if cnta != cntb.
514 __max_threads_per_core = DIV_ROUND_UP(cntb, cnta);
515 pr_info("Max. threads per core: %3u\n", __max_threads_per_core);
517 firstid = find_first_bit(apic_maps[TOPO_SMT_DOMAIN].map, MAX_LOCAL_APIC);
518 __num_cores_per_package = topology_unit_count(firstid, TOPO_CORE_DOMAIN, TOPO_PKG_DOMAIN);
519 pr_info("Num. cores per package: %3u\n", __num_cores_per_package);
520 __num_threads_per_package = topology_unit_count(firstid, TOPO_SMT_DOMAIN, TOPO_PKG_DOMAIN);
521 pr_info("Num. threads per package: %3u\n", __num_threads_per_package);
523 pr_info("Allowing %u present CPUs plus %u hotplug CPUs\n", assigned, disabled);
524 if (topo_info.nr_rejected_cpus)
525 pr_info("Rejected CPUs %u\n", topo_info.nr_rejected_cpus);
527 init_cpu_present(cpumask_of(0));
528 init_cpu_possible(cpumask_of(0));
530 /* Assign CPU numbers to non-present CPUs */
531 for (apicid = 0; disabled; disabled--, apicid++) {
532 apicid = find_next_andnot_bit(apic_maps[TOPO_SMT_DOMAIN].map, phys_cpu_present_map,
533 MAX_LOCAL_APIC, apicid);
534 if (apicid >= MAX_LOCAL_APIC)
536 cpuid_to_apicid[topo_info.nr_assigned_cpus++] = apicid;
539 for (cpu = 0; cpu < allowed; cpu++) {
540 apicid = cpuid_to_apicid[cpu];
542 set_cpu_possible(cpu, true);
544 if (apicid == BAD_APICID)
547 cpu_mark_primary_thread(cpu, apicid);
548 set_cpu_present(cpu, test_bit(apicid, phys_cpu_present_map));
553 * Late SMP disable after sizing CPU masks when APIC/IOAPIC setup failed.
555 void __init topology_reset_possible_cpus_up(void)
557 init_cpu_present(cpumask_of(0));
558 init_cpu_possible(cpumask_of(0));
560 bitmap_zero(phys_cpu_present_map, MAX_LOCAL_APIC);
561 if (topo_info.boot_cpu_apic_id != BAD_APICID)
562 set_bit(topo_info.boot_cpu_apic_id, phys_cpu_present_map);
565 static int __init setup_possible_cpus(char *str)
567 get_option(&str, &max_possible_cpus);
570 early_param("possible_cpus", setup_possible_cpus);