blob: 63d4628022728e779c0628349c4792285f5b403f [file] [log] [blame]
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -03001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/init.h>
4#include <linux/bootmem.h>
5#include <linux/percpu.h>
Bernhard Walle1ecd2762008-06-20 15:38:22 +02006#include <linux/kexec.h>
Yinghai Lu17b4cce2008-06-21 21:02:20 -07007#include <linux/crash_dump.h>
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +05308#include <linux/smp.h>
9#include <linux/topology.h>
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -030010#include <asm/sections.h>
11#include <asm/processor.h>
12#include <asm/setup.h>
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040013#include <asm/mpspec.h>
Alexey Starikovskiy76eb4132008-04-04 23:40:41 +040014#include <asm/apicdef.h>
Bernhard Walle1ecd2762008-06-20 15:38:22 +020015#include <asm/highmem.h>
Tejun Heo1a51e3a2009-01-13 20:41:35 +090016#include <asm/proto.h>
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053017#include <asm/cpumask.h>
Alexey Starikovskiy76eb4132008-04-04 23:40:41 +040018
Mike Travisc90aa892009-01-13 20:41:34 +090019#ifdef CONFIG_DEBUG_PER_CPU_MAPS
20# define DBG(x...) printk(KERN_DEBUG x)
21#else
22# define DBG(x...)
23#endif
24
James Bottomleyf8955eb2008-05-10 09:01:48 -050025#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +040026unsigned int num_processors;
27unsigned disabled_cpus __cpuinitdata;
28/* Processor that is doing the boot up */
29unsigned int boot_cpu_physical_apicid = -1U;
30EXPORT_SYMBOL(boot_cpu_physical_apicid);
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +053031unsigned int max_physical_apicid;
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +040032
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040033/* Bitmask of physically existing CPUs */
34physid_mask_t phys_cpu_present_map;
James Bottomleyf8955eb2008-05-10 09:01:48 -050035#endif
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040036
Mike Travisc90aa892009-01-13 20:41:34 +090037/*
38 * Map cpu index to physical APIC ID
39 */
Mike Travis23ca4bb2008-05-12 21:21:12 +020040DEFINE_EARLY_PER_CPU(u16, x86_cpu_to_apicid, BAD_APICID);
41DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID);
42EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
43EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
44
45#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
Mike Travisc90aa892009-01-13 20:41:34 +090046#define X86_64_NUMA 1 /* (used later) */
Mike Travis23ca4bb2008-05-12 21:21:12 +020047
Mike Travisc90aa892009-01-13 20:41:34 +090048/*
49 * Map cpu index to node index
50 */
Mike Travis23ca4bb2008-05-12 21:21:12 +020051DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
52EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
Mike Travis9f248bd2008-05-12 21:21:12 +020053
Mike Travisc90aa892009-01-13 20:41:34 +090054/*
55 * Which logical CPUs are on which nodes
56 */
Mike Travis9f248bd2008-05-12 21:21:12 +020057cpumask_t *node_to_cpumask_map;
58EXPORT_SYMBOL(node_to_cpumask_map);
59
Mike Travisc90aa892009-01-13 20:41:34 +090060/*
61 * Setup node_to_cpumask_map
62 */
Mike Travis9f248bd2008-05-12 21:21:12 +020063static void __init setup_node_to_cpumask_map(void);
64
65#else
66static inline void setup_node_to_cpumask_map(void) { }
Mike Travis23ca4bb2008-05-12 21:21:12 +020067#endif
68
Tejun Heo1a51e3a2009-01-13 20:41:35 +090069#ifdef CONFIG_X86_64
70void __cpuinit load_pda_offset(int cpu)
71{
72 /* Memory clobbers used to order pda/percpu accesses */
73 mb();
74 wrmsrl(MSR_GS_BASE, cpu_pda(cpu));
75 mb();
76}
77
78#endif /* CONFIG_SMP && CONFIG_X86_64 */
79
80#ifdef CONFIG_X86_64
81
82/* correctly size the local cpu masks */
83static void setup_cpu_local_masks(void)
84{
85 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
86 alloc_bootmem_cpumask_var(&cpu_callin_mask);
87 alloc_bootmem_cpumask_var(&cpu_callout_mask);
88 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
89}
90
91#else /* CONFIG_X86_32 */
92
93static inline void setup_cpu_local_masks(void)
94{
95}
96
97#endif /* CONFIG_X86_32 */
98
Mike Travisc90aa892009-01-13 20:41:34 +090099#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300100/*
101 * Copy data used in early init routines from the initial arrays to the
102 * per cpu data areas. These arrays then become expendable and the
103 * *_early_ptr's are zeroed indicating that the static arrays are gone.
104 */
105static void __init setup_per_cpu_maps(void)
106{
107 int cpu;
108
109 for_each_possible_cpu(cpu) {
Mike Travis23ca4bb2008-05-12 21:21:12 +0200110 per_cpu(x86_cpu_to_apicid, cpu) =
111 early_per_cpu_map(x86_cpu_to_apicid, cpu);
Mike Travisb447a462008-03-25 15:06:51 -0700112 per_cpu(x86_bios_cpu_apicid, cpu) =
Mike Travis23ca4bb2008-05-12 21:21:12 +0200113 early_per_cpu_map(x86_bios_cpu_apicid, cpu);
114#ifdef X86_64_NUMA
Mike Travisb447a462008-03-25 15:06:51 -0700115 per_cpu(x86_cpu_to_node_map, cpu) =
Mike Travis23ca4bb2008-05-12 21:21:12 +0200116 early_per_cpu_map(x86_cpu_to_node_map, cpu);
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300117#endif
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300118 }
119
120 /* indicate the early static arrays will soon be gone */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200121 early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
122 early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
123#ifdef X86_64_NUMA
124 early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300125#endif
126}
127
128#ifdef CONFIG_X86_32
129/*
130 * Great future not-so-futuristic plan: make i386 and x86_64 do it
131 * the same way
132 */
133unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
134EXPORT_SYMBOL(__per_cpu_offset);
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900135#endif
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300136
137/*
138 * Great future plan:
139 * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
140 * Always point %gs to its beginning
141 */
142void __init setup_per_cpu_areas(void)
143{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200144 ssize_t size, old_size;
Mike Travis3461b0a2008-05-12 21:21:13 +0200145 char *ptr;
146 int cpu;
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700147 unsigned long align = 1;
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300148
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300149 /* Copy section for each CPU (we discard the original) */
Yinghai Lu1f3fcd42008-08-19 20:49:44 -0700150 old_size = PERCPU_ENOUGH_ROOM;
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700151 align = max_t(unsigned long, PAGE_SIZE, align);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200152 size = roundup(old_size, align);
Mike Travisa1681962008-12-16 17:33:53 -0800153
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300154 pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
Mike Travisa1681962008-12-16 17:33:53 -0800155 NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
156
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300157 pr_info("PERCPU: Allocating %zd bytes of per cpu data\n", size);
Mike Travisb447a462008-03-25 15:06:51 -0700158
Mike Travis3461b0a2008-05-12 21:21:13 +0200159 for_each_possible_cpu(cpu) {
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300160#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700161 ptr = __alloc_bootmem(size, align,
162 __pa(MAX_DMA_ADDRESS));
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300163#else
Mike Travis3461b0a2008-05-12 21:21:13 +0200164 int node = early_cpu_to_node(cpu);
Mike Travisb447a462008-03-25 15:06:51 -0700165 if (!node_online(node) || !NODE_DATA(node)) {
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700166 ptr = __alloc_bootmem(size, align,
167 __pa(MAX_DMA_ADDRESS));
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300168 pr_info("cpu %d has no node %d or node-local memory\n",
Mike Travis3461b0a2008-05-12 21:21:13 +0200169 cpu, node);
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300170 pr_debug("per cpu data for cpu%d at %016lx\n",
171 cpu, __pa(ptr));
172 } else {
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700173 ptr = __alloc_bootmem_node(NODE_DATA(node), size, align,
174 __pa(MAX_DMA_ADDRESS));
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300175 pr_debug("per cpu data for cpu%d on node%d at %016lx\n",
176 cpu, node, __pa(ptr));
Yinghai Lua677f582008-07-29 00:37:10 -0700177 }
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300178#endif
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900179
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900180 memcpy(ptr, __per_cpu_load, __per_cpu_end - __per_cpu_start);
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900181#ifdef CONFIG_X86_64
182 cpu_pda(cpu) = (void *)ptr;
183
184 /*
185 * CPU0 modified pda in the init data area, reload pda
186 * offset for CPU0 and clear the area for others.
187 */
188 if (cpu == 0)
189 load_pda_offset(0);
190 else
191 memset(cpu_pda(cpu), 0, sizeof(*cpu_pda(cpu)));
192#endif
193 per_cpu_offset(cpu) = ptr - __per_cpu_start;
Mike Travisc90aa892009-01-13 20:41:34 +0900194
195 DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300196 }
197
Mike Travisb447a462008-03-25 15:06:51 -0700198 /* Setup percpu data maps */
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300199 setup_per_cpu_maps();
Mike Travis9f0e8d02008-04-04 18:11:01 -0700200
Mike Travis9f248bd2008-05-12 21:21:12 +0200201 /* Setup node to cpumask map */
202 setup_node_to_cpumask_map();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800203
204 /* Setup cpu initialized, callin, callout masks */
205 setup_cpu_local_masks();
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300206}
207
208#endif
Huang, Yingc45a7072008-06-02 14:26:25 +0800209
Mike Travis23ca4bb2008-05-12 21:21:12 +0200210#ifdef X86_64_NUMA
Mike Travis9f248bd2008-05-12 21:21:12 +0200211
212/*
213 * Allocate node_to_cpumask_map based on number of available nodes
214 * Requires node_possible_map to be valid.
215 *
216 * Note: node_to_cpumask() is not valid until after this is done.
Mike Travisc90aa892009-01-13 20:41:34 +0900217 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
Mike Travis9f248bd2008-05-12 21:21:12 +0200218 */
219static void __init setup_node_to_cpumask_map(void)
220{
221 unsigned int node, num = 0;
222 cpumask_t *map;
223
224 /* setup nr_node_ids if not done yet */
225 if (nr_node_ids == MAX_NUMNODES) {
226 for_each_node_mask(node, node_possible_map)
227 num = node;
228 nr_node_ids = num + 1;
229 }
230
231 /* allocate the map */
232 map = alloc_bootmem_low(nr_node_ids * sizeof(cpumask_t));
Mike Travisc90aa892009-01-13 20:41:34 +0900233 DBG("node_to_cpumask_map at %p for %d nodes\n", map, nr_node_ids);
Mike Travis9f248bd2008-05-12 21:21:12 +0200234
Gustavo F. Padovan55410792008-10-15 10:37:04 -0300235 pr_debug("Node to cpumask map at %p for %d nodes\n",
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200236 map, nr_node_ids);
Mike Travis9f248bd2008-05-12 21:21:12 +0200237
238 /* node_to_cpumask() will now work */
239 node_to_cpumask_map = map;
240}
241
Mike Travis23ca4bb2008-05-12 21:21:12 +0200242void __cpuinit numa_set_node(int cpu, int node)
243{
244 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
245
Mike Travisc90aa892009-01-13 20:41:34 +0900246 /* early setting, no percpu area yet */
247 if (cpu_to_node_map) {
Mike Travis23ca4bb2008-05-12 21:21:12 +0200248 cpu_to_node_map[cpu] = node;
Mike Travisc90aa892009-01-13 20:41:34 +0900249 return;
250 }
Mike Travis23ca4bb2008-05-12 21:21:12 +0200251
Mike Travisc90aa892009-01-13 20:41:34 +0900252#ifdef CONFIG_DEBUG_PER_CPU_MAPS
253 if (cpu >= nr_cpu_ids || !per_cpu_offset(cpu)) {
254 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
255 dump_stack();
256 return;
257 }
258#endif
259 per_cpu(x86_cpu_to_node_map, cpu) = node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200260
Mike Travisc90aa892009-01-13 20:41:34 +0900261 if (node != NUMA_NO_NODE)
262 cpu_pda(cpu)->nodenumber = node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200263}
264
265void __cpuinit numa_clear_node(int cpu)
266{
267 numa_set_node(cpu, NUMA_NO_NODE);
268}
269
Mike Travis9f248bd2008-05-12 21:21:12 +0200270#ifndef CONFIG_DEBUG_PER_CPU_MAPS
271
Mike Travis23ca4bb2008-05-12 21:21:12 +0200272void __cpuinit numa_add_cpu(int cpu)
273{
274 cpu_set(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
275}
276
277void __cpuinit numa_remove_cpu(int cpu)
278{
Mike Travisc90aa892009-01-13 20:41:34 +0900279 cpu_clear(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Mike Travis23ca4bb2008-05-12 21:21:12 +0200280}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200281
Mike Travis9f248bd2008-05-12 21:21:12 +0200282#else /* CONFIG_DEBUG_PER_CPU_MAPS */
283
284/*
285 * --------- debug versions of the numa functions ---------
286 */
287static void __cpuinit numa_set_cpumask(int cpu, int enable)
288{
Mike Travisc90aa892009-01-13 20:41:34 +0900289 int node = early_cpu_to_node(cpu);
Mike Travis9f248bd2008-05-12 21:21:12 +0200290 cpumask_t *mask;
291 char buf[64];
292
293 if (node_to_cpumask_map == NULL) {
294 printk(KERN_ERR "node_to_cpumask_map NULL\n");
295 dump_stack();
296 return;
297 }
298
299 mask = &node_to_cpumask_map[node];
300 if (enable)
301 cpu_set(cpu, *mask);
302 else
303 cpu_clear(cpu, *mask);
304
Rusty Russell29c01772008-12-13 21:20:25 +1030305 cpulist_scnprintf(buf, sizeof(buf), mask);
Mike Travis9f248bd2008-05-12 21:21:12 +0200306 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +0530307 enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf);
308}
Mike Travis9f248bd2008-05-12 21:21:12 +0200309
310void __cpuinit numa_add_cpu(int cpu)
311{
312 numa_set_cpumask(cpu, 1);
313}
314
315void __cpuinit numa_remove_cpu(int cpu)
316{
317 numa_set_cpumask(cpu, 0);
318}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200319
320int cpu_to_node(int cpu)
321{
322 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
323 printk(KERN_WARNING
324 "cpu_to_node(%d): usage too early!\n", cpu);
325 dump_stack();
326 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
327 }
328 return per_cpu(x86_cpu_to_node_map, cpu);
329}
330EXPORT_SYMBOL(cpu_to_node);
331
Mike Travis9f248bd2008-05-12 21:21:12 +0200332/*
333 * Same function as cpu_to_node() but used if called before the
334 * per_cpu areas are setup.
335 */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200336int early_cpu_to_node(int cpu)
337{
338 if (early_per_cpu_ptr(x86_cpu_to_node_map))
339 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
340
341 if (!per_cpu_offset(cpu)) {
342 printk(KERN_WARNING
343 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
Mike Travis9f248bd2008-05-12 21:21:12 +0200344 dump_stack();
Mike Travis23ca4bb2008-05-12 21:21:12 +0200345 return NUMA_NO_NODE;
346 }
347 return per_cpu(x86_cpu_to_node_map, cpu);
348}
Mike Travis9f248bd2008-05-12 21:21:12 +0200349
Mike Travis6a2f47c2008-06-27 10:10:13 -0700350
351/* empty cpumask */
352static const cpumask_t cpu_mask_none;
353
Mike Travis9f248bd2008-05-12 21:21:12 +0200354/*
355 * Returns a pointer to the bitmask of CPUs on Node 'node'.
356 */
Rusty Russell393d68f2008-12-26 22:23:38 +1030357const cpumask_t *cpumask_of_node(int node)
Mike Travis9f248bd2008-05-12 21:21:12 +0200358{
359 if (node_to_cpumask_map == NULL) {
360 printk(KERN_WARNING
Rusty Russell393d68f2008-12-26 22:23:38 +1030361 "cpumask_of_node(%d): no node_to_cpumask_map!\n",
Mike Travis9f248bd2008-05-12 21:21:12 +0200362 node);
363 dump_stack();
Mike Travis11369f352008-07-08 14:35:21 -0700364 return (const cpumask_t *)&cpu_online_map;
Mike Travis9f248bd2008-05-12 21:21:12 +0200365 }
Mike Travis6a2f47c2008-06-27 10:10:13 -0700366 if (node >= nr_node_ids) {
367 printk(KERN_WARNING
Rusty Russell393d68f2008-12-26 22:23:38 +1030368 "cpumask_of_node(%d): node > nr_node_ids(%d)\n",
Mike Travis6a2f47c2008-06-27 10:10:13 -0700369 node, nr_node_ids);
370 dump_stack();
Mike Travis11369f352008-07-08 14:35:21 -0700371 return &cpu_mask_none;
Mike Travis6a2f47c2008-06-27 10:10:13 -0700372 }
Mike Travis11369f352008-07-08 14:35:21 -0700373 return &node_to_cpumask_map[node];
Mike Travis9f248bd2008-05-12 21:21:12 +0200374}
Rusty Russell393d68f2008-12-26 22:23:38 +1030375EXPORT_SYMBOL(cpumask_of_node);
Mike Travis9f248bd2008-05-12 21:21:12 +0200376
377/*
378 * Returns a bitmask of CPUs on Node 'node'.
Mike Travis6a2f47c2008-06-27 10:10:13 -0700379 *
380 * Side note: this function creates the returned cpumask on the stack
381 * so with a high NR_CPUS count, excessive stack space is used. The
382 * node_to_cpumask_ptr function should be used whenever possible.
Mike Travis9f248bd2008-05-12 21:21:12 +0200383 */
384cpumask_t node_to_cpumask(int node)
385{
386 if (node_to_cpumask_map == NULL) {
387 printk(KERN_WARNING
388 "node_to_cpumask(%d): no node_to_cpumask_map!\n", node);
389 dump_stack();
390 return cpu_online_map;
391 }
Mike Travis6a2f47c2008-06-27 10:10:13 -0700392 if (node >= nr_node_ids) {
393 printk(KERN_WARNING
394 "node_to_cpumask(%d): node > nr_node_ids(%d)\n",
395 node, nr_node_ids);
396 dump_stack();
397 return cpu_mask_none;
398 }
Mike Travis9f248bd2008-05-12 21:21:12 +0200399 return node_to_cpumask_map[node];
400}
401EXPORT_SYMBOL(node_to_cpumask);
402
403/*
404 * --------- end of debug versions of the numa functions ---------
405 */
406
407#endif /* CONFIG_DEBUG_PER_CPU_MAPS */
408
409#endif /* X86_64_NUMA */
Bernhard Walle1ecd2762008-06-20 15:38:22 +0200410