]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/x86/mm/numa_64.c
x86, numa: Fix numa_emulation code with memory-less node0
[mirror_ubuntu-kernels.git] / arch / x86 / mm / numa_64.c
CommitLineData
e3cfe529 1/*
1da177e4
LT
2 * Generic VM initialization for x86-64 NUMA setups.
3 * Copyright 2002,2003 Andi Kleen, SuSE Labs.
e3cfe529 4 */
1da177e4
LT
5#include <linux/kernel.h>
6#include <linux/mm.h>
7#include <linux/string.h>
8#include <linux/init.h>
9#include <linux/bootmem.h>
72d7c3b3 10#include <linux/memblock.h>
1da177e4
LT
11#include <linux/mmzone.h>
12#include <linux/ctype.h>
13#include <linux/module.h>
14#include <linux/nodemask.h>
3cc87e3f 15#include <linux/sched.h>
1da177e4
LT
16
17#include <asm/e820.h>
18#include <asm/proto.h>
19#include <asm/dma.h>
20#include <asm/numa.h>
21#include <asm/acpi.h>
23ac4ae8 22#include <asm/amd_nb.h>
1da177e4 23
6c231b7b 24struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
e3cfe529
TG
25EXPORT_SYMBOL(node_data);
26
dcf36bfa 27struct memnode memnode;
1da177e4 28
43238382 29s16 apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
e3cfe529 30 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
3f098c26 31};
e3cfe529 32
864fc31e
TG
33static unsigned long __initdata nodemap_addr;
34static unsigned long __initdata nodemap_size;
1da177e4 35
6470aff6
BG
36/*
37 * Map cpu index to node index
38 */
39DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
40EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
41
529a3404
ED
42/*
43 * Given a shift value, try to populate memnodemap[]
44 * Returns :
45 * 1 if OK
46 * 0 if memnodmap[] too small (of shift too small)
47 * -1 if node overlap or lost ram (shift too big)
48 */
e3cfe529 49static int __init populate_memnodemap(const struct bootnode *nodes,
6ec6e0d9 50 int numnodes, int shift, int *nodeids)
1da177e4 51{
529a3404 52 unsigned long addr, end;
e3cfe529 53 int i, res = -1;
b684664f 54
43238382 55 memset(memnodemap, 0xff, sizeof(s16)*memnodemapsize);
b684664f 56 for (i = 0; i < numnodes; i++) {
529a3404
ED
57 addr = nodes[i].start;
58 end = nodes[i].end;
59 if (addr >= end)
b684664f 60 continue;
076422d2 61 if ((end >> shift) >= memnodemapsize)
529a3404
ED
62 return 0;
63 do {
43238382 64 if (memnodemap[addr >> shift] != NUMA_NO_NODE)
b684664f 65 return -1;
6ec6e0d9
SS
66
67 if (!nodeids)
68 memnodemap[addr >> shift] = i;
69 else
70 memnodemap[addr >> shift] = nodeids[i];
71
076422d2 72 addr += (1UL << shift);
529a3404
ED
73 } while (addr < end);
74 res = 1;
e3cfe529 75 }
529a3404
ED
76 return res;
77}
78
076422d2
AS
79static int __init allocate_cachealigned_memnodemap(void)
80{
24a5da73 81 unsigned long addr;
076422d2
AS
82
83 memnodemap = memnode.embedded_map;
316390b0 84 if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map))
076422d2 85 return 0;
076422d2 86
24a5da73 87 addr = 0x8000;
be3e89ee 88 nodemap_size = roundup(sizeof(s16) * memnodemapsize, L1_CACHE_BYTES);
a9ce6bc1 89 nodemap_addr = memblock_find_in_range(addr, max_pfn<<PAGE_SHIFT,
24a5da73 90 nodemap_size, L1_CACHE_BYTES);
a9ce6bc1 91 if (nodemap_addr == MEMBLOCK_ERROR) {
076422d2
AS
92 printk(KERN_ERR
93 "NUMA: Unable to allocate Memory to Node hash map\n");
94 nodemap_addr = nodemap_size = 0;
95 return -1;
96 }
24a5da73 97 memnodemap = phys_to_virt(nodemap_addr);
a9ce6bc1 98 memblock_x86_reserve_range(nodemap_addr, nodemap_addr + nodemap_size, "MEMNODEMAP");
076422d2
AS
99
100 printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n",
101 nodemap_addr, nodemap_addr + nodemap_size);
102 return 0;
103}
104
105/*
106 * The LSB of all start and end addresses in the node map is the value of the
107 * maximum possible shift.
108 */
e3cfe529
TG
109static int __init extract_lsb_from_nodes(const struct bootnode *nodes,
110 int numnodes)
529a3404 111{
54413927 112 int i, nodes_used = 0;
076422d2
AS
113 unsigned long start, end;
114 unsigned long bitfield = 0, memtop = 0;
115
116 for (i = 0; i < numnodes; i++) {
117 start = nodes[i].start;
118 end = nodes[i].end;
119 if (start >= end)
120 continue;
54413927
AS
121 bitfield |= start;
122 nodes_used++;
076422d2
AS
123 if (end > memtop)
124 memtop = end;
125 }
54413927
AS
126 if (nodes_used <= 1)
127 i = 63;
128 else
129 i = find_first_bit(&bitfield, sizeof(unsigned long)*8);
076422d2
AS
130 memnodemapsize = (memtop >> i)+1;
131 return i;
132}
529a3404 133
6ec6e0d9
SS
134int __init compute_hash_shift(struct bootnode *nodes, int numnodes,
135 int *nodeids)
076422d2
AS
136{
137 int shift;
529a3404 138
076422d2
AS
139 shift = extract_lsb_from_nodes(nodes, numnodes);
140 if (allocate_cachealigned_memnodemap())
141 return -1;
6b050f80 142 printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n",
529a3404
ED
143 shift);
144
6ec6e0d9 145 if (populate_memnodemap(nodes, numnodes, shift, nodeids) != 1) {
e3cfe529
TG
146 printk(KERN_INFO "Your memory is not aligned you need to "
147 "rebuild your kernel with a bigger NODEMAPSIZE "
148 "shift=%d\n", shift);
529a3404
ED
149 return -1;
150 }
b684664f 151 return shift;
1da177e4
LT
152}
153
f2dbcfa7 154int __meminit __early_pfn_to_nid(unsigned long pfn)
bbfceef4
MT
155{
156 return phys_to_nid(pfn << PAGE_SHIFT);
157}
bbfceef4 158
e3cfe529 159static void * __init early_node_mem(int nodeid, unsigned long start,
24a5da73
YL
160 unsigned long end, unsigned long size,
161 unsigned long align)
a8062231 162{
cef625ee 163 unsigned long mem;
e3cfe529 164
cef625ee
YL
165 /*
166 * put it on high as possible
167 * something will go with NODE_DATA
168 */
169 if (start < (MAX_DMA_PFN<<PAGE_SHIFT))
170 start = MAX_DMA_PFN<<PAGE_SHIFT;
171 if (start < (MAX_DMA32_PFN<<PAGE_SHIFT) &&
172 end > (MAX_DMA32_PFN<<PAGE_SHIFT))
173 start = MAX_DMA32_PFN<<PAGE_SHIFT;
72d7c3b3
YL
174 mem = memblock_x86_find_in_range_node(nodeid, start, end, size, align);
175 if (mem != MEMBLOCK_ERROR)
a8062231 176 return __va(mem);
9347e0b0 177
cef625ee
YL
178 /* extend the search scope */
179 end = max_pfn_mapped << PAGE_SHIFT;
419db274
YL
180 start = MAX_DMA_PFN << PAGE_SHIFT;
181 mem = memblock_find_in_range(start, end, size, align);
72d7c3b3 182 if (mem != MEMBLOCK_ERROR)
a8062231 183 return __va(mem);
9347e0b0 184
1842f90c 185 printk(KERN_ERR "Cannot find %lu bytes in node %d\n",
e3cfe529 186 size, nodeid);
1842f90c
YL
187
188 return NULL;
a8062231
AK
189}
190
1da177e4 191/* Initialize bootmem allocator for a node */
7c43769a
YL
192void __init
193setup_node_bootmem(int nodeid, unsigned long start, unsigned long end)
e3cfe529 194{
08677214 195 unsigned long start_pfn, last_pfn, nodedata_phys;
7c43769a 196 const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
1a27fc0a 197 int nid;
1da177e4 198
4c31e92b
YL
199 if (!end)
200 return;
201
7c43769a
YL
202 /*
203 * Don't confuse VM with a node that doesn't have the
204 * minimum amount of memory:
205 */
206 if (end && (end - start) < NODE_MIN_SIZE)
207 return;
208
be3e89ee 209 start = roundup(start, ZONE_ALIGN);
1da177e4 210
08677214 211 printk(KERN_INFO "Initmem setup node %d %016lx-%016lx\n", nodeid,
e3cfe529 212 start, end);
1da177e4
LT
213
214 start_pfn = start >> PAGE_SHIFT;
886533a3 215 last_pfn = end >> PAGE_SHIFT;
1da177e4 216
24a5da73
YL
217 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
218 SMP_CACHE_BYTES);
a8062231
AK
219 if (node_data[nodeid] == NULL)
220 return;
221 nodedata_phys = __pa(node_data[nodeid]);
a9ce6bc1 222 memblock_x86_reserve_range(nodedata_phys, nodedata_phys + pgdat_size, "NODE_DATA");
6118f76f
YL
223 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
224 nodedata_phys + pgdat_size - 1);
1842f90c
YL
225 nid = phys_to_nid(nodedata_phys);
226 if (nid != nodeid)
227 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nodeid, nid);
1da177e4 228
1da177e4 229 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
08677214 230 NODE_DATA(nodeid)->node_id = nodeid;
1da177e4 231 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
886533a3 232 NODE_DATA(nodeid)->node_spanned_pages = last_pfn - start_pfn;
1da177e4 233
1da177e4 234 node_set_online(nodeid);
e3cfe529 235}
1da177e4 236
e3cfe529
TG
237/*
238 * There are unfortunately some poorly designed mainboards around that
239 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
240 * mapping. To avoid this fill in the mapping for all possible CPUs,
241 * as the number of CPUs is not known yet. We round robin the existing
242 * nodes.
243 */
1da177e4
LT
244void __init numa_init_array(void)
245{
246 int rr, i;
e3cfe529 247
85cc5135 248 rr = first_node(node_online_map);
168ef543 249 for (i = 0; i < nr_cpu_ids; i++) {
1ce35712 250 if (early_cpu_to_node(i) != NUMA_NO_NODE)
1da177e4 251 continue;
e3cfe529 252 numa_set_node(i, rr);
1da177e4
LT
253 rr = next_node(rr, node_online_map);
254 if (rr == MAX_NUMNODES)
255 rr = first_node(node_online_map);
1da177e4 256 }
1da177e4
LT
257}
258
259#ifdef CONFIG_NUMA_EMU
53fee04f 260/* Numa emulation */
adc19389 261static struct bootnode nodes[MAX_NUMNODES] __initdata;
c1c3443c 262static struct bootnode physnodes[MAX_NUMNODES] __cpuinitdata;
864fc31e 263static char *cmdline __initdata;
1da177e4 264
90321602
JB
265void __init numa_emu_cmdline(char *str)
266{
267 cmdline = str;
268}
269
adc19389 270static int __init setup_physnodes(unsigned long start, unsigned long end,
eec1d4fa 271 int acpi, int amd)
adc19389 272{
adc19389
DR
273 int ret = 0;
274 int i;
275
c1c3443c 276 memset(physnodes, 0, sizeof(physnodes));
adc19389
DR
277#ifdef CONFIG_ACPI_NUMA
278 if (acpi)
a387e95a 279 acpi_get_nodes(physnodes, start, end);
adc19389 280#endif
eec1d4fa
HR
281#ifdef CONFIG_AMD_NUMA
282 if (amd)
a387e95a 283 amd_get_nodes(physnodes);
adc19389
DR
284#endif
285 /*
286 * Basic sanity checking on the physical node map: there may be errors
eec1d4fa 287 * if the SRAT or AMD code incorrectly reported the topology or the mem=
adc19389
DR
288 * kernel parameter is used.
289 */
a387e95a 290 for (i = 0; i < MAX_NUMNODES; i++) {
adc19389
DR
291 if (physnodes[i].start == physnodes[i].end)
292 continue;
293 if (physnodes[i].start > end) {
294 physnodes[i].end = physnodes[i].start;
295 continue;
296 }
297 if (physnodes[i].end < start) {
298 physnodes[i].start = physnodes[i].end;
299 continue;
300 }
301 if (physnodes[i].start < start)
302 physnodes[i].start = start;
303 if (physnodes[i].end > end)
304 physnodes[i].end = end;
adc19389
DR
305 ret++;
306 }
307
308 /*
309 * If no physical topology was detected, a single node is faked to cover
310 * the entire address space.
311 */
312 if (!ret) {
313 physnodes[ret].start = start;
314 physnodes[ret].end = end;
315 ret = 1;
316 }
317 return ret;
318}
319
f51bf307
DR
320static void __init fake_physnodes(int acpi, int amd, int nr_nodes)
321{
322 int i;
323
324 BUG_ON(acpi && amd);
325#ifdef CONFIG_ACPI_NUMA
326 if (acpi)
327 acpi_fake_nodes(nodes, nr_nodes);
328#endif
329#ifdef CONFIG_AMD_NUMA
330 if (amd)
331 amd_fake_nodes(nodes, nr_nodes);
332#endif
333 if (!acpi && !amd)
334 for (i = 0; i < nr_cpu_ids; i++)
335 numa_set_node(i, 0);
336}
337
53fee04f 338/*
e3cfe529
TG
339 * Setups up nid to range from addr to addr + size. If the end
340 * boundary is greater than max_addr, then max_addr is used instead.
341 * The return value is 0 if there is additional memory left for
342 * allocation past addr and -1 otherwise. addr is adjusted to be at
343 * the end of the node.
53fee04f 344 */
adc19389 345static int __init setup_node_range(int nid, u64 *addr, u64 size, u64 max_addr)
53fee04f 346{
8b8ca80e
DR
347 int ret = 0;
348 nodes[nid].start = *addr;
349 *addr += size;
350 if (*addr >= max_addr) {
351 *addr = max_addr;
352 ret = -1;
353 }
354 nodes[nid].end = *addr;
e3f1caee 355 node_set(nid, node_possible_map);
8b8ca80e
DR
356 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
357 nodes[nid].start, nodes[nid].end,
358 (nodes[nid].end - nodes[nid].start) >> 20);
359 return ret;
53fee04f
RS
360}
361
adc19389
DR
362/*
363 * Sets up nr_nodes fake nodes interleaved over physical nodes ranging from addr
364 * to max_addr. The return value is the number of nodes allocated.
365 */
c1c3443c 366static int __init split_nodes_interleave(u64 addr, u64 max_addr, int nr_nodes)
adc19389
DR
367{
368 nodemask_t physnode_mask = NODE_MASK_NONE;
369 u64 size;
370 int big;
371 int ret = 0;
372 int i;
373
374 if (nr_nodes <= 0)
375 return -1;
376 if (nr_nodes > MAX_NUMNODES) {
377 pr_info("numa=fake=%d too large, reducing to %d\n",
378 nr_nodes, MAX_NUMNODES);
379 nr_nodes = MAX_NUMNODES;
380 }
381
a9ce6bc1 382 size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) / nr_nodes;
adc19389
DR
383 /*
384 * Calculate the number of big nodes that can be allocated as a result
385 * of consolidating the remainder.
386 */
68fd111e 387 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * nr_nodes) /
adc19389
DR
388 FAKE_NODE_MIN_SIZE;
389
390 size &= FAKE_NODE_MIN_HASH_MASK;
391 if (!size) {
392 pr_err("Not enough memory for each node. "
393 "NUMA emulation disabled.\n");
394 return -1;
395 }
396
c1c3443c 397 for (i = 0; i < MAX_NUMNODES; i++)
adc19389
DR
398 if (physnodes[i].start != physnodes[i].end)
399 node_set(i, physnode_mask);
400
401 /*
402 * Continue to fill physical nodes with fake nodes until there is no
403 * memory left on any of them.
404 */
405 while (nodes_weight(physnode_mask)) {
406 for_each_node_mask(i, physnode_mask) {
407 u64 end = physnodes[i].start + size;
408 u64 dma32_end = PFN_PHYS(MAX_DMA32_PFN);
409
410 if (ret < big)
411 end += FAKE_NODE_MIN_SIZE;
412
413 /*
414 * Continue to add memory to this fake node if its
415 * non-reserved memory is less than the per-node size.
416 */
417 while (end - physnodes[i].start -
a9ce6bc1 418 memblock_x86_hole_size(physnodes[i].start, end) < size) {
adc19389
DR
419 end += FAKE_NODE_MIN_SIZE;
420 if (end > physnodes[i].end) {
421 end = physnodes[i].end;
422 break;
423 }
424 }
425
426 /*
427 * If there won't be at least FAKE_NODE_MIN_SIZE of
428 * non-reserved memory in ZONE_DMA32 for the next node,
429 * this one must extend to the boundary.
430 */
431 if (end < dma32_end && dma32_end - end -
a9ce6bc1 432 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
adc19389
DR
433 end = dma32_end;
434
435 /*
436 * If there won't be enough non-reserved memory for the
437 * next node, this one must extend to the end of the
438 * physical node.
439 */
440 if (physnodes[i].end - end -
a9ce6bc1 441 memblock_x86_hole_size(end, physnodes[i].end) < size)
adc19389
DR
442 end = physnodes[i].end;
443
444 /*
445 * Avoid allocating more nodes than requested, which can
446 * happen as a result of rounding down each node's size
447 * to FAKE_NODE_MIN_SIZE.
448 */
449 if (nodes_weight(physnode_mask) + ret >= nr_nodes)
450 end = physnodes[i].end;
451
452 if (setup_node_range(ret++, &physnodes[i].start,
453 end - physnodes[i].start,
454 physnodes[i].end) < 0)
455 node_clear(i, physnode_mask);
456 }
457 }
458 return ret;
459}
460
8df5bb34
DR
461/*
462 * Returns the end address of a node so that there is at least `size' amount of
463 * non-reserved memory or `max_addr' is reached.
464 */
465static u64 __init find_end_of_node(u64 start, u64 max_addr, u64 size)
466{
467 u64 end = start + size;
468
a9ce6bc1 469 while (end - start - memblock_x86_hole_size(start, end) < size) {
8df5bb34
DR
470 end += FAKE_NODE_MIN_SIZE;
471 if (end > max_addr) {
472 end = max_addr;
473 break;
474 }
475 }
476 return end;
477}
478
479/*
480 * Sets up fake nodes of `size' interleaved over physical nodes ranging from
481 * `addr' to `max_addr'. The return value is the number of nodes allocated.
482 */
483static int __init split_nodes_size_interleave(u64 addr, u64 max_addr, u64 size)
484{
485 nodemask_t physnode_mask = NODE_MASK_NONE;
486 u64 min_size;
487 int ret = 0;
488 int i;
489
490 if (!size)
491 return -1;
492 /*
493 * The limit on emulated nodes is MAX_NUMNODES, so the size per node is
494 * increased accordingly if the requested size is too small. This
495 * creates a uniform distribution of node sizes across the entire
496 * machine (but not necessarily over physical nodes).
497 */
a9ce6bc1 498 min_size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) /
8df5bb34
DR
499 MAX_NUMNODES;
500 min_size = max(min_size, FAKE_NODE_MIN_SIZE);
501 if ((min_size & FAKE_NODE_MIN_HASH_MASK) < min_size)
502 min_size = (min_size + FAKE_NODE_MIN_SIZE) &
503 FAKE_NODE_MIN_HASH_MASK;
504 if (size < min_size) {
505 pr_err("Fake node size %LuMB too small, increasing to %LuMB\n",
506 size >> 20, min_size >> 20);
507 size = min_size;
508 }
509 size &= FAKE_NODE_MIN_HASH_MASK;
510
511 for (i = 0; i < MAX_NUMNODES; i++)
512 if (physnodes[i].start != physnodes[i].end)
513 node_set(i, physnode_mask);
514 /*
515 * Fill physical nodes with fake nodes of size until there is no memory
516 * left on any of them.
517 */
518 while (nodes_weight(physnode_mask)) {
519 for_each_node_mask(i, physnode_mask) {
520 u64 dma32_end = MAX_DMA32_PFN << PAGE_SHIFT;
521 u64 end;
522
523 end = find_end_of_node(physnodes[i].start,
524 physnodes[i].end, size);
525 /*
526 * If there won't be at least FAKE_NODE_MIN_SIZE of
527 * non-reserved memory in ZONE_DMA32 for the next node,
528 * this one must extend to the boundary.
529 */
530 if (end < dma32_end && dma32_end - end -
a9ce6bc1 531 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
8df5bb34
DR
532 end = dma32_end;
533
534 /*
535 * If there won't be enough non-reserved memory for the
536 * next node, this one must extend to the end of the
537 * physical node.
538 */
539 if (physnodes[i].end - end -
a9ce6bc1 540 memblock_x86_hole_size(end, physnodes[i].end) < size)
8df5bb34
DR
541 end = physnodes[i].end;
542
543 /*
544 * Setup the fake node that will be allocated as bootmem
545 * later. If setup_node_range() returns non-zero, there
546 * is no more memory available on this physical node.
547 */
548 if (setup_node_range(ret++, &physnodes[i].start,
549 end - physnodes[i].start,
550 physnodes[i].end) < 0)
551 node_clear(i, physnode_mask);
552 }
553 }
554 return ret;
555}
556
8b8ca80e 557/*
886533a3 558 * Sets up the system RAM area from start_pfn to last_pfn according to the
8b8ca80e
DR
559 * numa=fake command-line option.
560 */
adc19389 561static int __init numa_emulation(unsigned long start_pfn,
eec1d4fa 562 unsigned long last_pfn, int acpi, int amd)
8b8ca80e 563{
ca2107c9 564 u64 addr = start_pfn << PAGE_SHIFT;
886533a3 565 u64 max_addr = last_pfn << PAGE_SHIFT;
ca2107c9
DR
566 int num_nodes;
567 int i;
8b8ca80e 568
8df5bb34
DR
569 /*
570 * If the numa=fake command-line contains a 'M' or 'G', it represents
ca2107c9
DR
571 * the fixed node size. Otherwise, if it is just a single number N,
572 * split the system RAM into N fake nodes.
8df5bb34
DR
573 */
574 if (strchr(cmdline, 'M') || strchr(cmdline, 'G')) {
ca2107c9
DR
575 u64 size;
576
8df5bb34
DR
577 size = memparse(cmdline, &cmdline);
578 num_nodes = split_nodes_size_interleave(addr, max_addr, size);
ca2107c9
DR
579 } else {
580 unsigned long n;
8df5bb34 581
ca2107c9 582 n = simple_strtoul(cmdline, NULL, 0);
c1c3443c 583 num_nodes = split_nodes_interleave(addr, max_addr, n);
8b8ca80e
DR
584 }
585
ca2107c9
DR
586 if (num_nodes < 0)
587 return num_nodes;
6ec6e0d9 588 memnode_shift = compute_hash_shift(nodes, num_nodes, NULL);
8b8ca80e
DR
589 if (memnode_shift < 0) {
590 memnode_shift = 0;
591 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
592 "disabled.\n");
593 return -1;
594 }
595
596 /*
adc19389
DR
597 * We need to vacate all active ranges that may have been registered for
598 * the e820 memory map.
8b8ca80e
DR
599 */
600 remove_all_active_ranges();
e3f1caee 601 for_each_node_mask(i, node_possible_map) {
a9ce6bc1 602 memblock_x86_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
5cb248ab 603 nodes[i].end >> PAGE_SHIFT);
e3cfe529 604 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
5cb248ab 605 }
c1c3443c 606 setup_physnodes(addr, max_addr, acpi, amd);
f51bf307 607 fake_physnodes(acpi, amd, num_nodes);
e3cfe529
TG
608 numa_init_array();
609 return 0;
1da177e4 610}
8b8ca80e 611#endif /* CONFIG_NUMA_EMU */
1da177e4 612
8ee2debc 613void __init initmem_init(unsigned long start_pfn, unsigned long last_pfn,
eec1d4fa 614 int acpi, int amd)
e3cfe529 615{
1da177e4
LT
616 int i;
617
e3f1caee 618 nodes_clear(node_possible_map);
b7ad149d 619 nodes_clear(node_online_map);
e3f1caee 620
1da177e4 621#ifdef CONFIG_NUMA_EMU
c1c3443c
DR
622 setup_physnodes(start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT,
623 acpi, amd);
eec1d4fa 624 if (cmdline && !numa_emulation(start_pfn, last_pfn, acpi, amd))
e3cfe529 625 return;
c1c3443c
DR
626 setup_physnodes(start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT,
627 acpi, amd);
e3f1caee 628 nodes_clear(node_possible_map);
b7ad149d 629 nodes_clear(node_online_map);
1da177e4
LT
630#endif
631
632#ifdef CONFIG_ACPI_NUMA
8716273c
DR
633 if (!numa_off && acpi && !acpi_scan_nodes(start_pfn << PAGE_SHIFT,
634 last_pfn << PAGE_SHIFT))
e3cfe529 635 return;
e3f1caee 636 nodes_clear(node_possible_map);
b7ad149d 637 nodes_clear(node_online_map);
1da177e4
LT
638#endif
639
eec1d4fa
HR
640#ifdef CONFIG_AMD_NUMA
641 if (!numa_off && amd && !amd_scan_nodes())
1da177e4 642 return;
e3f1caee 643 nodes_clear(node_possible_map);
b7ad149d 644 nodes_clear(node_online_map);
1da177e4
LT
645#endif
646 printk(KERN_INFO "%s\n",
647 numa_off ? "NUMA turned off" : "No NUMA configuration found");
648
e3cfe529 649 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
1da177e4 650 start_pfn << PAGE_SHIFT,
886533a3 651 last_pfn << PAGE_SHIFT);
e3cfe529
TG
652 /* setup dummy node covering all memory */
653 memnode_shift = 63;
076422d2 654 memnodemap = memnode.embedded_map;
1da177e4 655 memnodemap[0] = 0;
1da177e4 656 node_set_online(0);
e3f1caee 657 node_set(0, node_possible_map);
168ef543 658 for (i = 0; i < nr_cpu_ids; i++)
69d81fcd 659 numa_set_node(i, 0);
a9ce6bc1 660 memblock_x86_register_active_regions(0, start_pfn, last_pfn);
886533a3 661 setup_node_bootmem(0, start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT);
69d81fcd
AK
662}
663
e3cfe529
TG
664unsigned long __init numa_free_all_bootmem(void)
665{
1da177e4 666 unsigned long pages = 0;
e3cfe529
TG
667 int i;
668
669 for_each_online_node(i)
1da177e4 670 pages += free_all_bootmem_node(NODE_DATA(i));
e3cfe529 671
08677214 672 pages += free_all_memory_core_early(MAX_NUMNODES);
08677214 673
1da177e4 674 return pages;
e3cfe529 675}
1da177e4 676
23ca4bba 677#ifdef CONFIG_NUMA
d9c2d5ac
YL
678
679static __init int find_near_online_node(int node)
680{
681 int n, val;
682 int min_val = INT_MAX;
683 int best_node = -1;
684
685 for_each_online_node(n) {
686 val = node_distance(node, n);
687
688 if (val < min_val) {
689 min_val = val;
690 best_node = n;
691 }
692 }
693
694 return best_node;
695}
696
05b3cbd8
RT
697/*
698 * Setup early cpu_to_node.
699 *
700 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
701 * and apicid_to_node[] tables have valid entries for a CPU.
702 * This means we skip cpu_to_node[] initialisation for NUMA
703 * emulation and faking node case (when running a kernel compiled
704 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
705 * is already initialized in a round robin manner at numa_init_array,
706 * prior to this call, and this initialization is good enough
707 * for the fake NUMA cases.
23ca4bba
MT
708 *
709 * Called before the per_cpu areas are setup.
05b3cbd8
RT
710 */
711void __init init_cpu_to_node(void)
712{
23ca4bba
MT
713 int cpu;
714 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
e3cfe529 715
23ca4bba
MT
716 BUG_ON(cpu_to_apicid == NULL);
717
718 for_each_possible_cpu(cpu) {
7c9e92b6 719 int node;
23ca4bba 720 u16 apicid = cpu_to_apicid[cpu];
e3cfe529 721
05b3cbd8
RT
722 if (apicid == BAD_APICID)
723 continue;
7c9e92b6
YL
724 node = apicid_to_node[apicid];
725 if (node == NUMA_NO_NODE)
05b3cbd8 726 continue;
7c9e92b6 727 if (!node_online(node))
d9c2d5ac 728 node = find_near_online_node(node);
23ca4bba 729 numa_set_node(cpu, node);
05b3cbd8
RT
730 }
731}
23ca4bba 732#endif
05b3cbd8 733
cf050132 734
6470aff6
BG
735void __cpuinit numa_set_node(int cpu, int node)
736{
737 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
738
739 /* early setting, no percpu area yet */
740 if (cpu_to_node_map) {
741 cpu_to_node_map[cpu] = node;
742 return;
743 }
744
745#ifdef CONFIG_DEBUG_PER_CPU_MAPS
44581a28 746 if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
6470aff6
BG
747 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
748 dump_stack();
749 return;
750 }
751#endif
752 per_cpu(x86_cpu_to_node_map, cpu) = node;
753
754 if (node != NUMA_NO_NODE)
e534c7c5 755 set_cpu_numa_node(cpu, node);
6470aff6
BG
756}
757
758void __cpuinit numa_clear_node(int cpu)
759{
760 numa_set_node(cpu, NUMA_NO_NODE);
761}
762
763#ifndef CONFIG_DEBUG_PER_CPU_MAPS
764
c1c3443c 765#ifndef CONFIG_NUMA_EMU
6470aff6
BG
766void __cpuinit numa_add_cpu(int cpu)
767{
c032ef60 768 cpumask_set_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
6470aff6
BG
769}
770
771void __cpuinit numa_remove_cpu(int cpu)
772{
c032ef60 773 cpumask_clear_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
6470aff6 774}
c1c3443c
DR
775#else
776void __cpuinit numa_add_cpu(int cpu)
777{
778 unsigned long addr;
779 u16 apicid;
780 int physnid;
781 int nid = NUMA_NO_NODE;
782
3b28cf32 783 nid = early_cpu_to_node(cpu);
c1c3443c
DR
784 BUG_ON(nid == NUMA_NO_NODE || !node_online(nid));
785
786 /*
787 * Use the starting address of the emulated node to find which physical
788 * node it is allocated on.
789 */
790 addr = node_start_pfn(nid) << PAGE_SHIFT;
791 for (physnid = 0; physnid < MAX_NUMNODES; physnid++)
792 if (addr >= physnodes[physnid].start &&
793 addr < physnodes[physnid].end)
794 break;
795
796 /*
797 * Map the cpu to each emulated node that is allocated on the physical
798 * node of the cpu's apic id.
799 */
800 for_each_online_node(nid) {
801 addr = node_start_pfn(nid) << PAGE_SHIFT;
802 if (addr >= physnodes[physnid].start &&
803 addr < physnodes[physnid].end)
804 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
805 }
806}
807
808void __cpuinit numa_remove_cpu(int cpu)
809{
810 int i;
811
812 for_each_online_node(i)
813 cpumask_clear_cpu(cpu, node_to_cpumask_map[i]);
814}
815#endif /* !CONFIG_NUMA_EMU */
6470aff6
BG
816
817#else /* CONFIG_DEBUG_PER_CPU_MAPS */
d906f0eb
DR
818static struct cpumask __cpuinit *debug_cpumask_set_cpu(int cpu, int enable)
819{
820 int node = early_cpu_to_node(cpu);
821 struct cpumask *mask;
822 char buf[64];
823
824 mask = node_to_cpumask_map[node];
825 if (!mask) {
826 pr_err("node_to_cpumask_map[%i] NULL\n", node);
827 dump_stack();
828 return NULL;
829 }
830
831 cpulist_scnprintf(buf, sizeof(buf), mask);
832 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
833 enable ? "numa_add_cpu" : "numa_remove_cpu",
834 cpu, node, buf);
835 return mask;
836}
6470aff6
BG
837
838/*
839 * --------- debug versions of the numa functions ---------
840 */
d906f0eb
DR
841#ifndef CONFIG_NUMA_EMU
842static void __cpuinit numa_set_cpumask(int cpu, int enable)
843{
844 struct cpumask *mask;
845
846 mask = debug_cpumask_set_cpu(cpu, enable);
847 if (!mask)
848 return;
849
850 if (enable)
851 cpumask_set_cpu(cpu, mask);
852 else
853 cpumask_clear_cpu(cpu, mask);
854}
855#else
6470aff6
BG
856static void __cpuinit numa_set_cpumask(int cpu, int enable)
857{
858 int node = early_cpu_to_node(cpu);
73e907de 859 struct cpumask *mask;
c1c3443c 860 int i;
6470aff6 861
c1c3443c
DR
862 for_each_online_node(i) {
863 unsigned long addr;
6470aff6 864
c1c3443c
DR
865 addr = node_start_pfn(i) << PAGE_SHIFT;
866 if (addr < physnodes[node].start ||
867 addr >= physnodes[node].end)
868 continue;
d906f0eb
DR
869 mask = debug_cpumask_set_cpu(cpu, enable);
870 if (!mask)
c1c3443c 871 return;
c1c3443c
DR
872
873 if (enable)
874 cpumask_set_cpu(cpu, mask);
875 else
876 cpumask_clear_cpu(cpu, mask);
c1c3443c 877 }
6470aff6 878}
d906f0eb 879#endif /* CONFIG_NUMA_EMU */
6470aff6
BG
880
881void __cpuinit numa_add_cpu(int cpu)
882{
883 numa_set_cpumask(cpu, 1);
884}
885
886void __cpuinit numa_remove_cpu(int cpu)
887{
888 numa_set_cpumask(cpu, 0);
889}
890
e534c7c5 891int __cpu_to_node(int cpu)
6470aff6
BG
892{
893 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
894 printk(KERN_WARNING
895 "cpu_to_node(%d): usage too early!\n", cpu);
896 dump_stack();
897 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
898 }
899 return per_cpu(x86_cpu_to_node_map, cpu);
900}
e534c7c5 901EXPORT_SYMBOL(__cpu_to_node);
6470aff6
BG
902
903/*
904 * Same function as cpu_to_node() but used if called before the
905 * per_cpu areas are setup.
906 */
907int early_cpu_to_node(int cpu)
908{
909 if (early_per_cpu_ptr(x86_cpu_to_node_map))
910 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
911
44581a28 912 if (!cpu_possible(cpu)) {
6470aff6
BG
913 printk(KERN_WARNING
914 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
915 dump_stack();
916 return NUMA_NO_NODE;
917 }
918 return per_cpu(x86_cpu_to_node_map, cpu);
919}
920
6470aff6
BG
921/*
922 * --------- end of debug versions of the numa functions ---------
923 */
924
925#endif /* CONFIG_DEBUG_PER_CPU_MAPS */