blob: 02f13cb99bc26d92b75d6966698a744cf5e93fc1 [file] [log] [blame]
Thomas Gleixnere3cfe522008-01-30 13:30:37 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Generic VM initialization for x86-64 NUMA setups.
3 * Copyright 2002,2003 Andi Kleen, SuSE Labs.
Thomas Gleixnere3cfe522008-01-30 13:30:37 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/kernel.h>
6#include <linux/mm.h>
7#include <linux/string.h>
8#include <linux/init.h>
9#include <linux/bootmem.h>
10#include <linux/mmzone.h>
11#include <linux/ctype.h>
12#include <linux/module.h>
13#include <linux/nodemask.h>
travis@sgi.com3cc87e32008-01-30 13:33:11 +010014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/e820.h>
17#include <asm/proto.h>
18#include <asm/dma.h>
19#include <asm/numa.h>
20#include <asm/acpi.h>
Thomas Gleixnerc9ff0342008-01-30 13:30:16 +010021#include <asm/k8.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070023struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010024EXPORT_SYMBOL(node_data);
25
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010026struct memnode memnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
travis@sgi.com43238382008-01-30 13:33:25 +010028s16 apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010029 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
Andi Kleen3f098c22005-09-12 18:49:24 +020030};
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032int numa_off __initdata;
Thomas Gleixner864fc312008-05-12 15:43:36 +020033static unsigned long __initdata nodemap_addr;
34static unsigned long __initdata nodemap_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Brian Gerst6470aff2009-01-27 12:56:47 +090036DEFINE_PER_CPU(int, node_number) = 0;
37EXPORT_PER_CPU_SYMBOL(node_number);
38
39/*
40 * Map cpu index to node index
41 */
42DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
43EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
44
45/*
Eric Dumazet529a3402005-11-05 17:25:54 +010046 * Given a shift value, try to populate memnodemap[]
47 * Returns :
48 * 1 if OK
49 * 0 if memnodmap[] too small (of shift too small)
50 * -1 if node overlap or lost ram (shift too big)
51 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010052static int __init populate_memnodemap(const struct bootnode *nodes,
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070053 int numnodes, int shift, int *nodeids)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Eric Dumazet529a3402005-11-05 17:25:54 +010055 unsigned long addr, end;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010056 int i, res = -1;
Keith Manntheyb6846642005-07-28 21:15:38 -070057
travis@sgi.com43238382008-01-30 13:33:25 +010058 memset(memnodemap, 0xff, sizeof(s16)*memnodemapsize);
Eric Dumazet529a3402005-11-05 17:25:54 +010059 for (i = 0; i < numnodes; i++) {
60 addr = nodes[i].start;
61 end = nodes[i].end;
62 if (addr >= end)
63 continue;
Amul Shah076422d2007-02-13 13:26:19 +010064 if ((end >> shift) >= memnodemapsize)
Eric Dumazet529a3402005-11-05 17:25:54 +010065 return 0;
66 do {
travis@sgi.com43238382008-01-30 13:33:25 +010067 if (memnodemap[addr >> shift] != NUMA_NO_NODE)
Eric Dumazet529a3402005-11-05 17:25:54 +010068 return -1;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070069
70 if (!nodeids)
71 memnodemap[addr >> shift] = i;
72 else
73 memnodemap[addr >> shift] = nodeids[i];
74
Amul Shah076422d2007-02-13 13:26:19 +010075 addr += (1UL << shift);
Eric Dumazet529a3402005-11-05 17:25:54 +010076 } while (addr < end);
77 res = 1;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010078 }
Eric Dumazet529a3402005-11-05 17:25:54 +010079 return res;
80}
81
Amul Shah076422d2007-02-13 13:26:19 +010082static int __init allocate_cachealigned_memnodemap(void)
83{
Yinghai Lu24a5da72008-02-01 17:49:41 +010084 unsigned long addr;
Amul Shah076422d2007-02-13 13:26:19 +010085
86 memnodemap = memnode.embedded_map;
travis@sgi.com316390b2008-01-30 13:33:15 +010087 if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map))
Amul Shah076422d2007-02-13 13:26:19 +010088 return 0;
Amul Shah076422d2007-02-13 13:26:19 +010089
Yinghai Lu24a5da72008-02-01 17:49:41 +010090 addr = 0x8000;
Joerg Roedelbe3e89e2008-07-25 16:48:58 +020091 nodemap_size = roundup(sizeof(s16) * memnodemapsize, L1_CACHE_BYTES);
Yinghai Luc987d122008-06-24 22:14:09 -070092 nodemap_addr = find_e820_area(addr, max_pfn<<PAGE_SHIFT,
Yinghai Lu24a5da72008-02-01 17:49:41 +010093 nodemap_size, L1_CACHE_BYTES);
Amul Shah076422d2007-02-13 13:26:19 +010094 if (nodemap_addr == -1UL) {
95 printk(KERN_ERR
96 "NUMA: Unable to allocate Memory to Node hash map\n");
97 nodemap_addr = nodemap_size = 0;
98 return -1;
99 }
Yinghai Lu24a5da72008-02-01 17:49:41 +0100100 memnodemap = phys_to_virt(nodemap_addr);
Yinghai Lu25eff8d2008-02-01 17:49:41 +0100101 reserve_early(nodemap_addr, nodemap_addr + nodemap_size, "MEMNODEMAP");
Amul Shah076422d2007-02-13 13:26:19 +0100102
103 printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n",
104 nodemap_addr, nodemap_addr + nodemap_size);
105 return 0;
106}
107
108/*
109 * The LSB of all start and end addresses in the node map is the value of the
110 * maximum possible shift.
111 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100112static int __init extract_lsb_from_nodes(const struct bootnode *nodes,
113 int numnodes)
Amul Shah076422d2007-02-13 13:26:19 +0100114{
Amul Shah54413922007-02-13 13:26:20 +0100115 int i, nodes_used = 0;
Amul Shah076422d2007-02-13 13:26:19 +0100116 unsigned long start, end;
117 unsigned long bitfield = 0, memtop = 0;
118
119 for (i = 0; i < numnodes; i++) {
120 start = nodes[i].start;
121 end = nodes[i].end;
122 if (start >= end)
123 continue;
Amul Shah54413922007-02-13 13:26:20 +0100124 bitfield |= start;
125 nodes_used++;
Amul Shah076422d2007-02-13 13:26:19 +0100126 if (end > memtop)
127 memtop = end;
128 }
Amul Shah54413922007-02-13 13:26:20 +0100129 if (nodes_used <= 1)
130 i = 63;
131 else
132 i = find_first_bit(&bitfield, sizeof(unsigned long)*8);
Amul Shah076422d2007-02-13 13:26:19 +0100133 memnodemapsize = (memtop >> i)+1;
134 return i;
135}
136
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700137int __init compute_hash_shift(struct bootnode *nodes, int numnodes,
138 int *nodeids)
Eric Dumazet529a3402005-11-05 17:25:54 +0100139{
Amul Shah076422d2007-02-13 13:26:19 +0100140 int shift;
Eric Dumazet529a3402005-11-05 17:25:54 +0100141
Amul Shah076422d2007-02-13 13:26:19 +0100142 shift = extract_lsb_from_nodes(nodes, numnodes);
143 if (allocate_cachealigned_memnodemap())
144 return -1;
Andi Kleen6b050f82006-01-11 22:44:33 +0100145 printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n",
Eric Dumazet529a3402005-11-05 17:25:54 +0100146 shift);
147
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700148 if (populate_memnodemap(nodes, numnodes, shift, nodeids) != 1) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100149 printk(KERN_INFO "Your memory is not aligned you need to "
150 "rebuild your kernel with a bigger NODEMAPSIZE "
151 "shift=%d\n", shift);
Eric Dumazet529a3402005-11-05 17:25:54 +0100152 return -1;
153 }
Keith Manntheyb6846642005-07-28 21:15:38 -0700154 return shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
KAMEZAWA Hiroyukif2dbcfa2009-02-18 14:48:32 -0800157int __meminit __early_pfn_to_nid(unsigned long pfn)
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700158{
159 return phys_to_nid(pfn << PAGE_SHIFT);
160}
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700161
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100162static void * __init early_node_mem(int nodeid, unsigned long start,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100163 unsigned long end, unsigned long size,
164 unsigned long align)
Andi Kleena8062232006-04-07 19:49:21 +0200165{
Yinghai Lucef625e2010-02-10 01:20:18 -0800166 unsigned long mem;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100167
Yinghai Lucef625e2010-02-10 01:20:18 -0800168 /*
169 * put it on high as possible
170 * something will go with NODE_DATA
171 */
172 if (start < (MAX_DMA_PFN<<PAGE_SHIFT))
173 start = MAX_DMA_PFN<<PAGE_SHIFT;
174 if (start < (MAX_DMA32_PFN<<PAGE_SHIFT) &&
175 end > (MAX_DMA32_PFN<<PAGE_SHIFT))
176 start = MAX_DMA32_PFN<<PAGE_SHIFT;
177 mem = find_e820_area(start, end, size, align);
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100178 if (mem != -1L)
Andi Kleena8062232006-04-07 19:49:21 +0200179 return __va(mem);
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100180
Yinghai Lucef625e2010-02-10 01:20:18 -0800181 /* extend the search scope */
182 end = max_pfn_mapped << PAGE_SHIFT;
183 if (end > (MAX_DMA32_PFN<<PAGE_SHIFT))
184 start = MAX_DMA32_PFN<<PAGE_SHIFT;
185 else
186 start = MAX_DMA_PFN<<PAGE_SHIFT;
Yinghai Lu1842f902010-02-10 01:20:15 -0800187 mem = find_e820_area(start, end, size, align);
188 if (mem != -1L)
189 return __va(mem);
190
191 printk(KERN_ERR "Cannot find %lu bytes in node %d\n",
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100192 size, nodeid);
Yinghai Lu1842f902010-02-10 01:20:15 -0800193
194 return NULL;
Andi Kleena8062232006-04-07 19:49:21 +0200195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/* Initialize bootmem allocator for a node */
Yinghai Lu7c437692009-05-15 13:59:37 -0700198void __init
199setup_node_bootmem(int nodeid, unsigned long start, unsigned long end)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100200{
Thomas Gleixner886533a2008-05-12 15:43:36 +0200201 unsigned long start_pfn, last_pfn, bootmap_pages, bootmap_size;
Yinghai Lu7c437692009-05-15 13:59:37 -0700202 const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100203 unsigned long bootmap_start, nodedata_phys;
Andi Kleena8062232006-04-07 19:49:21 +0200204 void *bootmap;
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700205 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Yinghai Lu4c31e922009-04-22 14:19:27 -0700207 if (!end)
208 return;
209
Yinghai Lu7c437692009-05-15 13:59:37 -0700210 /*
211 * Don't confuse VM with a node that doesn't have the
212 * minimum amount of memory:
213 */
214 if (end && (end - start) < NODE_MIN_SIZE)
215 return;
216
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200217 start = roundup(start, ZONE_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100219 printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid,
220 start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 start_pfn = start >> PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200223 last_pfn = end >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Yinghai Lu24a5da72008-02-01 17:49:41 +0100225 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
226 SMP_CACHE_BYTES);
Andi Kleena8062232006-04-07 19:49:21 +0200227 if (node_data[nodeid] == NULL)
228 return;
229 nodedata_phys = __pa(node_data[nodeid]);
Yinghai Lu1842f902010-02-10 01:20:15 -0800230 reserve_early(nodedata_phys, nodedata_phys + pgdat_size, "NODE_DATA");
Yinghai Lu6118f762008-02-04 16:47:56 +0100231 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
232 nodedata_phys + pgdat_size - 1);
Yinghai Lu1842f902010-02-10 01:20:15 -0800233 nid = phys_to_nid(nodedata_phys);
234 if (nid != nodeid)
235 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nodeid, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
Johannes Weinerb61bfa32008-07-23 21:26:55 -0700238 NODE_DATA(nodeid)->bdata = &bootmem_node_data[nodeid];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200240 NODE_DATA(nodeid)->node_spanned_pages = last_pfn - start_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700242 /*
243 * Find a place for the bootmem map
244 * nodedata_phys could be on other nodes by alloc_bootmem,
245 * so need to sure bootmap_start not to be small, otherwise
246 * early_node_mem will get that with find_e820_area instead
247 * of alloc_bootmem, that could clash with reserved range
248 */
Thomas Gleixner886533a2008-05-12 15:43:36 +0200249 bootmap_pages = bootmem_bootmap_pages(last_pfn - start_pfn);
Yinghai Lu1842f902010-02-10 01:20:15 -0800250 bootmap_start = roundup(nodedata_phys + pgdat_size, PAGE_SIZE);
Yinghai Lu24a5da72008-02-01 17:49:41 +0100251 /*
Paul Jacksone9197bf2008-05-14 08:15:10 -0700252 * SMP_CACHE_BYTES could be enough, but init_bootmem_node like
Yinghai Lu24a5da72008-02-01 17:49:41 +0100253 * to use that to align to PAGE_SIZE
254 */
Andi Kleena8062232006-04-07 19:49:21 +0200255 bootmap = early_node_mem(nodeid, bootmap_start, end,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100256 bootmap_pages<<PAGE_SHIFT, PAGE_SIZE);
Andi Kleena8062232006-04-07 19:49:21 +0200257 if (bootmap == NULL) {
Yinghai Lu1842f902010-02-10 01:20:15 -0800258 free_early(nodedata_phys, nodedata_phys + pgdat_size);
Andi Kleena8062232006-04-07 19:49:21 +0200259 node_data[nodeid] = NULL;
260 return;
261 }
262 bootmap_start = __pa(bootmap);
Yinghai Lu1842f902010-02-10 01:20:15 -0800263 reserve_early(bootmap_start, bootmap_start+(bootmap_pages<<PAGE_SHIFT),
264 "BOOTMAP");
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 bootmap_size = init_bootmem_node(NODE_DATA(nodeid),
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100267 bootmap_start >> PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200268 start_pfn, last_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Yinghai Lu6118f762008-02-04 16:47:56 +0100270 printk(KERN_INFO " bootmap [%016lx - %016lx] pages %lx\n",
271 bootmap_start, bootmap_start + bootmap_size - 1,
272 bootmap_pages);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700273 nid = phys_to_nid(bootmap_start);
274 if (nid != nodeid)
275 printk(KERN_INFO " bootmap(%d) on node %d\n", nodeid, nid);
Yinghai Lu1842f902010-02-10 01:20:15 -0800276
277 free_bootmem_with_active_regions(nodeid, end);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 node_set_online(nodeid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100282/*
283 * There are unfortunately some poorly designed mainboards around that
284 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
285 * mapping. To avoid this fill in the mapping for all possible CPUs,
286 * as the number of CPUs is not known yet. We round robin the existing
287 * nodes.
288 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289void __init numa_init_array(void)
290{
291 int rr, i;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100292
Ravikiran G Thirumalai85cc5132005-09-30 11:59:22 -0700293 rr = first_node(node_online_map);
Mike Travis168ef542008-12-16 17:34:01 -0800294 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.com1ce35712008-01-30 13:33:33 +0100295 if (early_cpu_to_node(i) != NUMA_NO_NODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 continue;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100297 numa_set_node(i, rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 rr = next_node(rr, node_online_map);
299 if (rr == MAX_NUMNODES)
300 rr = first_node(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
304#ifdef CONFIG_NUMA_EMU
Rohit Seth53fee042007-02-13 13:26:22 +0100305/* Numa emulation */
David Rientjesadc19382009-09-25 15:20:09 -0700306static struct bootnode nodes[MAX_NUMNODES] __initdata;
307static struct bootnode physnodes[MAX_NUMNODES] __initdata;
Thomas Gleixner864fc312008-05-12 15:43:36 +0200308static char *cmdline __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
David Rientjesadc19382009-09-25 15:20:09 -0700310static int __init setup_physnodes(unsigned long start, unsigned long end,
311 int acpi, int k8)
312{
313 int nr_nodes = 0;
314 int ret = 0;
315 int i;
316
317#ifdef CONFIG_ACPI_NUMA
318 if (acpi)
319 nr_nodes = acpi_get_nodes(physnodes);
320#endif
321#ifdef CONFIG_K8_NUMA
322 if (k8)
323 nr_nodes = k8_get_nodes(physnodes);
324#endif
325 /*
326 * Basic sanity checking on the physical node map: there may be errors
327 * if the SRAT or K8 incorrectly reported the topology or the mem=
328 * kernel parameter is used.
329 */
330 for (i = 0; i < nr_nodes; i++) {
331 if (physnodes[i].start == physnodes[i].end)
332 continue;
333 if (physnodes[i].start > end) {
334 physnodes[i].end = physnodes[i].start;
335 continue;
336 }
337 if (physnodes[i].end < start) {
338 physnodes[i].start = physnodes[i].end;
339 continue;
340 }
341 if (physnodes[i].start < start)
342 physnodes[i].start = start;
343 if (physnodes[i].end > end)
344 physnodes[i].end = end;
345 }
346
347 /*
348 * Remove all nodes that have no memory or were truncated because of the
349 * limited address range.
350 */
351 for (i = 0; i < nr_nodes; i++) {
352 if (physnodes[i].start == physnodes[i].end)
353 continue;
354 physnodes[ret].start = physnodes[i].start;
355 physnodes[ret].end = physnodes[i].end;
356 ret++;
357 }
358
359 /*
360 * If no physical topology was detected, a single node is faked to cover
361 * the entire address space.
362 */
363 if (!ret) {
364 physnodes[ret].start = start;
365 physnodes[ret].end = end;
366 ret = 1;
367 }
368 return ret;
369}
370
Rohit Seth53fee042007-02-13 13:26:22 +0100371/*
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100372 * Setups up nid to range from addr to addr + size. If the end
373 * boundary is greater than max_addr, then max_addr is used instead.
374 * The return value is 0 if there is additional memory left for
375 * allocation past addr and -1 otherwise. addr is adjusted to be at
376 * the end of the node.
Rohit Seth53fee042007-02-13 13:26:22 +0100377 */
David Rientjesadc19382009-09-25 15:20:09 -0700378static int __init setup_node_range(int nid, u64 *addr, u64 size, u64 max_addr)
Rohit Seth53fee042007-02-13 13:26:22 +0100379{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200380 int ret = 0;
381 nodes[nid].start = *addr;
382 *addr += size;
383 if (*addr >= max_addr) {
384 *addr = max_addr;
385 ret = -1;
386 }
387 nodes[nid].end = *addr;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200388 node_set(nid, node_possible_map);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200389 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
390 nodes[nid].start, nodes[nid].end,
391 (nodes[nid].end - nodes[nid].start) >> 20);
392 return ret;
Rohit Seth53fee042007-02-13 13:26:22 +0100393}
394
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200395/*
David Rientjesadc19382009-09-25 15:20:09 -0700396 * Sets up nr_nodes fake nodes interleaved over physical nodes ranging from addr
397 * to max_addr. The return value is the number of nodes allocated.
398 */
399static int __init split_nodes_interleave(u64 addr, u64 max_addr,
400 int nr_phys_nodes, int nr_nodes)
401{
402 nodemask_t physnode_mask = NODE_MASK_NONE;
403 u64 size;
404 int big;
405 int ret = 0;
406 int i;
407
408 if (nr_nodes <= 0)
409 return -1;
410 if (nr_nodes > MAX_NUMNODES) {
411 pr_info("numa=fake=%d too large, reducing to %d\n",
412 nr_nodes, MAX_NUMNODES);
413 nr_nodes = MAX_NUMNODES;
414 }
415
416 size = (max_addr - addr - e820_hole_size(addr, max_addr)) / nr_nodes;
417 /*
418 * Calculate the number of big nodes that can be allocated as a result
419 * of consolidating the remainder.
420 */
421 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) & nr_nodes) /
422 FAKE_NODE_MIN_SIZE;
423
424 size &= FAKE_NODE_MIN_HASH_MASK;
425 if (!size) {
426 pr_err("Not enough memory for each node. "
427 "NUMA emulation disabled.\n");
428 return -1;
429 }
430
431 for (i = 0; i < nr_phys_nodes; i++)
432 if (physnodes[i].start != physnodes[i].end)
433 node_set(i, physnode_mask);
434
435 /*
436 * Continue to fill physical nodes with fake nodes until there is no
437 * memory left on any of them.
438 */
439 while (nodes_weight(physnode_mask)) {
440 for_each_node_mask(i, physnode_mask) {
441 u64 end = physnodes[i].start + size;
442 u64 dma32_end = PFN_PHYS(MAX_DMA32_PFN);
443
444 if (ret < big)
445 end += FAKE_NODE_MIN_SIZE;
446
447 /*
448 * Continue to add memory to this fake node if its
449 * non-reserved memory is less than the per-node size.
450 */
451 while (end - physnodes[i].start -
452 e820_hole_size(physnodes[i].start, end) < size) {
453 end += FAKE_NODE_MIN_SIZE;
454 if (end > physnodes[i].end) {
455 end = physnodes[i].end;
456 break;
457 }
458 }
459
460 /*
461 * If there won't be at least FAKE_NODE_MIN_SIZE of
462 * non-reserved memory in ZONE_DMA32 for the next node,
463 * this one must extend to the boundary.
464 */
465 if (end < dma32_end && dma32_end - end -
466 e820_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
467 end = dma32_end;
468
469 /*
470 * If there won't be enough non-reserved memory for the
471 * next node, this one must extend to the end of the
472 * physical node.
473 */
474 if (physnodes[i].end - end -
475 e820_hole_size(end, physnodes[i].end) < size)
476 end = physnodes[i].end;
477
478 /*
479 * Avoid allocating more nodes than requested, which can
480 * happen as a result of rounding down each node's size
481 * to FAKE_NODE_MIN_SIZE.
482 */
483 if (nodes_weight(physnode_mask) + ret >= nr_nodes)
484 end = physnodes[i].end;
485
486 if (setup_node_range(ret++, &physnodes[i].start,
487 end - physnodes[i].start,
488 physnodes[i].end) < 0)
489 node_clear(i, physnode_mask);
490 }
491 }
492 return ret;
493}
494
495/*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200496 * Splits num_nodes nodes up equally starting at node_start. The return value
497 * is the number of nodes split up and addr is adjusted to be at the end of the
498 * last node allocated.
499 */
David Rientjesadc19382009-09-25 15:20:09 -0700500static int __init split_nodes_equally(u64 *addr, u64 max_addr, int node_start,
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200501 int num_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200503 unsigned int big;
504 u64 size;
505 int i;
Rohit Seth53fee042007-02-13 13:26:22 +0100506
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200507 if (num_nodes <= 0)
508 return -1;
509 if (num_nodes > MAX_NUMNODES)
510 num_nodes = MAX_NUMNODES;
David Rientjesa7e96622007-07-21 17:11:29 +0200511 size = (max_addr - *addr - e820_hole_size(*addr, max_addr)) /
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200512 num_nodes;
Rohit Seth53fee042007-02-13 13:26:22 +0100513 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200514 * Calculate the number of big nodes that can be allocated as a result
515 * of consolidating the leftovers.
Rohit Seth53fee042007-02-13 13:26:22 +0100516 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200517 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * num_nodes) /
518 FAKE_NODE_MIN_SIZE;
Rohit Seth53fee042007-02-13 13:26:22 +0100519
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200520 /* Round down to nearest FAKE_NODE_MIN_SIZE. */
521 size &= FAKE_NODE_MIN_HASH_MASK;
522 if (!size) {
523 printk(KERN_ERR "Not enough memory for each node. "
524 "NUMA emulation disabled.\n");
525 return -1;
Rohit Seth53fee042007-02-13 13:26:22 +0100526 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200527
528 for (i = node_start; i < num_nodes + node_start; i++) {
529 u64 end = *addr + size;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100530
Rohit Seth53fee042007-02-13 13:26:22 +0100531 if (i < big)
532 end += FAKE_NODE_MIN_SIZE;
533 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200534 * The final node can have the remaining system RAM. Other
535 * nodes receive roughly the same amount of available pages.
Rohit Seth53fee042007-02-13 13:26:22 +0100536 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200537 if (i == num_nodes + node_start - 1)
Rohit Seth53fee042007-02-13 13:26:22 +0100538 end = max_addr;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200539 else
David Rientjesa7e96622007-07-21 17:11:29 +0200540 while (end - *addr - e820_hole_size(*addr, end) <
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200541 size) {
542 end += FAKE_NODE_MIN_SIZE;
543 if (end > max_addr) {
544 end = max_addr;
545 break;
546 }
547 }
David Rientjesadc19382009-09-25 15:20:09 -0700548 if (setup_node_range(i, addr, end - *addr, max_addr) < 0)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200549 break;
550 }
551 return i - node_start + 1;
552}
553
554/*
David Rientjes382591d2007-05-02 19:27:09 +0200555 * Splits the remaining system RAM into chunks of size. The remaining memory is
556 * always assigned to a final node and can be asymmetric. Returns the number of
557 * nodes split.
558 */
David Rientjesadc19382009-09-25 15:20:09 -0700559static int __init split_nodes_by_size(u64 *addr, u64 max_addr, int node_start,
560 u64 size)
David Rientjes382591d2007-05-02 19:27:09 +0200561{
562 int i = node_start;
563 size = (size << 20) & FAKE_NODE_MIN_HASH_MASK;
David Rientjesadc19382009-09-25 15:20:09 -0700564 while (!setup_node_range(i++, addr, size, max_addr))
David Rientjes382591d2007-05-02 19:27:09 +0200565 ;
566 return i - node_start;
567}
568
569/*
Thomas Gleixner886533a2008-05-12 15:43:36 +0200570 * Sets up the system RAM area from start_pfn to last_pfn according to the
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200571 * numa=fake command-line option.
572 */
David Rientjesadc19382009-09-25 15:20:09 -0700573static int __init numa_emulation(unsigned long start_pfn,
574 unsigned long last_pfn, int acpi, int k8)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200575{
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100576 u64 size, addr = start_pfn << PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200577 u64 max_addr = last_pfn << PAGE_SHIFT;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100578 int num_nodes = 0, num = 0, coeff_flag, coeff = -1, i;
David Rientjesadc19382009-09-25 15:20:09 -0700579 int num_phys_nodes;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200580
David Rientjesadc19382009-09-25 15:20:09 -0700581 num_phys_nodes = setup_physnodes(addr, max_addr, acpi, k8);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200582 /*
583 * If the numa=fake command-line is just a single number N, split the
584 * system RAM into N fake nodes.
585 */
586 if (!strchr(cmdline, '*') && !strchr(cmdline, ',')) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100587 long n = simple_strtol(cmdline, NULL, 0);
588
David Rientjesadc19382009-09-25 15:20:09 -0700589 num_nodes = split_nodes_interleave(addr, max_addr,
590 num_phys_nodes, n);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200591 if (num_nodes < 0)
592 return num_nodes;
593 goto out;
594 }
595
596 /* Parse the command line. */
David Rientjes382591d2007-05-02 19:27:09 +0200597 for (coeff_flag = 0; ; cmdline++) {
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200598 if (*cmdline && isdigit(*cmdline)) {
599 num = num * 10 + *cmdline - '0';
600 continue;
601 }
David Rientjes382591d2007-05-02 19:27:09 +0200602 if (*cmdline == '*') {
603 if (num > 0)
604 coeff = num;
605 coeff_flag = 1;
606 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200607 if (!*cmdline || *cmdline == ',') {
David Rientjes382591d2007-05-02 19:27:09 +0200608 if (!coeff_flag)
609 coeff = 1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200610 /*
611 * Round down to the nearest FAKE_NODE_MIN_SIZE.
612 * Command-line coefficients are in megabytes.
613 */
614 size = ((u64)num << 20) & FAKE_NODE_MIN_HASH_MASK;
David Rientjes382591d2007-05-02 19:27:09 +0200615 if (size)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200616 for (i = 0; i < coeff; i++, num_nodes++)
David Rientjesadc19382009-09-25 15:20:09 -0700617 if (setup_node_range(num_nodes, &addr,
618 size, max_addr) < 0)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200619 goto done;
David Rientjes382591d2007-05-02 19:27:09 +0200620 if (!*cmdline)
621 break;
622 coeff_flag = 0;
623 coeff = -1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200624 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200625 num = 0;
626 }
627done:
628 if (!num_nodes)
629 return -1;
David Rientjes14694d72007-05-02 19:27:09 +0200630 /* Fill remainder of system RAM, if appropriate. */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200631 if (addr < max_addr) {
David Rientjes382591d2007-05-02 19:27:09 +0200632 if (coeff_flag && coeff < 0) {
633 /* Split remaining nodes into num-sized chunks */
David Rientjesadc19382009-09-25 15:20:09 -0700634 num_nodes += split_nodes_by_size(&addr, max_addr,
David Rientjes382591d2007-05-02 19:27:09 +0200635 num_nodes, num);
636 goto out;
637 }
David Rientjes14694d72007-05-02 19:27:09 +0200638 switch (*(cmdline - 1)) {
639 case '*':
640 /* Split remaining nodes into coeff chunks */
641 if (coeff <= 0)
642 break;
David Rientjesadc19382009-09-25 15:20:09 -0700643 num_nodes += split_nodes_equally(&addr, max_addr,
David Rientjes14694d72007-05-02 19:27:09 +0200644 num_nodes, coeff);
645 break;
646 case ',':
647 /* Do not allocate remaining system RAM */
648 break;
649 default:
650 /* Give one final node */
David Rientjesadc19382009-09-25 15:20:09 -0700651 setup_node_range(num_nodes, &addr, max_addr - addr,
652 max_addr);
David Rientjes14694d72007-05-02 19:27:09 +0200653 num_nodes++;
654 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200655 }
656out:
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700657 memnode_shift = compute_hash_shift(nodes, num_nodes, NULL);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200658 if (memnode_shift < 0) {
659 memnode_shift = 0;
660 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
661 "disabled.\n");
662 return -1;
663 }
664
665 /*
David Rientjesadc19382009-09-25 15:20:09 -0700666 * We need to vacate all active ranges that may have been registered for
667 * the e820 memory map.
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200668 */
669 remove_all_active_ranges();
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200670 for_each_node_mask(i, node_possible_map) {
Mel Gorman5cb248a2006-09-27 01:49:52 -0700671 e820_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
672 nodes[i].end >> PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100673 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700674 }
David Rientjes3484d792007-07-21 17:10:32 +0200675 acpi_fake_nodes(nodes, num_nodes);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100676 numa_init_array();
677 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200679#endif /* CONFIG_NUMA_EMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
David Rientjes8ee2deb2009-09-25 15:20:00 -0700681void __init initmem_init(unsigned long start_pfn, unsigned long last_pfn,
682 int acpi, int k8)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100683{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int i;
685
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200686 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800687 nodes_clear(node_online_map);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#ifdef CONFIG_NUMA_EMU
David Rientjesadc19382009-09-25 15:20:09 -0700690 if (cmdline && !numa_emulation(start_pfn, last_pfn, acpi, k8))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100691 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200692 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800693 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#endif
695
696#ifdef CONFIG_ACPI_NUMA
David Rientjes87162732009-09-25 15:20:04 -0700697 if (!numa_off && acpi && !acpi_scan_nodes(start_pfn << PAGE_SHIFT,
698 last_pfn << PAGE_SHIFT))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100699 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200700 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800701 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#endif
703
704#ifdef CONFIG_K8_NUMA
David Rientjes8ee2deb2009-09-25 15:20:00 -0700705 if (!numa_off && k8 && !k8_scan_nodes())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200707 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800708 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#endif
710 printk(KERN_INFO "%s\n",
711 numa_off ? "NUMA turned off" : "No NUMA configuration found");
712
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100713 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 start_pfn << PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200715 last_pfn << PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100716 /* setup dummy node covering all memory */
717 memnode_shift = 63;
Amul Shah076422d2007-02-13 13:26:19 +0100718 memnodemap = memnode.embedded_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 memnodemap[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 node_set_online(0);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200721 node_set(0, node_possible_map);
Mike Travis168ef542008-12-16 17:34:01 -0800722 for (i = 0; i < nr_cpu_ids; i++)
Andi Kleen69d81fc2005-11-05 17:25:53 +0100723 numa_set_node(i, 0);
Thomas Gleixner886533a2008-05-12 15:43:36 +0200724 e820_register_active_regions(0, start_pfn, last_pfn);
725 setup_node_bootmem(0, start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT);
Andi Kleen69d81fc2005-11-05 17:25:53 +0100726}
727
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100728unsigned long __init numa_free_all_bootmem(void)
729{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 unsigned long pages = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100731 int i;
732
733 for_each_online_node(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 pages += free_all_bootmem_node(NODE_DATA(i));
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return pages;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100737}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200739static __init int numa_setup(char *opt)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100740{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200741 if (!opt)
742 return -EINVAL;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100743 if (!strncmp(opt, "off", 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 numa_off = 1;
745#ifdef CONFIG_NUMA_EMU
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200746 if (!strncmp(opt, "fake=", 5))
747 cmdline = opt + 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748#endif
749#ifdef CONFIG_ACPI_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100750 if (!strncmp(opt, "noacpi", 6))
751 acpi_numa = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#endif
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200753 return 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100754}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200755early_param("numa", numa_setup);
756
Mike Travis23ca4bb2008-05-12 21:21:12 +0200757#ifdef CONFIG_NUMA
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800758
759static __init int find_near_online_node(int node)
760{
761 int n, val;
762 int min_val = INT_MAX;
763 int best_node = -1;
764
765 for_each_online_node(n) {
766 val = node_distance(node, n);
767
768 if (val < min_val) {
769 min_val = val;
770 best_node = n;
771 }
772 }
773
774 return best_node;
775}
776
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100777/*
778 * Setup early cpu_to_node.
779 *
780 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
781 * and apicid_to_node[] tables have valid entries for a CPU.
782 * This means we skip cpu_to_node[] initialisation for NUMA
783 * emulation and faking node case (when running a kernel compiled
784 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
785 * is already initialized in a round robin manner at numa_init_array,
786 * prior to this call, and this initialization is good enough
787 * for the fake NUMA cases.
Mike Travis23ca4bb2008-05-12 21:21:12 +0200788 *
789 * Called before the per_cpu areas are setup.
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100790 */
791void __init init_cpu_to_node(void)
792{
Mike Travis23ca4bb2008-05-12 21:21:12 +0200793 int cpu;
794 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100795
Mike Travis23ca4bb2008-05-12 21:21:12 +0200796 BUG_ON(cpu_to_apicid == NULL);
797
798 for_each_possible_cpu(cpu) {
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800799 int node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200800 u16 apicid = cpu_to_apicid[cpu];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100801
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100802 if (apicid == BAD_APICID)
803 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800804 node = apicid_to_node[apicid];
805 if (node == NUMA_NO_NODE)
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100806 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800807 if (!node_online(node))
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800808 node = find_near_online_node(node);
Mike Travis23ca4bb2008-05-12 21:21:12 +0200809 numa_set_node(cpu, node);
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100810 }
811}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200812#endif
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100813
Andi Kleencf050132006-01-11 22:46:27 +0100814
Brian Gerst6470aff2009-01-27 12:56:47 +0900815void __cpuinit numa_set_node(int cpu, int node)
816{
817 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
818
819 /* early setting, no percpu area yet */
820 if (cpu_to_node_map) {
821 cpu_to_node_map[cpu] = node;
822 return;
823 }
824
825#ifdef CONFIG_DEBUG_PER_CPU_MAPS
Brian Gerst44581a22009-02-08 09:58:40 -0500826 if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900827 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
828 dump_stack();
829 return;
830 }
831#endif
832 per_cpu(x86_cpu_to_node_map, cpu) = node;
833
834 if (node != NUMA_NO_NODE)
835 per_cpu(node_number, cpu) = node;
836}
837
838void __cpuinit numa_clear_node(int cpu)
839{
840 numa_set_node(cpu, NUMA_NO_NODE);
841}
842
843#ifndef CONFIG_DEBUG_PER_CPU_MAPS
844
845void __cpuinit numa_add_cpu(int cpu)
846{
Rusty Russellc032ef602009-03-13 14:49:53 +1030847 cpumask_set_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900848}
849
850void __cpuinit numa_remove_cpu(int cpu)
851{
Rusty Russellc032ef602009-03-13 14:49:53 +1030852 cpumask_clear_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900853}
854
855#else /* CONFIG_DEBUG_PER_CPU_MAPS */
856
857/*
858 * --------- debug versions of the numa functions ---------
859 */
860static void __cpuinit numa_set_cpumask(int cpu, int enable)
861{
862 int node = early_cpu_to_node(cpu);
Rusty Russell73e907d2009-03-13 14:49:57 +1030863 struct cpumask *mask;
Brian Gerst6470aff2009-01-27 12:56:47 +0900864 char buf[64];
865
Rusty Russellc032ef602009-03-13 14:49:53 +1030866 mask = node_to_cpumask_map[node];
867 if (mask == NULL) {
868 printk(KERN_ERR "node_to_cpumask_map[%i] NULL\n", node);
Brian Gerst6470aff2009-01-27 12:56:47 +0900869 dump_stack();
870 return;
871 }
872
Brian Gerst6470aff2009-01-27 12:56:47 +0900873 if (enable)
Rusty Russellc032ef602009-03-13 14:49:53 +1030874 cpumask_set_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900875 else
Rusty Russellc032ef602009-03-13 14:49:53 +1030876 cpumask_clear_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900877
878 cpulist_scnprintf(buf, sizeof(buf), mask);
879 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
880 enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf);
881}
882
883void __cpuinit numa_add_cpu(int cpu)
884{
885 numa_set_cpumask(cpu, 1);
886}
887
888void __cpuinit numa_remove_cpu(int cpu)
889{
890 numa_set_cpumask(cpu, 0);
891}
892
893int cpu_to_node(int cpu)
894{
895 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
896 printk(KERN_WARNING
897 "cpu_to_node(%d): usage too early!\n", cpu);
898 dump_stack();
899 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
900 }
901 return per_cpu(x86_cpu_to_node_map, cpu);
902}
903EXPORT_SYMBOL(cpu_to_node);
904
905/*
906 * Same function as cpu_to_node() but used if called before the
907 * per_cpu areas are setup.
908 */
909int early_cpu_to_node(int cpu)
910{
911 if (early_per_cpu_ptr(x86_cpu_to_node_map))
912 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
913
Brian Gerst44581a22009-02-08 09:58:40 -0500914 if (!cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900915 printk(KERN_WARNING
916 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
917 dump_stack();
918 return NUMA_NO_NODE;
919 }
920 return per_cpu(x86_cpu_to_node_map, cpu);
921}
922
Brian Gerst6470aff2009-01-27 12:56:47 +0900923/*
Brian Gerst6470aff2009-01-27 12:56:47 +0900924 * --------- end of debug versions of the numa functions ---------
925 */
926
927#endif /* CONFIG_DEBUG_PER_CPU_MAPS */