Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ACPI 3.0 based NUMA setup |
| 3 | * Copyright 2004 Andi Kleen, SuSE Labs. |
| 4 | * |
| 5 | * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs. |
| 6 | * |
| 7 | * Called from acpi_numa_init while reading the SRAT and SLIT tables. |
| 8 | * Assumes all memory regions belonging to a single proximity domain |
| 9 | * are in one chunk. Holes between them will be included in the node. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/acpi.h> |
| 14 | #include <linux/mmzone.h> |
| 15 | #include <linux/bitmap.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/topology.h> |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 18 | #include <linux/bootmem.h> |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 19 | #include <linux/memblock.h> |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 20 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/proto.h> |
| 22 | #include <asm/numa.h> |
Andi Kleen | 8a6fdd3 | 2006-01-11 22:44:39 +0100 | [diff] [blame] | 23 | #include <asm/e820.h> |
Ingo Molnar | 7b6aa33 | 2009-02-17 13:58:15 +0100 | [diff] [blame] | 24 | #include <asm/apic.h> |
Ingo Molnar | 4ec71fa | 2009-01-21 10:24:27 +0100 | [diff] [blame] | 25 | #include <asm/uv/uv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Andi Kleen | c31fbb1 | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 27 | int acpi_numa __initdata; |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | static struct acpi_table_slit *acpi_slit; |
| 30 | |
Keith Mannthey | 4942e99 | 2006-09-30 23:27:06 -0700 | [diff] [blame] | 31 | static struct bootnode nodes_add[MAX_NUMNODES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | static __init int setup_node(int pxm) |
| 34 | { |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 35 | return acpi_map_pxm_to_node(pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | static __init void bad_srat(void) |
| 39 | { |
| 40 | printk(KERN_ERR "SRAT: SRAT not used.\n"); |
| 41 | acpi_numa = -1; |
Tejun Heo | 9155623 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 42 | memset(nodes_add, 0, sizeof(nodes_add)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | static __init inline int srat_disabled(void) |
| 46 | { |
Tejun Heo | ffe77a4 | 2011-02-16 12:13:06 +0100 | [diff] [blame] | 47 | return acpi_numa < 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* Callback for SLIT parsing */ |
| 51 | void __init acpi_numa_slit_init(struct acpi_table_slit *slit) |
| 52 | { |
Yinghai Lu | f302a5bb | 2008-07-10 20:36:37 -0700 | [diff] [blame] | 53 | unsigned length; |
| 54 | unsigned long phys; |
| 55 | |
| 56 | length = slit->header.length; |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 57 | phys = memblock_find_in_range(0, max_pfn_mapped<<PAGE_SHIFT, length, |
Yinghai Lu | f302a5bb | 2008-07-10 20:36:37 -0700 | [diff] [blame] | 58 | PAGE_SIZE); |
| 59 | |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 60 | if (phys == MEMBLOCK_ERROR) |
Yinghai Lu | f302a5bb | 2008-07-10 20:36:37 -0700 | [diff] [blame] | 61 | panic(" Can not save slit!\n"); |
| 62 | |
| 63 | acpi_slit = __va(phys); |
| 64 | memcpy(acpi_slit, slit, length); |
Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 65 | memblock_x86_reserve_range(phys, phys + length, "ACPI SLIT"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 68 | /* Callback for Proximity Domain -> x2APIC mapping */ |
| 69 | void __init |
| 70 | acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa) |
| 71 | { |
| 72 | int pxm, node; |
| 73 | int apic_id; |
| 74 | |
| 75 | if (srat_disabled()) |
| 76 | return; |
| 77 | if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) { |
| 78 | bad_srat(); |
| 79 | return; |
| 80 | } |
| 81 | if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0) |
| 82 | return; |
| 83 | pxm = pa->proximity_domain; |
| 84 | node = setup_node(pxm); |
| 85 | if (node < 0) { |
| 86 | printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); |
| 87 | bad_srat(); |
| 88 | return; |
| 89 | } |
| 90 | |
| 91 | apic_id = pa->apic_id; |
Yinghai Lu | d3bd058 | 2010-12-16 19:09:58 -0800 | [diff] [blame] | 92 | if (apic_id >= MAX_LOCAL_APIC) { |
| 93 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node); |
| 94 | return; |
| 95 | } |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 96 | set_apicid_to_node(apic_id, node); |
Tejun Heo | 92d4a43 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 97 | node_set(node, numa_nodes_parsed); |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 98 | acpi_numa = 1; |
Yinghai Lu | 163d386 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 99 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n", |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 100 | pxm, apic_id, node); |
| 101 | } |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | /* Callback for Proximity Domain -> LAPIC mapping */ |
| 104 | void __init |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 105 | acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
| 107 | int pxm, node; |
travis@sgi.com | ef97001 | 2008-01-30 13:33:10 +0100 | [diff] [blame] | 108 | int apic_id; |
| 109 | |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 110 | if (srat_disabled()) |
| 111 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 112 | if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) { |
Andi Kleen | fad7906 | 2006-05-15 18:19:44 +0200 | [diff] [blame] | 113 | bad_srat(); |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 114 | return; |
| 115 | } |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 116 | if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 118 | pxm = pa->proximity_domain_lo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | node = setup_node(pxm); |
| 120 | if (node < 0) { |
| 121 | printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); |
| 122 | bad_srat(); |
| 123 | return; |
| 124 | } |
Yinghai Lu | beafe91 | 2008-02-16 23:00:22 -0800 | [diff] [blame] | 125 | |
Jack Steiner | 2e42060 | 2008-09-23 15:37:13 -0500 | [diff] [blame] | 126 | if (get_uv_system_type() >= UV_X2APIC) |
Jack Steiner | a65d1d6 | 2008-03-28 14:12:08 -0500 | [diff] [blame] | 127 | apic_id = (pa->apic_id << 8) | pa->local_sapic_eid; |
| 128 | else |
| 129 | apic_id = pa->apic_id; |
Yinghai Lu | d3bd058 | 2010-12-16 19:09:58 -0800 | [diff] [blame] | 130 | |
| 131 | if (apic_id >= MAX_LOCAL_APIC) { |
| 132 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node); |
| 133 | return; |
| 134 | } |
| 135 | |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 136 | set_apicid_to_node(apic_id, node); |
Tejun Heo | 92d4a43 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 137 | node_set(node, numa_nodes_parsed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | acpi_numa = 1; |
Yinghai Lu | 163d386 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 139 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n", |
travis@sgi.com | ef97001 | 2008-01-30 13:33:10 +0100 | [diff] [blame] | 140 | pxm, apic_id, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Keith Mannthey | 71efa8f | 2006-09-30 23:27:05 -0700 | [diff] [blame] | 143 | #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE |
| 144 | static inline int save_add_info(void) {return 1;} |
| 145 | #else |
| 146 | static inline int save_add_info(void) {return 0;} |
| 147 | #endif |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 148 | /* |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 149 | * Update nodes_add[] |
| 150 | * This code supports one contiguous hot add area per node |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 151 | */ |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 152 | static void __init |
| 153 | update_nodes_add(int node, unsigned long start, unsigned long end) |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 154 | { |
| 155 | unsigned long s_pfn = start >> PAGE_SHIFT; |
| 156 | unsigned long e_pfn = end >> PAGE_SHIFT; |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 157 | int changed = 0; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 158 | struct bootnode *nd = &nodes_add[node]; |
| 159 | |
| 160 | /* I had some trouble with strange memory hotadd regions breaking |
| 161 | the boot. Be very strict here and reject anything unexpected. |
| 162 | If you want working memory hotadd write correct SRATs. |
| 163 | |
| 164 | The node size check is a basic sanity check to guard against |
| 165 | mistakes */ |
| 166 | if ((signed long)(end - start) < NODE_MIN_SIZE) { |
| 167 | printk(KERN_ERR "SRAT: Hotplug area too small\n"); |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 168 | return; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* This check might be a bit too strict, but I'm keeping it for now. */ |
Mel Gorman | 5cb248a | 2006-09-27 01:49:52 -0700 | [diff] [blame] | 172 | if (absent_pages_in_range(s_pfn, e_pfn) != e_pfn - s_pfn) { |
Mel Gorman | 9c7cd68 | 2006-09-27 01:49:58 -0700 | [diff] [blame] | 173 | printk(KERN_ERR |
| 174 | "SRAT: Hotplug area %lu -> %lu has existing memory\n", |
| 175 | s_pfn, e_pfn); |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 176 | return; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | /* Looks good */ |
| 180 | |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 181 | if (nd->start == nd->end) { |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 182 | nd->start = start; |
| 183 | nd->end = end; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 184 | changed = 1; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 185 | } else { |
| 186 | if (nd->start == end) { |
| 187 | nd->start = start; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 188 | changed = 1; |
| 189 | } |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 190 | if (nd->end == start) { |
| 191 | nd->end = end; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 192 | changed = 1; |
| 193 | } |
| 194 | if (!changed) |
| 195 | printk(KERN_ERR "SRAT: Hotplug zone not continuous. Partly ignored\n"); |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 196 | } |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 197 | |
David Rientjes | 3a5fc0e | 2010-01-20 12:10:47 -0800 | [diff] [blame] | 198 | if (changed) { |
Tejun Heo | 92d4a43 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 199 | node_set(node, numa_nodes_parsed); |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 200 | printk(KERN_INFO "SRAT: hot plug zone found %Lx - %Lx\n", |
| 201 | nd->start, nd->end); |
David Rientjes | 3a5fc0e | 2010-01-20 12:10:47 -0800 | [diff] [blame] | 202 | } |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 203 | } |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */ |
| 206 | void __init |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 207 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | unsigned long start, end; |
| 210 | int node, pxm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 212 | if (srat_disabled()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 214 | if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) { |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 215 | bad_srat(); |
| 216 | return; |
| 217 | } |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 218 | if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0) |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 219 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 220 | |
| 221 | if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info()) |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 222 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 223 | start = ma->base_address; |
| 224 | end = start + ma->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | pxm = ma->proximity_domain; |
| 226 | node = setup_node(pxm); |
| 227 | if (node < 0) { |
| 228 | printk(KERN_ERR "SRAT: Too many proximity domains.\n"); |
| 229 | bad_srat(); |
| 230 | return; |
| 231 | } |
Tejun Heo | ef396ec | 2011-02-16 17:11:07 +0100 | [diff] [blame] | 232 | |
| 233 | if (numa_add_memblk(node, start, end) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | bad_srat(); |
| 235 | return; |
| 236 | } |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 237 | |
Suresh Siddha | 6ec6e0d | 2008-03-25 10:14:35 -0700 | [diff] [blame] | 238 | printk(KERN_INFO "SRAT: Node %u PXM %u %lx-%lx\n", node, pxm, |
| 239 | start, end); |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 240 | |
Tejun Heo | 4697bdc | 2011-02-16 17:11:09 +0100 | [diff] [blame^] | 241 | if (ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) |
Yinghai Lu | 888a589 | 2009-05-15 13:59:37 -0700 | [diff] [blame] | 242 | update_nodes_add(node, start, end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | void __init acpi_numa_arch_fixup(void) {} |
| 246 | |
Tejun Heo | a9aec56 | 2011-02-16 12:13:06 +0100 | [diff] [blame] | 247 | int __init x86_acpi_numa_init(void) |
| 248 | { |
| 249 | int ret; |
| 250 | |
| 251 | ret = acpi_numa_init(); |
| 252 | if (ret < 0) |
| 253 | return ret; |
| 254 | return srat_disabled() ? -EINVAL : 0; |
| 255 | } |
| 256 | |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 257 | #ifdef CONFIG_NUMA_EMU |
travis@sgi.com | ef97001 | 2008-01-30 13:33:10 +0100 | [diff] [blame] | 258 | static int fake_node_to_pxm_map[MAX_NUMNODES] __initdata = { |
| 259 | [0 ... MAX_NUMNODES-1] = PXM_INVAL |
| 260 | }; |
travis@sgi.com | 602a54a | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 261 | static s16 fake_apicid_to_node[MAX_LOCAL_APIC] __initdata = { |
travis@sgi.com | ef97001 | 2008-01-30 13:33:10 +0100 | [diff] [blame] | 262 | [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE |
| 263 | }; |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 264 | |
| 265 | /* |
| 266 | * In NUMA emulation, we need to setup proximity domain (_PXM) to node ID |
| 267 | * mappings that respect the real ACPI topology but reflect our emulated |
| 268 | * environment. For each emulated node, we find which real node it appears on |
| 269 | * and create PXM to NID mappings for those fake nodes which mirror that |
| 270 | * locality. SLIT will now represent the correct distances between emulated |
| 271 | * nodes as a result of the real topology. |
| 272 | */ |
| 273 | void __init acpi_fake_nodes(const struct bootnode *fake_nodes, int num_nodes) |
| 274 | { |
David Rientjes | 08705b8 | 2007-07-21 17:10:33 +0200 | [diff] [blame] | 275 | int i, j; |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 276 | |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 277 | for (i = 0; i < num_nodes; i++) { |
| 278 | int nid, pxm; |
| 279 | |
| 280 | nid = find_node_by_addr(fake_nodes[i].start); |
| 281 | if (nid == NUMA_NO_NODE) |
| 282 | continue; |
| 283 | pxm = node_to_pxm(nid); |
| 284 | if (pxm == PXM_INVAL) |
| 285 | continue; |
| 286 | fake_node_to_pxm_map[i] = pxm; |
David Rientjes | 08705b8 | 2007-07-21 17:10:33 +0200 | [diff] [blame] | 287 | /* |
| 288 | * For each apicid_to_node mapping that exists for this real |
| 289 | * node, it must now point to the fake node ID. |
| 290 | */ |
| 291 | for (j = 0; j < MAX_LOCAL_APIC; j++) |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 292 | if (__apicid_to_node[j] == nid && |
David Rientjes | b0c4d95 | 2010-05-06 02:24:34 -0700 | [diff] [blame] | 293 | fake_apicid_to_node[j] == NUMA_NO_NODE) |
David Rientjes | 08705b8 | 2007-07-21 17:10:33 +0200 | [diff] [blame] | 294 | fake_apicid_to_node[j] = i; |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 295 | } |
David Rientjes | a387e95 | 2010-12-22 17:23:56 -0800 | [diff] [blame] | 296 | |
| 297 | /* |
| 298 | * If there are apicid-to-node mappings for physical nodes that do not |
| 299 | * have a corresponding emulated node, it should default to a guaranteed |
| 300 | * value. |
| 301 | */ |
| 302 | for (i = 0; i < MAX_LOCAL_APIC; i++) |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 303 | if (__apicid_to_node[i] != NUMA_NO_NODE && |
David Rientjes | a387e95 | 2010-12-22 17:23:56 -0800 | [diff] [blame] | 304 | fake_apicid_to_node[i] == NUMA_NO_NODE) |
| 305 | fake_apicid_to_node[i] = 0; |
| 306 | |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 307 | for (i = 0; i < num_nodes; i++) |
| 308 | __acpi_map_pxm_to_node(fake_node_to_pxm_map[i], i); |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 309 | memcpy(__apicid_to_node, fake_apicid_to_node, sizeof(__apicid_to_node)); |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 310 | |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 311 | for (i = 0; i < num_nodes; i++) |
| 312 | if (fake_nodes[i].start != fake_nodes[i].end) |
Tejun Heo | 4697bdc | 2011-02-16 17:11:09 +0100 | [diff] [blame^] | 313 | node_set(i, numa_nodes_parsed); |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static int null_slit_node_compare(int a, int b) |
| 317 | { |
| 318 | return node_to_pxm(a) == node_to_pxm(b); |
| 319 | } |
| 320 | #else |
| 321 | static int null_slit_node_compare(int a, int b) |
| 322 | { |
| 323 | return a == b; |
| 324 | } |
| 325 | #endif /* CONFIG_NUMA_EMU */ |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | int __node_distance(int a, int b) |
| 328 | { |
| 329 | int index; |
| 330 | |
| 331 | if (!acpi_slit) |
David Rientjes | 3484d79 | 2007-07-21 17:10:32 +0200 | [diff] [blame] | 332 | return null_slit_node_compare(a, b) ? LOCAL_DISTANCE : |
| 333 | REMOTE_DISTANCE; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 334 | index = acpi_slit->locality_count * node_to_pxm(a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | return acpi_slit->entry[index + node_to_pxm(b)]; |
| 336 | } |
| 337 | |
| 338 | EXPORT_SYMBOL(__node_distance); |
Keith Mannthey | 4942e99 | 2006-09-30 23:27:06 -0700 | [diff] [blame] | 339 | |
Thomas Gleixner | 6a1673a | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 340 | #if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) || defined(CONFIG_ACPI_HOTPLUG_MEMORY) |
Keith Mannthey | 4942e99 | 2006-09-30 23:27:06 -0700 | [diff] [blame] | 341 | int memory_add_physaddr_to_nid(u64 start) |
| 342 | { |
| 343 | int i, ret = 0; |
| 344 | |
| 345 | for_each_node(i) |
| 346 | if (nodes_add[i].start <= start && nodes_add[i].end > start) |
| 347 | ret = i; |
| 348 | |
| 349 | return ret; |
| 350 | } |
Keith Mannthey | 8c2676a | 2006-09-30 23:27:07 -0700 | [diff] [blame] | 351 | EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); |
Thomas Gleixner | 6a1673a | 2008-05-12 15:43:38 +0200 | [diff] [blame] | 352 | #endif |