2 * processor_perflib.c - ACPI Processor P-States Library ($Revision: 71 $)
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
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/cpufreq.h>
34 #ifdef CONFIG_X86_ACPI_CPUFREQ_PROC_INTF
35 #include <linux/proc_fs.h>
36 #include <linux/seq_file.h>
37 #include <linux/mutex.h>
39 #include <asm/uaccess.h>
42 #include <acpi/acpi_bus.h>
43 #include <acpi/processor.h>
45 #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
50 ACPI_MODULE_NAME("acpi_processor")
52 static DEFINE_MUTEX(performance_mutex);
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.
60 * Also, when a new platform limit value is detected, the CPUfreq
61 * policy is adjusted accordingly.
64 #define PPC_REGISTERED 1
67 static int acpi_processor_ppc_status = 0;
69 static int acpi_processor_ppc_notifier(struct notifier_block *nb,
70 unsigned long event, void *data)
72 struct cpufreq_policy *policy = data;
73 struct acpi_processor *pr;
76 mutex_lock(&performance_mutex);
78 if (event != CPUFREQ_INCOMPATIBLE)
81 pr = processors[policy->cpu];
82 if (!pr || !pr->performance)
85 ppc = (unsigned int)pr->performance_platform_limit;
87 if (ppc >= pr->performance->state_count)
90 cpufreq_verify_within_limits(policy, 0,
91 pr->performance->states[ppc].
92 core_frequency * 1000);
95 mutex_unlock(&performance_mutex);
100 static struct notifier_block acpi_ppc_notifier_block = {
101 .notifier_call = acpi_processor_ppc_notifier,
104 static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
106 acpi_status status = 0;
107 unsigned long ppc = 0;
114 * _PPC indicates the maximum state currently supported by the platform
115 * (e.g. 0 = states 0..n; 1 = states 1..n; etc.
117 status = acpi_evaluate_integer(pr->handle, "_PPC", NULL, &ppc);
119 if (status != AE_NOT_FOUND)
120 acpi_processor_ppc_status |= PPC_IN_USE;
122 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
123 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PPC"));
127 pr->performance_platform_limit = (int)ppc;
132 int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
134 int ret = acpi_processor_get_platform_limit(pr);
138 return cpufreq_update_policy(pr->id);
141 void acpi_processor_ppc_init(void)
143 if (!cpufreq_register_notifier
144 (&acpi_ppc_notifier_block, CPUFREQ_POLICY_NOTIFIER))
145 acpi_processor_ppc_status |= PPC_REGISTERED;
148 "Warning: Processor Platform Limit not supported.\n");
151 void acpi_processor_ppc_exit(void)
153 if (acpi_processor_ppc_status & PPC_REGISTERED)
154 cpufreq_unregister_notifier(&acpi_ppc_notifier_block,
155 CPUFREQ_POLICY_NOTIFIER);
157 acpi_processor_ppc_status &= ~PPC_REGISTERED;
160 static int acpi_processor_get_performance_control(struct acpi_processor *pr)
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 };
169 status = acpi_evaluate_object(pr->handle, "_PCT", NULL, &buffer);
170 if (ACPI_FAILURE(status)) {
171 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PCT"));
175 pct = (union acpi_object *)buffer.pointer;
176 if (!pct || (pct->type != ACPI_TYPE_PACKAGE)
177 || (pct->package.count != 2)) {
178 printk(KERN_ERR PREFIX "Invalid _PCT data\n");
187 obj = pct->package.elements[0];
189 if ((obj.type != ACPI_TYPE_BUFFER)
190 || (obj.buffer.length < sizeof(struct acpi_pct_register))
191 || (obj.buffer.pointer == NULL)) {
192 printk(KERN_ERR PREFIX "Invalid _PCT data (control_register)\n");
196 memcpy(&pr->performance->control_register, obj.buffer.pointer,
197 sizeof(struct acpi_pct_register));
203 obj = pct->package.elements[1];
205 if ((obj.type != ACPI_TYPE_BUFFER)
206 || (obj.buffer.length < sizeof(struct acpi_pct_register))
207 || (obj.buffer.pointer == NULL)) {
208 printk(KERN_ERR PREFIX "Invalid _PCT data (status_register)\n");
213 memcpy(&pr->performance->status_register, obj.buffer.pointer,
214 sizeof(struct acpi_pct_register));
217 kfree(buffer.pointer);
222 static int acpi_processor_get_performance_states(struct acpi_processor *pr)
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;
233 status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
234 if (ACPI_FAILURE(status)) {
235 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PSS"));
239 pss = buffer.pointer;
240 if (!pss || (pss->type != ACPI_TYPE_PACKAGE)) {
241 printk(KERN_ERR PREFIX "Invalid _PSS data\n");
246 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d performance states\n",
247 pss->package.count));
249 pr->performance->state_count = pss->package.count;
250 pr->performance->states =
251 kmalloc(sizeof(struct acpi_processor_px) * pss->package.count,
253 if (!pr->performance->states) {
258 for (i = 0; i < pr->performance->state_count; i++) {
260 struct acpi_processor_px *px = &(pr->performance->states[i]);
262 state.length = sizeof(struct acpi_processor_px);
265 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Extracting state %d\n", i));
267 status = acpi_extract_package(&(pss->package.elements[i]),
269 if (ACPI_FAILURE(status)) {
270 ACPI_EXCEPTION((AE_INFO, status, "Invalid _PSS data"));
272 kfree(pr->performance->states);
276 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
277 "State [%d]: core_frequency[%d] power[%d] transition_latency[%d] bus_master_latency[%d] control[0x%x] status[0x%x]\n",
279 (u32) px->core_frequency,
281 (u32) px->transition_latency,
282 (u32) px->bus_master_latency,
283 (u32) px->control, (u32) px->status));
285 if (!px->core_frequency) {
286 printk(KERN_ERR PREFIX
287 "Invalid _PSS data: freq is zero\n");
289 kfree(pr->performance->states);
295 kfree(buffer.pointer);
300 static int acpi_processor_get_performance_info(struct acpi_processor *pr)
303 acpi_status status = AE_OK;
304 acpi_handle handle = NULL;
307 if (!pr || !pr->performance || !pr->handle)
310 status = acpi_get_handle(pr->handle, "_PCT", &handle);
311 if (ACPI_FAILURE(status)) {
312 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
313 "ACPI-based processor performance control unavailable\n"));
317 result = acpi_processor_get_performance_control(pr);
321 result = acpi_processor_get_performance_states(pr);
328 int acpi_processor_notify_smm(struct module *calling_module)
331 static int is_done = 0;
334 if (!(acpi_processor_ppc_status & PPC_REGISTERED))
337 if (!try_module_get(calling_module))
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...
346 module_put(calling_module);
348 } else if (is_done < 0) {
349 module_put(calling_module);
355 /* Can't write pstate_cnt to smi_cmd if either value is zero */
356 if ((!acpi_fadt.smi_cmd) || (!acpi_fadt.pstate_cnt)) {
357 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No SMI port or pstate_cnt\n"));
358 module_put(calling_module);
362 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));
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) {
369 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
370 "Using v1.0 FADT reserved value for pstate_cnt\n"));
373 status = acpi_os_write_port(acpi_fadt.smi_cmd,
374 (u32) acpi_fadt.pstate_cnt, 8);
375 if (ACPI_FAILURE(status)) {
376 ACPI_EXCEPTION((AE_INFO, status,
377 "Failed to write pstate_cnt [0x%x] to "
378 "smi_cmd [0x%x]", acpi_fadt.pstate_cnt,
380 module_put(calling_module);
384 /* Success. If there's no _PPC, we need to fear nothing, so
385 * we can allow the cpufreq driver to be rmmod'ed. */
388 if (!(acpi_processor_ppc_status & PPC_IN_USE))
389 module_put(calling_module);
394 EXPORT_SYMBOL(acpi_processor_notify_smm);
396 #ifdef CONFIG_X86_ACPI_CPUFREQ_PROC_INTF
397 /* /proc/acpi/processor/../performance interface (DEPRECATED) */
399 static int acpi_processor_perf_open_fs(struct inode *inode, struct file *file);
400 static struct file_operations acpi_processor_perf_fops = {
401 .open = acpi_processor_perf_open_fs,
404 .release = single_release,
407 static int acpi_processor_perf_seq_show(struct seq_file *seq, void *offset)
409 struct acpi_processor *pr = seq->private;
416 if (!pr->performance) {
417 seq_puts(seq, "<not supported>\n");
421 seq_printf(seq, "state count: %d\n"
422 "active state: P%d\n",
423 pr->performance->state_count, pr->performance->state);
425 seq_puts(seq, "states:\n");
426 for (i = 0; i < pr->performance->state_count; i++)
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);
438 static int acpi_processor_perf_open_fs(struct inode *inode, struct file *file)
440 return single_open(file, acpi_processor_perf_seq_show,
445 acpi_processor_write_performance(struct file *file,
446 const char __user * buffer,
447 size_t count, loff_t * data)
450 struct seq_file *m = file->private_data;
451 struct acpi_processor *pr = m->private;
452 struct acpi_processor_performance *perf;
453 char state_string[12] = { '\0' };
454 unsigned int new_state = 0;
455 struct cpufreq_policy policy;
458 if (!pr || (count > sizeof(state_string) - 1))
461 perf = pr->performance;
465 if (copy_from_user(state_string, buffer, count))
468 state_string[count] = '\0';
469 new_state = simple_strtoul(state_string, NULL, 0);
471 if (new_state >= perf->state_count)
474 cpufreq_get_policy(&policy, pr->id);
477 policy.min = perf->states[new_state].core_frequency * 1000;
478 policy.max = perf->states[new_state].core_frequency * 1000;
480 result = cpufreq_set_policy(&policy);
487 static void acpi_cpufreq_add_file(struct acpi_processor *pr)
489 struct proc_dir_entry *entry = NULL;
490 struct acpi_device *device = NULL;
493 if (acpi_bus_get_device(pr->handle, &device))
496 /* add file 'performance' [R/W] */
497 entry = create_proc_entry(ACPI_PROCESSOR_FILE_PERFORMANCE,
498 S_IFREG | S_IRUGO | S_IWUSR,
499 acpi_device_dir(device));
501 acpi_processor_perf_fops.write = acpi_processor_write_performance;
502 entry->proc_fops = &acpi_processor_perf_fops;
503 entry->data = acpi_driver_data(device);
504 entry->owner = THIS_MODULE;
509 static void acpi_cpufreq_remove_file(struct acpi_processor *pr)
511 struct acpi_device *device = NULL;
514 if (acpi_bus_get_device(pr->handle, &device))
517 /* remove file 'performance' */
518 remove_proc_entry(ACPI_PROCESSOR_FILE_PERFORMANCE,
519 acpi_device_dir(device));
525 static void acpi_cpufreq_add_file(struct acpi_processor *pr)
529 static void acpi_cpufreq_remove_file(struct acpi_processor *pr)
533 #endif /* CONFIG_X86_ACPI_CPUFREQ_PROC_INTF */
535 static int acpi_processor_get_psd(struct acpi_processor *pr)
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;
545 status = acpi_evaluate_object(pr->handle, "_PSD", NULL, &buffer);
546 if (ACPI_FAILURE(status)) {
550 psd = buffer.pointer;
551 if (!psd || (psd->type != ACPI_TYPE_PACKAGE)) {
552 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
557 if (psd->package.count != 1) {
558 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
563 pdomain = &(pr->performance->domain_info);
565 state.length = sizeof(struct acpi_psd_package);
566 state.pointer = pdomain;
568 status = acpi_extract_package(&(psd->package.elements[0]),
570 if (ACPI_FAILURE(status)) {
571 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _PSD data\n"));
576 if (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES) {
577 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _PSD:num_entries\n"));
582 if (pdomain->revision != ACPI_PSD_REV0_REVISION) {
583 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _PSD:revision\n"));
589 kfree(buffer.pointer);
593 int acpi_processor_preregister_performance(
594 struct acpi_processor_performance **performance)
596 int count, count_target;
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;
605 mutex_lock(&performance_mutex);
609 /* Call _PSD for all CPUs */
610 for_each_possible_cpu(i) {
613 /* Look only at processors in ACPI namespace */
617 if (pr->performance) {
622 if (!performance || !performance[i]) {
627 pr->performance = performance[i];
628 cpu_set(i, pr->performance->shared_cpu_map);
629 if (acpi_processor_get_psd(pr)) {
638 * Now that we have _PSD data from all CPUs, lets setup P-state
641 for_each_possible_cpu(i) {
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)) {
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) {
661 cpus_clear(covered_cpus);
662 for_each_possible_cpu(i) {
667 if (cpu_isset(i, covered_cpus))
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)
676 /* Validate the Domain info */
677 count_target = pdomain->num_processors;
679 if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ALL)
680 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ALL;
681 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)
684 pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ANY;
686 for_each_possible_cpu(j) {
690 match_pr = processors[j];
694 match_pdomain = &(match_pr->performance->domain_info);
695 if (match_pdomain->domain != pdomain->domain)
698 /* Here i and j are in the same domain */
700 if (match_pdomain->num_processors != count_target) {
705 if (pdomain->coord_type != match_pdomain->coord_type) {
710 cpu_set(j, covered_cpus);
711 cpu_set(j, pr->performance->shared_cpu_map);
715 for_each_possible_cpu(j) {
719 match_pr = processors[j];
723 match_pdomain = &(match_pr->performance->domain_info);
724 if (match_pdomain->domain != pdomain->domain)
727 match_pr->performance->shared_type =
728 pr->performance->shared_type;
729 match_pr->performance->shared_cpu_map =
730 pr->performance->shared_cpu_map;
735 for_each_possible_cpu(i) {
737 if (!pr || !pr->performance)
740 /* Assume no coordination on any error parsing domain info */
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;
746 pr->performance = NULL; /* Will be set for real in register */
749 mutex_unlock(&performance_mutex);
752 EXPORT_SYMBOL(acpi_processor_preregister_performance);
756 acpi_processor_register_performance(struct acpi_processor_performance
757 *performance, unsigned int cpu)
759 struct acpi_processor *pr;
762 if (!(acpi_processor_ppc_status & PPC_REGISTERED))
765 mutex_lock(&performance_mutex);
767 pr = processors[cpu];
769 mutex_unlock(&performance_mutex);
773 if (pr->performance) {
774 mutex_unlock(&performance_mutex);
778 WARN_ON(!performance);
780 pr->performance = performance;
782 if (acpi_processor_get_performance_info(pr)) {
783 pr->performance = NULL;
784 mutex_unlock(&performance_mutex);
788 acpi_cpufreq_add_file(pr);
790 mutex_unlock(&performance_mutex);
794 EXPORT_SYMBOL(acpi_processor_register_performance);
797 acpi_processor_unregister_performance(struct acpi_processor_performance
798 *performance, unsigned int cpu)
800 struct acpi_processor *pr;
803 mutex_lock(&performance_mutex);
805 pr = processors[cpu];
807 mutex_unlock(&performance_mutex);
812 kfree(pr->performance->states);
813 pr->performance = NULL;
815 acpi_cpufreq_remove_file(pr);
817 mutex_unlock(&performance_mutex);
822 EXPORT_SYMBOL(acpi_processor_unregister_performance);