blob: 4d91b32423a91f6d75d06bd5e0bfec61c40c2723 [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
7 * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
8 * - Added _PDC for platforms with Intel CPUs
9 */
Paul Gortmaker214f2c92011-10-26 16:22:14 -040010#include <linux/export.h>
Alex Chiang78f16992009-12-20 12:19:09 -070011#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.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
16#include "internal.h"
17
18#define PREFIX "ACPI: "
19#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Alex Chiang4d5d4cd2010-02-22 12:11:14 -070020ACPI_MODULE_NAME("processor_core");
Alex Chiang78f16992009-12-20 12:19:09 -070021
Alex Chiang78ed8bd2010-02-22 12:11:24 -070022static int map_lapic_id(struct acpi_subtable_header *entry,
23 u32 acpi_id, int *apic_id)
24{
25 struct acpi_madt_local_apic *lapic =
26 (struct acpi_madt_local_apic *)entry;
Alex Chiang11130732010-02-22 12:11:44 -070027
28 if (!(lapic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080029 return -ENODEV;
Alex Chiang11130732010-02-22 12:11:44 -070030
31 if (lapic->processor_id != acpi_id)
Hanjun Guo038d7b52014-01-17 12:37:02 +080032 return -EINVAL;
Alex Chiang11130732010-02-22 12:11:44 -070033
34 *apic_id = lapic->id;
Hanjun Guo038d7b52014-01-17 12:37:02 +080035 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070036}
37
38static int map_x2apic_id(struct acpi_subtable_header *entry,
39 int device_declaration, u32 acpi_id, int *apic_id)
40{
41 struct acpi_madt_local_x2apic *apic =
42 (struct acpi_madt_local_x2apic *)entry;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070043
Alex Chiang78ed8bd2010-02-22 12:11:24 -070044 if (!(apic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080045 return -ENODEV;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070046
Alex Chiangd6742092010-02-22 12:11:50 -070047 if (device_declaration && (apic->uid == acpi_id)) {
48 *apic_id = apic->local_apic_id;
Hanjun Guo038d7b52014-01-17 12:37:02 +080049 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070050 }
51
Hanjun Guo038d7b52014-01-17 12:37:02 +080052 return -EINVAL;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070053}
54
55static int map_lsapic_id(struct acpi_subtable_header *entry,
56 int device_declaration, u32 acpi_id, int *apic_id)
57{
58 struct acpi_madt_local_sapic *lsapic =
59 (struct acpi_madt_local_sapic *)entry;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070060
Alex Chiang78ed8bd2010-02-22 12:11:24 -070061 if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED))
Hanjun Guo038d7b52014-01-17 12:37:02 +080062 return -ENODEV;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070063
Alex Chiang78ed8bd2010-02-22 12:11:24 -070064 if (device_declaration) {
Alex Chiangeae701c2010-02-22 12:11:55 -070065 if ((entry->length < 16) || (lsapic->uid != acpi_id))
Hanjun Guo038d7b52014-01-17 12:37:02 +080066 return -EINVAL;
Alex Chiangeae701c2010-02-22 12:11:55 -070067 } else if (lsapic->processor_id != acpi_id)
Hanjun Guo038d7b52014-01-17 12:37:02 +080068 return -EINVAL;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070069
Alex Chiangeae701c2010-02-22 12:11:55 -070070 *apic_id = (lsapic->id << 8) | lsapic->eid;
Hanjun Guo038d7b52014-01-17 12:37:02 +080071 return 0;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070072}
73
74static int map_madt_entry(int type, u32 acpi_id)
75{
76 unsigned long madt_end, entry;
Alex Chiang149fe9c2010-02-22 12:12:00 -070077 static struct acpi_table_madt *madt;
78 static int read_madt;
Alex Chiang78ed8bd2010-02-22 12:11:24 -070079 int apic_id = -1;
80
Alex Chiang149fe9c2010-02-22 12:12:00 -070081 if (!read_madt) {
82 if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
83 (struct acpi_table_header **)&madt)))
84 madt = NULL;
85 read_madt++;
86 }
87
Alex Chiang78ed8bd2010-02-22 12:11:24 -070088 if (!madt)
89 return apic_id;
90
91 entry = (unsigned long)madt;
92 madt_end = entry + madt->header.length;
93
94 /* Parse all entries looking for a match. */
95
96 entry += sizeof(struct acpi_table_madt);
97 while (entry + sizeof(struct acpi_subtable_header) < madt_end) {
98 struct acpi_subtable_header *header =
99 (struct acpi_subtable_header *)entry;
100 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
Hanjun Guo038d7b52014-01-17 12:37:02 +0800101 if (!map_lapic_id(header, acpi_id, &apic_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700102 break;
103 } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) {
Hanjun Guo038d7b52014-01-17 12:37:02 +0800104 if (!map_x2apic_id(header, type, acpi_id, &apic_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700105 break;
106 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
Hanjun Guo038d7b52014-01-17 12:37:02 +0800107 if (!map_lsapic_id(header, type, acpi_id, &apic_id))
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700108 break;
109 }
110 entry += header->length;
111 }
112 return apic_id;
113}
114
115static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id)
116{
117 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
118 union acpi_object *obj;
119 struct acpi_subtable_header *header;
120 int apic_id = -1;
121
122 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
123 goto exit;
124
125 if (!buffer.length || !buffer.pointer)
126 goto exit;
127
128 obj = buffer.pointer;
129 if (obj->type != ACPI_TYPE_BUFFER ||
130 obj->buffer.length < sizeof(struct acpi_subtable_header)) {
131 goto exit;
132 }
133
134 header = (struct acpi_subtable_header *)obj->buffer.pointer;
135 if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) {
136 map_lapic_id(header, acpi_id, &apic_id);
137 } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) {
138 map_lsapic_id(header, type, acpi_id, &apic_id);
139 }
140
141exit:
Syam Sidhardhan5273a252013-02-24 23:12:53 +0000142 kfree(buffer.pointer);
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700143 return apic_id;
144}
145
Jiang Liuca9f62a2013-09-02 11:57:34 +0800146int acpi_get_apicid(acpi_handle handle, int type, u32 acpi_id)
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700147{
Jiang Liuca9f62a2013-09-02 11:57:34 +0800148 int apic_id;
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700149
150 apic_id = map_mat_entry(handle, type, acpi_id);
151 if (apic_id == -1)
152 apic_id = map_madt_entry(type, acpi_id);
Jiang Liuca9f62a2013-09-02 11:57:34 +0800153
154 return apic_id;
155}
156
157int acpi_map_cpuid(int apic_id, u32 acpi_id)
158{
159#ifdef CONFIG_SMP
160 int i;
161#endif
162
Lin Mingd6401132011-12-13 09:36:03 +0800163 if (apic_id == -1) {
164 /*
165 * On UP processor, there is no _MAT or MADT table.
166 * So above apic_id is always set to -1.
167 *
168 * BIOS may define multiple CPU handles even for UP processor.
169 * For example,
170 *
171 * Scope (_PR)
172 * {
173 * Processor (CPU0, 0x00, 0x00000410, 0x06) {}
174 * Processor (CPU1, 0x01, 0x00000410, 0x06) {}
175 * Processor (CPU2, 0x02, 0x00000410, 0x06) {}
176 * Processor (CPU3, 0x03, 0x00000410, 0x06) {}
177 * }
178 *
Thomas Renningerc4686c72012-07-12 12:24:33 +0200179 * Ignores apic_id and always returns 0 for the processor
180 * handle with acpi id 0 if nr_cpu_ids is 1.
181 * This should be the case if SMP tables are not found.
Lin Mingd6401132011-12-13 09:36:03 +0800182 * Return -1 for other CPU's handle.
183 */
Thomas Renningerc4686c72012-07-12 12:24:33 +0200184 if (nr_cpu_ids <= 1 && acpi_id == 0)
Lin Mingd6401132011-12-13 09:36:03 +0800185 return acpi_id;
186 else
187 return apic_id;
188 }
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700189
Lin Ming932df742011-05-16 09:11:00 +0800190#ifdef CONFIG_SMP
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700191 for_each_possible_cpu(i) {
192 if (cpu_physical_id(i) == apic_id)
193 return i;
194 }
Lin Ming932df742011-05-16 09:11:00 +0800195#else
196 /* In UP kernel, only processor 0 is valid */
197 if (apic_id == 0)
198 return apic_id;
199#endif
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700200 return -1;
201}
Jiang Liuca9f62a2013-09-02 11:57:34 +0800202
203int acpi_get_cpuid(acpi_handle handle, int type, u32 acpi_id)
204{
205 int apic_id;
206
207 apic_id = acpi_get_apicid(handle, type, acpi_id);
208
209 return acpi_map_cpuid(apic_id, acpi_id);
210}
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700211EXPORT_SYMBOL_GPL(acpi_get_cpuid);
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700212
Jan Beulich6430c9c2011-02-17 16:33:53 +0000213static bool __init processor_physically_present(acpi_handle handle)
Alex Chiang5d554a72010-02-22 12:11:29 -0700214{
215 int cpuid, type;
216 u32 acpi_id;
217 acpi_status status;
218 acpi_object_type acpi_type;
219 unsigned long long tmp;
220 union acpi_object object = { 0 };
221 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
222
223 status = acpi_get_type(handle, &acpi_type);
224 if (ACPI_FAILURE(status))
225 return false;
226
227 switch (acpi_type) {
228 case ACPI_TYPE_PROCESSOR:
229 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
230 if (ACPI_FAILURE(status))
231 return false;
232 acpi_id = object.processor.proc_id;
233 break;
234 case ACPI_TYPE_DEVICE:
235 status = acpi_evaluate_integer(handle, "_UID", NULL, &tmp);
236 if (ACPI_FAILURE(status))
237 return false;
238 acpi_id = tmp;
239 break;
240 default:
241 return false;
242 }
243
244 type = (acpi_type == ACPI_TYPE_DEVICE) ? 1 : 0;
245 cpuid = acpi_get_cpuid(handle, type, acpi_id);
246
Lin Ming932df742011-05-16 09:11:00 +0800247 if (cpuid == -1)
Alex Chiang5d554a72010-02-22 12:11:29 -0700248 return false;
249
250 return true;
251}
Alex Chiang78ed8bd2010-02-22 12:11:24 -0700252
Paul Gortmakerfe7bf102013-06-19 14:30:58 -0400253static void acpi_set_pdc_bits(u32 *buf)
Alex Chiang08ea48a2009-12-20 12:19:24 -0700254{
255 buf[0] = ACPI_PDC_REVISION_ID;
256 buf[1] = 1;
257
258 /* Enable coordination with firmware's _TSD info */
259 buf[2] = ACPI_PDC_SMP_T_SWCOORD;
Alex Chiang6c5807d2009-12-20 12:19:29 -0700260
261 /* Twiddle arch-specific bits needed for _PDC */
262 arch_acpi_set_pdc_bits(buf);
Alex Chiang08ea48a2009-12-20 12:19:24 -0700263}
264
Paul Gortmakerfe7bf102013-06-19 14:30:58 -0400265static struct acpi_object_list *acpi_processor_alloc_pdc(void)
Alex Chiang407cd872009-12-20 12:19:19 -0700266{
267 struct acpi_object_list *obj_list;
268 union acpi_object *obj;
269 u32 *buf;
270
Alex Chiang407cd872009-12-20 12:19:19 -0700271 /* allocate and initialize pdc. It will be used later. */
272 obj_list = kmalloc(sizeof(struct acpi_object_list), GFP_KERNEL);
273 if (!obj_list) {
274 printk(KERN_ERR "Memory allocation error\n");
Alex Chiang3b407ae2009-12-20 12:19:39 -0700275 return NULL;
Alex Chiang407cd872009-12-20 12:19:19 -0700276 }
277
278 obj = kmalloc(sizeof(union acpi_object), GFP_KERNEL);
279 if (!obj) {
280 printk(KERN_ERR "Memory allocation error\n");
281 kfree(obj_list);
Alex Chiang3b407ae2009-12-20 12:19:39 -0700282 return NULL;
Alex Chiang407cd872009-12-20 12:19:19 -0700283 }
284
285 buf = kmalloc(12, GFP_KERNEL);
286 if (!buf) {
287 printk(KERN_ERR "Memory allocation error\n");
288 kfree(obj);
289 kfree(obj_list);
Alex Chiang3b407ae2009-12-20 12:19:39 -0700290 return NULL;
Alex Chiang407cd872009-12-20 12:19:19 -0700291 }
292
Alex Chiang08ea48a2009-12-20 12:19:24 -0700293 acpi_set_pdc_bits(buf);
294
Alex Chiang407cd872009-12-20 12:19:19 -0700295 obj->type = ACPI_TYPE_BUFFER;
296 obj->buffer.length = 12;
297 obj->buffer.pointer = (u8 *) buf;
298 obj_list->count = 1;
299 obj_list->pointer = obj;
Alex Chiang407cd872009-12-20 12:19:19 -0700300
Alex Chiang3b407ae2009-12-20 12:19:39 -0700301 return obj_list;
Alex Chiang407cd872009-12-20 12:19:19 -0700302}
303
Alex Chiang78f16992009-12-20 12:19:09 -0700304/*
305 * _PDC is required for a BIOS-OS handshake for most of the newer
306 * ACPI processor features.
307 */
Hanjun Guo16064842014-02-08 20:46:26 +0800308static acpi_status
Alex Chiangfa118562009-12-20 12:19:45 -0700309acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in)
Alex Chiang78f16992009-12-20 12:19:09 -0700310{
Alex Chiang78f16992009-12-20 12:19:09 -0700311 acpi_status status = AE_OK;
312
Thomas Renningerd1896042010-11-03 17:06:14 +0100313 if (boot_option_idle_override == IDLE_NOMWAIT) {
Alex Chiang78f16992009-12-20 12:19:09 -0700314 /*
315 * If mwait is disabled for CPU C-states, the C2C3_FFH access
316 * mode will be disabled in the parameter of _PDC object.
317 * Of course C1_FFH access mode will also be disabled.
318 */
319 union acpi_object *obj;
320 u32 *buffer = NULL;
321
322 obj = pdc_in->pointer;
323 buffer = (u32 *)(obj->buffer.pointer);
324 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
325
326 }
Alex Chiangfa118562009-12-20 12:19:45 -0700327 status = acpi_evaluate_object(handle, "_PDC", pdc_in, NULL);
Alex Chiang78f16992009-12-20 12:19:09 -0700328
329 if (ACPI_FAILURE(status))
330 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
331 "Could not evaluate _PDC, using legacy perf. control.\n"));
332
333 return status;
334}
335
Paul Gortmakerfe7bf102013-06-19 14:30:58 -0400336void acpi_processor_set_pdc(acpi_handle handle)
Alex Chiang78f16992009-12-20 12:19:09 -0700337{
Alex Chiang3b407ae2009-12-20 12:19:39 -0700338 struct acpi_object_list *obj_list;
339
Alex Chiang1d9cb472009-12-20 12:19:14 -0700340 if (arch_has_acpi_pdc() == false)
341 return;
342
Alex Chiang3b407ae2009-12-20 12:19:39 -0700343 obj_list = acpi_processor_alloc_pdc();
344 if (!obj_list)
345 return;
346
Alex Chiang43bab252009-12-20 12:23:16 -0700347 acpi_processor_eval_pdc(handle, obj_list);
Alex Chiangb9c2db72009-12-20 12:23:11 -0700348
349 kfree(obj_list->pointer->buffer.pointer);
350 kfree(obj_list->pointer);
351 kfree(obj_list);
Alex Chiang78f16992009-12-20 12:19:09 -0700352}
Alex Chiang78f16992009-12-20 12:19:09 -0700353
Jan Beulich6430c9c2011-02-17 16:33:53 +0000354static acpi_status __init
Alex Chiang78f16992009-12-20 12:19:09 -0700355early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv)
356{
Alex Chiang5d554a72010-02-22 12:11:29 -0700357 if (processor_physically_present(handle) == false)
358 return AE_OK;
359
Alex Chiang43bab252009-12-20 12:23:16 -0700360 acpi_processor_set_pdc(handle);
Alex Chiang78f16992009-12-20 12:19:09 -0700361 return AE_OK;
362}
363
Hanjun Guo2c4fa002014-02-19 00:23:54 +0800364#if defined(CONFIG_X86) || defined(CONFIG_IA64)
365static int __init set_no_mwait(const struct dmi_system_id *id)
366{
367 pr_notice(PREFIX "%s detected - disabling mwait for CPU C-states\n",
368 id->ident);
369 boot_option_idle_override = IDLE_NOMWAIT;
370 return 0;
371}
372
373static struct dmi_system_id processor_idle_dmi_table[] __initdata = {
374 {
375 set_no_mwait, "Extensa 5220", {
376 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
377 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
378 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
379 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
380 {},
381};
382
383static void __init processor_dmi_check(void)
Alex Chiang78f16992009-12-20 12:19:09 -0700384{
385 /*
386 * Check whether the system is DMI table. If yes, OSPM
387 * should not use mwait for CPU-states.
388 */
389 dmi_check_system(processor_idle_dmi_table);
Hanjun Guo2c4fa002014-02-19 00:23:54 +0800390}
391#else
392static inline void processor_dmi_check(void) {}
393#endif
394
395void __init acpi_early_processor_set_pdc(void)
396{
397 processor_dmi_check();
Alex Chiang78f16992009-12-20 12:19:09 -0700398
Alex Chiang78f16992009-12-20 12:19:09 -0700399 acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
400 ACPI_UINT32_MAX,
401 early_init_pdc, NULL, NULL, NULL);
Hanjun Guo52056922014-02-09 17:12:27 +0800402 acpi_get_devices(ACPI_PROCESSOR_DEVICE_HID, early_init_pdc, NULL, NULL);
Alex Chiang78f16992009-12-20 12:19:09 -0700403}