blob: 3696be0c220432ee23941f3e5cbf7287e064e4d1 [file] [log] [blame]
Tejun Heob8ef9172011-02-22 11:10:08 +01001/*
2 * NUMA emulation
3 */
4#include <linux/kernel.h>
5#include <linux/errno.h>
6#include <linux/topology.h>
7#include <linux/memblock.h>
8#include <asm/dma.h>
9
10#include "numa_internal.h"
11
12static int emu_nid_to_phys[MAX_NUMNODES] __cpuinitdata;
13static char *emu_cmdline __initdata;
14
15void __init numa_emu_cmdline(char *str)
16{
17 emu_cmdline = str;
18}
19
20static int __init emu_find_memblk_by_nid(int nid, const struct numa_meminfo *mi)
21{
22 int i;
23
24 for (i = 0; i < mi->nr_blks; i++)
25 if (mi->blk[i].nid == nid)
26 return i;
27 return -ENOENT;
28}
29
30/*
31 * Sets up nid to range from @start to @end. The return value is -errno if
32 * something went wrong, 0 otherwise.
33 */
34static int __init emu_setup_memblk(struct numa_meminfo *ei,
35 struct numa_meminfo *pi,
36 int nid, int phys_blk, u64 size)
37{
38 struct numa_memblk *eb = &ei->blk[ei->nr_blks];
39 struct numa_memblk *pb = &pi->blk[phys_blk];
40
41 if (ei->nr_blks >= NR_NODE_MEMBLKS) {
42 pr_err("NUMA: Too many emulated memblks, failing emulation\n");
43 return -EINVAL;
44 }
45
46 ei->nr_blks++;
47 eb->start = pb->start;
48 eb->end = pb->start + size;
49 eb->nid = nid;
50
51 if (emu_nid_to_phys[nid] == NUMA_NO_NODE)
52 emu_nid_to_phys[nid] = pb->nid;
53
54 pb->start += size;
55 if (pb->start >= pb->end) {
56 WARN_ON_ONCE(pb->start > pb->end);
57 numa_remove_memblk_from(phys_blk, pi);
58 }
59
60 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
61 eb->start, eb->end, (eb->end - eb->start) >> 20);
62 return 0;
63}
64
65/*
66 * Sets up nr_nodes fake nodes interleaved over physical nodes ranging from addr
67 * to max_addr. The return value is the number of nodes allocated.
68 */
69static int __init split_nodes_interleave(struct numa_meminfo *ei,
70 struct numa_meminfo *pi,
71 u64 addr, u64 max_addr, int nr_nodes)
72{
73 nodemask_t physnode_mask = NODE_MASK_NONE;
74 u64 size;
75 int big;
76 int nid = 0;
77 int i, ret;
78
79 if (nr_nodes <= 0)
80 return -1;
81 if (nr_nodes > MAX_NUMNODES) {
82 pr_info("numa=fake=%d too large, reducing to %d\n",
83 nr_nodes, MAX_NUMNODES);
84 nr_nodes = MAX_NUMNODES;
85 }
86
87 size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) / nr_nodes;
88 /*
89 * Calculate the number of big nodes that can be allocated as a result
90 * of consolidating the remainder.
91 */
92 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * nr_nodes) /
93 FAKE_NODE_MIN_SIZE;
94
95 size &= FAKE_NODE_MIN_HASH_MASK;
96 if (!size) {
97 pr_err("Not enough memory for each node. "
98 "NUMA emulation disabled.\n");
99 return -1;
100 }
101
102 for (i = 0; i < pi->nr_blks; i++)
103 node_set(pi->blk[i].nid, physnode_mask);
104
105 /*
106 * Continue to fill physical nodes with fake nodes until there is no
107 * memory left on any of them.
108 */
109 while (nodes_weight(physnode_mask)) {
110 for_each_node_mask(i, physnode_mask) {
111 u64 dma32_end = PFN_PHYS(MAX_DMA32_PFN);
112 u64 start, limit, end;
113 int phys_blk;
114
115 phys_blk = emu_find_memblk_by_nid(i, pi);
116 if (phys_blk < 0) {
117 node_clear(i, physnode_mask);
118 continue;
119 }
120 start = pi->blk[phys_blk].start;
121 limit = pi->blk[phys_blk].end;
122 end = start + size;
123
124 if (nid < big)
125 end += FAKE_NODE_MIN_SIZE;
126
127 /*
128 * Continue to add memory to this fake node if its
129 * non-reserved memory is less than the per-node size.
130 */
131 while (end - start -
132 memblock_x86_hole_size(start, end) < size) {
133 end += FAKE_NODE_MIN_SIZE;
134 if (end > limit) {
135 end = limit;
136 break;
137 }
138 }
139
140 /*
141 * If there won't be at least FAKE_NODE_MIN_SIZE of
142 * non-reserved memory in ZONE_DMA32 for the next node,
143 * this one must extend to the boundary.
144 */
145 if (end < dma32_end && dma32_end - end -
146 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
147 end = dma32_end;
148
149 /*
150 * If there won't be enough non-reserved memory for the
151 * next node, this one must extend to the end of the
152 * physical node.
153 */
154 if (limit - end -
155 memblock_x86_hole_size(end, limit) < size)
156 end = limit;
157
158 ret = emu_setup_memblk(ei, pi, nid++ % nr_nodes,
159 phys_blk,
160 min(end, limit) - start);
161 if (ret < 0)
162 return ret;
163 }
164 }
165 return 0;
166}
167
168/*
169 * Returns the end address of a node so that there is at least `size' amount of
170 * non-reserved memory or `max_addr' is reached.
171 */
172static u64 __init find_end_of_node(u64 start, u64 max_addr, u64 size)
173{
174 u64 end = start + size;
175
176 while (end - start - memblock_x86_hole_size(start, end) < size) {
177 end += FAKE_NODE_MIN_SIZE;
178 if (end > max_addr) {
179 end = max_addr;
180 break;
181 }
182 }
183 return end;
184}
185
186/*
187 * Sets up fake nodes of `size' interleaved over physical nodes ranging from
188 * `addr' to `max_addr'. The return value is the number of nodes allocated.
189 */
190static int __init split_nodes_size_interleave(struct numa_meminfo *ei,
191 struct numa_meminfo *pi,
192 u64 addr, u64 max_addr, u64 size)
193{
194 nodemask_t physnode_mask = NODE_MASK_NONE;
195 u64 min_size;
196 int nid = 0;
197 int i, ret;
198
199 if (!size)
200 return -1;
201 /*
202 * The limit on emulated nodes is MAX_NUMNODES, so the size per node is
203 * increased accordingly if the requested size is too small. This
204 * creates a uniform distribution of node sizes across the entire
205 * machine (but not necessarily over physical nodes).
206 */
207 min_size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) /
208 MAX_NUMNODES;
209 min_size = max(min_size, FAKE_NODE_MIN_SIZE);
210 if ((min_size & FAKE_NODE_MIN_HASH_MASK) < min_size)
211 min_size = (min_size + FAKE_NODE_MIN_SIZE) &
212 FAKE_NODE_MIN_HASH_MASK;
213 if (size < min_size) {
214 pr_err("Fake node size %LuMB too small, increasing to %LuMB\n",
215 size >> 20, min_size >> 20);
216 size = min_size;
217 }
218 size &= FAKE_NODE_MIN_HASH_MASK;
219
220 for (i = 0; i < pi->nr_blks; i++)
221 node_set(pi->blk[i].nid, physnode_mask);
222
223 /*
224 * Fill physical nodes with fake nodes of size until there is no memory
225 * left on any of them.
226 */
227 while (nodes_weight(physnode_mask)) {
228 for_each_node_mask(i, physnode_mask) {
229 u64 dma32_end = MAX_DMA32_PFN << PAGE_SHIFT;
230 u64 start, limit, end;
231 int phys_blk;
232
233 phys_blk = emu_find_memblk_by_nid(i, pi);
234 if (phys_blk < 0) {
235 node_clear(i, physnode_mask);
236 continue;
237 }
238 start = pi->blk[phys_blk].start;
239 limit = pi->blk[phys_blk].end;
240
241 end = find_end_of_node(start, limit, size);
242 /*
243 * If there won't be at least FAKE_NODE_MIN_SIZE of
244 * non-reserved memory in ZONE_DMA32 for the next node,
245 * this one must extend to the boundary.
246 */
247 if (end < dma32_end && dma32_end - end -
248 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
249 end = dma32_end;
250
251 /*
252 * If there won't be enough non-reserved memory for the
253 * next node, this one must extend to the end of the
254 * physical node.
255 */
256 if (limit - end -
257 memblock_x86_hole_size(end, limit) < size)
258 end = limit;
259
260 ret = emu_setup_memblk(ei, pi, nid++ % MAX_NUMNODES,
261 phys_blk,
262 min(end, limit) - start);
263 if (ret < 0)
264 return ret;
265 }
266 }
267 return 0;
268}
269
Tejun Heo90e6b672011-02-22 11:10:08 +0100270/**
271 * numa_emulation - Emulate NUMA nodes
272 * @numa_meminfo: NUMA configuration to massage
273 * @numa_dist_cnt: The size of the physical NUMA distance table
274 *
275 * Emulate NUMA nodes according to the numa=fake kernel parameter.
276 * @numa_meminfo contains the physical memory configuration and is modified
277 * to reflect the emulated configuration on success. @numa_dist_cnt is
278 * used to determine the size of the physical distance table.
279 *
280 * On success, the following modifications are made.
281 *
282 * - @numa_meminfo is updated to reflect the emulated nodes.
283 *
284 * - __apicid_to_node[] is updated such that APIC IDs are mapped to the
285 * emulated nodes.
286 *
287 * - NUMA distance table is rebuilt to represent distances between emulated
288 * nodes. The distances are determined considering how emulated nodes
289 * are mapped to physical nodes and match the actual distances.
290 *
291 * - emu_nid_to_phys[] reflects how emulated nodes are mapped to physical
292 * nodes. This is used by numa_add_cpu() and numa_remove_cpu().
293 *
294 * If emulation is not enabled or fails, emu_nid_to_phys[] is filled with
295 * identity mapping and no other modification is made.
Tejun Heob8ef9172011-02-22 11:10:08 +0100296 */
297void __init numa_emulation(struct numa_meminfo *numa_meminfo, int numa_dist_cnt)
298{
299 static struct numa_meminfo ei __initdata;
300 static struct numa_meminfo pi __initdata;
301 const u64 max_addr = max_pfn << PAGE_SHIFT;
302 u8 *phys_dist = NULL;
Yinghai Luce003332011-03-02 11:22:14 +0100303 size_t phys_size = numa_dist_cnt * numa_dist_cnt * sizeof(phys_dist[0]);
Tejun Heo078a1982011-03-04 16:32:02 +0100304 int dfl_phys_nid;
Tejun Heob8ef9172011-02-22 11:10:08 +0100305 int i, j, ret;
306
307 if (!emu_cmdline)
308 goto no_emu;
309
310 memset(&ei, 0, sizeof(ei));
311 pi = *numa_meminfo;
312
313 for (i = 0; i < MAX_NUMNODES; i++)
314 emu_nid_to_phys[i] = NUMA_NO_NODE;
315
316 /*
317 * If the numa=fake command-line contains a 'M' or 'G', it represents
318 * the fixed node size. Otherwise, if it is just a single number N,
319 * split the system RAM into N fake nodes.
320 */
321 if (strchr(emu_cmdline, 'M') || strchr(emu_cmdline, 'G')) {
322 u64 size;
323
324 size = memparse(emu_cmdline, &emu_cmdline);
325 ret = split_nodes_size_interleave(&ei, &pi, 0, max_addr, size);
326 } else {
327 unsigned long n;
328
329 n = simple_strtoul(emu_cmdline, NULL, 0);
330 ret = split_nodes_interleave(&ei, &pi, 0, max_addr, n);
331 }
332
333 if (ret < 0)
334 goto no_emu;
335
336 if (numa_cleanup_meminfo(&ei) < 0) {
337 pr_warning("NUMA: Warning: constructed meminfo invalid, disabling emulation\n");
338 goto no_emu;
339 }
340
Yinghai Luce003332011-03-02 11:22:14 +0100341 /* copy the physical distance table */
Tejun Heob8ef9172011-02-22 11:10:08 +0100342 if (numa_dist_cnt) {
Tejun Heob8ef9172011-02-22 11:10:08 +0100343 u64 phys;
344
345 phys = memblock_find_in_range(0,
346 (u64)max_pfn_mapped << PAGE_SHIFT,
Yinghai Luce003332011-03-02 11:22:14 +0100347 phys_size, PAGE_SIZE);
Tejun Heob8ef9172011-02-22 11:10:08 +0100348 if (phys == MEMBLOCK_ERROR) {
349 pr_warning("NUMA: Warning: can't allocate copy of distance table, disabling emulation\n");
350 goto no_emu;
351 }
Yinghai Luce003332011-03-02 11:22:14 +0100352 memblock_x86_reserve_range(phys, phys + phys_size, "TMP NUMA DIST");
Tejun Heob8ef9172011-02-22 11:10:08 +0100353 phys_dist = __va(phys);
354
355 for (i = 0; i < numa_dist_cnt; i++)
356 for (j = 0; j < numa_dist_cnt; j++)
357 phys_dist[i * numa_dist_cnt + j] =
358 node_distance(i, j);
359 }
360
Tejun Heo078a1982011-03-04 16:32:02 +0100361 /* determine the default phys nid to use for unmapped nodes */
362 dfl_phys_nid = NUMA_NO_NODE;
363 for (i = 0; i < ARRAY_SIZE(emu_nid_to_phys); i++) {
364 if (emu_nid_to_phys[i] != NUMA_NO_NODE) {
365 dfl_phys_nid = emu_nid_to_phys[i];
366 break;
367 }
368 }
369 if (dfl_phys_nid == NUMA_NO_NODE) {
370 pr_warning("NUMA: Warning: can't determine default physical node, disabling emulation\n");
371 goto no_emu;
372 }
373
Tejun Heob8ef9172011-02-22 11:10:08 +0100374 /* commit */
375 *numa_meminfo = ei;
376
377 /*
378 * Transform __apicid_to_node table to use emulated nids by
379 * reverse-mapping phys_nid. The maps should always exist but fall
380 * back to zero just in case.
381 */
382 for (i = 0; i < ARRAY_SIZE(__apicid_to_node); i++) {
383 if (__apicid_to_node[i] == NUMA_NO_NODE)
384 continue;
385 for (j = 0; j < ARRAY_SIZE(emu_nid_to_phys); j++)
386 if (__apicid_to_node[i] == emu_nid_to_phys[j])
387 break;
388 __apicid_to_node[i] = j < ARRAY_SIZE(emu_nid_to_phys) ? j : 0;
389 }
390
391 /* make sure all emulated nodes are mapped to a physical node */
392 for (i = 0; i < ARRAY_SIZE(emu_nid_to_phys); i++)
393 if (emu_nid_to_phys[i] == NUMA_NO_NODE)
Tejun Heo078a1982011-03-04 16:32:02 +0100394 emu_nid_to_phys[i] = dfl_phys_nid;
Tejun Heob8ef9172011-02-22 11:10:08 +0100395
Tejun Heoeb8c1e22011-03-02 11:32:47 +0100396 /*
397 * Transform distance table. numa_set_distance() ignores all
398 * out-of-bound distances. Just call it for every possible node
399 * combination.
400 */
Tejun Heob8ef9172011-02-22 11:10:08 +0100401 numa_reset_distance();
402 for (i = 0; i < MAX_NUMNODES; i++) {
403 for (j = 0; j < MAX_NUMNODES; j++) {
404 int physi = emu_nid_to_phys[i];
405 int physj = emu_nid_to_phys[j];
406 int dist;
407
408 if (physi >= numa_dist_cnt || physj >= numa_dist_cnt)
409 dist = physi == physj ?
410 LOCAL_DISTANCE : REMOTE_DISTANCE;
411 else
412 dist = phys_dist[physi * numa_dist_cnt + physj];
413
414 numa_set_distance(i, j, dist);
415 }
416 }
Yinghai Luce003332011-03-02 11:22:14 +0100417
418 /* free the copied physical distance table */
419 if (phys_dist)
420 memblock_x86_free_range(__pa(phys_dist), __pa(phys_dist) + phys_size);
Tejun Heob8ef9172011-02-22 11:10:08 +0100421 return;
422
423no_emu:
424 /* No emulation. Build identity emu_nid_to_phys[] for numa_add_cpu() */
425 for (i = 0; i < ARRAY_SIZE(emu_nid_to_phys); i++)
426 emu_nid_to_phys[i] = i;
427}
428
429#ifndef CONFIG_DEBUG_PER_CPU_MAPS
430void __cpuinit numa_add_cpu(int cpu)
431{
432 int physnid, nid;
433
Yinghai Lu51b361b2011-03-04 14:49:28 +0100434 nid = early_cpu_to_node(cpu);
Tejun Heob8ef9172011-02-22 11:10:08 +0100435 BUG_ON(nid == NUMA_NO_NODE || !node_online(nid));
436
437 physnid = emu_nid_to_phys[nid];
438
439 /*
440 * Map the cpu to each emulated node that is allocated on the physical
441 * node of the cpu's apic id.
442 */
443 for_each_online_node(nid)
444 if (emu_nid_to_phys[nid] == physnid)
445 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
446}
447
448void __cpuinit numa_remove_cpu(int cpu)
449{
450 int i;
451
452 for_each_online_node(i)
453 cpumask_clear_cpu(cpu, node_to_cpumask_map[i]);
454}
455#else /* !CONFIG_DEBUG_PER_CPU_MAPS */
456static void __cpuinit numa_set_cpumask(int cpu, int enable)
457{
458 struct cpumask *mask;
459 int nid, physnid, i;
460
461 nid = early_cpu_to_node(cpu);
462 if (nid == NUMA_NO_NODE) {
463 /* early_cpu_to_node() already emits a warning and trace */
464 return;
465 }
466
467 physnid = emu_nid_to_phys[nid];
468
469 for_each_online_node(i) {
470 if (emu_nid_to_phys[nid] != physnid)
471 continue;
472
473 mask = debug_cpumask_set_cpu(cpu, enable);
474 if (!mask)
475 return;
476
477 if (enable)
478 cpumask_set_cpu(cpu, mask);
479 else
480 cpumask_clear_cpu(cpu, mask);
481 }
482}
483
484void __cpuinit numa_add_cpu(int cpu)
485{
486 numa_set_cpumask(cpu, 1);
487}
488
489void __cpuinit numa_remove_cpu(int cpu)
490{
491 numa_set_cpumask(cpu, 0);
492}
493#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */