]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/x86/mm/srat.c
x86, acpi: Skip acpi x2apic entries if the x2apic feature is not present
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / mm / srat.c
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>
18 #include <linux/bootmem.h>
19 #include <linux/memblock.h>
20 #include <linux/mm.h>
21 #include <asm/proto.h>
22 #include <asm/numa.h>
23 #include <asm/e820.h>
24 #include <asm/apic.h>
25 #include <asm/uv/uv.h>
26
27 int acpi_numa __initdata;
28
29 static __init int setup_node(int pxm)
30 {
31 return acpi_map_pxm_to_node(pxm);
32 }
33
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 {
42 return acpi_numa < 0;
43 }
44
45 /* Callback for SLIT parsing */
46 void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
47 {
48 int i, j;
49
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]);
54 }
55
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;
72 apic_id = pa->apic_id;
73 if (!cpu_has_x2apic && (apic_id >= 0xff)) {
74 printk(KERN_INFO "SRAT: PXM %u -> X2APIC 0x%04x ignored\n",
75 pxm, apic_id);
76 return;
77 }
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
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 }
89 set_apicid_to_node(apic_id, node);
90 node_set(node, numa_nodes_parsed);
91 acpi_numa = 1;
92 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
93 pxm, apic_id, node);
94 }
95
96 /* Callback for Proximity Domain -> LAPIC mapping */
97 void __init
98 acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa)
99 {
100 int pxm, node;
101 int apic_id;
102
103 if (srat_disabled())
104 return;
105 if (pa->header.length != sizeof(struct acpi_srat_cpu_affinity)) {
106 bad_srat();
107 return;
108 }
109 if ((pa->flags & ACPI_SRAT_CPU_ENABLED) == 0)
110 return;
111 pxm = pa->proximity_domain_lo;
112 node = setup_node(pxm);
113 if (node < 0) {
114 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
115 bad_srat();
116 return;
117 }
118
119 if (get_uv_system_type() >= UV_X2APIC)
120 apic_id = (pa->apic_id << 8) | pa->local_sapic_eid;
121 else
122 apic_id = pa->apic_id;
123
124 if (apic_id >= MAX_LOCAL_APIC) {
125 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm, apic_id, node);
126 return;
127 }
128
129 set_apicid_to_node(apic_id, node);
130 node_set(node, numa_nodes_parsed);
131 acpi_numa = 1;
132 printk(KERN_INFO "SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
133 pxm, apic_id, node);
134 }
135
136 #ifdef CONFIG_MEMORY_HOTPLUG
137 static inline int save_add_info(void) {return 1;}
138 #else
139 static inline int save_add_info(void) {return 0;}
140 #endif
141
142 /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
143 void __init
144 acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma)
145 {
146 u64 start, end;
147 int node, pxm;
148
149 if (srat_disabled())
150 return;
151 if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) {
152 bad_srat();
153 return;
154 }
155 if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0)
156 return;
157
158 if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info())
159 return;
160 start = ma->base_address;
161 end = start + ma->length;
162 pxm = ma->proximity_domain;
163 node = setup_node(pxm);
164 if (node < 0) {
165 printk(KERN_ERR "SRAT: Too many proximity domains.\n");
166 bad_srat();
167 return;
168 }
169
170 if (numa_add_memblk(node, start, end) < 0) {
171 bad_srat();
172 return;
173 }
174
175 printk(KERN_INFO "SRAT: Node %u PXM %u %Lx-%Lx\n", node, pxm,
176 start, end);
177 }
178
179 void __init acpi_numa_arch_fixup(void) {}
180
181 int __init x86_acpi_numa_init(void)
182 {
183 int ret;
184
185 ret = acpi_numa_init();
186 if (ret < 0)
187 return ret;
188 return srat_disabled() ? -EINVAL : 0;
189 }