Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 2 | * acpi-cpufreq.c - ACPI Processor P-States Driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 7 | * Copyright (C) 2006 Denis Sadykov <denis.m.sadykov@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or (at |
| 14 | * your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but |
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along |
| 22 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 23 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 24 | * |
| 25 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 26 | */ |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/kernel.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/init.h> |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 31 | #include <linux/smp.h> |
| 32 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/cpufreq.h> |
Venkatesh Pallipadi | d395bf1 | 2005-08-25 15:59:00 -0400 | [diff] [blame] | 34 | #include <linux/compiler.h> |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 35 | #include <linux/dmi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> |
Arjan van de Ven | 6161352 | 2009-09-17 16:11:28 +0200 | [diff] [blame] | 37 | #include <trace/events/power.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <linux/acpi.h> |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 40 | #include <linux/io.h> |
| 41 | #include <linux/delay.h> |
| 42 | #include <linux/uaccess.h> |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/processor.h> |
| 45 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 46 | #include <asm/msr.h> |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 47 | #include <asm/processor.h> |
| 48 | #include <asm/cpufeature.h> |
Mark Langsdorf | a2fed57 | 2010-03-18 18:41:46 +0100 | [diff] [blame] | 49 | #include "mperf.h" |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 50 | |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 51 | #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, \ |
| 52 | "acpi-cpufreq", msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski"); |
| 55 | MODULE_DESCRIPTION("ACPI Processor P-States Driver"); |
| 56 | MODULE_LICENSE("GPL"); |
| 57 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 58 | enum { |
| 59 | UNDEFINED_CAPABLE = 0, |
| 60 | SYSTEM_INTEL_MSR_CAPABLE, |
| 61 | SYSTEM_IO_CAPABLE, |
| 62 | }; |
| 63 | |
| 64 | #define INTEL_MSR_RANGE (0xffff) |
| 65 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 66 | struct acpi_cpufreq_data { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 67 | struct acpi_processor_performance *acpi_data; |
| 68 | struct cpufreq_frequency_table *freq_table; |
| 69 | unsigned int resume; |
| 70 | unsigned int cpu_feature; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 73 | static DEFINE_PER_CPU(struct acpi_cpufreq_data *, acfreq_data); |
travis@sgi.com | ea348f3 | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 74 | |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 75 | /* acpi_perf_data is a pointer to percpu data. */ |
| 76 | static struct acpi_processor_performance *acpi_perf_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | static struct cpufreq_driver acpi_cpufreq_driver; |
| 79 | |
Venkatesh Pallipadi | d395bf1 | 2005-08-25 15:59:00 -0400 | [diff] [blame] | 80 | static unsigned int acpi_pstate_strict; |
| 81 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 82 | static int check_est_cpu(unsigned int cpuid) |
| 83 | { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 84 | struct cpuinfo_x86 *cpu = &cpu_data(cpuid); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 85 | |
Harald Welte | 0de5108 | 2009-06-08 18:27:54 +0800 | [diff] [blame] | 86 | return cpu_has(cpu, X86_FEATURE_EST); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 89 | static unsigned extract_io(u32 value, struct acpi_cpufreq_data *data) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 90 | { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 91 | struct acpi_processor_performance *perf; |
| 92 | int i; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 93 | |
| 94 | perf = data->acpi_data; |
| 95 | |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 96 | for (i = 0; i < perf->state_count; i++) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 97 | if (value == perf->states[i].status) |
| 98 | return data->freq_table[i].frequency; |
| 99 | } |
| 100 | return 0; |
| 101 | } |
| 102 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 103 | static unsigned extract_msr(u32 msr, struct acpi_cpufreq_data *data) |
| 104 | { |
| 105 | int i; |
Venkatesh Pallipadi | a6f6e6e6 | 2006-10-03 12:37:42 -0700 | [diff] [blame] | 106 | struct acpi_processor_performance *perf; |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 107 | |
| 108 | msr &= INTEL_MSR_RANGE; |
Venkatesh Pallipadi | a6f6e6e6 | 2006-10-03 12:37:42 -0700 | [diff] [blame] | 109 | perf = data->acpi_data; |
| 110 | |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 111 | for (i = 0; data->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) { |
Venkatesh Pallipadi | a6f6e6e6 | 2006-10-03 12:37:42 -0700 | [diff] [blame] | 112 | if (msr == perf->states[data->freq_table[i].index].status) |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 113 | return data->freq_table[i].frequency; |
| 114 | } |
| 115 | return data->freq_table[0].frequency; |
| 116 | } |
| 117 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 118 | static unsigned extract_freq(u32 val, struct acpi_cpufreq_data *data) |
| 119 | { |
| 120 | switch (data->cpu_feature) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 121 | case SYSTEM_INTEL_MSR_CAPABLE: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 122 | return extract_msr(val, data); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 123 | case SYSTEM_IO_CAPABLE: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 124 | return extract_io(val, data); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 125 | default: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 126 | return 0; |
| 127 | } |
| 128 | } |
| 129 | |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 130 | struct msr_addr { |
| 131 | u32 reg; |
| 132 | }; |
| 133 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 134 | struct io_addr { |
| 135 | u16 port; |
| 136 | u8 bit_width; |
| 137 | }; |
| 138 | |
| 139 | struct drv_cmd { |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 140 | unsigned int type; |
Ingo Molnar | bfa318a | 2009-01-15 15:46:08 +0100 | [diff] [blame] | 141 | const struct cpumask *mask; |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 142 | union { |
| 143 | struct msr_addr msr; |
| 144 | struct io_addr io; |
| 145 | } addr; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 146 | u32 val; |
| 147 | }; |
| 148 | |
Andrew Morton | 01599fc | 2009-04-13 10:27:49 -0700 | [diff] [blame] | 149 | /* Called via smp_call_function_single(), on the target CPU */ |
| 150 | static void do_drv_read(void *_cmd) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 151 | { |
Mike Travis | 7285908 | 2009-01-16 15:31:15 -0800 | [diff] [blame] | 152 | struct drv_cmd *cmd = _cmd; |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 153 | u32 h; |
| 154 | |
| 155 | switch (cmd->type) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 156 | case SYSTEM_INTEL_MSR_CAPABLE: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 157 | rdmsr(cmd->addr.msr.reg, cmd->val, h); |
| 158 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 159 | case SYSTEM_IO_CAPABLE: |
Venkatesh Pallipadi | 4e581ff | 2006-12-13 10:41:16 -0800 | [diff] [blame] | 160 | acpi_os_read_port((acpi_io_address)cmd->addr.io.port, |
| 161 | &cmd->val, |
| 162 | (u32)cmd->addr.io.bit_width); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 163 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 164 | default: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 165 | break; |
| 166 | } |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Andrew Morton | 01599fc | 2009-04-13 10:27:49 -0700 | [diff] [blame] | 169 | /* Called via smp_call_function_many(), on the target CPUs */ |
| 170 | static void do_drv_write(void *_cmd) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 171 | { |
Mike Travis | 7285908 | 2009-01-16 15:31:15 -0800 | [diff] [blame] | 172 | struct drv_cmd *cmd = _cmd; |
Venki Pallipadi | 13424f6 | 2007-05-23 15:42:13 -0700 | [diff] [blame] | 173 | u32 lo, hi; |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 174 | |
| 175 | switch (cmd->type) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 176 | case SYSTEM_INTEL_MSR_CAPABLE: |
Venki Pallipadi | 13424f6 | 2007-05-23 15:42:13 -0700 | [diff] [blame] | 177 | rdmsr(cmd->addr.msr.reg, lo, hi); |
| 178 | lo = (lo & ~INTEL_MSR_RANGE) | (cmd->val & INTEL_MSR_RANGE); |
| 179 | wrmsr(cmd->addr.msr.reg, lo, hi); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 180 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 181 | case SYSTEM_IO_CAPABLE: |
Venkatesh Pallipadi | 4e581ff | 2006-12-13 10:41:16 -0800 | [diff] [blame] | 182 | acpi_os_write_port((acpi_io_address)cmd->addr.io.port, |
| 183 | cmd->val, |
| 184 | (u32)cmd->addr.io.bit_width); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 185 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 186 | default: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 187 | break; |
| 188 | } |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 191 | static void drv_read(struct drv_cmd *cmd) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 192 | { |
Andrew Morton | 4a28395 | 2009-12-21 16:19:58 -0800 | [diff] [blame] | 193 | int err; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 194 | cmd->val = 0; |
| 195 | |
Andrew Morton | 4a28395 | 2009-12-21 16:19:58 -0800 | [diff] [blame] | 196 | err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1); |
| 197 | WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */ |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | static void drv_write(struct drv_cmd *cmd) |
| 201 | { |
Linus Torvalds | ea34f43 | 2009-04-15 08:05:13 -0700 | [diff] [blame] | 202 | int this_cpu; |
| 203 | |
| 204 | this_cpu = get_cpu(); |
| 205 | if (cpumask_test_cpu(this_cpu, cmd->mask)) |
| 206 | do_drv_write(cmd); |
Andrew Morton | 01599fc | 2009-04-13 10:27:49 -0700 | [diff] [blame] | 207 | smp_call_function_many(cmd->mask, do_drv_write, cmd, 1); |
Linus Torvalds | ea34f43 | 2009-04-15 08:05:13 -0700 | [diff] [blame] | 208 | put_cpu(); |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 211 | static u32 get_cur_val(const struct cpumask *mask) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 212 | { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 213 | struct acpi_processor_performance *perf; |
| 214 | struct drv_cmd cmd; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 215 | |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 216 | if (unlikely(cpumask_empty(mask))) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 217 | return 0; |
| 218 | |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 219 | switch (per_cpu(acfreq_data, cpumask_first(mask))->cpu_feature) { |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 220 | case SYSTEM_INTEL_MSR_CAPABLE: |
| 221 | cmd.type = SYSTEM_INTEL_MSR_CAPABLE; |
| 222 | cmd.addr.msr.reg = MSR_IA32_PERF_STATUS; |
| 223 | break; |
| 224 | case SYSTEM_IO_CAPABLE: |
| 225 | cmd.type = SYSTEM_IO_CAPABLE; |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 226 | perf = per_cpu(acfreq_data, cpumask_first(mask))->acpi_data; |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 227 | cmd.addr.io.port = perf->control_register.address; |
| 228 | cmd.addr.io.bit_width = perf->control_register.bit_width; |
| 229 | break; |
| 230 | default: |
| 231 | return 0; |
| 232 | } |
| 233 | |
Ingo Molnar | bfa318a | 2009-01-15 15:46:08 +0100 | [diff] [blame] | 234 | cmd.mask = mask; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 235 | drv_read(&cmd); |
| 236 | |
| 237 | dprintk("get_cur_val = %u\n", cmd.val); |
| 238 | |
| 239 | return cmd.val; |
| 240 | } |
| 241 | |
| 242 | static unsigned int get_cur_freq_on_cpu(unsigned int cpu) |
| 243 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 244 | struct acpi_cpufreq_data *data = per_cpu(acfreq_data, cpu); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 245 | unsigned int freq; |
Venkatesh Pallipadi | e56a727 | 2008-04-28 15:13:43 -0400 | [diff] [blame] | 246 | unsigned int cached_freq; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 247 | |
| 248 | dprintk("get_cur_freq_on_cpu (%d)\n", cpu); |
| 249 | |
| 250 | if (unlikely(data == NULL || |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 251 | data->acpi_data == NULL || data->freq_table == NULL)) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
Venkatesh Pallipadi | e56a727 | 2008-04-28 15:13:43 -0400 | [diff] [blame] | 255 | cached_freq = data->freq_table[data->acpi_data->state].frequency; |
Mike Travis | e39ad41 | 2009-01-04 05:18:10 -0800 | [diff] [blame] | 256 | freq = extract_freq(get_cur_val(cpumask_of(cpu)), data); |
Venkatesh Pallipadi | e56a727 | 2008-04-28 15:13:43 -0400 | [diff] [blame] | 257 | if (freq != cached_freq) { |
| 258 | /* |
| 259 | * The dreaded BIOS frequency change behind our back. |
| 260 | * Force set the frequency on next target call. |
| 261 | */ |
| 262 | data->resume = 1; |
| 263 | } |
| 264 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 265 | dprintk("cur freq = %u\n", freq); |
| 266 | |
| 267 | return freq; |
| 268 | } |
| 269 | |
Mike Travis | 7285908 | 2009-01-16 15:31:15 -0800 | [diff] [blame] | 270 | static unsigned int check_freqs(const struct cpumask *mask, unsigned int freq, |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 271 | struct acpi_cpufreq_data *data) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 272 | { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 273 | unsigned int cur_freq; |
| 274 | unsigned int i; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 275 | |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 276 | for (i = 0; i < 100; i++) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 277 | cur_freq = extract_freq(get_cur_val(mask), data); |
| 278 | if (cur_freq == freq) |
| 279 | return 1; |
| 280 | udelay(10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
| 282 | return 0; |
| 283 | } |
| 284 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 285 | static int acpi_cpufreq_target(struct cpufreq_policy *policy, |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 286 | unsigned int target_freq, unsigned int relation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 288 | struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 289 | struct acpi_processor_performance *perf; |
| 290 | struct cpufreq_freqs freqs; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 291 | struct drv_cmd cmd; |
Venkatesh Pallipadi | 8edc59d9 | 2006-12-19 12:58:55 -0800 | [diff] [blame] | 292 | unsigned int next_state = 0; /* Index into freq_table */ |
| 293 | unsigned int next_perf_state = 0; /* Index into perf table */ |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 294 | unsigned int i; |
| 295 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 297 | dprintk("acpi_cpufreq_target %d (%d)\n", target_freq, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 299 | if (unlikely(data == NULL || |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 300 | data->acpi_data == NULL || data->freq_table == NULL)) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 301 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 304 | perf = data->acpi_data; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 305 | result = cpufreq_frequency_table_target(policy, |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 306 | data->freq_table, |
| 307 | target_freq, |
| 308 | relation, &next_state); |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 309 | if (unlikely(result)) { |
| 310 | result = -ENODEV; |
| 311 | goto out; |
| 312 | } |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 313 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 314 | next_perf_state = data->freq_table[next_state].index; |
Venkatesh Pallipadi | 7650b28 | 2006-10-03 12:36:30 -0700 | [diff] [blame] | 315 | if (perf->state == next_perf_state) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 316 | if (unlikely(data->resume)) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 317 | dprintk("Called after resume, resetting to P%d\n", |
| 318 | next_perf_state); |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 319 | data->resume = 0; |
| 320 | } else { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 321 | dprintk("Already at target state (P%d)\n", |
| 322 | next_perf_state); |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 323 | goto out; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
Arjan van de Ven | 6161352 | 2009-09-17 16:11:28 +0200 | [diff] [blame] | 327 | trace_power_frequency(POWER_PSTATE, data->freq_table[next_state].frequency); |
Arjan van de Ven | f3f47a6 | 2008-11-23 16:49:58 -0800 | [diff] [blame] | 328 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 329 | switch (data->cpu_feature) { |
| 330 | case SYSTEM_INTEL_MSR_CAPABLE: |
| 331 | cmd.type = SYSTEM_INTEL_MSR_CAPABLE; |
| 332 | cmd.addr.msr.reg = MSR_IA32_PERF_CTL; |
Venki Pallipadi | 13424f6 | 2007-05-23 15:42:13 -0700 | [diff] [blame] | 333 | cmd.val = (u32) perf->states[next_perf_state].control; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 334 | break; |
| 335 | case SYSTEM_IO_CAPABLE: |
| 336 | cmd.type = SYSTEM_IO_CAPABLE; |
| 337 | cmd.addr.io.port = perf->control_register.address; |
| 338 | cmd.addr.io.bit_width = perf->control_register.bit_width; |
| 339 | cmd.val = (u32) perf->states[next_perf_state].control; |
| 340 | break; |
| 341 | default: |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 342 | result = -ENODEV; |
| 343 | goto out; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 344 | } |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 345 | |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 346 | /* cpufreq holds the hotplug lock, so we are safe from here on */ |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 347 | if (policy->shared_type != CPUFREQ_SHARED_TYPE_ANY) |
Ingo Molnar | bfa318a | 2009-01-15 15:46:08 +0100 | [diff] [blame] | 348 | cmd.mask = policy->cpus; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 349 | else |
Ingo Molnar | bfa318a | 2009-01-15 15:46:08 +0100 | [diff] [blame] | 350 | cmd.mask = cpumask_of(policy->cpu); |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 351 | |
Venkatesh Pallipadi | 8edc59d9 | 2006-12-19 12:58:55 -0800 | [diff] [blame] | 352 | freqs.old = perf->states[perf->state].core_frequency * 1000; |
| 353 | freqs.new = data->freq_table[next_state].frequency; |
Thomas Renninger | 6b72e39 | 2010-04-20 13:17:35 +0200 | [diff] [blame^] | 354 | for_each_cpu(i, policy->cpus) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 355 | freqs.cpu = i; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 356 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 357 | } |
| 358 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 359 | drv_write(&cmd); |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 360 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 361 | if (acpi_pstate_strict) { |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 362 | if (!check_freqs(cmd.mask, freqs.new, data)) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 363 | dprintk("acpi_cpufreq_target failed (%d)\n", |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 364 | policy->cpu); |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 365 | result = -EAGAIN; |
| 366 | goto out; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 367 | } |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 368 | } |
| 369 | |
Thomas Renninger | 6b72e39 | 2010-04-20 13:17:35 +0200 | [diff] [blame^] | 370 | for_each_cpu(i, policy->cpus) { |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 371 | freqs.cpu = i; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 372 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 373 | } |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 374 | perf->state = next_perf_state; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 375 | |
Mike Travis | 4d8bb53 | 2009-01-04 05:18:08 -0800 | [diff] [blame] | 376 | out: |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 377 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 380 | static int acpi_cpufreq_verify(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 382 | struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | dprintk("acpi_cpufreq_verify\n"); |
| 385 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 386 | return cpufreq_frequency_table_verify(policy, data->freq_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | static unsigned long |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 390 | acpi_cpufreq_guess_freq(struct acpi_cpufreq_data *data, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 392 | struct acpi_processor_performance *perf = data->acpi_data; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | if (cpu_khz) { |
| 395 | /* search the closest match to cpu_khz */ |
| 396 | unsigned int i; |
| 397 | unsigned long freq; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 398 | unsigned long freqn = perf->states[0].core_frequency * 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 400 | for (i = 0; i < (perf->state_count-1); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | freq = freqn; |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 402 | freqn = perf->states[i+1].core_frequency * 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | if ((2 * cpu_khz) > (freqn + freq)) { |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 404 | perf->state = i; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 405 | return freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
| 407 | } |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 408 | perf->state = perf->state_count-1; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 409 | return freqn; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 410 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | /* assume CPU is at P0... */ |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 412 | perf->state = 0; |
| 413 | return perf->states[0].core_frequency * 1000; |
| 414 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 417 | static void free_acpi_perf_data(void) |
| 418 | { |
| 419 | unsigned int i; |
| 420 | |
| 421 | /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */ |
| 422 | for_each_possible_cpu(i) |
| 423 | free_cpumask_var(per_cpu_ptr(acpi_perf_data, i) |
| 424 | ->shared_cpu_map); |
| 425 | free_percpu(acpi_perf_data); |
| 426 | } |
| 427 | |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 428 | /* |
| 429 | * acpi_cpufreq_early_init - initialize ACPI P-States library |
| 430 | * |
| 431 | * Initialize the ACPI P-States library (drivers/acpi/processor_perflib.c) |
| 432 | * in order to determine correct frequency and voltage pairings. We can |
| 433 | * do _PDC and _PSD and find out the processor dependency for the |
| 434 | * actual init that will happen later... |
| 435 | */ |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 436 | static int __init acpi_cpufreq_early_init(void) |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 437 | { |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 438 | unsigned int i; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 439 | dprintk("acpi_cpufreq_early_init\n"); |
| 440 | |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 441 | acpi_perf_data = alloc_percpu(struct acpi_processor_performance); |
| 442 | if (!acpi_perf_data) { |
| 443 | dprintk("Memory allocation error for acpi_perf_data.\n"); |
| 444 | return -ENOMEM; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 445 | } |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 446 | for_each_possible_cpu(i) { |
Yinghai Lu | eaa9584 | 2009-06-06 14:51:36 -0700 | [diff] [blame] | 447 | if (!zalloc_cpumask_var_node( |
Mike Travis | 80855f7 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 448 | &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map, |
| 449 | GFP_KERNEL, cpu_to_node(i))) { |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 450 | |
| 451 | /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */ |
| 452 | free_acpi_perf_data(); |
| 453 | return -ENOMEM; |
| 454 | } |
| 455 | } |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 456 | |
| 457 | /* Do initialization in ACPI core */ |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 458 | acpi_processor_preregister_performance(acpi_perf_data); |
| 459 | return 0; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 460 | } |
| 461 | |
Dave Jones | 95625b8 | 2006-10-21 01:37:39 -0400 | [diff] [blame] | 462 | #ifdef CONFIG_SMP |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 463 | /* |
| 464 | * Some BIOSes do SW_ANY coordination internally, either set it up in hw |
| 465 | * or do it in BIOS firmware and won't inform about it to OS. If not |
| 466 | * detected, this has a side effect of making CPU run at a different speed |
| 467 | * than OS intended it to run at. Detect it and handle it cleanly. |
| 468 | */ |
| 469 | static int bios_with_sw_any_bug; |
| 470 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 471 | static int sw_any_bug_found(const struct dmi_system_id *d) |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 472 | { |
| 473 | bios_with_sw_any_bug = 1; |
| 474 | return 0; |
| 475 | } |
| 476 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 477 | static const struct dmi_system_id sw_any_bug_dmi_table[] = { |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 478 | { |
| 479 | .callback = sw_any_bug_found, |
| 480 | .ident = "Supermicro Server X6DLP", |
| 481 | .matches = { |
| 482 | DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"), |
| 483 | DMI_MATCH(DMI_BIOS_VERSION, "080010"), |
| 484 | DMI_MATCH(DMI_PRODUCT_NAME, "X6DLP"), |
| 485 | }, |
| 486 | }, |
| 487 | { } |
| 488 | }; |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 489 | |
| 490 | static int acpi_cpufreq_blacklist(struct cpuinfo_x86 *c) |
| 491 | { |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 492 | /* Intel Xeon Processor 7100 Series Specification Update |
| 493 | * http://www.intel.com/Assets/PDF/specupdate/314554.pdf |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 494 | * AL30: A Machine Check Exception (MCE) Occurring during an |
| 495 | * Enhanced Intel SpeedStep Technology Ratio Change May Cause |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 496 | * Both Processor Cores to Lock Up. */ |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 497 | if (c->x86_vendor == X86_VENDOR_INTEL) { |
| 498 | if ((c->x86 == 15) && |
| 499 | (c->x86_model == 6) && |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 500 | (c->x86_mask == 8)) { |
| 501 | printk(KERN_INFO "acpi-cpufreq: Intel(R) " |
| 502 | "Xeon(R) 7100 Errata AL30, processors may " |
| 503 | "lock up on frequency changes: disabling " |
| 504 | "acpi-cpufreq.\n"); |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 505 | return -ENODEV; |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 506 | } |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 507 | } |
| 508 | return 0; |
| 509 | } |
Dave Jones | 95625b8 | 2006-10-21 01:37:39 -0400 | [diff] [blame] | 510 | #endif |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 511 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 512 | static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 514 | unsigned int i; |
| 515 | unsigned int valid_states = 0; |
| 516 | unsigned int cpu = policy->cpu; |
| 517 | struct acpi_cpufreq_data *data; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 518 | unsigned int result = 0; |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 519 | struct cpuinfo_x86 *c = &cpu_data(policy->cpu); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 520 | struct acpi_processor_performance *perf; |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 521 | #ifdef CONFIG_SMP |
| 522 | static int blacklisted; |
| 523 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | dprintk("acpi_cpufreq_cpu_init\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 527 | #ifdef CONFIG_SMP |
John Villalovos | 293afe4 | 2009-09-25 13:30:08 -0400 | [diff] [blame] | 528 | if (blacklisted) |
| 529 | return blacklisted; |
| 530 | blacklisted = acpi_cpufreq_blacklist(c); |
| 531 | if (blacklisted) |
| 532 | return blacklisted; |
Prarit Bhargava | 1a8e42f | 2009-08-26 13:19:37 -0400 | [diff] [blame] | 533 | #endif |
| 534 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 535 | data = kzalloc(sizeof(struct acpi_cpufreq_data), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (!data) |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 537 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Rusty Russell | b36128c | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 539 | data->acpi_data = per_cpu_ptr(acpi_perf_data, cpu); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 540 | per_cpu(acfreq_data, cpu) = data; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 541 | |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 542 | if (cpu_has(c, X86_FEATURE_CONSTANT_TSC)) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 543 | acpi_cpufreq_driver.flags |= CPUFREQ_CONST_LOOPS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 545 | result = acpi_processor_register_performance(data->acpi_data, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | if (result) |
| 547 | goto err_free; |
| 548 | |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 549 | perf = data->acpi_data; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 550 | policy->shared_type = perf->shared_type; |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 551 | |
Venkatesh Pallipadi | 46f18e3 | 2006-06-26 00:34:43 -0400 | [diff] [blame] | 552 | /* |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 553 | * Will let policy->cpus know about dependency only when software |
Venkatesh Pallipadi | 46f18e3 | 2006-06-26 00:34:43 -0400 | [diff] [blame] | 554 | * coordination is required. |
| 555 | */ |
| 556 | if (policy->shared_type == CPUFREQ_SHARED_TYPE_ALL || |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 557 | policy->shared_type == CPUFREQ_SHARED_TYPE_ANY) { |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 558 | cpumask_copy(policy->cpus, perf->shared_cpu_map); |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 559 | } |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 560 | cpumask_copy(policy->related_cpus, perf->shared_cpu_map); |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 561 | |
| 562 | #ifdef CONFIG_SMP |
| 563 | dmi_check_system(sw_any_bug_dmi_table); |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 564 | if (bios_with_sw_any_bug && cpumask_weight(policy->cpus) == 1) { |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 565 | policy->shared_type = CPUFREQ_SHARED_TYPE_ALL; |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 566 | cpumask_copy(policy->cpus, cpu_core_mask(cpu)); |
Venkatesh Pallipadi | 8adcc0c | 2006-09-01 14:02:24 -0700 | [diff] [blame] | 567 | } |
| 568 | #endif |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | /* capability check */ |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 571 | if (perf->state_count <= 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | dprintk("No P-States\n"); |
| 573 | result = -ENODEV; |
| 574 | goto err_unreg; |
| 575 | } |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 576 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 577 | if (perf->control_register.space_id != perf->status_register.space_id) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | result = -ENODEV; |
| 579 | goto err_unreg; |
| 580 | } |
| 581 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 582 | switch (perf->control_register.space_id) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 583 | case ACPI_ADR_SPACE_SYSTEM_IO: |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 584 | dprintk("SYSTEM IO addr space\n"); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 585 | data->cpu_feature = SYSTEM_IO_CAPABLE; |
| 586 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 587 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 588 | dprintk("HARDWARE addr space\n"); |
| 589 | if (!check_est_cpu(cpu)) { |
| 590 | result = -ENODEV; |
| 591 | goto err_unreg; |
| 592 | } |
| 593 | data->cpu_feature = SYSTEM_INTEL_MSR_CAPABLE; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 594 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 595 | default: |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 596 | dprintk("Unknown addr space %d\n", |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 597 | (u32) (perf->control_register.space_id)); |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 598 | result = -ENODEV; |
| 599 | goto err_unreg; |
| 600 | } |
| 601 | |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 602 | data->freq_table = kmalloc(sizeof(struct cpufreq_frequency_table) * |
| 603 | (perf->state_count+1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | if (!data->freq_table) { |
| 605 | result = -ENOMEM; |
| 606 | goto err_unreg; |
| 607 | } |
| 608 | |
| 609 | /* detect transition latency */ |
| 610 | policy->cpuinfo.transition_latency = 0; |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 611 | for (i = 0; i < perf->state_count; i++) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 612 | if ((perf->states[i].transition_latency * 1000) > |
| 613 | policy->cpuinfo.transition_latency) |
| 614 | policy->cpuinfo.transition_latency = |
| 615 | perf->states[i].transition_latency * 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Pallipadi, Venkatesh | a59d163 | 2009-03-19 14:41:40 -0700 | [diff] [blame] | 618 | /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */ |
| 619 | if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE && |
| 620 | policy->cpuinfo.transition_latency > 20 * 1000) { |
Pallipadi, Venkatesh | a59d163 | 2009-03-19 14:41:40 -0700 | [diff] [blame] | 621 | policy->cpuinfo.transition_latency = 20 * 1000; |
Joe Perches | 61c8c67 | 2009-05-26 14:58:39 -0700 | [diff] [blame] | 622 | printk_once(KERN_INFO |
| 623 | "P-state transition latency capped at 20 uS\n"); |
Pallipadi, Venkatesh | a59d163 | 2009-03-19 14:41:40 -0700 | [diff] [blame] | 624 | } |
| 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | /* table init */ |
Dave Jones | 3a58df3 | 2009-01-17 22:36:14 -0500 | [diff] [blame] | 627 | for (i = 0; i < perf->state_count; i++) { |
| 628 | if (i > 0 && perf->states[i].core_frequency >= |
Zhang Rui | 3cdf552 | 2007-06-13 21:24:02 -0400 | [diff] [blame] | 629 | data->freq_table[valid_states-1].frequency / 1000) |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 630 | continue; |
| 631 | |
| 632 | data->freq_table[valid_states].index = i; |
| 633 | data->freq_table[valid_states].frequency = |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 634 | perf->states[i].core_frequency * 1000; |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 635 | valid_states++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
Venkatesh Pallipadi | 3d4a7ef | 2006-11-13 17:47:44 -0800 | [diff] [blame] | 637 | data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END; |
Venkatesh Pallipadi | 8edc59d9 | 2006-12-19 12:58:55 -0800 | [diff] [blame] | 638 | perf->state = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
| 640 | result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table); |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 641 | if (result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | goto err_freqfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Thomas Renninger | d876dfb | 2009-04-17 16:22:08 +0200 | [diff] [blame] | 644 | if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq) |
| 645 | printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n"); |
| 646 | |
Mattia Dongili | a507ac4 | 2006-12-15 19:52:45 +0100 | [diff] [blame] | 647 | switch (perf->control_register.space_id) { |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 648 | case ACPI_ADR_SPACE_SYSTEM_IO: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 649 | /* Current speed is unknown and not detectable by IO port */ |
| 650 | policy->cur = acpi_cpufreq_guess_freq(data, policy->cpu); |
| 651 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 652 | case ACPI_ADR_SPACE_FIXED_HARDWARE: |
Venkatesh Pallipadi | 7650b28 | 2006-10-03 12:36:30 -0700 | [diff] [blame] | 653 | acpi_cpufreq_driver.get = get_cur_freq_on_cpu; |
Mattia Dongili | a507ac4 | 2006-12-15 19:52:45 +0100 | [diff] [blame] | 654 | policy->cur = get_cur_freq_on_cpu(cpu); |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 655 | break; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 656 | default: |
Venkatesh Pallipadi | dde9f7b | 2006-10-03 12:33:14 -0700 | [diff] [blame] | 657 | break; |
| 658 | } |
| 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | /* notify BIOS that we exist */ |
| 661 | acpi_processor_notify_smm(THIS_MODULE); |
| 662 | |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 663 | /* Check for APERF/MPERF support in hardware */ |
Peter Zijlstra | a8303aa | 2009-09-02 10:56:56 +0200 | [diff] [blame] | 664 | if (cpu_has(c, X86_FEATURE_APERFMPERF)) |
Mark Langsdorf | a2fed57 | 2010-03-18 18:41:46 +0100 | [diff] [blame] | 665 | acpi_cpufreq_driver.getavg = cpufreq_get_measured_perf; |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 666 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 667 | dprintk("CPU%u - ACPI performance management activated.\n", cpu); |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 668 | for (i = 0; i < perf->state_count; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | dprintk(" %cP%d: %d MHz, %d mW, %d uS\n", |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 670 | (i == perf->state ? '*' : ' '), i, |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 671 | (u32) perf->states[i].core_frequency, |
| 672 | (u32) perf->states[i].power, |
| 673 | (u32) perf->states[i].transition_latency); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | cpufreq_frequency_table_get_attr(data->freq_table, policy->cpu); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 676 | |
Dominik Brodowski | 4b31e77 | 2005-05-18 13:49:00 -0400 | [diff] [blame] | 677 | /* |
| 678 | * the first call to ->target() should result in us actually |
| 679 | * writing something to the appropriate registers. |
| 680 | */ |
| 681 | data->resume = 1; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 682 | |
Venkatesh Pallipadi | fe27cb3 | 2006-10-03 12:29:15 -0700 | [diff] [blame] | 683 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 685 | err_freqfree: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | kfree(data->freq_table); |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 687 | err_unreg: |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 688 | acpi_processor_unregister_performance(perf, cpu); |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 689 | err_free: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | kfree(data); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 691 | per_cpu(acfreq_data, cpu) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 693 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 696 | static int acpi_cpufreq_cpu_exit(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 698 | struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | dprintk("acpi_cpufreq_cpu_exit\n"); |
| 701 | |
| 702 | if (data) { |
| 703 | cpufreq_frequency_table_put_attr(policy->cpu); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 704 | per_cpu(acfreq_data, policy->cpu) = NULL; |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 705 | acpi_processor_unregister_performance(data->acpi_data, |
| 706 | policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | kfree(data); |
| 708 | } |
| 709 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 710 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
| 712 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 713 | static int acpi_cpufreq_resume(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 715 | struct acpi_cpufreq_data *data = per_cpu(acfreq_data, policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | dprintk("acpi_cpufreq_resume\n"); |
| 718 | |
| 719 | data->resume = 1; |
| 720 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 721 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 724 | static struct freq_attr *acpi_cpufreq_attr[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | &cpufreq_freq_attr_scaling_available_freqs, |
| 726 | NULL, |
| 727 | }; |
| 728 | |
| 729 | static struct cpufreq_driver acpi_cpufreq_driver = { |
Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 730 | .verify = acpi_cpufreq_verify, |
| 731 | .target = acpi_cpufreq_target, |
| 732 | .bios_limit = acpi_processor_get_bios_limit, |
| 733 | .init = acpi_cpufreq_cpu_init, |
| 734 | .exit = acpi_cpufreq_cpu_exit, |
| 735 | .resume = acpi_cpufreq_resume, |
| 736 | .name = "acpi-cpufreq", |
| 737 | .owner = THIS_MODULE, |
| 738 | .attr = acpi_cpufreq_attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | }; |
| 740 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 741 | static int __init acpi_cpufreq_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 743 | int ret; |
| 744 | |
Yinghai Lu | ee29753 | 2008-09-24 19:04:31 -0700 | [diff] [blame] | 745 | if (acpi_disabled) |
| 746 | return 0; |
| 747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | dprintk("acpi_cpufreq_init\n"); |
| 749 | |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 750 | ret = acpi_cpufreq_early_init(); |
| 751 | if (ret) |
| 752 | return ret; |
Venkatesh Pallipadi | 09b4d1e | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 753 | |
Akinobu Mita | 847aef6 | 2008-07-14 11:59:44 +0900 | [diff] [blame] | 754 | ret = cpufreq_register_driver(&acpi_cpufreq_driver); |
| 755 | if (ret) |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 756 | free_acpi_perf_data(); |
Akinobu Mita | 847aef6 | 2008-07-14 11:59:44 +0900 | [diff] [blame] | 757 | |
| 758 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 761 | static void __exit acpi_cpufreq_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | { |
| 763 | dprintk("acpi_cpufreq_exit\n"); |
| 764 | |
| 765 | cpufreq_unregister_driver(&acpi_cpufreq_driver); |
| 766 | |
Fenghua Yu | 5010929 | 2007-08-07 18:40:30 -0400 | [diff] [blame] | 767 | free_percpu(acpi_perf_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
| 769 | |
Venkatesh Pallipadi | d395bf1 | 2005-08-25 15:59:00 -0400 | [diff] [blame] | 770 | module_param(acpi_pstate_strict, uint, 0644); |
Venkatesh Pallipadi | 64be7ee | 2006-10-03 12:35:23 -0700 | [diff] [blame] | 771 | MODULE_PARM_DESC(acpi_pstate_strict, |
Dave Jones | 95dd722 | 2006-10-18 00:41:48 -0400 | [diff] [blame] | 772 | "value 0 or non-zero. non-zero -> strict ACPI checks are " |
| 773 | "performed during frequency changes."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | |
| 775 | late_initcall(acpi_cpufreq_init); |
| 776 | module_exit(acpi_cpufreq_exit); |
| 777 | |
| 778 | MODULE_ALIAS("acpi"); |