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 __init int setup_node(int pxm) |
| 30 | { |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 31 | return acpi_map_pxm_to_node(pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | } |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | static __init void bad_srat(void) |
| 35 | { |
| 36 | printk(KERN_ERR "SRAT: SRAT not used.\n"); |
| 37 | acpi_numa = -1; |
| 38 | } |
| 39 | |
| 40 | static __init inline int srat_disabled(void) |
| 41 | { |
Tejun Heo | ffe77a4 | 2011-02-16 12:13:06 +0100 | [diff] [blame] | 42 | return acpi_numa < 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | /* Callback for SLIT parsing */ |
| 46 | void __init acpi_numa_slit_init(struct acpi_table_slit *slit) |
| 47 | { |
Tejun Heo | ac7136b6 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 48 | int i, j; |
Yinghai Lu | f302a5bb | 2008-07-10 20:36:37 -0700 | [diff] [blame] | 49 | |
Tejun Heo | ac7136b6 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 50 | for (i = 0; i < slit->locality_count; i++) |
| 51 | for (j = 0; j < slit->locality_count; j++) |
| 52 | numa_set_distance(pxm_to_node(i), pxm_to_node(j), |
| 53 | slit->entry[slit->locality_count * i + j]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 56 | /* Callback for Proximity Domain -> x2APIC mapping */ |
| 57 | void __init |
| 58 | acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa) |
| 59 | { |
| 60 | int pxm, node; |
| 61 | int apic_id; |
| 62 | |
| 63 | if (srat_disabled()) |
| 64 | return; |
| 65 | if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) { |
| 66 | bad_srat(); |
| 67 | return; |
| 68 | } |
| 69 | if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0) |
| 70 | return; |
| 71 | pxm = pa->proximity_domain; |
Yinghai Lu | a35fd28 | 2011-12-21 17:45:16 -0800 | [diff] [blame] | 72 | apic_id = pa->apic_id; |
Steffen Persvold | b7157ac | 2012-03-16 20:25:35 +0100 | [diff] [blame] | 73 | if (!apic->apic_id_valid(apic_id)) { |
Yinghai Lu | a35fd28 | 2011-12-21 17:45:16 -0800 | [diff] [blame] | 74 | printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n", |
| 75 | pxm, apic_id); |
| 76 | return; |
| 77 | } |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 78 | node = setup_node(pxm); |
| 79 | if (node < 0) { |
| 80 | printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); |
| 81 | bad_srat(); |
| 82 | return; |
| 83 | } |
| 84 | |
Yinghai Lu | d3bd058 | 2010-12-16 19:09:58 -0800 | [diff] [blame] | 85 | if (apic_id >= MAX_LOCAL_APIC) { |
| 86 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node); |
| 87 | return; |
| 88 | } |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 89 | set_apicid_to_node(apic_id, node); |
Tejun Heo | 92d4a43 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 90 | node_set(node, numa_nodes_parsed); |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 91 | acpi_numa = 1; |
Yinghai Lu | 163d386 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 92 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n", |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 93 | pxm, apic_id, node); |
| 94 | } |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /* Callback for Proximity Domain -> LAPIC mapping */ |
| 97 | void __init |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 98 | acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
| 100 | int pxm, node; |
travis@sgi.com | ef97001 | 2008-01-30 13:33:10 +0100 | [diff] [blame] | 101 | int apic_id; |
| 102 | |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 103 | if (srat_disabled()) |
| 104 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 105 | if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) { |
Andi Kleen | fad7906 | 2006-05-15 18:19:44 +0200 | [diff] [blame] | 106 | bad_srat(); |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 107 | return; |
| 108 | } |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 109 | if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 111 | pxm = pa->proximity_domain_lo; |
Kurt Garloff | cd298f6 | 2012-01-17 04:20:31 -0500 | [diff] [blame] | 112 | if (acpi_srat_revision >= 2) |
| 113 | pxm |= *((unsigned int*)pa->proximity_domain_hi) << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | node = setup_node(pxm); |
| 115 | if (node < 0) { |
| 116 | printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm); |
| 117 | bad_srat(); |
| 118 | return; |
| 119 | } |
Yinghai Lu | beafe91 | 2008-02-16 23:00:22 -0800 | [diff] [blame] | 120 | |
Jack Steiner | 2e42060 | 2008-09-23 15:37:13 -0500 | [diff] [blame] | 121 | if (get_uv_system_type() >= UV_X2APIC) |
Jack Steiner | a65d1d6 | 2008-03-28 14:12:08 -0500 | [diff] [blame] | 122 | apic_id = (pa->apic_id << 8) | pa->local_sapic_eid; |
| 123 | else |
| 124 | apic_id = pa->apic_id; |
Yinghai Lu | d3bd058 | 2010-12-16 19:09:58 -0800 | [diff] [blame] | 125 | |
| 126 | if (apic_id >= MAX_LOCAL_APIC) { |
| 127 | printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node); |
| 128 | return; |
| 129 | } |
| 130 | |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 131 | set_apicid_to_node(apic_id, node); |
Tejun Heo | 92d4a43 | 2011-02-16 17:11:09 +0100 | [diff] [blame] | 132 | node_set(node, numa_nodes_parsed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | acpi_numa = 1; |
Yinghai Lu | 163d386 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 134 | 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] | 135 | pxm, apic_id, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Tejun Heo | 9688678 | 2011-05-02 14:18:51 +0200 | [diff] [blame] | 138 | #ifdef CONFIG_MEMORY_HOTPLUG |
Keith Mannthey | 71efa8f | 2006-09-30 23:27:05 -0700 | [diff] [blame] | 139 | static inline int save_add_info(void) {return 1;} |
| 140 | #else |
| 141 | static inline int save_add_info(void) {return 0;} |
| 142 | #endif |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */ |
Thomas Renninger | 095adbb | 2012-07-31 17:41:09 +0200 | [diff] [blame] | 145 | int __init |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 146 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
Tejun Heo | eca9ad3 | 2011-05-02 14:18:52 +0200 | [diff] [blame] | 148 | u64 start, end; |
Tang Chen | d7b2c3d | 2013-08-14 17:37:06 +0800 | [diff] [blame] | 149 | u32 hotpluggable; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | int node, pxm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Andi Kleen | d22fe80 | 2006-02-03 21:51:26 +0100 | [diff] [blame] | 152 | if (srat_disabled()) |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 153 | goto out_err; |
| 154 | if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) |
| 155 | goto out_err_bad_srat; |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 156 | if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0) |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 157 | goto out_err; |
Tang Chen | d7b2c3d | 2013-08-14 17:37:06 +0800 | [diff] [blame] | 158 | hotpluggable = ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE; |
| 159 | if (hotpluggable && !save_add_info()) |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 160 | goto out_err; |
| 161 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 162 | start = ma->base_address; |
| 163 | end = start + ma->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | pxm = ma->proximity_domain; |
Kurt Garloff | cd298f6 | 2012-01-17 04:20:31 -0500 | [diff] [blame] | 165 | if (acpi_srat_revision <= 1) |
| 166 | pxm &= 0xff; |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | node = setup_node(pxm); |
| 169 | if (node < 0) { |
| 170 | printk(KERN_ERR "SRAT: Too many proximity domains.\n"); |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 171 | goto out_err_bad_srat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
Tejun Heo | ef396ec | 2011-02-16 17:11:07 +0100 | [diff] [blame] | 173 | |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 174 | if (numa_add_memblk(node, start, end) < 0) |
| 175 | goto out_err_bad_srat; |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 176 | |
Yasuaki Ishimatsu | 4af463d | 2012-06-04 11:42:32 +0900 | [diff] [blame] | 177 | node_set(node, numa_nodes_parsed); |
| 178 | |
Tang Chen | d7b2c3d | 2013-08-14 17:37:06 +0800 | [diff] [blame] | 179 | pr_info("SRAT: Node %u PXM %u [mem %#010Lx-%#010Lx]%s\n", |
| 180 | node, pxm, |
| 181 | (unsigned long long) start, (unsigned long long) end - 1, |
| 182 | hotpluggable ? " hotplug" : ""); |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 183 | |
Tang Chen | 05d1d8c | 2014-01-21 15:49:29 -0800 | [diff] [blame] | 184 | /* Mark hotplug range in memblock. */ |
| 185 | if (hotpluggable && memblock_mark_hotplug(start, ma->length)) |
| 186 | pr_warn("SRAT: Failed to mark hotplug range [mem %#010Lx-%#010Lx] in memblock\n", |
| 187 | (unsigned long long)start, (unsigned long long)end - 1); |
| 188 | |
Thomas Renninger | 095adbb | 2012-07-31 17:41:09 +0200 | [diff] [blame] | 189 | return 0; |
Davidlohr Bueso | 479a99a | 2013-01-08 16:18:41 -0800 | [diff] [blame] | 190 | out_err_bad_srat: |
| 191 | bad_srat(); |
| 192 | out_err: |
| 193 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | void __init acpi_numa_arch_fixup(void) {} |
| 197 | |
Tejun Heo | a9aec56 | 2011-02-16 12:13:06 +0100 | [diff] [blame] | 198 | int __init x86_acpi_numa_init(void) |
| 199 | { |
| 200 | int ret; |
| 201 | |
| 202 | ret = acpi_numa_init(); |
| 203 | if (ret < 0) |
| 204 | return ret; |
| 205 | return srat_disabled() ? -EINVAL : 0; |
| 206 | } |