2 * processor_throttling.c - Throttling 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/proc_fs.h>
34 #include <linux/seq_file.h>
37 #include <asm/uaccess.h>
39 #include <acpi/acpi_bus.h>
40 #include <acpi/processor.h>
42 #define ACPI_PROCESSOR_COMPONENT 0x01000000
43 #define ACPI_PROCESSOR_CLASS "processor"
44 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
45 ACPI_MODULE_NAME("processor_throttling");
47 /* --------------------------------------------------------------------------
49 -------------------------------------------------------------------------- */
50 static int acpi_processor_get_throttling(struct acpi_processor *pr)
61 if (!pr->flags.throttling)
64 pr->throttling.state = 0;
66 duty_mask = pr->throttling.state_count - 1;
68 duty_mask <<= pr->throttling.duty_offset;
72 value = inl(pr->throttling.address);
75 * Compute the current throttling state when throttling is enabled
79 duty_value = value & duty_mask;
80 duty_value >>= pr->throttling.duty_offset;
83 state = pr->throttling.state_count - duty_value;
86 pr->throttling.state = state;
90 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
91 "Throttling state is T%d (%d%% throttling applied)\n",
92 state, pr->throttling.states[state].performance));
97 int acpi_processor_set_throttling(struct acpi_processor *pr, int state)
107 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
110 if (!pr->flags.throttling)
113 if (state == pr->throttling.state)
117 * Calculate the duty_value and duty_mask.
120 duty_value = pr->throttling.state_count - state;
122 duty_value <<= pr->throttling.duty_offset;
124 /* Used to clear all duty_value bits */
125 duty_mask = pr->throttling.state_count - 1;
127 duty_mask <<= acpi_gbl_FADT.duty_offset;
128 duty_mask = ~duty_mask;
134 * Disable throttling by writing a 0 to bit 4. Note that we must
135 * turn it off before you can change the duty_value.
137 value = inl(pr->throttling.address);
140 outl(value, pr->throttling.address);
144 * Write the new duty_value and then enable throttling. Note
145 * that a state value of 0 leaves throttling disabled.
150 outl(value, pr->throttling.address);
153 outl(value, pr->throttling.address);
156 pr->throttling.state = state;
160 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
161 "Throttling state set to T%d (%d%%)\n", state,
162 (pr->throttling.states[state].performance ? pr->
163 throttling.states[state].performance / 10 : 0)));
168 int acpi_processor_get_throttling_info(struct acpi_processor *pr)
175 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
176 "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n",
177 pr->throttling.address,
178 pr->throttling.duty_offset,
179 pr->throttling.duty_width));
184 /* TBD: Support ACPI 2.0 objects */
186 if (!pr->throttling.address) {
187 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling register\n"));
189 } else if (!pr->throttling.duty_width) {
190 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling states\n"));
193 /* TBD: Support duty_cycle values that span bit 4. */
194 else if ((pr->throttling.duty_offset + pr->throttling.duty_width) > 4) {
195 printk(KERN_WARNING PREFIX "duty_cycle spans bit 4\n");
200 * PIIX4 Errata: We don't support throttling on the original PIIX4.
201 * This shouldn't be an issue as few (if any) mobile systems ever
204 if (errata.piix4.throttle) {
205 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
206 "Throttling not supported on PIIX4 A- or B-step\n"));
210 pr->throttling.state_count = 1 << acpi_gbl_FADT.duty_width;
213 * Compute state values. Note that throttling displays a linear power/
214 * performance relationship (at 50% performance the CPU will consume
215 * 50% power). Values are in 1/10th of a percent to preserve accuracy.
218 step = (1000 / pr->throttling.state_count);
220 for (i = 0; i < pr->throttling.state_count; i++) {
221 pr->throttling.states[i].performance = step * i;
222 pr->throttling.states[i].power = step * i;
225 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
226 pr->throttling.state_count));
228 pr->flags.throttling = 1;
231 * Disable throttling (if enabled). We'll let subsequent policy (e.g.
232 * thermal) decide to lower performance if it so chooses, but for now
233 * we'll crank up the speed.
236 result = acpi_processor_get_throttling(pr);
240 if (pr->throttling.state) {
241 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
242 "Disabling throttling (was T%d)\n",
243 pr->throttling.state));
244 result = acpi_processor_set_throttling(pr, 0);
251 pr->flags.throttling = 0;
258 static int acpi_processor_throttling_seq_show(struct seq_file *seq,
261 struct acpi_processor *pr = seq->private;
269 if (!(pr->throttling.state_count > 0)) {
270 seq_puts(seq, "<not supported>\n");
274 result = acpi_processor_get_throttling(pr);
278 "Could not determine current throttling state.\n");
282 seq_printf(seq, "state count: %d\n"
283 "active state: T%d\n",
284 pr->throttling.state_count, pr->throttling.state);
286 seq_puts(seq, "states:\n");
287 for (i = 0; i < pr->throttling.state_count; i++)
288 seq_printf(seq, " %cT%d: %02d%%\n",
289 (i == pr->throttling.state ? '*' : ' '), i,
290 (pr->throttling.states[i].performance ? pr->
291 throttling.states[i].performance / 10 : 0));
297 static int acpi_processor_throttling_open_fs(struct inode *inode,
300 return single_open(file, acpi_processor_throttling_seq_show,
304 static ssize_t acpi_processor_write_throttling(struct file * file,
305 const char __user * buffer,
306 size_t count, loff_t * data)
309 struct seq_file *m = file->private_data;
310 struct acpi_processor *pr = m->private;
311 char state_string[12] = { '\0' };
314 if (!pr || (count > sizeof(state_string) - 1))
317 if (copy_from_user(state_string, buffer, count))
320 state_string[count] = '\0';
322 result = acpi_processor_set_throttling(pr,
323 simple_strtoul(state_string,
331 struct file_operations acpi_processor_throttling_fops = {
332 .open = acpi_processor_throttling_open_fs,
334 .write = acpi_processor_write_throttling,
336 .release = single_release,