blob: 1953e9c9391aecf6ae4cddb4d65baae045fd2911 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Kleen68a3a7f2006-04-07 19:49:18 +020018#include <linux/bootmem.h>
Yinghai Lua9ce6bc2010-08-25 13:39:17 -070019#include <linux/memblock.h>
Andi Kleen68a3a7f2006-04-07 19:49:18 +020020#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/proto.h>
22#include <asm/numa.h>
Andi Kleen8a6fdd32006-01-11 22:44:39 +010023#include <asm/e820.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010024#include <asm/apic.h>
Ingo Molnar4ec71fa2009-01-21 10:24:27 +010025#include <asm/uv/uv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Andi Kleenc31fbb12006-09-26 10:52:33 +020027int acpi_numa __initdata;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static __init int setup_node(int pxm)
30{
Yasunori Goto762834e2006-06-23 02:03:19 -070031 return acpi_map_pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static __init void bad_srat(void)
35{
36 printk(KERN_ERR "SRAT: SRAT not used.\n");
37 acpi_numa = -1;
38}
39
40static __init inline int srat_disabled(void)
41{
Tejun Heoffe77a42011-02-16 12:13:06 +010042 return acpi_numa < 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
Toshi Kania85eba82014-01-21 14:33:15 -080045/*
46 * Callback for SLIT parsing. pxm_to_node() returns NUMA_NO_NODE for
47 * I/O localities since SRAT does not list them. I/O localities are
48 * not supported at this point.
49 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
51{
Tejun Heoac7136b62011-02-16 17:11:09 +010052 int i, j;
Yinghai Luf302a5bb2008-07-10 20:36:37 -070053
Toshi Kania85eba82014-01-21 14:33:15 -080054 for (i = 0; i < slit->locality_count; i++) {
55 if (pxm_to_node(i) == NUMA_NO_NODE)
56 continue;
57 for (j = 0; j < slit->locality_count; j++) {
58 if (pxm_to_node(j) == NUMA_NO_NODE)
59 continue;
Tejun Heoac7136b62011-02-16 17:11:09 +010060 numa_set_distance(pxm_to_node(i), pxm_to_node(j),
61 slit->entry[slit->locality_count * i + j]);
Toshi Kania85eba82014-01-21 14:33:15 -080062 }
63 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Suresh Siddha7237d3d2009-03-30 13:55:30 -080066/* Callback for Proximity Domain -> x2APIC mapping */
67void __init
68acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa)
69{
70 int pxm, node;
71 int apic_id;
72
73 if (srat_disabled())
74 return;
75 if (pa->header.length < sizeof(struct acpi_srat_x2apic_cpu_affinity)) {
76 bad_srat();
77 return;
78 }
79 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
80 return;
81 pxm = pa->proximity_domain;
Yinghai Lua35fd282011-12-21 17:45:16 -080082 apic_id = pa->apic_id;
Steffen Persvoldb7157ac2012-03-16 20:25:35 +010083 if (!apic->apic_id_valid(apic_id)) {
Yinghai Lua35fd282011-12-21 17:45:16 -080084 printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n",
85 pxm, apic_id);
86 return;
87 }
Suresh Siddha7237d3d2009-03-30 13:55:30 -080088 node = setup_node(pxm);
89 if (node < 0) {
90 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
91 bad_srat();
92 return;
93 }
94
Yinghai Lud3bd0582010-12-16 19:09:58 -080095 if (apic_id >= MAX_LOCAL_APIC) {
96 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
97 return;
98 }
Tejun Heobbc9e2f2011-01-23 14:37:39 +010099 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +0100100 node_set(node, numa_nodes_parsed);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800101 acpi_numa = 1;
Yinghai Lu163d3862009-11-21 00:23:37 -0800102 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800103 pxm, apic_id, node);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* Callback for Proximity Domain -> LAPIC mapping */
107void __init
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300108acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 int pxm, node;
travis@sgi.comef970012008-01-30 13:33:10 +0100111 int apic_id;
112
Andi Kleend22fe802006-02-03 21:51:26 +0100113 if (srat_disabled())
114 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300115 if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
Andi Kleenfad79062006-05-15 18:19:44 +0200116 bad_srat();
Andi Kleend22fe802006-02-03 21:51:26 +0100117 return;
118 }
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300119 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300121 pxm = pa->proximity_domain_lo;
Kurt Garloffcd298f62012-01-17 04:20:31 -0500122 if (acpi_srat_revision >= 2)
123 pxm |= *((unsigned int*)pa->proximity_domain_hi) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 node = setup_node(pxm);
125 if (node < 0) {
126 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
127 bad_srat();
128 return;
129 }
Yinghai Lubeafe912008-02-16 23:00:22 -0800130
Jack Steiner2e420602008-09-23 15:37:13 -0500131 if (get_uv_system_type() >= UV_X2APIC)
Jack Steinera65d1d62008-03-28 14:12:08 -0500132 apic_id = (pa->apic_id << 8) | pa->local_sapic_eid;
133 else
134 apic_id = pa->apic_id;
Yinghai Lud3bd0582010-12-16 19:09:58 -0800135
136 if (apic_id >= MAX_LOCAL_APIC) {
137 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
138 return;
139 }
140
Tejun Heobbc9e2f2011-01-23 14:37:39 +0100141 set_apicid_to_node(apic_id, node);
Tejun Heo92d4a432011-02-16 17:11:09 +0100142 node_set(node, numa_nodes_parsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 acpi_numa = 1;
Yinghai Lu163d3862009-11-21 00:23:37 -0800144 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
travis@sgi.comef970012008-01-30 13:33:10 +0100145 pxm, apic_id, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Tejun Heo96886782011-05-02 14:18:51 +0200148#ifdef CONFIG_MEMORY_HOTPLUG
Keith Mannthey71efa8f2006-09-30 23:27:05 -0700149static inline int save_add_info(void) {return 1;}
150#else
151static inline int save_add_info(void) {return 0;}
152#endif
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
Thomas Renninger095adbb2012-07-31 17:41:09 +0200155int __init
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300156acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Tejun Heoeca9ad32011-05-02 14:18:52 +0200158 u64 start, end;
Tang Chend7b2c3d2013-08-14 17:37:06 +0800159 u32 hotpluggable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 int node, pxm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Andi Kleend22fe802006-02-03 21:51:26 +0100162 if (srat_disabled())
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800163 goto out_err;
164 if (ma->header.length != sizeof(struct acpi_srat_mem_affinity))
165 goto out_err_bad_srat;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300166 if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0)
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800167 goto out_err;
Tang Chend7b2c3d2013-08-14 17:37:06 +0800168 hotpluggable = ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE;
169 if (hotpluggable && !save_add_info())
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800170 goto out_err;
171
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300172 start = ma->base_address;
173 end = start + ma->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 pxm = ma->proximity_domain;
Kurt Garloffcd298f62012-01-17 04:20:31 -0500175 if (acpi_srat_revision <= 1)
176 pxm &= 0xff;
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 node = setup_node(pxm);
179 if (node < 0) {
180 printk(KERN_ERR "SRAT: Too many proximity domains.\n");
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800181 goto out_err_bad_srat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Tejun Heoef396ec2011-02-16 17:11:07 +0100183
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800184 if (numa_add_memblk(node, start, end) < 0)
185 goto out_err_bad_srat;
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200186
Yasuaki Ishimatsu4af463d2012-06-04 11:42:32 +0900187 node_set(node, numa_nodes_parsed);
188
Tang Chend7b2c3d2013-08-14 17:37:06 +0800189 pr_info("SRAT: Node %u PXM %u [mem %#010Lx-%#010Lx]%s\n",
190 node, pxm,
191 (unsigned long long) start, (unsigned long long) end - 1,
192 hotpluggable ? " hotplug" : "");
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800193
Tang Chen05d1d8c2014-01-21 15:49:29 -0800194 /* Mark hotplug range in memblock. */
195 if (hotpluggable && memblock_mark_hotplug(start, ma->length))
196 pr_warn("SRAT: Failed to mark hotplug range [mem %#010Lx-%#010Lx] in memblock\n",
197 (unsigned long long)start, (unsigned long long)end - 1);
198
Thomas Renninger095adbb2012-07-31 17:41:09 +0200199 return 0;
Davidlohr Bueso479a99a2013-01-08 16:18:41 -0800200out_err_bad_srat:
201 bad_srat();
202out_err:
203 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206void __init acpi_numa_arch_fixup(void) {}
207
Tejun Heoa9aec562011-02-16 12:13:06 +0100208int __init x86_acpi_numa_init(void)
209{
210 int ret;
211
212 ret = acpi_numa_init();
213 if (ret < 0)
214 return ret;
215 return srat_disabled() ? -EINVAL : 0;
216}