Merge tag 'selinux-pr-20221212' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / x86 / kernel / setup_percpu.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
40685236
JP
2#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3
4fe29a85 4#include <linux/kernel.h>
523d0fb4 5#include <linux/export.h>
4fe29a85 6#include <linux/init.h>
2013288f 7#include <linux/memblock.h>
4fe29a85 8#include <linux/percpu.h>
1ecd2765 9#include <linux/kexec.h>
17b4cceb 10#include <linux/crash_dump.h>
8a87dd9a
JSR
11#include <linux/smp.h>
12#include <linux/topology.h>
5f5d8405 13#include <linux/pfn.h>
b3883a9a 14#include <linux/stackprotector.h>
4fe29a85
GOC
15#include <asm/sections.h>
16#include <asm/processor.h>
523d0fb4 17#include <asm/desc.h>
4fe29a85 18#include <asm/setup.h>
0fc0906e 19#include <asm/mpspec.h>
76eb4131 20#include <asm/apicdef.h>
1ecd2765 21#include <asm/highmem.h>
1a51e3a0 22#include <asm/proto.h>
06879033 23#include <asm/cpumask.h>
34019be1 24#include <asm/cpu.h>
76eb4131 25
0816b0f0 26DEFINE_PER_CPU_READ_MOSTLY(int, cpu_number);
ea927906 27EXPORT_PER_CPU_SYMBOL(cpu_number);
ea927906 28
1688401a
BG
29#ifdef CONFIG_X86_64
30#define BOOT_PERCPU_OFFSET ((unsigned long)__per_cpu_load)
31#else
32#define BOOT_PERCPU_OFFSET 0
33#endif
34
2c773dd3 35DEFINE_PER_CPU_READ_MOSTLY(unsigned long, this_cpu_off) = BOOT_PERCPU_OFFSET;
1688401a
BG
36EXPORT_PER_CPU_SYMBOL(this_cpu_off);
37
404f6aac 38unsigned long __per_cpu_offset[NR_CPUS] __ro_after_init = {
34019be1 39 [0 ... NR_CPUS-1] = BOOT_PERCPU_OFFSET,
9939ddaf 40};
9939ddaf 41EXPORT_SYMBOL(__per_cpu_offset);
4fe29a85 42
6b19b0c2
TH
43/*
44 * On x86_64 symbols referenced from code should be reachable using
45 * 32bit relocations. Reserve space for static percpu variables in
46 * modules so that they are always served from the first chunk which
47 * is located at the percpu segment base. On x86_32, anything can
48 * address anywhere. No need to reserve space in the first chunk.
49 */
50#ifdef CONFIG_X86_64
51#define PERCPU_FIRST_CHUNK_RESERVE PERCPU_MODULE_RESERVE
52#else
53#define PERCPU_FIRST_CHUNK_RESERVE 0
54#endif
55
4518e6a0 56#ifdef CONFIG_X86_32
89c92151
TH
57/**
58 * pcpu_need_numa - determine percpu allocation needs to consider NUMA
59 *
60 * If NUMA is not configured or there is only one NUMA node available,
61 * there is no reason to consider NUMA. This function determines
62 * whether percpu allocation should consider NUMA or not.
63 *
64 * RETURNS:
65 * true if NUMA should be considered; otherwise, false.
66 */
67static bool __init pcpu_need_numa(void)
68{
a9ee6cf5 69#ifdef CONFIG_NUMA
89c92151
TH
70 pg_data_t *last = NULL;
71 unsigned int cpu;
72
73 for_each_possible_cpu(cpu) {
74 int node = early_cpu_to_node(cpu);
75
76 if (node_online(node) && NODE_DATA(node) &&
77 last && last != NODE_DATA(node))
78 return true;
79
80 last = NODE_DATA(node);
81 }
82#endif
83 return false;
84}
4518e6a0 85#endif
89c92151 86
4518e6a0 87static int __init pcpu_cpu_distance(unsigned int from, unsigned int to)
a530b795 88{
a9ee6cf5 89#ifdef CONFIG_NUMA
a530b795
TH
90 if (early_cpu_to_node(from) == early_cpu_to_node(to))
91 return LOCAL_DISTANCE;
92 else
93 return REMOTE_DISTANCE;
8ac83757 94#else
4518e6a0 95 return LOCAL_DISTANCE;
8ac83757 96#endif
89c92151
TH
97}
98
1ca3fb3a
KW
99static int __init pcpu_cpu_to_node(int cpu)
100{
101 return early_cpu_to_node(cpu);
102}
103
20c03576 104void __init pcpu_populate_pte(unsigned long addr)
458a3e64
TH
105{
106 populate_extra_pte(addr);
107}
108
b2d2f431
BG
109static inline void setup_percpu_segment(int cpu)
110{
111#ifdef CONFIG_X86_32
1dd439fe
TG
112 struct desc_struct d = GDT_ENTRY_INIT(0x8092, per_cpu_offset(cpu),
113 0xFFFFF);
b2d2f431 114
1dd439fe 115 write_gdt_entry(get_cpu_gdt_rw(cpu), GDT_ENTRY_PERCPU, &d, DESCTYPE_S);
b2d2f431
BG
116#endif
117}
118
4fe29a85
GOC
119void __init setup_per_cpu_areas(void)
120{
5f5d8405 121 unsigned int cpu;
11124411 122 unsigned long delta;
fb435d52 123 int rc;
a1681965 124
b9726c26 125 pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%u nr_node_ids:%u\n",
a1681965 126 NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
11124411 127
8ac83757 128 /*
4518e6a0
TH
129 * Allocate percpu area. Embedding allocator is our favorite;
130 * however, on NUMA configurations, it can result in very
131 * sparse unit mapping and vmalloc area isn't spacious enough
132 * on 32bit. Use page in that case.
8ac83757 133 */
4518e6a0
TH
134#ifdef CONFIG_X86_32
135 if (pcpu_chosen_fc == PCPU_FC_AUTO && pcpu_need_numa())
136 pcpu_chosen_fc = PCPU_FC_PAGE;
137#endif
fb435d52 138 rc = -EINVAL;
4518e6a0 139 if (pcpu_chosen_fc != PCPU_FC_PAGE) {
4518e6a0
TH
140 const size_t dyn_size = PERCPU_MODULE_RESERVE +
141 PERCPU_DYNAMIC_RESERVE - PERCPU_FIRST_CHUNK_RESERVE;
d5e28005
TH
142 size_t atom_size;
143
144 /*
145 * On 64bit, use PMD_SIZE for atom_size so that embedded
146 * percpu areas are aligned to PMD. This, in the future,
147 * can also allow using PMD mappings in vmalloc area. Use
148 * PAGE_SIZE on 32bit as vmalloc space is highly contended
149 * and large vmalloc area allocs can easily fail.
150 */
151#ifdef CONFIG_X86_64
152 atom_size = PMD_SIZE;
153#else
154 atom_size = PAGE_SIZE;
155#endif
4518e6a0
TH
156 rc = pcpu_embed_first_chunk(PERCPU_FIRST_CHUNK_RESERVE,
157 dyn_size, atom_size,
158 pcpu_cpu_distance,
23f91716 159 pcpu_cpu_to_node);
fb435d52 160 if (rc < 0)
8d3bcc44
KW
161 pr_warn("%s allocator failed (%d), falling back to page size\n",
162 pcpu_fc_names[pcpu_chosen_fc], rc);
fa8a7094 163 }
fb435d52 164 if (rc < 0)
4518e6a0 165 rc = pcpu_page_first_chunk(PERCPU_FIRST_CHUNK_RESERVE,
20c03576 166 pcpu_cpu_to_node);
fb435d52
TH
167 if (rc < 0)
168 panic("cannot initialize percpu area (err=%d)", rc);
11124411 169
5f5d8405 170 /* alrighty, percpu areas up and running */
11124411
TH
171 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
172 for_each_possible_cpu(cpu) {
fb435d52 173 per_cpu_offset(cpu) = delta + pcpu_unit_offsets[cpu];
26f80bd6 174 per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
ea927906 175 per_cpu(cpu_number, cpu) = cpu;
b2d2f431 176 setup_percpu_segment(cpu);
0d77e7f0 177 /*
cf3997f5
TH
178 * Copy data used in early init routines from the
179 * initial arrays to the per cpu data areas. These
180 * arrays then become expendable and the *_early_ptr's
181 * are zeroed indicating that the static arrays are
182 * gone.
0d77e7f0 183 */
ec70de8b 184#ifdef CONFIG_X86_LOCAL_APIC
0d77e7f0 185 per_cpu(x86_cpu_to_apicid, cpu) =
cf3997f5 186 early_per_cpu_map(x86_cpu_to_apicid, cpu);
0d77e7f0 187 per_cpu(x86_bios_cpu_apicid, cpu) =
cf3997f5 188 early_per_cpu_map(x86_bios_cpu_apicid, cpu);
3e9e57fa
VK
189 per_cpu(x86_cpu_to_acpiid, cpu) =
190 early_per_cpu_map(x86_cpu_to_acpiid, cpu);
ec70de8b 191#endif
4c321ff8
TH
192#ifdef CONFIG_X86_32
193 per_cpu(x86_cpu_to_logical_apicid, cpu) =
194 early_per_cpu_map(x86_cpu_to_logical_apicid, cpu);
195#endif
6470aff6
BG
196#ifdef CONFIG_NUMA
197 per_cpu(x86_cpu_to_node_map, cpu) =
cf3997f5 198 early_per_cpu_map(x86_cpu_to_node_map, cpu);
9aebbdb6 199 /*
a4ce96ac 200 * Ensure that the boot cpu numa_node is correct when the boot
9aebbdb6
YL
201 * cpu is on a node that doesn't have memory installed.
202 * Also cpu_up() will call cpu_to_node() for APs when
203 * MEMORY_HOTPLUG is defined, before per_cpu(numa_node) is set
204 * up later with c_init aka intel_init/amd_init.
205 * So set them all (boot cpu and all APs).
206 */
207 set_cpu_numa_node(cpu, early_cpu_to_node(cpu));
6470aff6 208#endif
1a51e3a0 209 /*
c273fb3b 210 * Up to this point, the boot CPU has been using .init.data
2697fbd5 211 * area. Reload any changed state for the boot CPU.
1a51e3a0 212 */
f6e9456c 213 if (!cpu)
552be871 214 switch_to_new_gdt(cpu);
4fe29a85
GOC
215 }
216
0d77e7f0 217 /* indicate the early static arrays will soon be gone */
22f25138 218#ifdef CONFIG_X86_LOCAL_APIC
0d77e7f0
BG
219 early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
220 early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
3e9e57fa 221 early_per_cpu_ptr(x86_cpu_to_acpiid) = NULL;
22f25138 222#endif
4c321ff8
TH
223#ifdef CONFIG_X86_32
224 early_per_cpu_ptr(x86_cpu_to_logical_apicid) = NULL;
225#endif
645a7919 226#ifdef CONFIG_NUMA
0d77e7f0
BG
227 early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
228#endif
9f0e8d04 229
9f248bde
MT
230 /* Setup node to cpumask map */
231 setup_node_to_cpumask_map();
c2d1cec1
MT
232
233 /* Setup cpu initialized, callin, callout masks */
234 setup_cpu_local_masks();
23b2a4dd 235
23b2a4dd 236 /*
d2b6dc61
AL
237 * Sync back kernel address range again. We already did this in
238 * setup_arch(), but percpu data also needs to be available in
7f0a002b
JR
239 * the smpboot asm and arch_sync_kernel_mappings() doesn't sync to
240 * swapper_pg_dir on 32-bit. The per-cpu mappings need to be available
241 * there too.
945fd17a
TG
242 *
243 * FIXME: Can the later sync in setup_cpu_entry_areas() replace
244 * this call?
23b2a4dd 245 */
945fd17a 246 sync_initial_page_table();
4fe29a85 247}