blob: cb31701863551e95a3765817dfdedf82caf46fda [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
23#ifndef Dprintk
24#define Dprintk(x...)
25#endif
26
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070027struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010028EXPORT_SYMBOL(node_data);
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030bootmem_data_t plat_node_bdata[MAX_NUMNODES];
31
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010032struct memnode memnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Mike Travisb447a462008-03-25 15:06:51 -070034#ifdef CONFIG_SMP
travis@sgi.com43238382008-01-30 13:33:25 +010035int x86_cpu_to_node_map_init[NR_CPUS] = {
Andi Kleen3f098c22005-09-12 18:49:24 +020036 [0 ... NR_CPUS-1] = NUMA_NO_NODE
Andi Kleen0b07e982005-09-12 18:49:24 +020037};
travis@sgi.comdf3825c2008-01-30 13:33:11 +010038void *x86_cpu_to_node_map_early_ptr;
Mike Travisb447a462008-03-25 15:06:51 -070039EXPORT_SYMBOL(x86_cpu_to_node_map_early_ptr);
40#endif
travis@sgi.com43238382008-01-30 13:33:25 +010041DEFINE_PER_CPU(int, x86_cpu_to_node_map) = NUMA_NO_NODE;
travis@sgi.comdf3825c2008-01-30 13:33:11 +010042EXPORT_PER_CPU_SYMBOL(x86_cpu_to_node_map);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010043
travis@sgi.com43238382008-01-30 13:33:25 +010044s16 apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010045 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
Andi Kleen3f098c22005-09-12 18:49:24 +020046};
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010047
Thomas Gleixner74628942008-01-30 13:30:38 +010048cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly;
49EXPORT_SYMBOL(node_to_cpumask_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51int numa_off __initdata;
Amul Shah076422d22007-02-13 13:26:19 +010052unsigned long __initdata nodemap_addr;
53unsigned long __initdata nodemap_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Eric Dumazet529a3402005-11-05 17:25:54 +010055/*
56 * Given a shift value, try to populate memnodemap[]
57 * Returns :
58 * 1 if OK
59 * 0 if memnodmap[] too small (of shift too small)
60 * -1 if node overlap or lost ram (shift too big)
61 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010062static int __init populate_memnodemap(const struct bootnode *nodes,
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070063 int numnodes, int shift, int *nodeids)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Eric Dumazet529a3402005-11-05 17:25:54 +010065 unsigned long addr, end;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010066 int i, res = -1;
Keith Manntheyb6846642005-07-28 21:15:38 -070067
travis@sgi.com43238382008-01-30 13:33:25 +010068 memset(memnodemap, 0xff, sizeof(s16)*memnodemapsize);
Eric Dumazet529a3402005-11-05 17:25:54 +010069 for (i = 0; i < numnodes; i++) {
70 addr = nodes[i].start;
71 end = nodes[i].end;
72 if (addr >= end)
73 continue;
Amul Shah076422d22007-02-13 13:26:19 +010074 if ((end >> shift) >= memnodemapsize)
Eric Dumazet529a3402005-11-05 17:25:54 +010075 return 0;
76 do {
travis@sgi.com43238382008-01-30 13:33:25 +010077 if (memnodemap[addr >> shift] != NUMA_NO_NODE)
Eric Dumazet529a3402005-11-05 17:25:54 +010078 return -1;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070079
80 if (!nodeids)
81 memnodemap[addr >> shift] = i;
82 else
83 memnodemap[addr >> shift] = nodeids[i];
84
Amul Shah076422d22007-02-13 13:26:19 +010085 addr += (1UL << shift);
Eric Dumazet529a3402005-11-05 17:25:54 +010086 } while (addr < end);
87 res = 1;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010088 }
Eric Dumazet529a3402005-11-05 17:25:54 +010089 return res;
90}
91
Amul Shah076422d22007-02-13 13:26:19 +010092static int __init allocate_cachealigned_memnodemap(void)
93{
Yinghai Lu24a5da72008-02-01 17:49:41 +010094 unsigned long addr;
Amul Shah076422d22007-02-13 13:26:19 +010095
96 memnodemap = memnode.embedded_map;
travis@sgi.com316390b2008-01-30 13:33:15 +010097 if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map))
Amul Shah076422d22007-02-13 13:26:19 +010098 return 0;
Amul Shah076422d22007-02-13 13:26:19 +010099
Yinghai Lu24a5da72008-02-01 17:49:41 +0100100 addr = 0x8000;
101 nodemap_size = round_up(sizeof(s16) * memnodemapsize, L1_CACHE_BYTES);
102 nodemap_addr = find_e820_area(addr, end_pfn<<PAGE_SHIFT,
103 nodemap_size, L1_CACHE_BYTES);
Amul Shah076422d22007-02-13 13:26:19 +0100104 if (nodemap_addr == -1UL) {
105 printk(KERN_ERR
106 "NUMA: Unable to allocate Memory to Node hash map\n");
107 nodemap_addr = nodemap_size = 0;
108 return -1;
109 }
Yinghai Lu24a5da72008-02-01 17:49:41 +0100110 memnodemap = phys_to_virt(nodemap_addr);
Yinghai Lu25eff8d2008-02-01 17:49:41 +0100111 reserve_early(nodemap_addr, nodemap_addr + nodemap_size, "MEMNODEMAP");
Amul Shah076422d22007-02-13 13:26:19 +0100112
113 printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n",
114 nodemap_addr, nodemap_addr + nodemap_size);
115 return 0;
116}
117
118/*
119 * The LSB of all start and end addresses in the node map is the value of the
120 * maximum possible shift.
121 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100122static int __init extract_lsb_from_nodes(const struct bootnode *nodes,
123 int numnodes)
Amul Shah076422d22007-02-13 13:26:19 +0100124{
Amul Shah54413922007-02-13 13:26:20 +0100125 int i, nodes_used = 0;
Amul Shah076422d22007-02-13 13:26:19 +0100126 unsigned long start, end;
127 unsigned long bitfield = 0, memtop = 0;
128
129 for (i = 0; i < numnodes; i++) {
130 start = nodes[i].start;
131 end = nodes[i].end;
132 if (start >= end)
133 continue;
Amul Shah54413922007-02-13 13:26:20 +0100134 bitfield |= start;
135 nodes_used++;
Amul Shah076422d22007-02-13 13:26:19 +0100136 if (end > memtop)
137 memtop = end;
138 }
Amul Shah54413922007-02-13 13:26:20 +0100139 if (nodes_used <= 1)
140 i = 63;
141 else
142 i = find_first_bit(&bitfield, sizeof(unsigned long)*8);
Amul Shah076422d22007-02-13 13:26:19 +0100143 memnodemapsize = (memtop >> i)+1;
144 return i;
145}
146
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700147int __init compute_hash_shift(struct bootnode *nodes, int numnodes,
148 int *nodeids)
Eric Dumazet529a3402005-11-05 17:25:54 +0100149{
Amul Shah076422d22007-02-13 13:26:19 +0100150 int shift;
Eric Dumazet529a3402005-11-05 17:25:54 +0100151
Amul Shah076422d22007-02-13 13:26:19 +0100152 shift = extract_lsb_from_nodes(nodes, numnodes);
153 if (allocate_cachealigned_memnodemap())
154 return -1;
Andi Kleen6b050f82006-01-11 22:44:33 +0100155 printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n",
Eric Dumazet529a3402005-11-05 17:25:54 +0100156 shift);
157
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700158 if (populate_memnodemap(nodes, numnodes, shift, nodeids) != 1) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100159 printk(KERN_INFO "Your memory is not aligned you need to "
160 "rebuild your kernel with a bigger NODEMAPSIZE "
161 "shift=%d\n", shift);
Eric Dumazet529a3402005-11-05 17:25:54 +0100162 return -1;
163 }
Keith Manntheyb6846642005-07-28 21:15:38 -0700164 return shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700167int early_pfn_to_nid(unsigned long pfn)
168{
169 return phys_to_nid(pfn << PAGE_SHIFT);
170}
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700171
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100172static void * __init early_node_mem(int nodeid, unsigned long start,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100173 unsigned long end, unsigned long size,
174 unsigned long align)
Andi Kleena8062232006-04-07 19:49:21 +0200175{
Yinghai Lu24a5da72008-02-01 17:49:41 +0100176 unsigned long mem = find_e820_area(start, end, size, align);
Andi Kleena8062232006-04-07 19:49:21 +0200177 void *ptr;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100178
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100179 if (mem != -1L)
Andi Kleena8062232006-04-07 19:49:21 +0200180 return __va(mem);
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100181
Yinghai Lu24a5da72008-02-01 17:49:41 +0100182 ptr = __alloc_bootmem_nopanic(size, align, __pa(MAX_DMA_ADDRESS));
Yoann Padioleau83e83d52007-10-17 18:04:35 +0200183 if (ptr == NULL) {
Andi Kleena8062232006-04-07 19:49:21 +0200184 printk(KERN_ERR "Cannot find %lu bytes in node %d\n",
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100185 size, nodeid);
Andi Kleena8062232006-04-07 19:49:21 +0200186 return NULL;
187 }
188 return ptr;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* Initialize bootmem allocator for a node */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100192void __init setup_node_bootmem(int nodeid, unsigned long start,
193 unsigned long end)
194{
195 unsigned long start_pfn, end_pfn, bootmap_pages, bootmap_size;
196 unsigned long bootmap_start, nodedata_phys;
Andi Kleena8062232006-04-07 19:49:21 +0200197 void *bootmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 const int pgdat_size = round_up(sizeof(pg_data_t), PAGE_SIZE);
199
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100200 start = round_up(start, ZONE_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100202 printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid,
203 start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 start_pfn = start >> PAGE_SHIFT;
206 end_pfn = end >> PAGE_SHIFT;
207
Yinghai Lu24a5da72008-02-01 17:49:41 +0100208 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
209 SMP_CACHE_BYTES);
Andi Kleena8062232006-04-07 19:49:21 +0200210 if (node_data[nodeid] == NULL)
211 return;
212 nodedata_phys = __pa(node_data[nodeid]);
Yinghai Lu6118f762008-02-04 16:47:56 +0100213 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
214 nodedata_phys + pgdat_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
217 NODE_DATA(nodeid)->bdata = &plat_node_bdata[nodeid];
218 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
219 NODE_DATA(nodeid)->node_spanned_pages = end_pfn - start_pfn;
220
221 /* Find a place for the bootmem map */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100222 bootmap_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 bootmap_start = round_up(nodedata_phys + pgdat_size, PAGE_SIZE);
Yinghai Lu24a5da72008-02-01 17:49:41 +0100224 /*
225 * SMP_CAHCE_BYTES could be enough, but init_bootmem_node like
226 * to use that to align to PAGE_SIZE
227 */
Andi Kleena8062232006-04-07 19:49:21 +0200228 bootmap = early_node_mem(nodeid, bootmap_start, end,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100229 bootmap_pages<<PAGE_SHIFT, PAGE_SIZE);
Andi Kleena8062232006-04-07 19:49:21 +0200230 if (bootmap == NULL) {
231 if (nodedata_phys < start || nodedata_phys >= end)
Yinghai Lu37bff622008-03-18 12:40:04 -0700232 free_bootmem(nodedata_phys, pgdat_size);
Andi Kleena8062232006-04-07 19:49:21 +0200233 node_data[nodeid] = NULL;
234 return;
235 }
236 bootmap_start = __pa(bootmap);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 bootmap_size = init_bootmem_node(NODE_DATA(nodeid),
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100239 bootmap_start >> PAGE_SHIFT,
240 start_pfn, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Yinghai Lu6118f762008-02-04 16:47:56 +0100242 printk(KERN_INFO " bootmap [%016lx - %016lx] pages %lx\n",
243 bootmap_start, bootmap_start + bootmap_size - 1,
244 bootmap_pages);
245
Mel Gorman5cb248a2006-09-27 01:49:52 -0700246 free_bootmem_with_active_regions(nodeid, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800248 reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys, pgdat_size,
249 BOOTMEM_DEFAULT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100250 reserve_bootmem_node(NODE_DATA(nodeid), bootmap_start,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800251 bootmap_pages<<PAGE_SHIFT, BOOTMEM_DEFAULT);
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200252#ifdef CONFIG_ACPI_NUMA
253 srat_reserve_add_area(nodeid);
254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 node_set_online(nodeid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100258/*
259 * There are unfortunately some poorly designed mainboards around that
260 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
261 * mapping. To avoid this fill in the mapping for all possible CPUs,
262 * as the number of CPUs is not known yet. We round robin the existing
263 * nodes.
264 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265void __init numa_init_array(void)
266{
267 int rr, i;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100268
Ravikiran G Thirumalai85cc5132005-09-30 11:59:22 -0700269 rr = first_node(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 for (i = 0; i < NR_CPUS; i++) {
travis@sgi.com1ce35712008-01-30 13:33:33 +0100271 if (early_cpu_to_node(i) != NUMA_NO_NODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 continue;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100273 numa_set_node(i, rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 rr = next_node(rr, node_online_map);
275 if (rr == MAX_NUMNODES)
276 rr = first_node(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280#ifdef CONFIG_NUMA_EMU
Rohit Seth53fee042007-02-13 13:26:22 +0100281/* Numa emulation */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200282char *cmdline __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Rohit Seth53fee042007-02-13 13:26:22 +0100284/*
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100285 * Setups up nid to range from addr to addr + size. If the end
286 * boundary is greater than max_addr, then max_addr is used instead.
287 * The return value is 0 if there is additional memory left for
288 * allocation past addr and -1 otherwise. addr is adjusted to be at
289 * the end of the node.
Rohit Seth53fee042007-02-13 13:26:22 +0100290 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200291static int __init setup_node_range(int nid, struct bootnode *nodes, u64 *addr,
292 u64 size, u64 max_addr)
Rohit Seth53fee042007-02-13 13:26:22 +0100293{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200294 int ret = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100295
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200296 nodes[nid].start = *addr;
297 *addr += size;
298 if (*addr >= max_addr) {
299 *addr = max_addr;
300 ret = -1;
301 }
302 nodes[nid].end = *addr;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200303 node_set(nid, node_possible_map);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200304 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
305 nodes[nid].start, nodes[nid].end,
306 (nodes[nid].end - nodes[nid].start) >> 20);
307 return ret;
Rohit Seth53fee042007-02-13 13:26:22 +0100308}
309
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200310/*
311 * Splits num_nodes nodes up equally starting at node_start. The return value
312 * is the number of nodes split up and addr is adjusted to be at the end of the
313 * last node allocated.
314 */
315static int __init split_nodes_equally(struct bootnode *nodes, u64 *addr,
316 u64 max_addr, int node_start,
317 int num_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200319 unsigned int big;
320 u64 size;
321 int i;
Rohit Seth53fee042007-02-13 13:26:22 +0100322
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200323 if (num_nodes <= 0)
324 return -1;
325 if (num_nodes > MAX_NUMNODES)
326 num_nodes = MAX_NUMNODES;
David Rientjesa7e96622007-07-21 17:11:29 +0200327 size = (max_addr - *addr - e820_hole_size(*addr, max_addr)) /
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200328 num_nodes;
Rohit Seth53fee042007-02-13 13:26:22 +0100329 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200330 * Calculate the number of big nodes that can be allocated as a result
331 * of consolidating the leftovers.
Rohit Seth53fee042007-02-13 13:26:22 +0100332 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200333 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * num_nodes) /
334 FAKE_NODE_MIN_SIZE;
Rohit Seth53fee042007-02-13 13:26:22 +0100335
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200336 /* Round down to nearest FAKE_NODE_MIN_SIZE. */
337 size &= FAKE_NODE_MIN_HASH_MASK;
338 if (!size) {
339 printk(KERN_ERR "Not enough memory for each node. "
340 "NUMA emulation disabled.\n");
341 return -1;
Rohit Seth53fee042007-02-13 13:26:22 +0100342 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200343
344 for (i = node_start; i < num_nodes + node_start; i++) {
345 u64 end = *addr + size;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100346
Rohit Seth53fee042007-02-13 13:26:22 +0100347 if (i < big)
348 end += FAKE_NODE_MIN_SIZE;
349 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200350 * The final node can have the remaining system RAM. Other
351 * nodes receive roughly the same amount of available pages.
Rohit Seth53fee042007-02-13 13:26:22 +0100352 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200353 if (i == num_nodes + node_start - 1)
Rohit Seth53fee042007-02-13 13:26:22 +0100354 end = max_addr;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200355 else
David Rientjesa7e96622007-07-21 17:11:29 +0200356 while (end - *addr - e820_hole_size(*addr, end) <
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200357 size) {
358 end += FAKE_NODE_MIN_SIZE;
359 if (end > max_addr) {
360 end = max_addr;
361 break;
362 }
363 }
364 if (setup_node_range(i, nodes, addr, end - *addr, max_addr) < 0)
365 break;
366 }
367 return i - node_start + 1;
368}
369
370/*
David Rientjes382591d2007-05-02 19:27:09 +0200371 * Splits the remaining system RAM into chunks of size. The remaining memory is
372 * always assigned to a final node and can be asymmetric. Returns the number of
373 * nodes split.
374 */
375static int __init split_nodes_by_size(struct bootnode *nodes, u64 *addr,
376 u64 max_addr, int node_start, u64 size)
377{
378 int i = node_start;
379 size = (size << 20) & FAKE_NODE_MIN_HASH_MASK;
380 while (!setup_node_range(i++, nodes, addr, size, max_addr))
381 ;
382 return i - node_start;
383}
384
385/*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200386 * Sets up the system RAM area from start_pfn to end_pfn according to the
387 * numa=fake command-line option.
388 */
389static int __init numa_emulation(unsigned long start_pfn, unsigned long end_pfn)
390{
391 struct bootnode nodes[MAX_NUMNODES];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100392 u64 size, addr = start_pfn << PAGE_SHIFT;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200393 u64 max_addr = end_pfn << PAGE_SHIFT;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100394 int num_nodes = 0, num = 0, coeff_flag, coeff = -1, i;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200395
396 memset(&nodes, 0, sizeof(nodes));
397 /*
398 * If the numa=fake command-line is just a single number N, split the
399 * system RAM into N fake nodes.
400 */
401 if (!strchr(cmdline, '*') && !strchr(cmdline, ',')) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100402 long n = simple_strtol(cmdline, NULL, 0);
403
404 num_nodes = split_nodes_equally(nodes, &addr, max_addr, 0, n);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200405 if (num_nodes < 0)
406 return num_nodes;
407 goto out;
408 }
409
410 /* Parse the command line. */
David Rientjes382591d2007-05-02 19:27:09 +0200411 for (coeff_flag = 0; ; cmdline++) {
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200412 if (*cmdline && isdigit(*cmdline)) {
413 num = num * 10 + *cmdline - '0';
414 continue;
415 }
David Rientjes382591d2007-05-02 19:27:09 +0200416 if (*cmdline == '*') {
417 if (num > 0)
418 coeff = num;
419 coeff_flag = 1;
420 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200421 if (!*cmdline || *cmdline == ',') {
David Rientjes382591d2007-05-02 19:27:09 +0200422 if (!coeff_flag)
423 coeff = 1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200424 /*
425 * Round down to the nearest FAKE_NODE_MIN_SIZE.
426 * Command-line coefficients are in megabytes.
427 */
428 size = ((u64)num << 20) & FAKE_NODE_MIN_HASH_MASK;
David Rientjes382591d2007-05-02 19:27:09 +0200429 if (size)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200430 for (i = 0; i < coeff; i++, num_nodes++)
431 if (setup_node_range(num_nodes, nodes,
432 &addr, size, max_addr) < 0)
433 goto done;
David Rientjes382591d2007-05-02 19:27:09 +0200434 if (!*cmdline)
435 break;
436 coeff_flag = 0;
437 coeff = -1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200438 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200439 num = 0;
440 }
441done:
442 if (!num_nodes)
443 return -1;
David Rientjes14694d72007-05-02 19:27:09 +0200444 /* Fill remainder of system RAM, if appropriate. */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200445 if (addr < max_addr) {
David Rientjes382591d2007-05-02 19:27:09 +0200446 if (coeff_flag && coeff < 0) {
447 /* Split remaining nodes into num-sized chunks */
448 num_nodes += split_nodes_by_size(nodes, &addr, max_addr,
449 num_nodes, num);
450 goto out;
451 }
David Rientjes14694d72007-05-02 19:27:09 +0200452 switch (*(cmdline - 1)) {
453 case '*':
454 /* Split remaining nodes into coeff chunks */
455 if (coeff <= 0)
456 break;
457 num_nodes += split_nodes_equally(nodes, &addr, max_addr,
458 num_nodes, coeff);
459 break;
460 case ',':
461 /* Do not allocate remaining system RAM */
462 break;
463 default:
464 /* Give one final node */
465 setup_node_range(num_nodes, nodes, &addr,
466 max_addr - addr, max_addr);
467 num_nodes++;
468 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200469 }
470out:
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700471 memnode_shift = compute_hash_shift(nodes, num_nodes, NULL);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200472 if (memnode_shift < 0) {
473 memnode_shift = 0;
474 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
475 "disabled.\n");
476 return -1;
477 }
478
479 /*
480 * We need to vacate all active ranges that may have been registered by
David Rientjes1c05f092007-07-21 17:11:30 +0200481 * SRAT and set acpi_numa to -1 so that srat_disabled() always returns
482 * true. NUMA emulation has succeeded so we will not scan ACPI nodes.
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200483 */
484 remove_all_active_ranges();
David Rientjes1c05f092007-07-21 17:11:30 +0200485#ifdef CONFIG_ACPI_NUMA
486 acpi_numa = -1;
487#endif
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200488 for_each_node_mask(i, node_possible_map) {
Mel Gorman5cb248a2006-09-27 01:49:52 -0700489 e820_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
490 nodes[i].end >> PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100491 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700492 }
David Rientjes3484d792007-07-21 17:10:32 +0200493 acpi_fake_nodes(nodes, num_nodes);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100494 numa_init_array();
495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200497#endif /* CONFIG_NUMA_EMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100500{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int i;
502
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200503 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800504 nodes_clear(node_online_map);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#ifdef CONFIG_NUMA_EMU
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200507 if (cmdline && !numa_emulation(start_pfn, end_pfn))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100508 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200509 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800510 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511#endif
512
513#ifdef CONFIG_ACPI_NUMA
514 if (!numa_off && !acpi_scan_nodes(start_pfn << PAGE_SHIFT,
515 end_pfn << PAGE_SHIFT))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100516 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200517 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800518 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#endif
520
521#ifdef CONFIG_K8_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100522 if (!numa_off && !k8_scan_nodes(start_pfn<<PAGE_SHIFT,
523 end_pfn<<PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200525 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800526 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527#endif
528 printk(KERN_INFO "%s\n",
529 numa_off ? "NUMA turned off" : "No NUMA configuration found");
530
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100531 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 start_pfn << PAGE_SHIFT,
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100533 end_pfn << PAGE_SHIFT);
534 /* setup dummy node covering all memory */
535 memnode_shift = 63;
Amul Shah076422d22007-02-13 13:26:19 +0100536 memnodemap = memnode.embedded_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 memnodemap[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 node_set_online(0);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200539 node_set(0, node_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 for (i = 0; i < NR_CPUS; i++)
Andi Kleen69d81fc2005-11-05 17:25:53 +0100541 numa_set_node(i, 0);
travis@sgi.comdf3825c2008-01-30 13:33:11 +0100542 /* cpumask_of_cpu() may not be available during early startup */
travis@sgi.com3cc87e32008-01-30 13:33:11 +0100543 memset(&node_to_cpumask_map[0], 0, sizeof(node_to_cpumask_map[0]));
544 cpu_set(0, node_to_cpumask_map[0]);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700545 e820_register_active_regions(0, start_pfn, end_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 setup_node_bootmem(0, start_pfn << PAGE_SHIFT, end_pfn << PAGE_SHIFT);
547}
548
Ashok Raje6982c62005-06-25 14:54:58 -0700549__cpuinit void numa_add_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
travis@sgi.com1ce35712008-01-30 13:33:33 +0100551 set_bit(cpu,
552 (unsigned long *)&node_to_cpumask_map[early_cpu_to_node(cpu)]);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Andi Kleen69d81fc2005-11-05 17:25:53 +0100555void __cpuinit numa_set_node(int cpu, int node)
556{
travis@sgi.com43238382008-01-30 13:33:25 +0100557 int *cpu_to_node_map = x86_cpu_to_node_map_early_ptr;
travis@sgi.comdf3825c2008-01-30 13:33:11 +0100558
travis@sgi.comdf3825c2008-01-30 13:33:11 +0100559 if(cpu_to_node_map)
560 cpu_to_node_map[cpu] = node;
561 else if(per_cpu_offset(cpu))
562 per_cpu(x86_cpu_to_node_map, cpu) = node;
563 else
564 Dprintk(KERN_INFO "Setting node for non-present cpu %d\n", cpu);
Andi Kleen69d81fc2005-11-05 17:25:53 +0100565}
566
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100567unsigned long __init numa_free_all_bootmem(void)
568{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 unsigned long pages = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100570 int i;
571
572 for_each_online_node(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 pages += free_all_bootmem_node(NODE_DATA(i));
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return pages;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578void __init paging_init(void)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100579{
Mel Gorman6391af12006-10-11 01:20:39 -0700580 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100581
Mel Gorman6391af12006-10-11 01:20:39 -0700582 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
583 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
584 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
585 max_zone_pfns[ZONE_NORMAL] = end_pfn;
Bob Piccod3ee8712005-11-05 17:25:54 +0100586
Bob Piccof0a5a582007-02-13 13:26:25 +0100587 sparse_memory_present_with_active_regions(MAX_NUMNODES);
588 sparse_init();
Bob Piccod3ee8712005-11-05 17:25:54 +0100589
Mel Gorman5cb248a2006-09-27 01:49:52 -0700590 free_area_init_nodes(max_zone_pfns);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200593static __init int numa_setup(char *opt)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100594{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200595 if (!opt)
596 return -EINVAL;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100597 if (!strncmp(opt, "off", 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 numa_off = 1;
599#ifdef CONFIG_NUMA_EMU
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200600 if (!strncmp(opt, "fake=", 5))
601 cmdline = opt + 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#endif
603#ifdef CONFIG_ACPI_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100604 if (!strncmp(opt, "noacpi", 6))
605 acpi_numa = -1;
606 if (!strncmp(opt, "hotadd=", 7))
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200607 hotadd_percent = simple_strtoul(opt+7, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608#endif
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200609 return 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100610}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200611early_param("numa", numa_setup);
612
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100613/*
614 * Setup early cpu_to_node.
615 *
616 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
617 * and apicid_to_node[] tables have valid entries for a CPU.
618 * This means we skip cpu_to_node[] initialisation for NUMA
619 * emulation and faking node case (when running a kernel compiled
620 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
621 * is already initialized in a round robin manner at numa_init_array,
622 * prior to this call, and this initialization is good enough
623 * for the fake NUMA cases.
624 */
625void __init init_cpu_to_node(void)
626{
627 int i;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100628
629 for (i = 0; i < NR_CPUS; i++) {
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800630 int node;
travis@sgi.comef970012008-01-30 13:33:10 +0100631 u16 apicid = x86_cpu_to_apicid_init[i];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100632
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100633 if (apicid == BAD_APICID)
634 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800635 node = apicid_to_node[apicid];
636 if (node == NUMA_NO_NODE)
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100637 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800638 if (!node_online(node))
639 continue;
640 numa_set_node(i, node);
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100641 }
642}
643
Andi Kleencf050132006-01-11 22:46:27 +0100644