blob: 7962651cdbd43a6a7b7e22e75263f90c9567dc80 [file] [log] [blame]
Alex Chiang47817252009-12-20 12:19:34 -07001/*
2 * Copyright (C) 2005 Intel Corporation
3 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
4 *
5 * Alex Chiang <achiang@hp.com>
6 * - Unified x86/ia64 implementations
Yinghai Luecf56362015-02-05 13:44:48 +08007 *
8 * I/O APIC hotplug support
9 * Yinghai Lu <yinghai@kernel.org>
10 * Jiang Liu <jiang.liu@intel.com>
Alex Chiang47817252009-12-20 12:19:34 -070011 */
Paul Gortmaker214f2c92011-10-26 16:22:14 -040012#include <linux/export.h>
Lv Zheng8b484632013-12-03 08:49:16 +080013#include <linux/acpi.h>
Alex Chiang78f16992009-12-20 12:19:09 -070014#include <acpi/processor.h>
15
Alex Chiang78f16992009-12-20 12:19:09 -070016#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Alex Chiang4d5d4cd2010-02-22 12:11:14 -070017ACPI_MODULE_NAME("processor_core");
Alex Chiang78f16992009-12-20 12:19:09 -070018
Yinghai Luecf56362015-02-05 13:44:48 +080019static struct acpi_table_madt *get_madt_table(void)
20{
21 static struct acpi_table_madt *madt;
22 static int read_madt;
23
24 if (!read_madt) {
25 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
26 (struct acpi_table_header **)&madt)))
27 madt = NULL;
28 read_madt++;
29 }
30
31 return madt;
32}
33
Alex Chiang78ed8bd2010-02-22 12:11:24 -070034static int map_lapic_id(struct acpi_subtable_header *entry,
35 u32 acpi_id, int *apic_id)
36{
37 struct acpi_madt_local_apic *lapic =
Fabian Frederickef86c3f2014-09-14 15:12:43 +020038 container_of(entry, struct acpi_madt_local_apic, header);
Alex Chiang11130732010-02-22 12:11:44 -070039
40 if (!(lapic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080041 return -ENODEV;
Alex Chiang11130732010-02-22 12:11:44 -070042
43 if (lapic->processor_id != acpi_id)
Hanjun Guo038d7b52014-01-17 12:37:02 +080044 return -EINVAL;
Alex Chiang11130732010-02-22 12:11:44 -070045
46 *apic_id = lapic->id;
Hanjun Guo038d7b52014-01-17 12:37:02 +080047 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070048}
49
50static int map_x2apic_id(struct acpi_subtable_header *entry,
51 int device_declaration, u32 acpi_id, int *apic_id)
52{
53 struct acpi_madt_local_x2apic *apic =
Fabian Frederickef86c3f2014-09-14 15:12:43 +020054 container_of(entry, struct acpi_madt_local_x2apic, header);
Alex Chiang78ed8bd2010-02-22 12:11:24 -070055
Alex Chiang78ed8bd2010-02-22 12:11:24 -070056 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080057 return -ENODEV;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070058
Alex Chiangd6742092010-02-22 12:11:50 -070059 if (device_declaration && (apic->uid == acpi_id)) {
60 *apic_id = apic->local_apic_id;
Hanjun Guo038d7b52014-01-17 12:37:02 +080061 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070062 }
63
Hanjun Guo038d7b52014-01-17 12:37:02 +080064 return -EINVAL;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070065}
66
67static int map_lsapic_id(struct acpi_subtable_header *entry,
68 int device_declaration, u32 acpi_id, int *apic_id)
69{
70 struct acpi_madt_local_sapic *lsapic =
Fabian Frederickef86c3f2014-09-14 15:12:43 +020071 container_of(entry, struct acpi_madt_local_sapic, header);
Alex Chiang78ed8bd2010-02-22 12:11:24 -070072
Alex Chiang78ed8bd2010-02-22 12:11:24 -070073 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080074 return -ENODEV;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070075
Alex Chiang78ed8bd2010-02-22 12:11:24 -070076 if (device_declaration) {
Alex Chiangeae701ce2010-02-22 12:11:55 -070077 if ((entry->length < 16) || (lsapic->uid != acpi_id))
Hanjun Guo038d7b52014-01-17 12:37:02 +080078 return -EINVAL;
Alex Chiangeae701ce2010-02-22 12:11:55 -070079 } else if (lsapic->processor_id != acpi_id)
Hanjun Guo038d7b52014-01-17 12:37:02 +080080 return -EINVAL;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070081
Alex Chiangeae701ce2010-02-22 12:11:55 -070082 *apic_id = (lsapic->id << 8) | lsapic->eid;
Hanjun Guo038d7b52014-01-17 12:37:02 +080083 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070084}
85
86static int map_madt_entry(int type, u32 acpi_id)
87{
88 unsigned long madt_end, entry;
Hanjun Guoaf8f3f52015-01-04 18:55:02 +080089 int phys_id = -1; /* CPU hardware ID */
Yinghai Luecf56362015-02-05 13:44:48 +080090 struct acpi_table_madt *madt;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070091
Yinghai Luecf56362015-02-05 13:44:48 +080092 madt = get_madt_table();
Alex Chiang78ed8bd2010-02-22 12:11:24 -070093 if (!madt)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +080094 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070095
96 entry = (unsigned long)madt;
97 madt_end = entry + madt->header.length;
98
99 /* Parse all entries looking for a match. */
100
101 entry += sizeof(struct acpi_table_madt);
102 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
103 struct acpi_subtable_header *header =
104 (struct acpi_subtable_header *)entry;
105 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800106 if (!map_lapic_id(header, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700107 break;
108 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800109 if (!map_x2apic_id(header, type, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700110 break;
111 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800112 if (!map_lsapic_id(header, type, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700113 break;
114 }
115 entry += header->length;
116 }
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800117 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700118}
119
120static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
121{
122 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
123 union acpi_object *obj;
124 struct acpi_subtable_header *header;
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800125 int phys_id = -1;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700126
127 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
128 goto exit;
129
130 if (!buffer.length || !buffer.pointer)
131 goto exit;
132
133 obj = buffer.pointer;
134 if (obj->type != ACPI_TYPE_BUFFER ||
135 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
136 goto exit;
137 }
138
139 header = (struct acpi_subtable_header *)obj->buffer.pointer;
Jiang Liu13ca62b2014-10-27 13:21:36 +0800140 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800141 map_lapic_id(header, acpi_id, &phys_id);
Jiang Liu13ca62b2014-10-27 13:21:36 +0800142 else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800143 map_lsapic_id(header, type, acpi_id, &phys_id);
Jiang Liu13ca62b2014-10-27 13:21:36 +0800144 else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800145 map_x2apic_id(header, type, acpi_id, &phys_id);
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700146
147exit:
Syam Sidhardhan5273a252013-02-24 23:12:53 +0000148 kfree(buffer.pointer);
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800149 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700150}
151
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800152int acpi_get_phys_id(acpi_handle handle, int type, u32 acpi_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700153{
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800154 int phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700155
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800156 phys_id = map_mat_entry(handle, type, acpi_id);
157 if (phys_id == -1)
158 phys_id = map_madt_entry(type, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800159
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800160 return phys_id;
Jiang Liuca9f62a2013-09-02 11:57:34 +0800161}
162
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800163int acpi_map_cpuid(int phys_id, u32 acpi_id)
Jiang Liuca9f62a2013-09-02 11:57:34 +0800164{
165#ifdef CONFIG_SMP
166 int i;
167#endif
168
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800169 if (phys_id == -1) {
Lin Mingd6401132011-12-13 09:36:03 +0800170 /*
171 * On UP processor, there is no _MAT or MADT table.
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800172 * So above phys_id is always set to -1.
Lin Mingd6401132011-12-13 09:36:03 +0800173 *
174 * BIOS may define multiple CPU handles even for UP processor.
175 * For example,
176 *
177 * Scope (_PR)
Jiang Liu13ca62b2014-10-27 13:21:36 +0800178 * {
Lin Mingd6401132011-12-13 09:36:03 +0800179 * Processor (CPU0, 0x00, 0x00000410, 0x06) {}
180 * Processor (CPU1, 0x01, 0x00000410, 0x06) {}
181 * Processor (CPU2, 0x02, 0x00000410, 0x06) {}
182 * Processor (CPU3, 0x03, 0x00000410, 0x06) {}
183 * }
184 *
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800185 * Ignores phys_id and always returns 0 for the processor
Thomas Renningerc4686c72012-07-12 12:24:33 +0200186 * handle with acpi id 0 if nr_cpu_ids is 1.
187 * This should be the case if SMP tables are not found.
Lin Mingd6401132011-12-13 09:36:03 +0800188 * Return -1 for other CPU's handle.
189 */
Thomas Renningerc4686c72012-07-12 12:24:33 +0200190 if (nr_cpu_ids <= 1 && acpi_id == 0)
Lin Mingd6401132011-12-13 09:36:03 +0800191 return acpi_id;
192 else
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800193 return phys_id;
Lin Mingd6401132011-12-13 09:36:03 +0800194 }
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700195
Lin Ming932df742011-05-16 09:11:00 +0800196#ifdef CONFIG_SMP
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700197 for_each_possible_cpu(i) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800198 if (cpu_physical_id(i) == phys_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700199 return i;
200 }
Lin Ming932df742011-05-16 09:11:00 +0800201#else
202 /* In UP kernel, only processor 0 is valid */
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800203 if (phys_id == 0)
204 return phys_id;
Lin Ming932df742011-05-16 09:11:00 +0800205#endif
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700206 return -1;
207}
Jiang Liuca9f62a2013-09-02 11:57:34 +0800208
209int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
210{
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800211 int phys_id;
Jiang Liuca9f62a2013-09-02 11:57:34 +0800212
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800213 phys_id = acpi_get_phys_id(handle, type, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800214
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800215 return acpi_map_cpuid(phys_id, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800216}
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700217EXPORT_SYMBOL_GPL(acpi_get_cpuid);
Yinghai Luecf56362015-02-05 13:44:48 +0800218
219#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
220static int get_ioapic_id(struct acpi_subtable_header *entry, u32 gsi_base,
221 u64 *phys_addr, int *ioapic_id)
222{
223 struct acpi_madt_io_apic *ioapic = (struct acpi_madt_io_apic *)entry;
224
225 if (ioapic->global_irq_base != gsi_base)
226 return 0;
227
228 *phys_addr = ioapic->address;
229 *ioapic_id = ioapic->id;
230 return 1;
231}
232
233static int parse_madt_ioapic_entry(u32 gsi_base, u64 *phys_addr)
234{
235 struct acpi_subtable_header *hdr;
236 unsigned long madt_end, entry;
237 struct acpi_table_madt *madt;
238 int apic_id = -1;
239
240 madt = get_madt_table();
241 if (!madt)
242 return apic_id;
243
244 entry = (unsigned long)madt;
245 madt_end = entry + madt->header.length;
246
247 /* Parse all entries looking for a match. */
248 entry += sizeof(struct acpi_table_madt);
249 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
250 hdr = (struct acpi_subtable_header *)entry;
251 if (hdr->type == ACPI_MADT_TYPE_IO_APIC &&
252 get_ioapic_id(hdr, gsi_base, phys_addr, &apic_id))
253 break;
254 else
255 entry += hdr->length;
256 }
257
258 return apic_id;
259}
260
261static int parse_mat_ioapic_entry(acpi_handle handle, u32 gsi_base,
262 u64 *phys_addr)
263{
264 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
265 struct acpi_subtable_header *header;
266 union acpi_object *obj;
267 int apic_id = -1;
268
269 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
270 goto exit;
271
272 if (!buffer.length || !buffer.pointer)
273 goto exit;
274
275 obj = buffer.pointer;
276 if (obj->type != ACPI_TYPE_BUFFER ||
277 obj->buffer.length < sizeof(struct acpi_subtable_header))
278 goto exit;
279
280 header = (struct acpi_subtable_header *)obj->buffer.pointer;
281 if (header->type == ACPI_MADT_TYPE_IO_APIC)
282 get_ioapic_id(header, gsi_base, phys_addr, &apic_id);
283
284exit:
285 kfree(buffer.pointer);
286 return apic_id;
287}
288
289/**
290 * acpi_get_ioapic_id - Get IOAPIC ID and physical address matching @gsi_base
291 * @handle: ACPI object for IOAPIC device
292 * @gsi_base: GSI base to match with
293 * @phys_addr: Pointer to store physical address of matching IOAPIC record
294 *
295 * Walk resources returned by ACPI_MAT method, then ACPI MADT table, to search
296 * for an ACPI IOAPIC record matching @gsi_base.
297 * Return IOAPIC id and store physical address in @phys_addr if found a match,
298 * otherwise return <0.
299 */
300int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr)
301{
302 int apic_id;
303
304 apic_id = parse_mat_ioapic_entry(handle, gsi_base, phys_addr);
305 if (apic_id == -1)
306 apic_id = parse_madt_ioapic_entry(gsi_base, phys_addr);
307
308 return apic_id;
309}
310#endif /* CONFIG_ACPI_HOTPLUG_IOAPIC */