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