blob: 33a38d60463009197f0f80db545ce5e15ce7f880 [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,
Catalin Marinas828aef32015-03-24 14:02:46 +000035 u32 acpi_id, phys_cpuid_t *apic_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -070036{
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,
Catalin Marinas828aef32015-03-24 14:02:46 +000051 int device_declaration, u32 acpi_id, phys_cpuid_t *apic_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -070052{
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,
Catalin Marinas828aef32015-03-24 14:02:46 +000068 int device_declaration, u32 acpi_id, phys_cpuid_t *apic_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -070069{
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 Chiangeae701c2010-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 Chiangeae701c2010-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 Chiangeae701c2010-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
Hanjun Guo020295b2015-03-24 14:02:47 +000086/*
87 * Retrieve the ARM CPU physical identifier (MPIDR)
88 */
89static int map_gicc_mpidr(struct acpi_subtable_header *entry,
90 int device_declaration, u32 acpi_id, phys_cpuid_t *mpidr)
91{
92 struct acpi_madt_generic_interrupt *gicc =
93 container_of(entry, struct acpi_madt_generic_interrupt, header);
94
95 if (!(gicc->flags & ACPI_MADT_ENABLED))
96 return -ENODEV;
97
98 /* device_declaration means Device object in DSDT, in the
99 * GIC interrupt model, logical processors are required to
100 * have a Processor Device object in the DSDT, so we should
101 * check device_declaration here
102 */
103 if (device_declaration && (gicc->uid == acpi_id)) {
104 *mpidr = gicc->arm_mpidr;
105 return 0;
106 }
107
108 return -EINVAL;
109}
110
Catalin Marinas828aef32015-03-24 14:02:46 +0000111static phys_cpuid_t map_madt_entry(int type, u32 acpi_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700112{
113 unsigned long madt_end, entry;
Catalin Marinas828aef32015-03-24 14:02:46 +0000114 phys_cpuid_t phys_id = PHYS_CPUID_INVALID; /* CPU hardware ID */
Yinghai Luecf56362015-02-05 13:44:48 +0800115 struct acpi_table_madt *madt;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700116
Yinghai Luecf56362015-02-05 13:44:48 +0800117 madt = get_madt_table();
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700118 if (!madt)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800119 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700120
121 entry = (unsigned long)madt;
122 madt_end = entry + madt->header.length;
123
124 /* Parse all entries looking for a match. */
125
126 entry += sizeof(struct acpi_table_madt);
127 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
128 struct acpi_subtable_header *header =
129 (struct acpi_subtable_header *)entry;
130 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800131 if (!map_lapic_id(header, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700132 break;
133 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800134 if (!map_x2apic_id(header, type, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700135 break;
136 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800137 if (!map_lsapic_id(header, type, acpi_id, &phys_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700138 break;
Hanjun Guo020295b2015-03-24 14:02:47 +0000139 } else if (header->type == ACPI_MADT_TYPE_GENERIC_INTERRUPT) {
140 if (!map_gicc_mpidr(header, type, acpi_id, &phys_id))
141 break;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700142 }
143 entry += header->length;
144 }
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800145 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700146}
147
Catalin Marinas828aef32015-03-24 14:02:46 +0000148static phys_cpuid_t map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700149{
150 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
151 union acpi_object *obj;
152 struct acpi_subtable_header *header;
Catalin Marinas828aef32015-03-24 14:02:46 +0000153 phys_cpuid_t phys_id = PHYS_CPUID_INVALID;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700154
155 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
156 goto exit;
157
158 if (!buffer.length || !buffer.pointer)
159 goto exit;
160
161 obj = buffer.pointer;
162 if (obj->type != ACPI_TYPE_BUFFER ||
163 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
164 goto exit;
165 }
166
167 header = (struct acpi_subtable_header *)obj->buffer.pointer;
Jiang Liu13ca62b2014-10-27 13:21:36 +0800168 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800169 map_lapic_id(header, acpi_id, &phys_id);
Jiang Liu13ca62b2014-10-27 13:21:36 +0800170 else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800171 map_lsapic_id(header, type, acpi_id, &phys_id);
Jiang Liu13ca62b2014-10-27 13:21:36 +0800172 else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC)
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800173 map_x2apic_id(header, type, acpi_id, &phys_id);
Hanjun Guo020295b2015-03-24 14:02:47 +0000174 else if (header->type == ACPI_MADT_TYPE_GENERIC_INTERRUPT)
175 map_gicc_mpidr(header, type, acpi_id, &phys_id);
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700176
177exit:
Syam Sidhardhan5273a252013-02-24 23:12:53 +0000178 kfree(buffer.pointer);
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800179 return phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700180}
181
Catalin Marinas828aef32015-03-24 14:02:46 +0000182phys_cpuid_t acpi_get_phys_id(acpi_handle handle, int type, u32 acpi_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700183{
Catalin Marinas828aef32015-03-24 14:02:46 +0000184 phys_cpuid_t phys_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700185
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800186 phys_id = map_mat_entry(handle, type, acpi_id);
Hanjun Guoddcc18f2015-05-13 16:19:30 +0800187 if (invalid_phys_cpuid(phys_id))
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800188 phys_id = map_madt_entry(type, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800189
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800190 return phys_id;
Jiang Liuca9f62a2013-09-02 11:57:34 +0800191}
192
Catalin Marinas828aef32015-03-24 14:02:46 +0000193int acpi_map_cpuid(phys_cpuid_t phys_id, u32 acpi_id)
Jiang Liuca9f62a2013-09-02 11:57:34 +0800194{
195#ifdef CONFIG_SMP
196 int i;
197#endif
198
Hanjun Guoddcc18f2015-05-13 16:19:30 +0800199 if (invalid_phys_cpuid(phys_id)) {
Lin Mingd6401132011-12-13 09:36:03 +0800200 /*
201 * On UP processor, there is no _MAT or MADT table.
Catalin Marinas828aef32015-03-24 14:02:46 +0000202 * So above phys_id is always set to PHYS_CPUID_INVALID.
Lin Mingd6401132011-12-13 09:36:03 +0800203 *
204 * BIOS may define multiple CPU handles even for UP processor.
205 * For example,
206 *
207 * Scope (_PR)
Jiang Liu13ca62b2014-10-27 13:21:36 +0800208 * {
Lin Mingd6401132011-12-13 09:36:03 +0800209 * Processor (CPU0, 0x00, 0x00000410, 0x06) {}
210 * Processor (CPU1, 0x01, 0x00000410, 0x06) {}
211 * Processor (CPU2, 0x02, 0x00000410, 0x06) {}
212 * Processor (CPU3, 0x03, 0x00000410, 0x06) {}
213 * }
214 *
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800215 * Ignores phys_id and always returns 0 for the processor
Thomas Renningerc4686c72012-07-12 12:24:33 +0200216 * handle with acpi id 0 if nr_cpu_ids is 1.
217 * This should be the case if SMP tables are not found.
Hanjun Guod3da7cb2015-05-11 12:17:18 +0800218 * Return -EINVAL for other CPU's handle.
Lin Mingd6401132011-12-13 09:36:03 +0800219 */
Thomas Renningerc4686c72012-07-12 12:24:33 +0200220 if (nr_cpu_ids <= 1 && acpi_id == 0)
Lin Mingd6401132011-12-13 09:36:03 +0800221 return acpi_id;
222 else
Hanjun Guod3da7cb2015-05-11 12:17:18 +0800223 return -EINVAL;
Lin Mingd6401132011-12-13 09:36:03 +0800224 }
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700225
Lin Ming932df742011-05-16 09:11:00 +0800226#ifdef CONFIG_SMP
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700227 for_each_possible_cpu(i) {
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800228 if (cpu_physical_id(i) == phys_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700229 return i;
230 }
Lin Ming932df742011-05-16 09:11:00 +0800231#else
232 /* In UP kernel, only processor 0 is valid */
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800233 if (phys_id == 0)
234 return phys_id;
Lin Ming932df742011-05-16 09:11:00 +0800235#endif
Hanjun Guod3da7cb2015-05-11 12:17:18 +0800236 return -ENODEV;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700237}
Jiang Liuca9f62a2013-09-02 11:57:34 +0800238
239int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
240{
Catalin Marinas828aef32015-03-24 14:02:46 +0000241 phys_cpuid_t phys_id;
Jiang Liuca9f62a2013-09-02 11:57:34 +0800242
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800243 phys_id = acpi_get_phys_id(handle, type, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800244
Hanjun Guoaf8f3f52015-01-04 18:55:02 +0800245 return acpi_map_cpuid(phys_id, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800246}
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700247EXPORT_SYMBOL_GPL(acpi_get_cpuid);
Yinghai Luecf56362015-02-05 13:44:48 +0800248
249#ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
250static int get_ioapic_id(struct acpi_subtable_header *entry, u32 gsi_base,
251 u64 *phys_addr, int *ioapic_id)
252{
253 struct acpi_madt_io_apic *ioapic = (struct acpi_madt_io_apic *)entry;
254
255 if (ioapic->global_irq_base != gsi_base)
256 return 0;
257
258 *phys_addr = ioapic->address;
259 *ioapic_id = ioapic->id;
260 return 1;
261}
262
263static int parse_madt_ioapic_entry(u32 gsi_base, u64 *phys_addr)
264{
265 struct acpi_subtable_header *hdr;
266 unsigned long madt_end, entry;
267 struct acpi_table_madt *madt;
268 int apic_id = -1;
269
270 madt = get_madt_table();
271 if (!madt)
272 return apic_id;
273
274 entry = (unsigned long)madt;
275 madt_end = entry + madt->header.length;
276
277 /* Parse all entries looking for a match. */
278 entry += sizeof(struct acpi_table_madt);
279 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
280 hdr = (struct acpi_subtable_header *)entry;
281 if (hdr->type == ACPI_MADT_TYPE_IO_APIC &&
282 get_ioapic_id(hdr, gsi_base, phys_addr, &apic_id))
283 break;
284 else
285 entry += hdr->length;
286 }
287
288 return apic_id;
289}
290
291static int parse_mat_ioapic_entry(acpi_handle handle, u32 gsi_base,
292 u64 *phys_addr)
293{
294 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
295 struct acpi_subtable_header *header;
296 union acpi_object *obj;
297 int apic_id = -1;
298
299 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
300 goto exit;
301
302 if (!buffer.length || !buffer.pointer)
303 goto exit;
304
305 obj = buffer.pointer;
306 if (obj->type != ACPI_TYPE_BUFFER ||
307 obj->buffer.length < sizeof(struct acpi_subtable_header))
308 goto exit;
309
310 header = (struct acpi_subtable_header *)obj->buffer.pointer;
311 if (header->type == ACPI_MADT_TYPE_IO_APIC)
312 get_ioapic_id(header, gsi_base, phys_addr, &apic_id);
313
314exit:
315 kfree(buffer.pointer);
316 return apic_id;
317}
318
319/**
320 * acpi_get_ioapic_id - Get IOAPIC ID and physical address matching @gsi_base
321 * @handle: ACPI object for IOAPIC device
322 * @gsi_base: GSI base to match with
323 * @phys_addr: Pointer to store physical address of matching IOAPIC record
324 *
325 * Walk resources returned by ACPI_MAT method, then ACPI MADT table, to search
326 * for an ACPI IOAPIC record matching @gsi_base.
327 * Return IOAPIC id and store physical address in @phys_addr if found a match,
328 * otherwise return <0.
329 */
330int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr)
331{
332 int apic_id;
333
334 apic_id = parse_mat_ioapic_entry(handle, gsi_base, phys_addr);
335 if (apic_id == -1)
336 apic_id = parse_madt_ioapic_entry(gsi_base, phys_addr);
337
338 return apic_id;
339}
340#endif /* CONFIG_ACPI_HOTPLUG_IOAPIC */