2 * acpi-cpufreq.c - ACPI Processor P-States Driver ($Revision: 1.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) 2002 - 2004 Dominik Brodowski <linux@brodo.de>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 #include <linux/config.h>
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/cpufreq.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
34 #include <linux/compiler.h>
35 #include <linux/sched.h> /* current */
37 #include <asm/delay.h>
38 #include <asm/uaccess.h>
40 #include <linux/acpi.h>
41 #include <acpi/processor.h>
43 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "acpi-cpufreq", msg)
45 MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
46 MODULE_DESCRIPTION("ACPI Processor P-States Driver");
47 MODULE_LICENSE("GPL");
50 struct cpufreq_acpi_io {
51 struct acpi_processor_performance acpi_data;
52 struct cpufreq_frequency_table *freq_table;
56 static struct cpufreq_acpi_io *acpi_io_data[NR_CPUS];
58 static struct cpufreq_driver acpi_cpufreq_driver;
60 static unsigned int acpi_pstate_strict;
63 acpi_processor_write_port(
70 } else if (bit_width <= 16) {
72 } else if (bit_width <= 32) {
81 acpi_processor_read_port(
89 } else if (bit_width <= 16) {
91 } else if (bit_width <= 32) {
100 acpi_processor_set_performance (
101 struct cpufreq_acpi_io *data,
110 struct cpufreq_freqs cpufreq_freqs;
111 cpumask_t saved_mask;
114 dprintk("acpi_processor_set_performance\n");
117 * TBD: Use something other than set_cpus_allowed.
118 * As set_cpus_allowed is a bit racy,
119 * with any other set_cpus_allowed for this process.
121 saved_mask = current->cpus_allowed;
122 set_cpus_allowed(current, cpumask_of_cpu(cpu));
123 if (smp_processor_id() != cpu) {
127 if (state == data->acpi_data.state) {
128 if (unlikely(data->resume)) {
129 dprintk("Called after resume, resetting to P%d\n", state);
132 dprintk("Already at target state (P%d)\n", state);
138 dprintk("Transitioning from P%d to P%d\n",
139 data->acpi_data.state, state);
141 /* cpufreq frequency struct */
142 cpufreq_freqs.cpu = cpu;
143 cpufreq_freqs.old = data->freq_table[data->acpi_data.state].frequency;
144 cpufreq_freqs.new = data->freq_table[state].frequency;
147 cpufreq_notify_transition(&cpufreq_freqs, CPUFREQ_PRECHANGE);
150 * First we write the target state's 'control' value to the
154 port = data->acpi_data.control_register.address;
155 bit_width = data->acpi_data.control_register.bit_width;
156 value = (u32) data->acpi_data.states[state].control;
158 dprintk("Writing 0x%08x to port 0x%04x\n", value, port);
160 ret = acpi_processor_write_port(port, bit_width, value);
162 dprintk("Invalid port width 0x%04x\n", bit_width);
168 * Assume the write went through when acpi_pstate_strict is not used.
169 * As read status_register is an expensive operation and there
170 * are no specific error cases where an IO port write will fail.
172 if (acpi_pstate_strict) {
173 /* Then we read the 'status_register' and compare the value
174 * with the target state's 'status' to make sure the
175 * transition was successful.
176 * Note that we'll poll for up to 1ms (100 cycles of 10us)
180 port = data->acpi_data.status_register.address;
181 bit_width = data->acpi_data.status_register.bit_width;
183 dprintk("Looking for 0x%08x from port 0x%04x\n",
184 (u32) data->acpi_data.states[state].status, port);
186 for (i=0; i<100; i++) {
187 ret = acpi_processor_read_port(port, bit_width, &value);
189 dprintk("Invalid port width 0x%04x\n", bit_width);
193 if (value == (u32) data->acpi_data.states[state].status)
198 value = (u32) data->acpi_data.states[state].status;
202 cpufreq_notify_transition(&cpufreq_freqs, CPUFREQ_POSTCHANGE);
204 if (unlikely(value != (u32) data->acpi_data.states[state].status)) {
205 unsigned int tmp = cpufreq_freqs.new;
206 cpufreq_freqs.new = cpufreq_freqs.old;
207 cpufreq_freqs.old = tmp;
208 cpufreq_notify_transition(&cpufreq_freqs, CPUFREQ_PRECHANGE);
209 cpufreq_notify_transition(&cpufreq_freqs, CPUFREQ_POSTCHANGE);
210 printk(KERN_WARNING "acpi-cpufreq: Transition failed\n");
215 dprintk("Transition successful after %d microseconds\n", i * 10);
217 data->acpi_data.state = state;
221 set_cpus_allowed(current, saved_mask);
227 acpi_cpufreq_target (
228 struct cpufreq_policy *policy,
229 unsigned int target_freq,
230 unsigned int relation)
232 struct cpufreq_acpi_io *data = acpi_io_data[policy->cpu];
233 unsigned int next_state = 0;
234 unsigned int result = 0;
236 dprintk("acpi_cpufreq_setpolicy\n");
238 result = cpufreq_frequency_table_target(policy,
246 result = acpi_processor_set_performance (data, policy->cpu, next_state);
253 acpi_cpufreq_verify (
254 struct cpufreq_policy *policy)
256 unsigned int result = 0;
257 struct cpufreq_acpi_io *data = acpi_io_data[policy->cpu];
259 dprintk("acpi_cpufreq_verify\n");
261 result = cpufreq_frequency_table_verify(policy,
269 acpi_cpufreq_guess_freq (
270 struct cpufreq_acpi_io *data,
274 /* search the closest match to cpu_khz */
277 unsigned long freqn = data->acpi_data.states[0].core_frequency * 1000;
279 for (i=0; i < (data->acpi_data.state_count - 1); i++) {
281 freqn = data->acpi_data.states[i+1].core_frequency * 1000;
282 if ((2 * cpu_khz) > (freqn + freq)) {
283 data->acpi_data.state = i;
287 data->acpi_data.state = data->acpi_data.state_count - 1;
290 /* assume CPU is at P0... */
291 data->acpi_data.state = 0;
292 return data->acpi_data.states[0].core_frequency * 1000;
298 acpi_cpufreq_cpu_init (
299 struct cpufreq_policy *policy)
302 unsigned int cpu = policy->cpu;
303 struct cpufreq_acpi_io *data;
304 unsigned int result = 0;
305 struct cpuinfo_x86 *c = &cpu_data[policy->cpu];
307 dprintk("acpi_cpufreq_cpu_init\n");
309 data = kzalloc(sizeof(struct cpufreq_acpi_io), GFP_KERNEL);
313 acpi_io_data[cpu] = data;
315 result = acpi_processor_register_performance(&data->acpi_data, cpu);
320 if (cpu_has(c, X86_FEATURE_CONSTANT_TSC)) {
321 acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS;
324 /* capability check */
325 if (data->acpi_data.state_count <= 1) {
326 dprintk("No P-States\n");
330 if ((data->acpi_data.control_register.space_id != ACPI_ADR_SPACE_SYSTEM_IO) ||
331 (data->acpi_data.status_register.space_id != ACPI_ADR_SPACE_SYSTEM_IO)) {
332 dprintk("Unsupported address space [%d, %d]\n",
333 (u32) (data->acpi_data.control_register.space_id),
334 (u32) (data->acpi_data.status_register.space_id));
339 /* alloc freq_table */
340 data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) * (data->acpi_data.state_count + 1), GFP_KERNEL);
341 if (!data->freq_table) {
346 /* detect transition latency */
347 policy->cpuinfo.transition_latency = 0;
348 for (i=0; i<data->acpi_data.state_count; i++) {
349 if ((data->acpi_data.states[i].transition_latency * 1000) > policy->cpuinfo.transition_latency)
350 policy->cpuinfo.transition_latency = data->acpi_data.states[i].transition_latency * 1000;
352 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
354 /* The current speed is unknown and not detectable by ACPI... */
355 policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu);
358 for (i=0; i<=data->acpi_data.state_count; i++)
360 data->freq_table[i].index = i;
361 if (i<data->acpi_data.state_count)
362 data->freq_table[i].frequency = data->acpi_data.states[i].core_frequency * 1000;
364 data->freq_table[i].frequency = CPUFREQ_TABLE_END;
367 result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
372 /* notify BIOS that we exist */
373 acpi_processor_notify_smm(THIS_MODULE);
375 printk(KERN_INFO "acpi-cpufreq: CPU%u - ACPI performance management activated.\n",
377 for (i = 0; i < data->acpi_data.state_count; i++)
378 dprintk(" %cP%d: %d MHz, %d mW, %d uS\n",
379 (i == data->acpi_data.state?'*':' '), i,
380 (u32) data->acpi_data.states[i].core_frequency,
381 (u32) data->acpi_data.states[i].power,
382 (u32) data->acpi_data.states[i].transition_latency);
384 cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu);
387 * the first call to ->target() should result in us actually
388 * writing something to the appropriate registers.
395 kfree(data->freq_table);
397 acpi_processor_unregister_performance(&data->acpi_data, cpu);
400 acpi_io_data[cpu] = NULL;
407 acpi_cpufreq_cpu_exit (
408 struct cpufreq_policy *policy)
410 struct cpufreq_acpi_io *data = acpi_io_data[policy->cpu];
413 dprintk("acpi_cpufreq_cpu_exit\n");
416 cpufreq_frequency_table_put_attr(policy->cpu);
417 acpi_io_data[policy->cpu] = NULL;
418 acpi_processor_unregister_performance(&data->acpi_data, policy->cpu);
426 acpi_cpufreq_resume (
427 struct cpufreq_policy *policy)
429 struct cpufreq_acpi_io *data = acpi_io_data[policy->cpu];
432 dprintk("acpi_cpufreq_resume\n");
440 static struct freq_attr* acpi_cpufreq_attr[] = {
441 &cpufreq_freq_attr_scaling_available_freqs,
445 static struct cpufreq_driver acpi_cpufreq_driver = {
446 .verify = acpi_cpufreq_verify,
447 .target = acpi_cpufreq_target,
448 .init = acpi_cpufreq_cpu_init,
449 .exit = acpi_cpufreq_cpu_exit,
450 .resume = acpi_cpufreq_resume,
451 .name = "acpi-cpufreq",
452 .owner = THIS_MODULE,
453 .attr = acpi_cpufreq_attr,
454 .flags = CPUFREQ_STICKY,
459 acpi_cpufreq_init (void)
463 dprintk("acpi_cpufreq_init\n");
465 result = cpufreq_register_driver(&acpi_cpufreq_driver);
472 acpi_cpufreq_exit (void)
474 dprintk("acpi_cpufreq_exit\n");
476 cpufreq_unregister_driver(&acpi_cpufreq_driver);
481 module_param(acpi_pstate_strict, uint, 0644);
482 MODULE_PARM_DESC(acpi_pstate_strict, "value 0 or non-zero. non-zero -> strict ACPI checks are performed during frequency changes.");
484 late_initcall(acpi_cpufreq_init);
485 module_exit(acpi_cpufreq_exit);
487 MODULE_ALIAS("acpi");