usb-xhci: Handle COMP_TX_ERR for isoc tds
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / processor_thermal.c
blob3854df25ac93e8a0e0e6f7c4be796f01e0222758
1 /*
2 * processor_thermal.c - Passive cooling submodule of the ACPI processor driver
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
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/cpufreq.h>
33 #include <linux/sysdev.h>
35 #include <asm/uaccess.h>
37 #include <acpi/acpi_bus.h>
38 #include <acpi/processor.h>
39 #include <acpi/acpi_drivers.h>
41 #define PREFIX "ACPI: "
43 #define ACPI_PROCESSOR_CLASS "processor"
44 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
45 ACPI_MODULE_NAME("processor_thermal");
47 #ifdef CONFIG_CPU_FREQ
49 /* If a passive cooling situation is detected, primarily CPUfreq is used, as it
50 * offers (in most cases) voltage scaling in addition to frequency scaling, and
51 * thus a cubic (instead of linear) reduction of energy. Also, we allow for
52 * _any_ cpufreq driver and not only the acpi-cpufreq driver.
55 #define CPUFREQ_THERMAL_MIN_STEP 0
56 #define CPUFREQ_THERMAL_MAX_STEP 3
58 static DEFINE_PER_CPU(unsigned int, cpufreq_thermal_reduction_pctg);
59 static unsigned int acpi_thermal_cpufreq_is_init = 0;
61 #define reduction_pctg(cpu) \
62 per_cpu(cpufreq_thermal_reduction_pctg, phys_package_first_cpu(cpu))
65 * Emulate "per package data" using per cpu data (which should really be
66 * provided elsewhere)
68 * Note we can lose a CPU on cpu hotunplug, in this case we forget the state
69 * temporarily. Fortunately that's not a big issue here (I hope)
71 static int phys_package_first_cpu(int cpu)
73 int i;
74 int id = topology_physical_package_id(cpu);
76 for_each_online_cpu(i)
77 if (topology_physical_package_id(i) == id)
78 return i;
79 return 0;
82 static int cpu_has_cpufreq(unsigned int cpu)
84 struct cpufreq_policy policy;
85 if (!acpi_thermal_cpufreq_is_init || cpufreq_get_policy(&policy, cpu))
86 return 0;
87 return 1;
90 static int acpi_thermal_cpufreq_notifier(struct notifier_block *nb,
91 unsigned long event, void *data)
93 struct cpufreq_policy *policy = data;
94 unsigned long max_freq = 0;
96 if (event != CPUFREQ_ADJUST)
97 goto out;
99 max_freq = (
100 policy->cpuinfo.max_freq *
101 (100 - reduction_pctg(policy->cpu) * 20)
102 ) / 100;
104 cpufreq_verify_within_limits(policy, 0, max_freq);
106 out:
107 return 0;
110 static struct notifier_block acpi_thermal_cpufreq_notifier_block = {
111 .notifier_call = acpi_thermal_cpufreq_notifier,
114 static int cpufreq_get_max_state(unsigned int cpu)
116 if (!cpu_has_cpufreq(cpu))
117 return 0;
119 return CPUFREQ_THERMAL_MAX_STEP;
122 static int cpufreq_get_cur_state(unsigned int cpu)
124 if (!cpu_has_cpufreq(cpu))
125 return 0;
127 return reduction_pctg(cpu);
130 static int cpufreq_set_cur_state(unsigned int cpu, int state)
132 int i;
134 if (!cpu_has_cpufreq(cpu))
135 return 0;
137 reduction_pctg(cpu) = state;
140 * Update all the CPUs in the same package because they all
141 * contribute to the temperature and often share the same
142 * frequency.
144 for_each_online_cpu(i) {
145 if (topology_physical_package_id(i) ==
146 topology_physical_package_id(cpu))
147 cpufreq_update_policy(i);
149 return 0;
152 void acpi_thermal_cpufreq_init(void)
154 int i;
156 i = cpufreq_register_notifier(&acpi_thermal_cpufreq_notifier_block,
157 CPUFREQ_POLICY_NOTIFIER);
158 if (!i)
159 acpi_thermal_cpufreq_is_init = 1;
162 void acpi_thermal_cpufreq_exit(void)
164 if (acpi_thermal_cpufreq_is_init)
165 cpufreq_unregister_notifier
166 (&acpi_thermal_cpufreq_notifier_block,
167 CPUFREQ_POLICY_NOTIFIER);
169 acpi_thermal_cpufreq_is_init = 0;
172 #else /* ! CONFIG_CPU_FREQ */
173 static int cpufreq_get_max_state(unsigned int cpu)
175 return 0;
178 static int cpufreq_get_cur_state(unsigned int cpu)
180 return 0;
183 static int cpufreq_set_cur_state(unsigned int cpu, int state)
185 return 0;
188 #endif
190 int acpi_processor_get_limit_info(struct acpi_processor *pr)
193 if (!pr)
194 return -EINVAL;
196 if (pr->flags.throttling)
197 pr->flags.limit = 1;
199 return 0;
202 /* thermal coolign device callbacks */
203 static int acpi_processor_max_state(struct acpi_processor *pr)
205 int max_state = 0;
208 * There exists four states according to
209 * cpufreq_thermal_reduction_ptg. 0, 1, 2, 3
211 max_state += cpufreq_get_max_state(pr->id);
212 if (pr->flags.throttling)
213 max_state += (pr->throttling.state_count -1);
215 return max_state;
217 static int
218 processor_get_max_state(struct thermal_cooling_device *cdev,
219 unsigned long *state)
221 struct acpi_device *device = cdev->devdata;
222 struct acpi_processor *pr = acpi_driver_data(device);
224 if (!device || !pr)
225 return -EINVAL;
227 *state = acpi_processor_max_state(pr);
228 return 0;
231 static int
232 processor_get_cur_state(struct thermal_cooling_device *cdev,
233 unsigned long *cur_state)
235 struct acpi_device *device = cdev->devdata;
236 struct acpi_processor *pr = acpi_driver_data(device);
238 if (!device || !pr)
239 return -EINVAL;
241 *cur_state = cpufreq_get_cur_state(pr->id);
242 if (pr->flags.throttling)
243 *cur_state += pr->throttling.state;
244 return 0;
247 static int
248 processor_set_cur_state(struct thermal_cooling_device *cdev,
249 unsigned long state)
251 struct acpi_device *device = cdev->devdata;
252 struct acpi_processor *pr = acpi_driver_data(device);
253 int result = 0;
254 int max_pstate;
256 if (!device || !pr)
257 return -EINVAL;
259 max_pstate = cpufreq_get_max_state(pr->id);
261 if (state > acpi_processor_max_state(pr))
262 return -EINVAL;
264 if (state <= max_pstate) {
265 if (pr->flags.throttling && pr->throttling.state)
266 result = acpi_processor_set_throttling(pr, 0, false);
267 cpufreq_set_cur_state(pr->id, state);
268 } else {
269 cpufreq_set_cur_state(pr->id, max_pstate);
270 result = acpi_processor_set_throttling(pr,
271 state - max_pstate, false);
273 return result;
276 struct thermal_cooling_device_ops processor_cooling_ops = {
277 .get_max_state = processor_get_max_state,
278 .get_cur_state = processor_get_cur_state,
279 .set_cur_state = processor_set_cur_state,