blob: cbb6f0814ce2dc706cb6b85e7ab3ae96b5d23e2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * processor_perflib.c - ACPI Processor P-States Library ($Revision: 71 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 *
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or (at
16 * your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 *
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/cpufreq.h>
33
34#ifdef CONFIG_X86_ACPI_CPUFREQ_PROC_INTF
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
Arjan van de Ven65c19bb2006-04-27 05:25:00 -040037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#endif
41
42#include <acpi/acpi_bus.h>
43#include <acpi/processor.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_PROCESSOR_COMPONENT 0x01000000
46#define ACPI_PROCESSOR_CLASS "processor"
47#define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
48#define ACPI_PROCESSOR_FILE_PERFORMANCE "performance"
49#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("acpi_processor")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Arjan van de Ven65c19bb2006-04-27 05:25:00 -040052static DEFINE_MUTEX(performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * _PPC support is implemented as a CPUfreq policy notifier:
56 * This means each time a CPUfreq driver registered also with
57 * the ACPI core is asked to change the speed policy, the maximum
58 * value is adjusted so that it is within the platform limit.
59 *
60 * Also, when a new platform limit value is detected, the CPUfreq
61 * policy is adjusted accordingly.
62 */
63
64#define PPC_REGISTERED 1
65#define PPC_IN_USE 2
66
67static int acpi_processor_ppc_status = 0;
68
69static int acpi_processor_ppc_notifier(struct notifier_block *nb,
Len Brown4be44fc2005-08-05 00:44:28 -040070 unsigned long event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 struct cpufreq_policy *policy = data;
73 struct acpi_processor *pr;
74 unsigned int ppc = 0;
75
Arjan van de Ven65c19bb2006-04-27 05:25:00 -040076 mutex_lock(&performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 if (event != CPUFREQ_INCOMPATIBLE)
79 goto out;
80
81 pr = processors[policy->cpu];
82 if (!pr || !pr->performance)
83 goto out;
84
Len Brown4be44fc2005-08-05 00:44:28 -040085 ppc = (unsigned int)pr->performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Dave Jones0916bd32006-11-22 20:42:01 -050087 if (ppc >= pr->performance->state_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 goto out;
89
90 cpufreq_verify_within_limits(policy, 0,
Len Brown4be44fc2005-08-05 00:44:28 -040091 pr->performance->states[ppc].
92 core_frequency * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Len Brown4be44fc2005-08-05 00:44:28 -040094 out:
Arjan van de Ven65c19bb2006-04-27 05:25:00 -040095 mutex_unlock(&performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 return 0;
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct notifier_block acpi_ppc_notifier_block = {
101 .notifier_call = acpi_processor_ppc_notifier,
102};
103
Len Brown4be44fc2005-08-05 00:44:28 -0400104static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Len Brown4be44fc2005-08-05 00:44:28 -0400106 acpi_status status = 0;
107 unsigned long ppc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400111 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 /*
114 * _PPC indicates the maximum state currently supported by the platform
115 * (e.g. 0 = states 0..n; 1 = states 1..n; etc.
116 */
117 status = acpi_evaluate_integer(pr->handle, "_PPC", NULL, &ppc);
118
119 if (status != AE_NOT_FOUND)
120 acpi_processor_ppc_status |= PPC_IN_USE;
121
Len Brown4be44fc2005-08-05 00:44:28 -0400122 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400123 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PPC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Len Brown4be44fc2005-08-05 00:44:28 -0400127 pr->performance_platform_limit = (int)ppc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Patrick Mocheld550d982006-06-27 00:41:40 -0400129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 int ret = acpi_processor_get_platform_limit(pr);
135 if (ret < 0)
136 return (ret);
137 else
138 return cpufreq_update_policy(pr->id);
139}
140
Len Brown4be44fc2005-08-05 00:44:28 -0400141void acpi_processor_ppc_init(void)
142{
143 if (!cpufreq_register_notifier
144 (&acpi_ppc_notifier_block, CPUFREQ_POLICY_NOTIFIER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 acpi_processor_ppc_status |= PPC_REGISTERED;
146 else
Len Brown4be44fc2005-08-05 00:44:28 -0400147 printk(KERN_DEBUG
148 "Warning: Processor Platform Limit not supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151void acpi_processor_ppc_exit(void)
152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (acpi_processor_ppc_status & PPC_REGISTERED)
Len Brown4be44fc2005-08-05 00:44:28 -0400154 cpufreq_unregister_notifier(&acpi_ppc_notifier_block,
155 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 acpi_processor_ppc_status &= ~PPC_REGISTERED;
158}
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160static int acpi_processor_get_performance_control(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Len Brown4be44fc2005-08-05 00:44:28 -0400162 int result = 0;
163 acpi_status status = 0;
164 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
165 union acpi_object *pct = NULL;
166 union acpi_object obj = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 status = acpi_evaluate_object(pr->handle, "_PCT", NULL, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400170 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400171 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PCT"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 pct = (union acpi_object *)buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (!pct || (pct->type != ACPI_TYPE_PACKAGE)
Len Brown4be44fc2005-08-05 00:44:28 -0400177 || (pct->package.count != 2)) {
Len Brown64684632006-06-26 23:41:38 -0400178 printk(KERN_ERR PREFIX "Invalid _PCT data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 result = -EFAULT;
180 goto end;
181 }
182
183 /*
184 * control_register
185 */
186
187 obj = pct->package.elements[0];
188
189 if ((obj.type != ACPI_TYPE_BUFFER)
Len Brown4be44fc2005-08-05 00:44:28 -0400190 || (obj.buffer.length < sizeof(struct acpi_pct_register))
191 || (obj.buffer.pointer == NULL)) {
Len Brown64684632006-06-26 23:41:38 -0400192 printk(KERN_ERR PREFIX "Invalid _PCT data (control_register)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 result = -EFAULT;
194 goto end;
195 }
Len Brown4be44fc2005-08-05 00:44:28 -0400196 memcpy(&pr->performance->control_register, obj.buffer.pointer,
197 sizeof(struct acpi_pct_register));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * status_register
201 */
202
203 obj = pct->package.elements[1];
204
205 if ((obj.type != ACPI_TYPE_BUFFER)
Len Brown4be44fc2005-08-05 00:44:28 -0400206 || (obj.buffer.length < sizeof(struct acpi_pct_register))
207 || (obj.buffer.pointer == NULL)) {
Len Brown64684632006-06-26 23:41:38 -0400208 printk(KERN_ERR PREFIX "Invalid _PCT data (status_register)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 result = -EFAULT;
210 goto end;
211 }
212
Len Brown4be44fc2005-08-05 00:44:28 -0400213 memcpy(&pr->performance->status_register, obj.buffer.pointer,
214 sizeof(struct acpi_pct_register));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 end:
Len Brown02438d82006-06-30 03:19:10 -0400217 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Patrick Mocheld550d982006-06-27 00:41:40 -0400219 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222static int acpi_processor_get_performance_states(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Len Brown4be44fc2005-08-05 00:44:28 -0400224 int result = 0;
225 acpi_status status = AE_OK;
226 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
227 struct acpi_buffer format = { sizeof("NNNNNN"), "NNNNNN" };
228 struct acpi_buffer state = { 0, NULL };
229 union acpi_object *pss = NULL;
230 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
Len Brown4be44fc2005-08-05 00:44:28 -0400234 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400235 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PSS"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200239 pss = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (!pss || (pss->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400241 printk(KERN_ERR PREFIX "Invalid _PSS data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 result = -EFAULT;
243 goto end;
244 }
245
246 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d performance states\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400247 pss->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 pr->performance->state_count = pss->package.count;
Len Brown4be44fc2005-08-05 00:44:28 -0400250 pr->performance->states =
251 kmalloc(sizeof(struct acpi_processor_px) * pss->package.count,
252 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!pr->performance->states) {
254 result = -ENOMEM;
255 goto end;
256 }
257
258 for (i = 0; i < pr->performance->state_count; i++) {
259
260 struct acpi_processor_px *px = &(pr->performance->states[i]);
261
262 state.length = sizeof(struct acpi_processor_px);
263 state.pointer = px;
264
265 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Extracting state %d\n", i));
266
267 status = acpi_extract_package(&(pss->package.elements[i]),
Len Brown4be44fc2005-08-05 00:44:28 -0400268 &format, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400270 ACPI_EXCEPTION((AE_INFO, status, "Invalid _PSS data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 result = -EFAULT;
272 kfree(pr->performance->states);
273 goto end;
274 }
275
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400277 "State [%d]: core_frequency[%d] power[%d] transition_latency[%d] bus_master_latency[%d] control[0x%x] status[0x%x]\n",
278 i,
279 (u32) px->core_frequency,
280 (u32) px->power,
281 (u32) px->transition_latency,
282 (u32) px->bus_master_latency,
283 (u32) px->control, (u32) px->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 if (!px->core_frequency) {
Len Brown64684632006-06-26 23:41:38 -0400286 printk(KERN_ERR PREFIX
287 "Invalid _PSS data: freq is zero\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 result = -EFAULT;
289 kfree(pr->performance->states);
290 goto end;
291 }
292 }
293
Len Brown4be44fc2005-08-05 00:44:28 -0400294 end:
Len Brown02438d82006-06-30 03:19:10 -0400295 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Patrick Mocheld550d982006-06-27 00:41:40 -0400297 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300static int acpi_processor_get_performance_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Len Brown4be44fc2005-08-05 00:44:28 -0400302 int result = 0;
303 acpi_status status = AE_OK;
304 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 if (!pr || !pr->performance || !pr->handle)
Patrick Mocheld550d982006-06-27 00:41:40 -0400308 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 status = acpi_get_handle(pr->handle, "_PCT", &handle);
311 if (ACPI_FAILURE(status)) {
312 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400313 "ACPI-based processor performance control unavailable\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400314 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 result = acpi_processor_get_performance_control(pr);
318 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400319 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 result = acpi_processor_get_performance_states(pr);
322 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Len Brown4be44fc2005-08-05 00:44:28 -0400328int acpi_processor_notify_smm(struct module *calling_module)
329{
330 acpi_status status;
331 static int is_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 if (!(acpi_processor_ppc_status & PPC_REGISTERED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 if (!try_module_get(calling_module))
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* is_done is set to negative if an error occured,
341 * and to postitive if _no_ error occured, but SMM
342 * was already notified. This avoids double notification
343 * which might lead to unexpected results...
344 */
345 if (is_done > 0) {
346 module_put(calling_module);
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400348 } else if (is_done < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 module_put(calling_module);
Patrick Mocheld550d982006-06-27 00:41:40 -0400350 return is_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
353 is_done = -EIO;
354
355 /* Can't write pstate_cnt to smi_cmd if either value is zero */
Len Brown4be44fc2005-08-05 00:44:28 -0400356 if ((!acpi_fadt.smi_cmd) || (!acpi_fadt.pstate_cnt)) {
357 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No SMI port or pstate_cnt\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 module_put(calling_module);
Patrick Mocheld550d982006-06-27 00:41:40 -0400359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
Len Brown4be44fc2005-08-05 00:44:28 -0400362 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
363 "Writing pstate_cnt [0x%x] to smi_cmd [0x%x]\n",
364 acpi_fadt.pstate_cnt, acpi_fadt.smi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* FADT v1 doesn't support pstate_cnt, many BIOS vendors use
367 * it anyway, so we need to support it... */
368 if (acpi_fadt_is_v1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400369 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
370 "Using v1.0 FADT reserved value for pstate_cnt\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Len Brown4be44fc2005-08-05 00:44:28 -0400373 status = acpi_os_write_port(acpi_fadt.smi_cmd,
374 (u32) acpi_fadt.pstate_cnt, 8);
375 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400376 ACPI_EXCEPTION((AE_INFO, status,
377 "Failed to write pstate_cnt [0x%x] to "
378 "smi_cmd [0x%x]", acpi_fadt.pstate_cnt,
379 acpi_fadt.smi_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 module_put(calling_module);
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 /* Success. If there's no _PPC, we need to fear nothing, so
385 * we can allow the cpufreq driver to be rmmod'ed. */
386 is_done = 1;
387
388 if (!(acpi_processor_ppc_status & PPC_IN_USE))
389 module_put(calling_module);
390
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Len Brown4be44fc2005-08-05 00:44:28 -0400394EXPORT_SYMBOL(acpi_processor_notify_smm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396#ifdef CONFIG_X86_ACPI_CPUFREQ_PROC_INTF
397/* /proc/acpi/processor/../performance interface (DEPRECATED) */
398
399static int acpi_processor_perf_open_fs(struct inode *inode, struct file *file);
400static struct file_operations acpi_processor_perf_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400401 .open = acpi_processor_perf_open_fs,
402 .read = seq_read,
403 .llseek = seq_lseek,
404 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405};
406
407static int acpi_processor_perf_seq_show(struct seq_file *seq, void *offset)
408{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200409 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400410 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 if (!pr)
414 goto end;
415
416 if (!pr->performance) {
417 seq_puts(seq, "<not supported>\n");
418 goto end;
419 }
420
421 seq_printf(seq, "state count: %d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400422 "active state: P%d\n",
423 pr->performance->state_count, pr->performance->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 seq_puts(seq, "states:\n");
426 for (i = 0; i < pr->performance->state_count; i++)
Len Brown4be44fc2005-08-05 00:44:28 -0400427 seq_printf(seq,
428 " %cP%d: %d MHz, %d mW, %d uS\n",
429 (i == pr->performance->state ? '*' : ' '), i,
430 (u32) pr->performance->states[i].core_frequency,
431 (u32) pr->performance->states[i].power,
432 (u32) pr->performance->states[i].transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Len Brown4be44fc2005-08-05 00:44:28 -0400434 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438static int acpi_processor_perf_open_fs(struct inode *inode, struct file *file)
439{
440 return single_open(file, acpi_processor_perf_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400441 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400445acpi_processor_write_performance(struct file *file,
446 const char __user * buffer,
447 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Len Brown4be44fc2005-08-05 00:44:28 -0400449 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200450 struct seq_file *m = file->private_data;
451 struct acpi_processor *pr = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct acpi_processor_performance *perf;
Len Brown4be44fc2005-08-05 00:44:28 -0400453 char state_string[12] = { '\0' };
454 unsigned int new_state = 0;
455 struct cpufreq_policy policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (!pr || (count > sizeof(state_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 perf = pr->performance;
462 if (!perf)
Patrick Mocheld550d982006-06-27 00:41:40 -0400463 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (copy_from_user(state_string, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -0400466 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 state_string[count] = '\0';
469 new_state = simple_strtoul(state_string, NULL, 0);
470
471 if (new_state >= perf->state_count)
Patrick Mocheld550d982006-06-27 00:41:40 -0400472 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 cpufreq_get_policy(&policy, pr->id);
475
476 policy.cpu = pr->id;
477 policy.min = perf->states[new_state].core_frequency * 1000;
478 policy.max = perf->states[new_state].core_frequency * 1000;
479
480 result = cpufreq_set_policy(&policy);
481 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400482 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Patrick Mocheld550d982006-06-27 00:41:40 -0400484 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Len Brown4be44fc2005-08-05 00:44:28 -0400487static void acpi_cpufreq_add_file(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Len Brown4be44fc2005-08-05 00:44:28 -0400489 struct proc_dir_entry *entry = NULL;
490 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400494 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /* add file 'performance' [R/W] */
497 entry = create_proc_entry(ACPI_PROCESSOR_FILE_PERFORMANCE,
Len Brown4be44fc2005-08-05 00:44:28 -0400498 S_IFREG | S_IRUGO | S_IWUSR,
499 acpi_device_dir(device));
Thomas Renningera6fc6722006-06-26 23:58:43 -0400500 if (entry){
Arjan van de Vend479e902006-01-06 16:47:00 -0500501 acpi_processor_perf_fops.write = acpi_processor_write_performance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 entry->proc_fops = &acpi_processor_perf_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 entry->data = acpi_driver_data(device);
504 entry->owner = THIS_MODULE;
505 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400506 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Len Brown4be44fc2005-08-05 00:44:28 -0400509static void acpi_cpufreq_remove_file(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Len Brown4be44fc2005-08-05 00:44:28 -0400511 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (acpi_bus_get_device(pr->handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400515 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* remove file 'performance' */
518 remove_proc_entry(ACPI_PROCESSOR_FILE_PERFORMANCE,
Len Brown4be44fc2005-08-05 00:44:28 -0400519 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Patrick Mocheld550d982006-06-27 00:41:40 -0400521 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524#else
Len Brown4be44fc2005-08-05 00:44:28 -0400525static void acpi_cpufreq_add_file(struct acpi_processor *pr)
526{
527 return;
528}
529static void acpi_cpufreq_remove_file(struct acpi_processor *pr)
530{
531 return;
532}
533#endif /* CONFIG_X86_ACPI_CPUFREQ_PROC_INTF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500535static int acpi_processor_get_psd(struct acpi_processor *pr)
536{
537 int result = 0;
538 acpi_status status = AE_OK;
539 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
540 struct acpi_buffer format = {sizeof("NNNNN"), "NNNNN"};
541 struct acpi_buffer state = {0, NULL};
542 union acpi_object *psd = NULL;
543 struct acpi_psd_package *pdomain;
544
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500545 status = acpi_evaluate_object(pr->handle, "_PSD", NULL, &buffer);
546 if (ACPI_FAILURE(status)) {
Len Brown9011bff2006-05-11 00:28:12 -0400547 return -ENODEV;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500548 }
549
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200550 psd = buffer.pointer;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500551 if (!psd || (psd->type != ACPI_TYPE_PACKAGE)) {
552 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
553 result = -EFAULT;
554 goto end;
555 }
556
557 if (psd->package.count != 1) {
558 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
559 result = -EFAULT;
560 goto end;
561 }
562
563 pdomain = &(pr->performance->domain_info);
564
565 state.length = sizeof(struct acpi_psd_package);
566 state.pointer = pdomain;
567
568 status = acpi_extract_package(&(psd->package.elements[0]),
569 &format, &state);
570 if (ACPI_FAILURE(status)) {
571 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
572 result = -EFAULT;
573 goto end;
574 }
575
576 if (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES) {
577 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _PSD:num_entries\n"));
578 result = -EFAULT;
579 goto end;
580 }
581
582 if (pdomain->revision != ACPI_PSD_REV0_REVISION) {
583 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _PSD:revision\n"));
584 result = -EFAULT;
585 goto end;
586 }
587
588end:
Len Brown02438d82006-06-30 03:19:10 -0400589 kfree(buffer.pointer);
Len Brown9011bff2006-05-11 00:28:12 -0400590 return result;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500591}
592
593int acpi_processor_preregister_performance(
594 struct acpi_processor_performance **performance)
595{
596 int count, count_target;
597 int retval = 0;
598 unsigned int i, j;
599 cpumask_t covered_cpus;
600 struct acpi_processor *pr;
601 struct acpi_psd_package *pdomain;
602 struct acpi_processor *match_pr;
603 struct acpi_psd_package *match_pdomain;
604
Len Brown785fccc2006-06-15 22:19:31 -0400605 mutex_lock(&performance_mutex);
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500606
607 retval = 0;
608
609 /* Call _PSD for all CPUs */
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400610 for_each_possible_cpu(i) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500611 pr = processors[i];
612 if (!pr) {
613 /* Look only at processors in ACPI namespace */
614 continue;
615 }
616
617 if (pr->performance) {
618 retval = -EBUSY;
619 continue;
620 }
621
622 if (!performance || !performance[i]) {
623 retval = -EINVAL;
624 continue;
625 }
626
627 pr->performance = performance[i];
628 cpu_set(i, pr->performance->shared_cpu_map);
629 if (acpi_processor_get_psd(pr)) {
630 retval = -EINVAL;
631 continue;
632 }
633 }
634 if (retval)
635 goto err_ret;
636
637 /*
638 * Now that we have _PSD data from all CPUs, lets setup P-state
639 * domain info.
640 */
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400641 for_each_possible_cpu(i) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500642 pr = processors[i];
643 if (!pr)
644 continue;
645
646 /* Basic validity check for domain info */
647 pdomain = &(pr->performance->domain_info);
648 if ((pdomain->revision != ACPI_PSD_REV0_REVISION) ||
649 (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES)) {
650 retval = -EINVAL;
651 goto err_ret;
652 }
653 if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL &&
654 pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY &&
655 pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) {
656 retval = -EINVAL;
657 goto err_ret;
658 }
659 }
660
661 cpus_clear(covered_cpus);
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400662 for_each_possible_cpu(i) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500663 pr = processors[i];
664 if (!pr)
665 continue;
666
667 if (cpu_isset(i, covered_cpus))
668 continue;
669
670 pdomain = &(pr->performance->domain_info);
671 cpu_set(i, pr->performance->shared_cpu_map);
672 cpu_set(i, covered_cpus);
673 if (pdomain->num_processors <= 1)
674 continue;
675
676 /* Validate the Domain info */
677 count_target = pdomain->num_processors;
678 count = 1;
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400679 if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ALL)
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500680 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ALL;
Venkatesh Pallipadi46f18e32006-06-26 00:34:43 -0400681 else if (pdomain->coord_type == DOMAIN_COORD_TYPE_HW_ALL)
682 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_HW;
683 else if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ANY)
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500684 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ANY;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500685
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400686 for_each_possible_cpu(j) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500687 if (i == j)
688 continue;
689
690 match_pr = processors[j];
691 if (!match_pr)
692 continue;
693
694 match_pdomain = &(match_pr->performance->domain_info);
695 if (match_pdomain->domain != pdomain->domain)
696 continue;
697
698 /* Here i and j are in the same domain */
699
700 if (match_pdomain->num_processors != count_target) {
701 retval = -EINVAL;
702 goto err_ret;
703 }
704
705 if (pdomain->coord_type != match_pdomain->coord_type) {
706 retval = -EINVAL;
707 goto err_ret;
708 }
709
710 cpu_set(j, covered_cpus);
711 cpu_set(j, pr->performance->shared_cpu_map);
712 count++;
713 }
714
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400715 for_each_possible_cpu(j) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500716 if (i == j)
717 continue;
718
719 match_pr = processors[j];
720 if (!match_pr)
721 continue;
722
723 match_pdomain = &(match_pr->performance->domain_info);
724 if (match_pdomain->domain != pdomain->domain)
725 continue;
726
727 match_pr->performance->shared_type =
728 pr->performance->shared_type;
729 match_pr->performance->shared_cpu_map =
730 pr->performance->shared_cpu_map;
731 }
732 }
733
734err_ret:
KAMEZAWA Hiroyuki193de0c2006-04-27 05:25:00 -0400735 for_each_possible_cpu(i) {
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500736 pr = processors[i];
737 if (!pr || !pr->performance)
738 continue;
739
740 /* Assume no coordination on any error parsing domain info */
741 if (retval) {
742 cpus_clear(pr->performance->shared_cpu_map);
743 cpu_set(i, pr->performance->shared_cpu_map);
744 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ALL;
745 }
746 pr->performance = NULL; /* Will be set for real in register */
747 }
748
Len Brown785fccc2006-06-15 22:19:31 -0400749 mutex_unlock(&performance_mutex);
Len Brown9011bff2006-05-11 00:28:12 -0400750 return retval;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500751}
752EXPORT_SYMBOL(acpi_processor_preregister_performance);
753
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755int
Len Brown4be44fc2005-08-05 00:44:28 -0400756acpi_processor_register_performance(struct acpi_processor_performance
757 *performance, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct acpi_processor *pr;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (!(acpi_processor_ppc_status & PPC_REGISTERED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400763 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400765 mutex_lock(&performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 pr = processors[cpu];
768 if (!pr) {
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400769 mutex_unlock(&performance_mutex);
Patrick Mocheld550d982006-06-27 00:41:40 -0400770 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
773 if (pr->performance) {
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400774 mutex_unlock(&performance_mutex);
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
Andrew Mortona913f502006-06-10 09:54:13 -0700778 WARN_ON(!performance);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 pr->performance = performance;
781
782 if (acpi_processor_get_performance_info(pr)) {
783 pr->performance = NULL;
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400784 mutex_unlock(&performance_mutex);
Patrick Mocheld550d982006-06-27 00:41:40 -0400785 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 acpi_cpufreq_add_file(pr);
789
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400790 mutex_unlock(&performance_mutex);
Patrick Mocheld550d982006-06-27 00:41:40 -0400791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
Len Brown4be44fc2005-08-05 00:44:28 -0400793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794EXPORT_SYMBOL(acpi_processor_register_performance);
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796void
Len Brown4be44fc2005-08-05 00:44:28 -0400797acpi_processor_unregister_performance(struct acpi_processor_performance
798 *performance, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct acpi_processor *pr;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400803 mutex_lock(&performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 pr = processors[cpu];
806 if (!pr) {
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400807 mutex_unlock(&performance_mutex);
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
Andrew Mortona913f502006-06-10 09:54:13 -0700811 if (pr->performance)
812 kfree(pr->performance->states);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 pr->performance = NULL;
814
815 acpi_cpufreq_remove_file(pr);
816
Arjan van de Ven65c19bb2006-04-27 05:25:00 -0400817 mutex_unlock(&performance_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Patrick Mocheld550d982006-06-27 00:41:40 -0400819 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
Len Brown4be44fc2005-08-05 00:44:28 -0400821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822EXPORT_SYMBOL(acpi_processor_unregister_performance);