1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2005 Intel Corporation
4 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
6 * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
7 * - Added _PDC for platforms with Intel CPUs
10 #define pr_fmt(fmt) "ACPI: " fmt
12 #include <linux/dmi.h>
13 #include <linux/slab.h>
14 #include <linux/acpi.h>
15 #include <acpi/processor.h>
19 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
20 ACPI_MODULE_NAME("processor_pdc");
22 static bool __init processor_physically_present(acpi_handle handle)
27 acpi_object_type acpi_type;
28 unsigned long long tmp;
29 union acpi_object object = { 0 };
30 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
32 status = acpi_get_type(handle, &acpi_type);
33 if (ACPI_FAILURE(status))
37 case ACPI_TYPE_PROCESSOR:
38 status = acpi_evaluate_object(handle, NULL, NULL, &buffer);
39 if (ACPI_FAILURE(status))
41 acpi_id = object.processor.proc_id;
43 case ACPI_TYPE_DEVICE:
44 status = acpi_evaluate_integer(handle, "_UID", NULL, &tmp);
45 if (ACPI_FAILURE(status))
53 type = (acpi_type == ACPI_TYPE_DEVICE) ? 1 : 0;
54 cpuid = acpi_get_cpuid(handle, type, acpi_id);
56 return !invalid_logical_cpuid(cpuid);
59 static void acpi_set_pdc_bits(u32 *buf)
61 buf[0] = ACPI_PDC_REVISION_ID;
64 /* Enable coordination with firmware's _TSD info */
65 buf[2] = ACPI_PDC_SMP_T_SWCOORD;
67 /* Twiddle arch-specific bits needed for _PDC */
68 arch_acpi_set_pdc_bits(buf);
71 static struct acpi_object_list *acpi_processor_alloc_pdc(void)
73 struct acpi_object_list *obj_list;
74 union acpi_object *obj;
77 /* allocate and initialize pdc. It will be used later. */
78 obj_list = kmalloc(sizeof(struct acpi_object_list), GFP_KERNEL);
82 obj = kmalloc(sizeof(union acpi_object), GFP_KERNEL);
88 buf = kmalloc(12, GFP_KERNEL);
95 acpi_set_pdc_bits(buf);
97 obj->type = ACPI_TYPE_BUFFER;
98 obj->buffer.length = 12;
99 obj->buffer.pointer = (u8 *) buf;
101 obj_list->pointer = obj;
105 pr_err("Memory allocation error\n");
110 * _PDC is required for a BIOS-OS handshake for most of the newer
111 * ACPI processor features.
114 acpi_processor_eval_pdc(acpi_handle handle, struct acpi_object_list *pdc_in)
116 acpi_status status = AE_OK;
118 if (boot_option_idle_override == IDLE_NOMWAIT) {
120 * If mwait is disabled for CPU C-states, the C2C3_FFH access
121 * mode will be disabled in the parameter of _PDC object.
122 * Of course C1_FFH access mode will also be disabled.
124 union acpi_object *obj;
127 obj = pdc_in->pointer;
128 buffer = (u32 *)(obj->buffer.pointer);
129 buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH);
132 status = acpi_evaluate_object(handle, "_PDC", pdc_in, NULL);
134 if (ACPI_FAILURE(status))
135 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
136 "Could not evaluate _PDC, using legacy perf. control.\n"));
141 void acpi_processor_set_pdc(acpi_handle handle)
143 struct acpi_object_list *obj_list;
145 if (arch_has_acpi_pdc() == false)
148 obj_list = acpi_processor_alloc_pdc();
152 acpi_processor_eval_pdc(handle, obj_list);
154 kfree(obj_list->pointer->buffer.pointer);
155 kfree(obj_list->pointer);
159 static acpi_status __init
160 early_init_pdc(acpi_handle handle, u32 lvl, void *context, void **rv)
162 if (processor_physically_present(handle) == false)
165 acpi_processor_set_pdc(handle);
169 static int __init set_no_mwait(const struct dmi_system_id *id)
171 pr_notice("%s detected - disabling mwait for CPU C-states\n",
173 boot_option_idle_override = IDLE_NOMWAIT;
177 static const struct dmi_system_id processor_idle_dmi_table[] __initconst = {
179 set_no_mwait, "Extensa 5220", {
180 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
181 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
182 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
183 DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL},
187 static void __init processor_dmi_check(void)
190 * Check whether the system is DMI table. If yes, OSPM
191 * should not use mwait for CPU-states.
193 dmi_check_system(processor_idle_dmi_table);
196 void __init acpi_early_processor_set_pdc(void)
198 processor_dmi_check();
200 acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
202 early_init_pdc, NULL, NULL, NULL);
203 acpi_get_devices(ACPI_PROCESSOR_DEVICE_HID, early_init_pdc, NULL, NULL);