blob: f2721de30a43cc59c7fb232c34417c2c5c71b69d [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>
Yinghai Lu72d7c3b2010-08-25 13:39:17 -070010#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mmzone.h>
12#include <linux/ctype.h>
13#include <linux/module.h>
14#include <linux/nodemask.h>
travis@sgi.com3cc87e32008-01-30 13:33:11 +010015#include <linux/sched.h>
Tejun Heod8fc3af2011-02-16 12:13:06 +010016#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/e820.h>
19#include <asm/proto.h>
20#include <asm/dma.h>
21#include <asm/numa.h>
22#include <asm/acpi.h>
Andreas Herrmann23ac4ae2010-09-17 18:03:43 +020023#include <asm/amd_nb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Tejun Heo97e7b782011-02-16 17:11:08 +010025struct numa_memblk {
26 u64 start;
27 u64 end;
28 int nid;
29};
30
31struct numa_meminfo {
32 int nr_blks;
33 struct numa_memblk blk[NR_NODE_MEMBLKS];
34};
35
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070036struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010037EXPORT_SYMBOL(node_data);
38
Tejun Heoec8cf29b2011-02-16 12:13:07 +010039nodemask_t cpu_nodes_parsed __initdata;
40nodemask_t mem_nodes_parsed __initdata;
41
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010042struct memnode memnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Thomas Gleixner864fc312008-05-12 15:43:36 +020044static unsigned long __initdata nodemap_addr;
45static unsigned long __initdata nodemap_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Tejun Heo97e7b782011-02-16 17:11:08 +010047static struct numa_meminfo numa_meminfo __initdata;
Tejun Heoef396ec2011-02-16 17:11:07 +010048
Tejun Heo206e4202011-02-16 12:13:07 +010049struct bootnode numa_nodes[MAX_NUMNODES] __initdata;
50
Brian Gerst6470aff2009-01-27 12:56:47 +090051/*
Eric Dumazet529a3402005-11-05 17:25:54 +010052 * Given a shift value, try to populate memnodemap[]
53 * Returns :
54 * 1 if OK
55 * 0 if memnodmap[] too small (of shift too small)
56 * -1 if node overlap or lost ram (shift too big)
57 */
Tejun Heo97e7b782011-02-16 17:11:08 +010058static int __init populate_memnodemap(const struct numa_meminfo *mi, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Eric Dumazet529a3402005-11-05 17:25:54 +010060 unsigned long addr, end;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010061 int i, res = -1;
Keith Manntheyb6846642005-07-28 21:15:38 -070062
travis@sgi.com43238382008-01-30 13:33:25 +010063 memset(memnodemap, 0xff, sizeof(s16)*memnodemapsize);
Tejun Heo97e7b782011-02-16 17:11:08 +010064 for (i = 0; i < mi->nr_blks; i++) {
65 addr = mi->blk[i].start;
66 end = mi->blk[i].end;
Eric Dumazet529a3402005-11-05 17:25:54 +010067 if (addr >= end)
68 continue;
Amul Shah076422d2007-02-13 13:26:19 +010069 if ((end >> shift) >= memnodemapsize)
Eric Dumazet529a3402005-11-05 17:25:54 +010070 return 0;
71 do {
travis@sgi.com43238382008-01-30 13:33:25 +010072 if (memnodemap[addr >> shift] != NUMA_NO_NODE)
Eric Dumazet529a3402005-11-05 17:25:54 +010073 return -1;
Tejun Heo97e7b782011-02-16 17:11:08 +010074 memnodemap[addr >> shift] = mi->blk[i].nid;
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 Ludbef7b52010-12-27 16:48:08 -080092 nodemap_addr = memblock_find_in_range(addr, get_max_mapped(),
Yinghai Lu24a5da72008-02-01 17:49:41 +010093 nodemap_size, L1_CACHE_BYTES);
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070094 if (nodemap_addr == MEMBLOCK_ERROR) {
Amul Shah076422d2007-02-13 13:26:19 +010095 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 Lua9ce6bc2010-08-25 13:39:17 -0700101 memblock_x86_reserve_range(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 */
Tejun Heo97e7b782011-02-16 17:11:08 +0100112static int __init extract_lsb_from_nodes(const struct numa_meminfo *mi)
Amul Shah076422d2007-02-13 13:26:19 +0100113{
Amul Shah54413922007-02-13 13:26:20 +0100114 int i, nodes_used = 0;
Amul Shah076422d2007-02-13 13:26:19 +0100115 unsigned long start, end;
116 unsigned long bitfield = 0, memtop = 0;
117
Tejun Heo97e7b782011-02-16 17:11:08 +0100118 for (i = 0; i < mi->nr_blks; i++) {
119 start = mi->blk[i].start;
120 end = mi->blk[i].end;
Amul Shah076422d2007-02-13 13:26:19 +0100121 if (start >= end)
122 continue;
Amul Shah54413922007-02-13 13:26:20 +0100123 bitfield |= start;
124 nodes_used++;
Amul Shah076422d2007-02-13 13:26:19 +0100125 if (end > memtop)
126 memtop = end;
127 }
Amul Shah54413922007-02-13 13:26:20 +0100128 if (nodes_used <= 1)
129 i = 63;
130 else
131 i = find_first_bit(&bitfield, sizeof(unsigned long)*8);
Amul Shah076422d2007-02-13 13:26:19 +0100132 memnodemapsize = (memtop >> i)+1;
133 return i;
134}
135
Tejun Heo97e7b782011-02-16 17:11:08 +0100136static int __init compute_hash_shift(const struct numa_meminfo *mi)
Eric Dumazet529a3402005-11-05 17:25:54 +0100137{
Amul Shah076422d2007-02-13 13:26:19 +0100138 int shift;
Eric Dumazet529a3402005-11-05 17:25:54 +0100139
Tejun Heo97e7b782011-02-16 17:11:08 +0100140 shift = extract_lsb_from_nodes(mi);
Amul Shah076422d2007-02-13 13:26:19 +0100141 if (allocate_cachealigned_memnodemap())
142 return -1;
Andi Kleen6b050f82006-01-11 22:44:33 +0100143 printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n",
Eric Dumazet529a3402005-11-05 17:25:54 +0100144 shift);
145
Tejun Heo97e7b782011-02-16 17:11:08 +0100146 if (populate_memnodemap(mi, shift) != 1) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100147 printk(KERN_INFO "Your memory is not aligned you need to "
148 "rebuild your kernel with a bigger NODEMAPSIZE "
149 "shift=%d\n", shift);
Eric Dumazet529a3402005-11-05 17:25:54 +0100150 return -1;
151 }
Keith Manntheyb6846642005-07-28 21:15:38 -0700152 return shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
KAMEZAWA Hiroyukif2dbcfa2009-02-18 14:48:32 -0800155int __meminit __early_pfn_to_nid(unsigned long pfn)
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700156{
157 return phys_to_nid(pfn << PAGE_SHIFT);
158}
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700159
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100160static void * __init early_node_mem(int nodeid, unsigned long start,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100161 unsigned long end, unsigned long size,
162 unsigned long align)
Andi Kleena8062232006-04-07 19:49:21 +0200163{
Yinghai Lucef625e2010-02-10 01:20:18 -0800164 unsigned long mem;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100165
Yinghai Lucef625e2010-02-10 01:20:18 -0800166 /*
167 * put it on high as possible
168 * something will go with NODE_DATA
169 */
170 if (start < (MAX_DMA_PFN<<PAGE_SHIFT))
171 start = MAX_DMA_PFN<<PAGE_SHIFT;
172 if (start < (MAX_DMA32_PFN<<PAGE_SHIFT) &&
173 end > (MAX_DMA32_PFN<<PAGE_SHIFT))
174 start = MAX_DMA32_PFN<<PAGE_SHIFT;
Yinghai Lu72d7c3b2010-08-25 13:39:17 -0700175 mem = memblock_x86_find_in_range_node(nodeid, start, end, size, align);
176 if (mem != MEMBLOCK_ERROR)
Andi Kleena8062232006-04-07 19:49:21 +0200177 return __va(mem);
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100178
Yinghai Lucef625e2010-02-10 01:20:18 -0800179 /* extend the search scope */
180 end = max_pfn_mapped << PAGE_SHIFT;
Yinghai Lu419db272010-10-28 09:50:17 -0700181 start = MAX_DMA_PFN << PAGE_SHIFT;
182 mem = memblock_find_in_range(start, end, size, align);
Yinghai Lu72d7c3b2010-08-25 13:39:17 -0700183 if (mem != MEMBLOCK_ERROR)
Yinghai Lu1842f902010-02-10 01:20:15 -0800184 return __va(mem);
185
186 printk(KERN_ERR "Cannot find %lu bytes in node %d\n",
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100187 size, nodeid);
Yinghai Lu1842f902010-02-10 01:20:15 -0800188
189 return NULL;
Andi Kleena8062232006-04-07 19:49:21 +0200190}
191
Tejun Heoef396ec2011-02-16 17:11:07 +0100192static __init int conflicting_memblks(unsigned long start, unsigned long end)
193{
Tejun Heo97e7b782011-02-16 17:11:08 +0100194 struct numa_meminfo *mi = &numa_meminfo;
Tejun Heoef396ec2011-02-16 17:11:07 +0100195 int i;
Tejun Heo97e7b782011-02-16 17:11:08 +0100196
197 for (i = 0; i < mi->nr_blks; i++) {
198 struct numa_memblk *blk = &mi->blk[i];
199
200 if (blk->start == blk->end)
Tejun Heoef396ec2011-02-16 17:11:07 +0100201 continue;
Tejun Heo97e7b782011-02-16 17:11:08 +0100202 if (blk->end > start && blk->start < end)
203 return blk->nid;
204 if (blk->end == end && blk->start == start)
205 return blk->nid;
Tejun Heoef396ec2011-02-16 17:11:07 +0100206 }
207 return -1;
208}
209
210int __init numa_add_memblk(int nid, u64 start, u64 end)
211{
Tejun Heo97e7b782011-02-16 17:11:08 +0100212 struct numa_meminfo *mi = &numa_meminfo;
Tejun Heoef396ec2011-02-16 17:11:07 +0100213 int i;
214
215 i = conflicting_memblks(start, end);
216 if (i == nid) {
217 printk(KERN_WARNING "NUMA: Warning: node %d (%Lx-%Lx) overlaps with itself (%Lx-%Lx)\n",
218 nid, start, end, numa_nodes[i].start, numa_nodes[i].end);
219 } else if (i >= 0) {
220 printk(KERN_ERR "NUMA: node %d (%Lx-%Lx) overlaps with node %d (%Lx-%Lx)\n",
221 nid, start, end, i,
222 numa_nodes[i].start, numa_nodes[i].end);
223 return -EINVAL;
224 }
225
Tejun Heo97e7b782011-02-16 17:11:08 +0100226 mi->blk[mi->nr_blks].start = start;
227 mi->blk[mi->nr_blks].end = end;
228 mi->blk[mi->nr_blks].nid = nid;
229 mi->nr_blks++;
Tejun Heoef396ec2011-02-16 17:11:07 +0100230 return 0;
231}
232
Tejun Heo206e4202011-02-16 12:13:07 +0100233static __init void cutoff_node(int i, unsigned long start, unsigned long end)
234{
235 struct bootnode *nd = &numa_nodes[i];
236
237 if (nd->start < start) {
238 nd->start = start;
239 if (nd->end < nd->start)
240 nd->start = nd->end;
241 }
242 if (nd->end > end) {
243 nd->end = end;
244 if (nd->start > nd->end)
245 nd->start = nd->end;
246 }
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/* Initialize bootmem allocator for a node */
Yinghai Lu7c437692009-05-15 13:59:37 -0700250void __init
251setup_node_bootmem(int nodeid, unsigned long start, unsigned long end)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100252{
Yinghai Lu08677212010-02-10 01:20:20 -0800253 unsigned long start_pfn, last_pfn, nodedata_phys;
Yinghai Lu7c437692009-05-15 13:59:37 -0700254 const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700255 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Yinghai Lu4c31e922009-04-22 14:19:27 -0700257 if (!end)
258 return;
259
Yinghai Lu7c437692009-05-15 13:59:37 -0700260 /*
261 * Don't confuse VM with a node that doesn't have the
262 * minimum amount of memory:
263 */
264 if (end && (end - start) < NODE_MIN_SIZE)
265 return;
266
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200267 start = roundup(start, ZONE_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Yinghai Lu08677212010-02-10 01:20:20 -0800269 printk(KERN_INFO "Initmem setup node %d %016lx-%016lx\n", nodeid,
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100270 start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 start_pfn = start >> PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200273 last_pfn = end >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Yinghai Lu24a5da72008-02-01 17:49:41 +0100275 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
276 SMP_CACHE_BYTES);
Andi Kleena8062232006-04-07 19:49:21 +0200277 if (node_data[nodeid] == NULL)
278 return;
279 nodedata_phys = __pa(node_data[nodeid]);
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700280 memblock_x86_reserve_range(nodedata_phys, nodedata_phys + pgdat_size, "NODE_DATA");
Yinghai Lu6118f762008-02-04 16:47:56 +0100281 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
282 nodedata_phys + pgdat_size - 1);
Yinghai Lu1842f902010-02-10 01:20:15 -0800283 nid = phys_to_nid(nodedata_phys);
284 if (nid != nodeid)
285 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nodeid, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
Yinghai Lu08677212010-02-10 01:20:20 -0800288 NODE_DATA(nodeid)->node_id = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200290 NODE_DATA(nodeid)->node_spanned_pages = last_pfn - start_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 node_set_online(nodeid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Tejun Heof9c60252011-02-16 17:11:09 +0100295static int __init numa_cleanup_meminfo(struct numa_meminfo *mi)
Tejun Heofd0435d2011-02-16 17:11:08 +0100296{
Tejun Heoef396ec2011-02-16 17:11:07 +0100297 int i;
298
299 /*
300 * Join together blocks on the same node, holes between
301 * which don't overlap with memory on other nodes.
302 */
Tejun Heo97e7b782011-02-16 17:11:08 +0100303 for (i = 0; i < mi->nr_blks; ++i) {
304 struct numa_memblk *bi = &mi->blk[i];
Tejun Heoef396ec2011-02-16 17:11:07 +0100305 int j, k;
306
Tejun Heo97e7b782011-02-16 17:11:08 +0100307 for (j = i + 1; j < mi->nr_blks; ++j) {
308 struct numa_memblk *bj = &mi->blk[j];
Tejun Heoef396ec2011-02-16 17:11:07 +0100309 unsigned long start, end;
310
Tejun Heo97e7b782011-02-16 17:11:08 +0100311 if (bi->nid != bj->nid)
Tejun Heoef396ec2011-02-16 17:11:07 +0100312 continue;
Tejun Heo97e7b782011-02-16 17:11:08 +0100313 start = min(bi->end, bj->end);
314 end = max(bi->start, bj->start);
315 for (k = 0; k < mi->nr_blks; ++k) {
316 struct numa_memblk *bk = &mi->blk[k];
317
318 if (bi->nid == bk->nid)
Tejun Heoef396ec2011-02-16 17:11:07 +0100319 continue;
Tejun Heo97e7b782011-02-16 17:11:08 +0100320 if (start < bk->end && end > bk->start)
Tejun Heoef396ec2011-02-16 17:11:07 +0100321 break;
322 }
Tejun Heo97e7b782011-02-16 17:11:08 +0100323 if (k < mi->nr_blks)
Tejun Heoef396ec2011-02-16 17:11:07 +0100324 continue;
Tejun Heo97e7b782011-02-16 17:11:08 +0100325 start = min(bi->start, bj->start);
326 end = max(bi->end, bj->end);
Tejun Heoef396ec2011-02-16 17:11:07 +0100327 printk(KERN_INFO "NUMA: Node %d [%Lx,%Lx) + [%Lx,%Lx) -> [%lx,%lx)\n",
Tejun Heo97e7b782011-02-16 17:11:08 +0100328 bi->nid, bi->start, bi->end, bj->start, bj->end,
Tejun Heoef396ec2011-02-16 17:11:07 +0100329 start, end);
Tejun Heo97e7b782011-02-16 17:11:08 +0100330 bi->start = start;
331 bi->end = end;
332 k = --mi->nr_blks - j;
333 memmove(mi->blk + j, mi->blk + j + 1,
334 k * sizeof(mi->blk[0]));
Tejun Heoef396ec2011-02-16 17:11:07 +0100335 --j;
336 }
337 }
338
Tejun Heof9c60252011-02-16 17:11:09 +0100339 return 0;
340}
341
342/*
343 * Sanity check to catch more bad NUMA configurations (they are amazingly
344 * common). Make sure the nodes cover all memory.
345 */
346static int __init nodes_cover_memory(const struct bootnode *nodes)
347{
348 unsigned long numaram, e820ram;
349 int i;
350
351 numaram = 0;
352 for_each_node_mask(i, mem_nodes_parsed) {
353 unsigned long s = nodes[i].start >> PAGE_SHIFT;
354 unsigned long e = nodes[i].end >> PAGE_SHIFT;
355 numaram += e - s;
356 numaram -= __absent_pages_in_range(i, s, e);
357 if ((long)numaram < 0)
358 numaram = 0;
359 }
360
361 e820ram = max_pfn - (memblock_x86_hole_size(0,
362 max_pfn << PAGE_SHIFT) >> PAGE_SHIFT);
363 /* We seem to lose 3 pages somewhere. Allow 1M of slack. */
364 if ((long)(e820ram - numaram) >= (1 << (20 - PAGE_SHIFT))) {
365 printk(KERN_ERR "NUMA: nodes only cover %luMB of your %luMB e820 RAM. Not used.\n",
366 (numaram << PAGE_SHIFT) >> 20,
367 (e820ram << PAGE_SHIFT) >> 20);
368 return 0;
369 }
370 return 1;
371}
372
373static int __init numa_register_memblks(struct numa_meminfo *mi)
374{
375 int i;
376
377 /* Account for nodes with cpus and no memory */
378 nodes_or(node_possible_map, mem_nodes_parsed, cpu_nodes_parsed);
379 if (WARN_ON(nodes_empty(node_possible_map)))
380 return -EINVAL;
381
Tejun Heo97e7b782011-02-16 17:11:08 +0100382 memnode_shift = compute_hash_shift(mi);
Tejun Heoef396ec2011-02-16 17:11:07 +0100383 if (memnode_shift < 0) {
384 printk(KERN_ERR "NUMA: No NUMA node hash function found. Contact maintainer\n");
385 return -EINVAL;
386 }
387
Tejun Heo97e7b782011-02-16 17:11:08 +0100388 for (i = 0; i < mi->nr_blks; i++)
389 memblock_x86_register_active_regions(mi->blk[i].nid,
390 mi->blk[i].start >> PAGE_SHIFT,
391 mi->blk[i].end >> PAGE_SHIFT);
Tejun Heofd0435d2011-02-16 17:11:08 +0100392
393 /* for out of order entries */
394 sort_node_map();
395 if (!nodes_cover_memory(numa_nodes))
396 return -EINVAL;
397
398 init_memory_mapping_high();
399
400 /* Finally register nodes. */
401 for_each_node_mask(i, node_possible_map)
402 setup_node_bootmem(i, numa_nodes[i].start, numa_nodes[i].end);
403
404 /*
405 * Try again in case setup_node_bootmem missed one due to missing
406 * bootmem.
407 */
408 for_each_node_mask(i, node_possible_map)
409 if (!node_online(i))
410 setup_node_bootmem(i, numa_nodes[i].start,
411 numa_nodes[i].end);
412
Tejun Heoef396ec2011-02-16 17:11:07 +0100413 return 0;
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416#ifdef CONFIG_NUMA_EMU
Rohit Seth53fee042007-02-13 13:26:22 +0100417/* Numa emulation */
David Rientjesadc19382009-09-25 15:20:09 -0700418static struct bootnode nodes[MAX_NUMNODES] __initdata;
David Rientjesc1c34432010-12-22 17:23:54 -0800419static struct bootnode physnodes[MAX_NUMNODES] __cpuinitdata;
Thomas Gleixner864fc312008-05-12 15:43:36 +0200420static char *cmdline __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Jan Beulich90321602011-01-19 08:57:21 +0000422void __init numa_emu_cmdline(char *str)
423{
424 cmdline = str;
425}
426
Tejun Heo190955482011-02-16 12:13:07 +0100427static int __init setup_physnodes(unsigned long start, unsigned long end)
David Rientjesadc19382009-09-25 15:20:09 -0700428{
David Rientjesadc19382009-09-25 15:20:09 -0700429 int ret = 0;
430 int i;
431
David Rientjesc1c34432010-12-22 17:23:54 -0800432 memset(physnodes, 0, sizeof(physnodes));
Tejun Heo190955482011-02-16 12:13:07 +0100433
434 for_each_node_mask(i, mem_nodes_parsed) {
435 physnodes[i].start = numa_nodes[i].start;
436 physnodes[i].end = numa_nodes[i].end;
437 }
438
David Rientjesadc19382009-09-25 15:20:09 -0700439 /*
440 * Basic sanity checking on the physical node map: there may be errors
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +0200441 * if the SRAT or AMD code incorrectly reported the topology or the mem=
David Rientjesadc19382009-09-25 15:20:09 -0700442 * kernel parameter is used.
443 */
David Rientjesa387e952010-12-22 17:23:56 -0800444 for (i = 0; i < MAX_NUMNODES; i++) {
David Rientjesadc19382009-09-25 15:20:09 -0700445 if (physnodes[i].start == physnodes[i].end)
446 continue;
447 if (physnodes[i].start > end) {
448 physnodes[i].end = physnodes[i].start;
449 continue;
450 }
451 if (physnodes[i].end < start) {
452 physnodes[i].start = physnodes[i].end;
453 continue;
454 }
455 if (physnodes[i].start < start)
456 physnodes[i].start = start;
457 if (physnodes[i].end > end)
458 physnodes[i].end = end;
David Rientjesadc19382009-09-25 15:20:09 -0700459 ret++;
460 }
461
462 /*
463 * If no physical topology was detected, a single node is faked to cover
464 * the entire address space.
465 */
466 if (!ret) {
467 physnodes[ret].start = start;
468 physnodes[ret].end = end;
469 ret = 1;
470 }
471 return ret;
472}
473
David Rientjesf51bf302010-12-22 17:23:51 -0800474static void __init fake_physnodes(int acpi, int amd, int nr_nodes)
475{
476 int i;
477
478 BUG_ON(acpi && amd);
479#ifdef CONFIG_ACPI_NUMA
480 if (acpi)
481 acpi_fake_nodes(nodes, nr_nodes);
482#endif
483#ifdef CONFIG_AMD_NUMA
484 if (amd)
485 amd_fake_nodes(nodes, nr_nodes);
486#endif
487 if (!acpi && !amd)
488 for (i = 0; i < nr_cpu_ids; i++)
489 numa_set_node(i, 0);
490}
491
Rohit Seth53fee042007-02-13 13:26:22 +0100492/*
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100493 * Setups up nid to range from addr to addr + size. If the end
494 * boundary is greater than max_addr, then max_addr is used instead.
495 * The return value is 0 if there is additional memory left for
496 * allocation past addr and -1 otherwise. addr is adjusted to be at
497 * the end of the node.
Rohit Seth53fee042007-02-13 13:26:22 +0100498 */
David Rientjesadc19382009-09-25 15:20:09 -0700499static int __init setup_node_range(int nid, u64 *addr, u64 size, u64 max_addr)
Rohit Seth53fee042007-02-13 13:26:22 +0100500{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200501 int ret = 0;
502 nodes[nid].start = *addr;
503 *addr += size;
504 if (*addr >= max_addr) {
505 *addr = max_addr;
506 ret = -1;
507 }
508 nodes[nid].end = *addr;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200509 node_set(nid, node_possible_map);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200510 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
511 nodes[nid].start, nodes[nid].end,
512 (nodes[nid].end - nodes[nid].start) >> 20);
513 return ret;
Rohit Seth53fee042007-02-13 13:26:22 +0100514}
515
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200516/*
David Rientjesadc19382009-09-25 15:20:09 -0700517 * Sets up nr_nodes fake nodes interleaved over physical nodes ranging from addr
518 * to max_addr. The return value is the number of nodes allocated.
519 */
David Rientjesc1c34432010-12-22 17:23:54 -0800520static int __init split_nodes_interleave(u64 addr, u64 max_addr, int nr_nodes)
David Rientjesadc19382009-09-25 15:20:09 -0700521{
522 nodemask_t physnode_mask = NODE_MASK_NONE;
523 u64 size;
524 int big;
525 int ret = 0;
526 int i;
527
528 if (nr_nodes <= 0)
529 return -1;
530 if (nr_nodes > MAX_NUMNODES) {
531 pr_info("numa=fake=%d too large, reducing to %d\n",
532 nr_nodes, MAX_NUMNODES);
533 nr_nodes = MAX_NUMNODES;
534 }
535
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700536 size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) / nr_nodes;
David Rientjesadc19382009-09-25 15:20:09 -0700537 /*
538 * Calculate the number of big nodes that can be allocated as a result
539 * of consolidating the remainder.
540 */
David Rientjes68fd1112010-02-15 13:43:25 -0800541 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * nr_nodes) /
David Rientjesadc19382009-09-25 15:20:09 -0700542 FAKE_NODE_MIN_SIZE;
543
544 size &= FAKE_NODE_MIN_HASH_MASK;
545 if (!size) {
546 pr_err("Not enough memory for each node. "
547 "NUMA emulation disabled.\n");
548 return -1;
549 }
550
David Rientjesc1c34432010-12-22 17:23:54 -0800551 for (i = 0; i < MAX_NUMNODES; i++)
David Rientjesadc19382009-09-25 15:20:09 -0700552 if (physnodes[i].start != physnodes[i].end)
553 node_set(i, physnode_mask);
554
555 /*
556 * Continue to fill physical nodes with fake nodes until there is no
557 * memory left on any of them.
558 */
559 while (nodes_weight(physnode_mask)) {
560 for_each_node_mask(i, physnode_mask) {
561 u64 end = physnodes[i].start + size;
562 u64 dma32_end = PFN_PHYS(MAX_DMA32_PFN);
563
564 if (ret < big)
565 end += FAKE_NODE_MIN_SIZE;
566
567 /*
568 * Continue to add memory to this fake node if its
569 * non-reserved memory is less than the per-node size.
570 */
571 while (end - physnodes[i].start -
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700572 memblock_x86_hole_size(physnodes[i].start, end) < size) {
David Rientjesadc19382009-09-25 15:20:09 -0700573 end += FAKE_NODE_MIN_SIZE;
574 if (end > physnodes[i].end) {
575 end = physnodes[i].end;
576 break;
577 }
578 }
579
580 /*
581 * If there won't be at least FAKE_NODE_MIN_SIZE of
582 * non-reserved memory in ZONE_DMA32 for the next node,
583 * this one must extend to the boundary.
584 */
585 if (end < dma32_end && dma32_end - end -
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700586 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
David Rientjesadc19382009-09-25 15:20:09 -0700587 end = dma32_end;
588
589 /*
590 * If there won't be enough non-reserved memory for the
591 * next node, this one must extend to the end of the
592 * physical node.
593 */
594 if (physnodes[i].end - end -
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700595 memblock_x86_hole_size(end, physnodes[i].end) < size)
David Rientjesadc19382009-09-25 15:20:09 -0700596 end = physnodes[i].end;
597
598 /*
599 * Avoid allocating more nodes than requested, which can
600 * happen as a result of rounding down each node's size
601 * to FAKE_NODE_MIN_SIZE.
602 */
603 if (nodes_weight(physnode_mask) + ret >= nr_nodes)
604 end = physnodes[i].end;
605
606 if (setup_node_range(ret++, &physnodes[i].start,
607 end - physnodes[i].start,
608 physnodes[i].end) < 0)
609 node_clear(i, physnode_mask);
610 }
611 }
612 return ret;
613}
614
615/*
David Rientjes8df5bb342010-02-15 13:43:30 -0800616 * Returns the end address of a node so that there is at least `size' amount of
617 * non-reserved memory or `max_addr' is reached.
618 */
619static u64 __init find_end_of_node(u64 start, u64 max_addr, u64 size)
620{
621 u64 end = start + size;
622
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700623 while (end - start - memblock_x86_hole_size(start, end) < size) {
David Rientjes8df5bb342010-02-15 13:43:30 -0800624 end += FAKE_NODE_MIN_SIZE;
625 if (end > max_addr) {
626 end = max_addr;
627 break;
628 }
629 }
630 return end;
631}
632
633/*
634 * Sets up fake nodes of `size' interleaved over physical nodes ranging from
635 * `addr' to `max_addr'. The return value is the number of nodes allocated.
636 */
637static int __init split_nodes_size_interleave(u64 addr, u64 max_addr, u64 size)
638{
639 nodemask_t physnode_mask = NODE_MASK_NONE;
640 u64 min_size;
641 int ret = 0;
642 int i;
643
644 if (!size)
645 return -1;
646 /*
647 * The limit on emulated nodes is MAX_NUMNODES, so the size per node is
648 * increased accordingly if the requested size is too small. This
649 * creates a uniform distribution of node sizes across the entire
650 * machine (but not necessarily over physical nodes).
651 */
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700652 min_size = (max_addr - addr - memblock_x86_hole_size(addr, max_addr)) /
David Rientjes8df5bb342010-02-15 13:43:30 -0800653 MAX_NUMNODES;
654 min_size = max(min_size, FAKE_NODE_MIN_SIZE);
655 if ((min_size & FAKE_NODE_MIN_HASH_MASK) < min_size)
656 min_size = (min_size + FAKE_NODE_MIN_SIZE) &
657 FAKE_NODE_MIN_HASH_MASK;
658 if (size < min_size) {
659 pr_err("Fake node size %LuMB too small, increasing to %LuMB\n",
660 size >> 20, min_size >> 20);
661 size = min_size;
662 }
663 size &= FAKE_NODE_MIN_HASH_MASK;
664
665 for (i = 0; i < MAX_NUMNODES; i++)
666 if (physnodes[i].start != physnodes[i].end)
667 node_set(i, physnode_mask);
668 /*
669 * Fill physical nodes with fake nodes of size until there is no memory
670 * left on any of them.
671 */
672 while (nodes_weight(physnode_mask)) {
673 for_each_node_mask(i, physnode_mask) {
674 u64 dma32_end = MAX_DMA32_PFN << PAGE_SHIFT;
675 u64 end;
676
677 end = find_end_of_node(physnodes[i].start,
678 physnodes[i].end, size);
679 /*
680 * If there won't be at least FAKE_NODE_MIN_SIZE of
681 * non-reserved memory in ZONE_DMA32 for the next node,
682 * this one must extend to the boundary.
683 */
684 if (end < dma32_end && dma32_end - end -
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700685 memblock_x86_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
David Rientjes8df5bb342010-02-15 13:43:30 -0800686 end = dma32_end;
687
688 /*
689 * If there won't be enough non-reserved memory for the
690 * next node, this one must extend to the end of the
691 * physical node.
692 */
693 if (physnodes[i].end - end -
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700694 memblock_x86_hole_size(end, physnodes[i].end) < size)
David Rientjes8df5bb342010-02-15 13:43:30 -0800695 end = physnodes[i].end;
696
697 /*
698 * Setup the fake node that will be allocated as bootmem
699 * later. If setup_node_range() returns non-zero, there
700 * is no more memory available on this physical node.
701 */
702 if (setup_node_range(ret++, &physnodes[i].start,
703 end - physnodes[i].start,
704 physnodes[i].end) < 0)
705 node_clear(i, physnode_mask);
706 }
707 }
708 return ret;
709}
710
711/*
Thomas Gleixner886533a2008-05-12 15:43:36 +0200712 * Sets up the system RAM area from start_pfn to last_pfn according to the
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200713 * numa=fake command-line option.
714 */
David Rientjesadc19382009-09-25 15:20:09 -0700715static int __init numa_emulation(unsigned long start_pfn,
Hans Rosenfeldeec1d4f2010-10-29 17:14:30 +0200716 unsigned long last_pfn, int acpi, int amd)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200717{
Tejun Heo97e7b782011-02-16 17:11:08 +0100718 static struct numa_meminfo ei __initdata;
David Rientjesca2107c2010-02-15 13:43:33 -0800719 u64 addr = start_pfn << PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200720 u64 max_addr = last_pfn << PAGE_SHIFT;
David Rientjesca2107c2010-02-15 13:43:33 -0800721 int num_nodes;
722 int i;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200723
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200724 /*
David Rientjes8df5bb342010-02-15 13:43:30 -0800725 * If the numa=fake command-line contains a 'M' or 'G', it represents
David Rientjesca2107c2010-02-15 13:43:33 -0800726 * the fixed node size. Otherwise, if it is just a single number N,
727 * split the system RAM into N fake nodes.
David Rientjes8df5bb342010-02-15 13:43:30 -0800728 */
729 if (strchr(cmdline, 'M') || strchr(cmdline, 'G')) {
David Rientjesca2107c2010-02-15 13:43:33 -0800730 u64 size;
731
David Rientjes8df5bb342010-02-15 13:43:30 -0800732 size = memparse(cmdline, &cmdline);
733 num_nodes = split_nodes_size_interleave(addr, max_addr, size);
David Rientjesca2107c2010-02-15 13:43:33 -0800734 } else {
735 unsigned long n;
736
737 n = simple_strtoul(cmdline, NULL, 0);
David Rientjesc1c34432010-12-22 17:23:54 -0800738 num_nodes = split_nodes_interleave(addr, max_addr, n);
David Rientjes8df5bb342010-02-15 13:43:30 -0800739 }
740
David Rientjesca2107c2010-02-15 13:43:33 -0800741 if (num_nodes < 0)
742 return num_nodes;
Tejun Heo8968dab2011-02-16 17:11:08 +0100743
Tejun Heo97e7b782011-02-16 17:11:08 +0100744 ei.nr_blks = num_nodes;
745 for (i = 0; i < ei.nr_blks; i++) {
746 ei.blk[i].start = nodes[i].start;
747 ei.blk[i].end = nodes[i].end;
748 ei.blk[i].nid = i;
749 }
Tejun Heo8968dab2011-02-16 17:11:08 +0100750
Tejun Heo97e7b782011-02-16 17:11:08 +0100751 memnode_shift = compute_hash_shift(&ei);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200752 if (memnode_shift < 0) {
753 memnode_shift = 0;
754 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
755 "disabled.\n");
756 return -1;
757 }
758
759 /*
David Rientjesadc19382009-09-25 15:20:09 -0700760 * We need to vacate all active ranges that may have been registered for
761 * the e820 memory map.
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200762 */
763 remove_all_active_ranges();
Yinghai Lu1411e0e2010-12-27 16:48:17 -0800764 for_each_node_mask(i, node_possible_map)
Yinghai Lua9ce6bc2010-08-25 13:39:17 -0700765 memblock_x86_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
Mel Gorman5cb248a2006-09-27 01:49:52 -0700766 nodes[i].end >> PAGE_SHIFT);
Yinghai Lu1411e0e2010-12-27 16:48:17 -0800767 init_memory_mapping_high();
768 for_each_node_mask(i, node_possible_map)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100769 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Tejun Heo190955482011-02-16 12:13:07 +0100770 setup_physnodes(addr, max_addr);
David Rientjesf51bf302010-12-22 17:23:51 -0800771 fake_physnodes(acpi, amd, num_nodes);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100772 numa_init_array();
773 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200775#endif /* CONFIG_NUMA_EMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Tejun Heoffe77a42011-02-16 12:13:06 +0100777static int dummy_numa_init(void)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 printk(KERN_INFO "%s\n",
780 numa_off ? "NUMA turned off" : "No NUMA configuration found");
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100781 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
Tejun Heo86ef4db2011-02-16 12:13:06 +0100782 0LU, max_pfn << PAGE_SHIFT);
Tejun Heoffe77a42011-02-16 12:13:06 +0100783
Tejun Heoec8cf29b2011-02-16 12:13:07 +0100784 node_set(0, cpu_nodes_parsed);
785 node_set(0, mem_nodes_parsed);
Tejun Heo43a662f2011-02-16 17:11:08 +0100786 numa_add_memblk(0, 0, (u64)max_pfn << PAGE_SHIFT);
Tejun Heofd0435d2011-02-16 17:11:08 +0100787 numa_nodes[0].start = 0;
788 numa_nodes[0].end = (u64)max_pfn << PAGE_SHIFT;
Tejun Heoec8cf29b2011-02-16 12:13:07 +0100789
790 return 0;
791}
792
Tejun Heoffe77a42011-02-16 12:13:06 +0100793void __init initmem_init(void)
794{
795 int (*numa_init[])(void) = { [2] = dummy_numa_init };
Tejun Heoffe77a42011-02-16 12:13:06 +0100796 int i, j;
797
798 if (!numa_off) {
799#ifdef CONFIG_ACPI_NUMA
800 numa_init[0] = x86_acpi_numa_init;
Tejun Heoffe77a42011-02-16 12:13:06 +0100801#endif
802#ifdef CONFIG_AMD_NUMA
803 numa_init[1] = amd_numa_init;
Tejun Heoffe77a42011-02-16 12:13:06 +0100804#endif
805 }
806
807 for (i = 0; i < ARRAY_SIZE(numa_init); i++) {
808 if (!numa_init[i])
809 continue;
810
811 for (j = 0; j < MAX_LOCAL_APIC; j++)
812 set_apicid_to_node(j, NUMA_NO_NODE);
813
Tejun Heoec8cf29b2011-02-16 12:13:07 +0100814 nodes_clear(cpu_nodes_parsed);
815 nodes_clear(mem_nodes_parsed);
Tejun Heoffe77a42011-02-16 12:13:06 +0100816 nodes_clear(node_possible_map);
817 nodes_clear(node_online_map);
Tejun Heo97e7b782011-02-16 17:11:08 +0100818 memset(&numa_meminfo, 0, sizeof(numa_meminfo));
Tejun Heo206e4202011-02-16 12:13:07 +0100819 memset(numa_nodes, 0, sizeof(numa_nodes));
Tejun Heofd0435d2011-02-16 17:11:08 +0100820 remove_all_active_ranges();
Tejun Heoffe77a42011-02-16 12:13:06 +0100821
822 if (numa_init[i]() < 0)
823 continue;
Tejun Heo206e4202011-02-16 12:13:07 +0100824
825 /* clean up the node list */
826 for (j = 0; j < MAX_NUMNODES; j++)
827 cutoff_node(j, 0, max_pfn << PAGE_SHIFT);
828
Tejun Heoffe77a42011-02-16 12:13:06 +0100829#ifdef CONFIG_NUMA_EMU
Tejun Heo190955482011-02-16 12:13:07 +0100830 setup_physnodes(0, max_pfn << PAGE_SHIFT);
Tejun Heoffe77a42011-02-16 12:13:06 +0100831 if (cmdline && !numa_emulation(0, max_pfn, i == 0, i == 1))
832 return;
Tejun Heo190955482011-02-16 12:13:07 +0100833 setup_physnodes(0, max_pfn << PAGE_SHIFT);
Tejun Heoffe77a42011-02-16 12:13:06 +0100834 nodes_clear(node_possible_map);
835 nodes_clear(node_online_map);
836#endif
Tejun Heof9c60252011-02-16 17:11:09 +0100837 if (numa_cleanup_meminfo(&numa_meminfo) < 0)
Tejun Heoec8cf29b2011-02-16 12:13:07 +0100838 continue;
839
Tejun Heof9c60252011-02-16 17:11:09 +0100840 if (numa_register_memblks(&numa_meminfo) < 0)
Tejun Heo43a662f2011-02-16 17:11:08 +0100841 continue;
842
Tejun Heofd0435d2011-02-16 17:11:08 +0100843 for (j = 0; j < nr_cpu_ids; j++) {
844 int nid = early_cpu_to_node(j);
845
846 if (nid == NUMA_NO_NODE)
847 continue;
848 if (!node_online(nid))
849 numa_clear_node(j);
850 }
851 numa_init_array();
852 return;
Tejun Heoffe77a42011-02-16 12:13:06 +0100853 }
854 BUG();
Andi Kleen69d81fc2005-11-05 17:25:53 +0100855}
856
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100857unsigned long __init numa_free_all_bootmem(void)
858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 unsigned long pages = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100860 int i;
861
862 for_each_online_node(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 pages += free_all_bootmem_node(NODE_DATA(i));
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100864
Yinghai Lu08677212010-02-10 01:20:20 -0800865 pages += free_all_memory_core_early(MAX_NUMNODES);
Yinghai Lu08677212010-02-10 01:20:20 -0800866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return pages;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100868}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100870int __cpuinit numa_cpu_node(int cpu)
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800871{
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100872 int apicid = early_per_cpu(x86_cpu_to_apicid, cpu);
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800873
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100874 if (apicid != BAD_APICID)
875 return __apicid_to_node[apicid];
876 return NUMA_NO_NODE;
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800877}
878
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100879/*
Tejun Heode2d9442011-01-23 14:37:41 +0100880 * UGLINESS AHEAD: Currently, CONFIG_NUMA_EMU is 64bit only and makes use
881 * of 64bit specific data structures. The distinction is artificial and
882 * should be removed. numa_{add|remove}_cpu() are implemented in numa.c
883 * for both 32 and 64bit when CONFIG_NUMA_EMU is disabled but here when
884 * enabled.
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100885 *
Tejun Heode2d9442011-01-23 14:37:41 +0100886 * NUMA emulation is planned to be made generic and the following and other
887 * related code should be moved to numa.c.
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100888 */
Tejun Heode2d9442011-01-23 14:37:41 +0100889#ifdef CONFIG_NUMA_EMU
890# ifndef CONFIG_DEBUG_PER_CPU_MAPS
David Rientjesc1c34432010-12-22 17:23:54 -0800891void __cpuinit numa_add_cpu(int cpu)
892{
893 unsigned long addr;
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100894 int physnid, nid;
David Rientjesc1c34432010-12-22 17:23:54 -0800895
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100896 nid = numa_cpu_node(cpu);
David Rientjesc1c34432010-12-22 17:23:54 -0800897 if (nid == NUMA_NO_NODE)
898 nid = early_cpu_to_node(cpu);
899 BUG_ON(nid == NUMA_NO_NODE || !node_online(nid));
900
901 /*
902 * Use the starting address of the emulated node to find which physical
903 * node it is allocated on.
904 */
905 addr = node_start_pfn(nid) << PAGE_SHIFT;
906 for (physnid = 0; physnid < MAX_NUMNODES; physnid++)
907 if (addr >= physnodes[physnid].start &&
908 addr < physnodes[physnid].end)
909 break;
910
911 /*
912 * Map the cpu to each emulated node that is allocated on the physical
913 * node of the cpu's apic id.
914 */
915 for_each_online_node(nid) {
916 addr = node_start_pfn(nid) << PAGE_SHIFT;
917 if (addr >= physnodes[physnid].start &&
918 addr < physnodes[physnid].end)
919 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
920 }
921}
922
923void __cpuinit numa_remove_cpu(int cpu)
924{
925 int i;
926
927 for_each_online_node(i)
928 cpumask_clear_cpu(cpu, node_to_cpumask_map[i]);
929}
Tejun Heode2d9442011-01-23 14:37:41 +0100930# else /* !CONFIG_DEBUG_PER_CPU_MAPS */
David Rientjesd906f0e2010-12-30 10:54:16 -0800931static void __cpuinit numa_set_cpumask(int cpu, int enable)
932{
933 int node = early_cpu_to_node(cpu);
934 struct cpumask *mask;
David Rientjesc1c34432010-12-22 17:23:54 -0800935 int i;
Brian Gerst6470aff2009-01-27 12:56:47 +0900936
David Rientjes14392fd2011-02-07 14:08:53 -0800937 if (node == NUMA_NO_NODE) {
938 /* early_cpu_to_node() already emits a warning and trace */
939 return;
940 }
David Rientjesc1c34432010-12-22 17:23:54 -0800941 for_each_online_node(i) {
942 unsigned long addr;
943
944 addr = node_start_pfn(i) << PAGE_SHIFT;
945 if (addr < physnodes[node].start ||
946 addr >= physnodes[node].end)
947 continue;
David Rientjesd906f0e2010-12-30 10:54:16 -0800948 mask = debug_cpumask_set_cpu(cpu, enable);
949 if (!mask)
David Rientjesc1c34432010-12-22 17:23:54 -0800950 return;
David Rientjesc1c34432010-12-22 17:23:54 -0800951
952 if (enable)
953 cpumask_set_cpu(cpu, mask);
954 else
955 cpumask_clear_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900956 }
Brian Gerst6470aff2009-01-27 12:56:47 +0900957}
958
959void __cpuinit numa_add_cpu(int cpu)
960{
961 numa_set_cpumask(cpu, 1);
962}
963
964void __cpuinit numa_remove_cpu(int cpu)
965{
966 numa_set_cpumask(cpu, 0);
967}
Tejun Heode2d9442011-01-23 14:37:41 +0100968# endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
969#endif /* CONFIG_NUMA_EMU */