blob: cdc00543d375db6bf1f431c8580759414e8157ef [file] [log] [blame]
Rusty Russell71ee73e2009-03-13 14:49:52 +10301/* Common code for 32 and 64-bit NUMA */
Tejun Heoa4106ea2011-05-02 14:18:53 +02002#include <linux/kernel.h>
3#include <linux/mm.h>
4#include <linux/string.h>
5#include <linux/init.h>
Rusty Russell71ee73e2009-03-13 14:49:52 +10306#include <linux/bootmem.h>
Tejun Heoa4106ea2011-05-02 14:18:53 +02007#include <linux/memblock.h>
8#include <linux/mmzone.h>
9#include <linux/ctype.h>
10#include <linux/module.h>
11#include <linux/nodemask.h>
12#include <linux/sched.h>
13#include <linux/topology.h>
14
15#include <asm/e820.h>
16#include <asm/proto.h>
17#include <asm/dma.h>
Jan Beulich90321602011-01-19 08:57:21 +000018#include <asm/acpi.h>
Tejun Heoa4106ea2011-05-02 14:18:53 +020019#include <asm/amd_nb.h>
20
21#include "numa_internal.h"
Jan Beulich90321602011-01-19 08:57:21 +000022
23int __initdata numa_off;
Tejun Heoe6df5952011-05-02 14:18:53 +020024nodemask_t numa_nodes_parsed __initdata;
Jan Beulich90321602011-01-19 08:57:21 +000025
Tejun Heoa4106ea2011-05-02 14:18:53 +020026struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
27EXPORT_SYMBOL(node_data);
28
29static struct numa_meminfo numa_meminfo
30#ifndef CONFIG_MEMORY_HOTPLUG
31__initdata
32#endif
33;
34
35static int numa_distance_cnt;
36static u8 *numa_distance;
Tejun Heoa4106ea2011-05-02 14:18:53 +020037
Jan Beulich90321602011-01-19 08:57:21 +000038static __init int numa_setup(char *opt)
39{
40 if (!opt)
41 return -EINVAL;
42 if (!strncmp(opt, "off", 3))
43 numa_off = 1;
44#ifdef CONFIG_NUMA_EMU
45 if (!strncmp(opt, "fake=", 5))
46 numa_emu_cmdline(opt + 5);
47#endif
48#ifdef CONFIG_ACPI_NUMA
49 if (!strncmp(opt, "noacpi", 6))
50 acpi_numa = -1;
51#endif
52 return 0;
53}
54early_param("numa", numa_setup);
Rusty Russell71ee73e2009-03-13 14:49:52 +103055
Rusty Russell71ee73e2009-03-13 14:49:52 +103056/*
Tejun Heobbc9e2f2011-01-23 14:37:39 +010057 * apicid, cpu, node mappings
Rusty Russell71ee73e2009-03-13 14:49:52 +103058 */
Tejun Heobbc9e2f2011-01-23 14:37:39 +010059s16 __apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
60 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
61};
62
Tejun Heo6bd26272011-05-02 14:18:52 +020063int __cpuinit numa_cpu_node(int cpu)
64{
65 int apicid = early_per_cpu(x86_cpu_to_apicid, cpu);
66
67 if (apicid != BAD_APICID)
68 return __apicid_to_node[apicid];
69 return NUMA_NO_NODE;
70}
71
Rusty Russellc032ef602009-03-13 14:49:53 +103072cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
Rusty Russell71ee73e2009-03-13 14:49:52 +103073EXPORT_SYMBOL(node_to_cpumask_map);
74
75/*
Tejun Heo645a7912011-01-23 14:37:40 +010076 * Map cpu index to node index
77 */
Tejun Heo645a7912011-01-23 14:37:40 +010078DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
Tejun Heo645a7912011-01-23 14:37:40 +010079EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
80
81void __cpuinit numa_set_node(int cpu, int node)
82{
83 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
84
85 /* early setting, no percpu area yet */
86 if (cpu_to_node_map) {
87 cpu_to_node_map[cpu] = node;
88 return;
89 }
90
91#ifdef CONFIG_DEBUG_PER_CPU_MAPS
92 if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
93 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
94 dump_stack();
95 return;
96 }
97#endif
98 per_cpu(x86_cpu_to_node_map, cpu) = node;
99
100 if (node != NUMA_NO_NODE)
101 set_cpu_numa_node(cpu, node);
102}
103
104void __cpuinit numa_clear_node(int cpu)
105{
106 numa_set_node(cpu, NUMA_NO_NODE);
107}
108
109/*
Rusty Russell71ee73e2009-03-13 14:49:52 +1030110 * Allocate node_to_cpumask_map based on number of available nodes
111 * Requires node_possible_map to be valid.
112 *
113 * Note: node_to_cpumask() is not valid until after this is done.
114 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
115 */
116void __init setup_node_to_cpumask_map(void)
117{
118 unsigned int node, num = 0;
Rusty Russell71ee73e2009-03-13 14:49:52 +1030119
120 /* setup nr_node_ids if not done yet */
121 if (nr_node_ids == MAX_NUMNODES) {
122 for_each_node_mask(node, node_possible_map)
123 num = node;
124 nr_node_ids = num + 1;
125 }
126
127 /* allocate the map */
Rusty Russellc032ef602009-03-13 14:49:53 +1030128 for (node = 0; node < nr_node_ids; node++)
129 alloc_bootmem_cpumask_var(&node_to_cpumask_map[node]);
Rusty Russell71ee73e2009-03-13 14:49:52 +1030130
Rusty Russellc032ef602009-03-13 14:49:53 +1030131 /* cpumask_of_node() will now work */
132 pr_debug("Node to cpumask map for %d nodes\n", nr_node_ids);
Rusty Russell71ee73e2009-03-13 14:49:52 +1030133}
134
Tejun Heoa4106ea2011-05-02 14:18:53 +0200135static int __init numa_add_memblk_to(int nid, u64 start, u64 end,
136 struct numa_meminfo *mi)
137{
138 /* ignore zero length blks */
139 if (start == end)
140 return 0;
141
142 /* whine about and ignore invalid blks */
143 if (start > end || nid < 0 || nid >= MAX_NUMNODES) {
144 pr_warning("NUMA: Warning: invalid memblk node %d (%Lx-%Lx)\n",
145 nid, start, end);
146 return 0;
147 }
148
149 if (mi->nr_blks >= NR_NODE_MEMBLKS) {
150 pr_err("NUMA: too many memblk ranges\n");
151 return -EINVAL;
152 }
153
154 mi->blk[mi->nr_blks].start = start;
155 mi->blk[mi->nr_blks].end = end;
156 mi->blk[mi->nr_blks].nid = nid;
157 mi->nr_blks++;
158 return 0;
159}
160
161/**
162 * numa_remove_memblk_from - Remove one numa_memblk from a numa_meminfo
163 * @idx: Index of memblk to remove
164 * @mi: numa_meminfo to remove memblk from
165 *
166 * Remove @idx'th numa_memblk from @mi by shifting @mi->blk[] and
167 * decrementing @mi->nr_blks.
168 */
169void __init numa_remove_memblk_from(int idx, struct numa_meminfo *mi)
170{
171 mi->nr_blks--;
172 memmove(&mi->blk[idx], &mi->blk[idx + 1],
173 (mi->nr_blks - idx) * sizeof(mi->blk[0]));
174}
175
176/**
177 * numa_add_memblk - Add one numa_memblk to numa_meminfo
178 * @nid: NUMA node ID of the new memblk
179 * @start: Start address of the new memblk
180 * @end: End address of the new memblk
181 *
182 * Add a new memblk to the default numa_meminfo.
183 *
184 * RETURNS:
185 * 0 on success, -errno on failure.
186 */
187int __init numa_add_memblk(int nid, u64 start, u64 end)
188{
189 return numa_add_memblk_to(nid, start, end, &numa_meminfo);
190}
191
Yinghai Lua56bca82011-05-02 17:24:49 +0200192/* Initialize NODE_DATA for a node on the local memory */
193static void __init setup_node_data(int nid, u64 start, u64 end)
Tejun Heoa4106ea2011-05-02 14:18:53 +0200194{
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200195 const u64 nd_low = PFN_PHYS(MAX_DMA_PFN);
196 const u64 nd_high = PFN_PHYS(max_pfn_mapped);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200197 const size_t nd_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
Tejun Heo7888e962011-05-02 14:18:54 +0200198 bool remapped = false;
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200199 u64 nd_pa;
Tejun Heo7888e962011-05-02 14:18:54 +0200200 void *nd;
Tejun Heoa4106ea2011-05-02 14:18:53 +0200201 int tnid;
202
203 /*
204 * Don't confuse VM with a node that doesn't have the
205 * minimum amount of memory:
206 */
207 if (end && (end - start) < NODE_MIN_SIZE)
208 return;
209
Tejun Heo7888e962011-05-02 14:18:54 +0200210 /* initialize remap allocator before aligning to ZONE_ALIGN */
211 init_alloc_remap(nid, start, end);
212
Tejun Heoa4106ea2011-05-02 14:18:53 +0200213 start = roundup(start, ZONE_ALIGN);
214
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200215 printk(KERN_INFO "Initmem setup node %d %016Lx-%016Lx\n",
Tejun Heoa4106ea2011-05-02 14:18:53 +0200216 nid, start, end);
217
218 /*
Tejun Heo7888e962011-05-02 14:18:54 +0200219 * Allocate node data. Try remap allocator first, node-local
220 * memory and then any node. Never allocate in DMA zone.
Tejun Heoa4106ea2011-05-02 14:18:53 +0200221 */
Tejun Heo7888e962011-05-02 14:18:54 +0200222 nd = alloc_remap(nid, nd_size);
223 if (nd) {
224 nd_pa = __pa(nd);
225 remapped = true;
226 } else {
227 nd_pa = memblock_x86_find_in_range_node(nid, nd_low, nd_high,
Tejun Heoa4106ea2011-05-02 14:18:53 +0200228 nd_size, SMP_CACHE_BYTES);
Tejun Heo7888e962011-05-02 14:18:54 +0200229 if (nd_pa == MEMBLOCK_ERROR)
230 nd_pa = memblock_find_in_range(nd_low, nd_high,
231 nd_size, SMP_CACHE_BYTES);
232 if (nd_pa == MEMBLOCK_ERROR) {
233 pr_err("Cannot find %zu bytes in node %d\n",
234 nd_size, nid);
235 return;
236 }
237 memblock_x86_reserve_range(nd_pa, nd_pa + nd_size, "NODE_DATA");
238 nd = __va(nd_pa);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200239 }
Tejun Heoa4106ea2011-05-02 14:18:53 +0200240
241 /* report and initialize */
Tejun Heo7888e962011-05-02 14:18:54 +0200242 printk(KERN_INFO " NODE_DATA [%016Lx - %016Lx]%s\n",
243 nd_pa, nd_pa + nd_size - 1, remapped ? " (remapped)" : "");
Tejun Heoa4106ea2011-05-02 14:18:53 +0200244 tnid = early_pfn_to_nid(nd_pa >> PAGE_SHIFT);
Tejun Heo7888e962011-05-02 14:18:54 +0200245 if (!remapped && tnid != nid)
Tejun Heoa4106ea2011-05-02 14:18:53 +0200246 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nid, tnid);
247
Tejun Heo7888e962011-05-02 14:18:54 +0200248 node_data[nid] = nd;
Tejun Heoa4106ea2011-05-02 14:18:53 +0200249 memset(NODE_DATA(nid), 0, sizeof(pg_data_t));
250 NODE_DATA(nid)->node_id = nid;
251 NODE_DATA(nid)->node_start_pfn = start >> PAGE_SHIFT;
252 NODE_DATA(nid)->node_spanned_pages = (end - start) >> PAGE_SHIFT;
253
254 node_set_online(nid);
255}
256
257/**
258 * numa_cleanup_meminfo - Cleanup a numa_meminfo
259 * @mi: numa_meminfo to clean up
260 *
261 * Sanitize @mi by merging and removing unncessary memblks. Also check for
262 * conflicts and clear unused memblks.
263 *
264 * RETURNS:
265 * 0 on success, -errno on failure.
266 */
267int __init numa_cleanup_meminfo(struct numa_meminfo *mi)
268{
269 const u64 low = 0;
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200270 const u64 high = PFN_PHYS(max_pfn);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200271 int i, j, k;
272
Yinghai Lue5a10c12011-05-02 17:24:49 +0200273 /* first, trim all entries */
Tejun Heoa4106ea2011-05-02 14:18:53 +0200274 for (i = 0; i < mi->nr_blks; i++) {
275 struct numa_memblk *bi = &mi->blk[i];
276
277 /* make sure all blocks are inside the limits */
278 bi->start = max(bi->start, low);
279 bi->end = min(bi->end, high);
280
281 /* and there's no empty block */
Yinghai Lue5a10c12011-05-02 17:24:49 +0200282 if (bi->start >= bi->end)
Tejun Heoa4106ea2011-05-02 14:18:53 +0200283 numa_remove_memblk_from(i--, mi);
Yinghai Lue5a10c12011-05-02 17:24:49 +0200284 }
285
286 /* merge neighboring / overlapping entries */
287 for (i = 0; i < mi->nr_blks; i++) {
288 struct numa_memblk *bi = &mi->blk[i];
Tejun Heoa4106ea2011-05-02 14:18:53 +0200289
290 for (j = i + 1; j < mi->nr_blks; j++) {
291 struct numa_memblk *bj = &mi->blk[j];
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200292 u64 start, end;
Tejun Heoa4106ea2011-05-02 14:18:53 +0200293
294 /*
295 * See whether there are overlapping blocks. Whine
296 * about but allow overlaps of the same nid. They
297 * will be merged below.
298 */
299 if (bi->end > bj->start && bi->start < bj->end) {
300 if (bi->nid != bj->nid) {
301 pr_err("NUMA: node %d (%Lx-%Lx) overlaps with node %d (%Lx-%Lx)\n",
302 bi->nid, bi->start, bi->end,
303 bj->nid, bj->start, bj->end);
304 return -EINVAL;
305 }
306 pr_warning("NUMA: Warning: node %d (%Lx-%Lx) overlaps with itself (%Lx-%Lx)\n",
307 bi->nid, bi->start, bi->end,
308 bj->start, bj->end);
309 }
310
311 /*
312 * Join together blocks on the same node, holes
313 * between which don't overlap with memory on other
314 * nodes.
315 */
316 if (bi->nid != bj->nid)
317 continue;
Yinghai Lue5a10c12011-05-02 17:24:49 +0200318 start = min(bi->start, bj->start);
319 end = max(bi->end, bj->end);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200320 for (k = 0; k < mi->nr_blks; k++) {
321 struct numa_memblk *bk = &mi->blk[k];
322
323 if (bi->nid == bk->nid)
324 continue;
325 if (start < bk->end && end > bk->start)
326 break;
327 }
328 if (k < mi->nr_blks)
329 continue;
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200330 printk(KERN_INFO "NUMA: Node %d [%Lx,%Lx) + [%Lx,%Lx) -> [%Lx,%Lx)\n",
Tejun Heoa4106ea2011-05-02 14:18:53 +0200331 bi->nid, bi->start, bi->end, bj->start, bj->end,
332 start, end);
333 bi->start = start;
334 bi->end = end;
335 numa_remove_memblk_from(j--, mi);
336 }
337 }
338
Yinghai Lue5a10c12011-05-02 17:24:49 +0200339 /* clear unused ones */
Tejun Heoa4106ea2011-05-02 14:18:53 +0200340 for (i = mi->nr_blks; i < ARRAY_SIZE(mi->blk); i++) {
341 mi->blk[i].start = mi->blk[i].end = 0;
342 mi->blk[i].nid = NUMA_NO_NODE;
343 }
344
345 return 0;
346}
347
348/*
349 * Set nodes, which have memory in @mi, in *@nodemask.
350 */
351static void __init numa_nodemask_from_meminfo(nodemask_t *nodemask,
352 const struct numa_meminfo *mi)
353{
354 int i;
355
356 for (i = 0; i < ARRAY_SIZE(mi->blk); i++)
357 if (mi->blk[i].start != mi->blk[i].end &&
358 mi->blk[i].nid != NUMA_NO_NODE)
359 node_set(mi->blk[i].nid, *nodemask);
360}
361
362/**
363 * numa_reset_distance - Reset NUMA distance table
364 *
365 * The current table is freed. The next numa_set_distance() call will
366 * create a new one.
367 */
368void __init numa_reset_distance(void)
369{
370 size_t size = numa_distance_cnt * numa_distance_cnt * sizeof(numa_distance[0]);
371
372 /* numa_distance could be 1LU marking allocation failure, test cnt */
373 if (numa_distance_cnt)
374 memblock_x86_free_range(__pa(numa_distance),
375 __pa(numa_distance) + size);
376 numa_distance_cnt = 0;
377 numa_distance = NULL; /* enable table creation */
378}
379
380static int __init numa_alloc_distance(void)
381{
382 nodemask_t nodes_parsed;
383 size_t size;
384 int i, j, cnt = 0;
385 u64 phys;
386
387 /* size the new table and allocate it */
388 nodes_parsed = numa_nodes_parsed;
389 numa_nodemask_from_meminfo(&nodes_parsed, &numa_meminfo);
390
391 for_each_node_mask(i, nodes_parsed)
392 cnt = i;
393 cnt++;
394 size = cnt * cnt * sizeof(numa_distance[0]);
395
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200396 phys = memblock_find_in_range(0, PFN_PHYS(max_pfn_mapped),
Tejun Heoa4106ea2011-05-02 14:18:53 +0200397 size, PAGE_SIZE);
398 if (phys == MEMBLOCK_ERROR) {
399 pr_warning("NUMA: Warning: can't allocate distance table!\n");
400 /* don't retry until explicitly reset */
401 numa_distance = (void *)1LU;
402 return -ENOMEM;
403 }
404 memblock_x86_reserve_range(phys, phys + size, "NUMA DIST");
405
406 numa_distance = __va(phys);
407 numa_distance_cnt = cnt;
408
409 /* fill with the default distances */
410 for (i = 0; i < cnt; i++)
411 for (j = 0; j < cnt; j++)
412 numa_distance[i * cnt + j] = i == j ?
413 LOCAL_DISTANCE : REMOTE_DISTANCE;
414 printk(KERN_DEBUG "NUMA: Initialized distance table, cnt=%d\n", cnt);
415
416 return 0;
417}
418
419/**
420 * numa_set_distance - Set NUMA distance from one NUMA to another
421 * @from: the 'from' node to set distance
422 * @to: the 'to' node to set distance
423 * @distance: NUMA distance
424 *
425 * Set the distance from node @from to @to to @distance. If distance table
426 * doesn't exist, one which is large enough to accommodate all the currently
427 * known nodes will be created.
428 *
429 * If such table cannot be allocated, a warning is printed and further
430 * calls are ignored until the distance table is reset with
431 * numa_reset_distance().
432 *
Petr Holasek54eed6c2011-12-08 13:16:41 +0100433 * If @from or @to is higher than the highest known node or lower than zero
434 * at the time of table creation or @distance doesn't make sense, the call
435 * is ignored.
Tejun Heoa4106ea2011-05-02 14:18:53 +0200436 * This is to allow simplification of specific NUMA config implementations.
437 */
438void __init numa_set_distance(int from, int to, int distance)
439{
440 if (!numa_distance && numa_alloc_distance() < 0)
441 return;
442
Petr Holasek54eed6c2011-12-08 13:16:41 +0100443 if (from >= numa_distance_cnt || to >= numa_distance_cnt ||
444 from < 0 || to < 0) {
445 pr_warn_once("NUMA: Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
Tejun Heoa4106ea2011-05-02 14:18:53 +0200446 from, to, distance);
447 return;
448 }
449
450 if ((u8)distance != distance ||
451 (from == to && distance != LOCAL_DISTANCE)) {
452 pr_warn_once("NUMA: Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
453 from, to, distance);
454 return;
455 }
456
457 numa_distance[from * numa_distance_cnt + to] = distance;
458}
459
460int __node_distance(int from, int to)
461{
462 if (from >= numa_distance_cnt || to >= numa_distance_cnt)
463 return from == to ? LOCAL_DISTANCE : REMOTE_DISTANCE;
464 return numa_distance[from * numa_distance_cnt + to];
465}
466EXPORT_SYMBOL(__node_distance);
467
468/*
469 * Sanity check to catch more bad NUMA configurations (they are amazingly
470 * common). Make sure the nodes cover all memory.
471 */
472static bool __init numa_meminfo_cover_memory(const struct numa_meminfo *mi)
473{
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200474 u64 numaram, e820ram;
Tejun Heoa4106ea2011-05-02 14:18:53 +0200475 int i;
476
477 numaram = 0;
478 for (i = 0; i < mi->nr_blks; i++) {
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200479 u64 s = mi->blk[i].start >> PAGE_SHIFT;
480 u64 e = mi->blk[i].end >> PAGE_SHIFT;
Tejun Heoa4106ea2011-05-02 14:18:53 +0200481 numaram += e - s;
482 numaram -= __absent_pages_in_range(mi->blk[i].nid, s, e);
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200483 if ((s64)numaram < 0)
Tejun Heoa4106ea2011-05-02 14:18:53 +0200484 numaram = 0;
485 }
486
487 e820ram = max_pfn - (memblock_x86_hole_size(0,
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200488 PFN_PHYS(max_pfn)) >> PAGE_SHIFT);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200489 /* We seem to lose 3 pages somewhere. Allow 1M of slack. */
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200490 if ((s64)(e820ram - numaram) >= (1 << (20 - PAGE_SHIFT))) {
491 printk(KERN_ERR "NUMA: nodes only cover %LuMB of your %LuMB e820 RAM. Not used.\n",
Tejun Heoa4106ea2011-05-02 14:18:53 +0200492 (numaram << PAGE_SHIFT) >> 20,
493 (e820ram << PAGE_SHIFT) >> 20);
494 return false;
495 }
496 return true;
497}
498
499static int __init numa_register_memblks(struct numa_meminfo *mi)
500{
Tejun Heo1e019792011-07-12 09:45:34 +0200501 unsigned long uninitialized_var(pfn_align);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200502 int i, nid;
503
504 /* Account for nodes with cpus and no memory */
505 node_possible_map = numa_nodes_parsed;
506 numa_nodemask_from_meminfo(&node_possible_map, mi);
507 if (WARN_ON(nodes_empty(node_possible_map)))
508 return -EINVAL;
509
510 for (i = 0; i < mi->nr_blks; i++)
511 memblock_x86_register_active_regions(mi->blk[i].nid,
512 mi->blk[i].start >> PAGE_SHIFT,
513 mi->blk[i].end >> PAGE_SHIFT);
514
515 /* for out of order entries */
516 sort_node_map();
Tejun Heo1e019792011-07-12 09:45:34 +0200517
518 /*
519 * If sections array is gonna be used for pfn -> nid mapping, check
520 * whether its granularity is fine enough.
521 */
522#ifdef NODE_NOT_IN_PAGE_FLAGS
523 pfn_align = node_map_pfn_alignment();
524 if (pfn_align && pfn_align < PAGES_PER_SECTION) {
525 printk(KERN_WARNING "Node alignment %LuMB < min %LuMB, rejecting NUMA config\n",
526 PFN_PHYS(pfn_align) >> 20,
527 PFN_PHYS(PAGES_PER_SECTION) >> 20);
528 return -EINVAL;
529 }
530#endif
Tejun Heoa4106ea2011-05-02 14:18:53 +0200531 if (!numa_meminfo_cover_memory(mi))
532 return -EINVAL;
533
534 /* Finally register nodes. */
535 for_each_node_mask(nid, node_possible_map) {
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200536 u64 start = PFN_PHYS(max_pfn);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200537 u64 end = 0;
538
539 for (i = 0; i < mi->nr_blks; i++) {
540 if (nid != mi->blk[i].nid)
541 continue;
542 start = min(mi->blk[i].start, start);
543 end = max(mi->blk[i].end, end);
544 }
545
546 if (start < end)
Yinghai Lua56bca82011-05-02 17:24:49 +0200547 setup_node_data(nid, start, end);
Tejun Heoa4106ea2011-05-02 14:18:53 +0200548 }
549
550 return 0;
551}
Tejun Heoa4106ea2011-05-02 14:18:53 +0200552
Tejun Heo8db78cc2011-01-23 14:37:42 +0100553/*
554 * There are unfortunately some poorly designed mainboards around that
555 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
556 * mapping. To avoid this fill in the mapping for all possible CPUs,
557 * as the number of CPUs is not known yet. We round robin the existing
558 * nodes.
559 */
Tejun Heo752d4f32011-05-02 17:24:48 +0200560static void __init numa_init_array(void)
Tejun Heo8db78cc2011-01-23 14:37:42 +0100561{
562 int rr, i;
563
564 rr = first_node(node_online_map);
565 for (i = 0; i < nr_cpu_ids; i++) {
566 if (early_cpu_to_node(i) != NUMA_NO_NODE)
567 continue;
568 numa_set_node(i, rr);
569 rr = next_node(rr, node_online_map);
570 if (rr == MAX_NUMNODES)
571 rr = first_node(node_online_map);
572 }
573}
574
Tejun Heoa4106ea2011-05-02 14:18:53 +0200575static int __init numa_init(int (*init_func)(void))
576{
577 int i;
578 int ret;
579
580 for (i = 0; i < MAX_LOCAL_APIC; i++)
581 set_apicid_to_node(i, NUMA_NO_NODE);
582
583 nodes_clear(numa_nodes_parsed);
584 nodes_clear(node_possible_map);
585 nodes_clear(node_online_map);
586 memset(&numa_meminfo, 0, sizeof(numa_meminfo));
587 remove_all_active_ranges();
588 numa_reset_distance();
589
590 ret = init_func();
591 if (ret < 0)
592 return ret;
593 ret = numa_cleanup_meminfo(&numa_meminfo);
594 if (ret < 0)
595 return ret;
596
597 numa_emulation(&numa_meminfo, numa_distance_cnt);
598
599 ret = numa_register_memblks(&numa_meminfo);
600 if (ret < 0)
601 return ret;
602
603 for (i = 0; i < nr_cpu_ids; i++) {
604 int nid = early_cpu_to_node(i);
605
606 if (nid == NUMA_NO_NODE)
607 continue;
608 if (!node_online(nid))
609 numa_clear_node(i);
610 }
611 numa_init_array();
612 return 0;
613}
614
615/**
616 * dummy_numa_init - Fallback dummy NUMA init
617 *
618 * Used if there's no underlying NUMA architecture, NUMA initialization
619 * fails, or NUMA is disabled on the command line.
620 *
621 * Must online at least one node and add memory blocks that cover all
622 * allowed memory. This function must not fail.
623 */
624static int __init dummy_numa_init(void)
625{
626 printk(KERN_INFO "%s\n",
627 numa_off ? "NUMA turned off" : "No NUMA configuration found");
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200628 printk(KERN_INFO "Faking a node at %016Lx-%016Lx\n",
629 0LLU, PFN_PHYS(max_pfn));
Tejun Heoa4106ea2011-05-02 14:18:53 +0200630
631 node_set(0, numa_nodes_parsed);
Tejun Heo38f3e1c2011-05-02 14:18:53 +0200632 numa_add_memblk(0, 0, PFN_PHYS(max_pfn));
Tejun Heoa4106ea2011-05-02 14:18:53 +0200633
634 return 0;
635}
636
637/**
638 * x86_numa_init - Initialize NUMA
639 *
640 * Try each configured NUMA initialization method until one succeeds. The
641 * last fallback is dummy single node config encomapssing whole memory and
642 * never fails.
643 */
644void __init x86_numa_init(void)
645{
646 if (!numa_off) {
Tejun Heobd6709a2011-05-02 17:24:48 +0200647#ifdef CONFIG_X86_NUMAQ
648 if (!numa_init(numaq_numa_init))
649 return;
650#endif
Tejun Heoa4106ea2011-05-02 14:18:53 +0200651#ifdef CONFIG_ACPI_NUMA
652 if (!numa_init(x86_acpi_numa_init))
653 return;
654#endif
655#ifdef CONFIG_AMD_NUMA
656 if (!numa_init(amd_numa_init))
657 return;
658#endif
659 }
660
661 numa_init(dummy_numa_init);
662}
Tejun Heoa4106ea2011-05-02 14:18:53 +0200663
Tejun Heo8db78cc2011-01-23 14:37:42 +0100664static __init int find_near_online_node(int node)
665{
666 int n, val;
667 int min_val = INT_MAX;
668 int best_node = -1;
669
670 for_each_online_node(n) {
671 val = node_distance(node, n);
672
673 if (val < min_val) {
674 min_val = val;
675 best_node = n;
676 }
677 }
678
679 return best_node;
680}
681
682/*
683 * Setup early cpu_to_node.
684 *
685 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
686 * and apicid_to_node[] tables have valid entries for a CPU.
687 * This means we skip cpu_to_node[] initialisation for NUMA
688 * emulation and faking node case (when running a kernel compiled
689 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
690 * is already initialized in a round robin manner at numa_init_array,
691 * prior to this call, and this initialization is good enough
692 * for the fake NUMA cases.
693 *
694 * Called before the per_cpu areas are setup.
695 */
696void __init init_cpu_to_node(void)
697{
698 int cpu;
699 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
700
701 BUG_ON(cpu_to_apicid == NULL);
702
703 for_each_possible_cpu(cpu) {
704 int node = numa_cpu_node(cpu);
705
706 if (node == NUMA_NO_NODE)
707 continue;
708 if (!node_online(node))
709 node = find_near_online_node(node);
710 numa_set_node(cpu, node);
711 }
712}
713
Tejun Heode2d9442011-01-23 14:37:41 +0100714#ifndef CONFIG_DEBUG_PER_CPU_MAPS
715
716# ifndef CONFIG_NUMA_EMU
717void __cpuinit numa_add_cpu(int cpu)
718{
719 cpumask_set_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
720}
721
722void __cpuinit numa_remove_cpu(int cpu)
723{
724 cpumask_clear_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
725}
726# endif /* !CONFIG_NUMA_EMU */
727
728#else /* !CONFIG_DEBUG_PER_CPU_MAPS */
Tejun Heo645a7912011-01-23 14:37:40 +0100729
730int __cpu_to_node(int cpu)
731{
732 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
733 printk(KERN_WARNING
734 "cpu_to_node(%d): usage too early!\n", cpu);
735 dump_stack();
736 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
737 }
738 return per_cpu(x86_cpu_to_node_map, cpu);
739}
740EXPORT_SYMBOL(__cpu_to_node);
741
742/*
743 * Same function as cpu_to_node() but used if called before the
744 * per_cpu areas are setup.
745 */
746int early_cpu_to_node(int cpu)
747{
748 if (early_per_cpu_ptr(x86_cpu_to_node_map))
749 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
750
751 if (!cpu_possible(cpu)) {
752 printk(KERN_WARNING
753 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
754 dump_stack();
755 return NUMA_NO_NODE;
756 }
757 return per_cpu(x86_cpu_to_node_map, cpu);
758}
759
David Rientjes7a6c6542011-04-20 19:19:13 -0700760void debug_cpumask_set_cpu(int cpu, int node, bool enable)
Tejun Heode2d9442011-01-23 14:37:41 +0100761{
Tejun Heode2d9442011-01-23 14:37:41 +0100762 struct cpumask *mask;
763 char buf[64];
764
David Rientjes14392fd2011-02-07 14:08:53 -0800765 if (node == NUMA_NO_NODE) {
766 /* early_cpu_to_node() already emits a warning and trace */
David Rientjes7a6c6542011-04-20 19:19:13 -0700767 return;
David Rientjes14392fd2011-02-07 14:08:53 -0800768 }
Tejun Heode2d9442011-01-23 14:37:41 +0100769 mask = node_to_cpumask_map[node];
770 if (!mask) {
771 pr_err("node_to_cpumask_map[%i] NULL\n", node);
772 dump_stack();
Tejun Heode2d9442011-01-23 14:37:41 +0100773 return;
David Rientjes7a6c6542011-04-20 19:19:13 -0700774 }
Tejun Heode2d9442011-01-23 14:37:41 +0100775
776 if (enable)
777 cpumask_set_cpu(cpu, mask);
778 else
779 cpumask_clear_cpu(cpu, mask);
David Rientjes7a6c6542011-04-20 19:19:13 -0700780
781 cpulist_scnprintf(buf, sizeof(buf), mask);
782 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
783 enable ? "numa_add_cpu" : "numa_remove_cpu",
784 cpu, node, buf);
785 return;
786}
787
788# ifndef CONFIG_NUMA_EMU
789static void __cpuinit numa_set_cpumask(int cpu, bool enable)
790{
791 debug_cpumask_set_cpu(cpu, early_cpu_to_node(cpu), enable);
Tejun Heode2d9442011-01-23 14:37:41 +0100792}
793
794void __cpuinit numa_add_cpu(int cpu)
795{
David Rientjes7a6c6542011-04-20 19:19:13 -0700796 numa_set_cpumask(cpu, true);
Tejun Heode2d9442011-01-23 14:37:41 +0100797}
798
799void __cpuinit numa_remove_cpu(int cpu)
800{
David Rientjes7a6c6542011-04-20 19:19:13 -0700801 numa_set_cpumask(cpu, false);
Tejun Heode2d9442011-01-23 14:37:41 +0100802}
803# endif /* !CONFIG_NUMA_EMU */
804
Rusty Russell71ee73e2009-03-13 14:49:52 +1030805/*
806 * Returns a pointer to the bitmask of CPUs on Node 'node'.
807 */
Rusty Russell73e907d2009-03-13 14:49:57 +1030808const struct cpumask *cpumask_of_node(int node)
Rusty Russell71ee73e2009-03-13 14:49:52 +1030809{
Rusty Russell71ee73e2009-03-13 14:49:52 +1030810 if (node >= nr_node_ids) {
811 printk(KERN_WARNING
812 "cpumask_of_node(%d): node > nr_node_ids(%d)\n",
813 node, nr_node_ids);
814 dump_stack();
815 return cpu_none_mask;
816 }
Rusty Russellc032ef602009-03-13 14:49:53 +1030817 if (node_to_cpumask_map[node] == NULL) {
818 printk(KERN_WARNING
819 "cpumask_of_node(%d): no node_to_cpumask_map!\n",
820 node);
821 dump_stack();
822 return cpu_online_mask;
823 }
Rusty Russell0b966252009-03-13 23:42:42 +1030824 return node_to_cpumask_map[node];
Rusty Russell71ee73e2009-03-13 14:49:52 +1030825}
826EXPORT_SYMBOL(cpumask_of_node);
Tejun Heo645a7912011-01-23 14:37:40 +0100827
Tejun Heode2d9442011-01-23 14:37:41 +0100828#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
Tejun Heoa4106ea2011-05-02 14:18:53 +0200829
Tejun Heobd6709a2011-05-02 17:24:48 +0200830#ifdef CONFIG_MEMORY_HOTPLUG
Tejun Heoa4106ea2011-05-02 14:18:53 +0200831int memory_add_physaddr_to_nid(u64 start)
832{
833 struct numa_meminfo *mi = &numa_meminfo;
834 int nid = mi->blk[0].nid;
835 int i;
836
837 for (i = 0; i < mi->nr_blks; i++)
838 if (mi->blk[i].start <= start && mi->blk[i].end > start)
839 nid = mi->blk[i].nid;
840 return nid;
841}
842EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
843#endif