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 ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
45 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
46 ACPI_MODULE_NAME ("acpi_processor")
49 /* --------------------------------------------------------------------------
51 -------------------------------------------------------------------------- */
54 acpi_processor_get_throttling (
55 struct acpi_processor
*pr
)
62 ACPI_FUNCTION_TRACE("acpi_processor_get_throttling");
65 return_VALUE(-EINVAL
);
67 if (!pr
->flags
.throttling
)
68 return_VALUE(-ENODEV
);
70 pr
->throttling
.state
= 0;
72 duty_mask
= pr
->throttling
.state_count
- 1;
74 duty_mask
<<= pr
->throttling
.duty_offset
;
78 value
= inl(pr
->throttling
.address
);
81 * Compute the current throttling state when throttling is enabled
85 duty_value
= value
& duty_mask
;
86 duty_value
>>= pr
->throttling
.duty_offset
;
89 state
= pr
->throttling
.state_count
-duty_value
;
92 pr
->throttling
.state
= state
;
96 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
97 "Throttling state is T%d (%d%% throttling applied)\n",
98 state
, pr
->throttling
.states
[state
].performance
));
104 int acpi_processor_set_throttling (
105 struct acpi_processor
*pr
,
112 ACPI_FUNCTION_TRACE("acpi_processor_set_throttling");
115 return_VALUE(-EINVAL
);
117 if ((state
< 0) || (state
> (pr
->throttling
.state_count
- 1)))
118 return_VALUE(-EINVAL
);
120 if (!pr
->flags
.throttling
)
121 return_VALUE(-ENODEV
);
123 if (state
== pr
->throttling
.state
)
127 * Calculate the duty_value and duty_mask.
130 duty_value
= pr
->throttling
.state_count
- state
;
132 duty_value
<<= pr
->throttling
.duty_offset
;
134 /* Used to clear all duty_value bits */
135 duty_mask
= pr
->throttling
.state_count
- 1;
137 duty_mask
<<= acpi_fadt
.duty_offset
;
138 duty_mask
= ~duty_mask
;
144 * Disable throttling by writing a 0 to bit 4. Note that we must
145 * turn it off before you can change the duty_value.
147 value
= inl(pr
->throttling
.address
);
150 outl(value
, pr
->throttling
.address
);
154 * Write the new duty_value and then enable throttling. Note
155 * that a state value of 0 leaves throttling disabled.
160 outl(value
, pr
->throttling
.address
);
163 outl(value
, pr
->throttling
.address
);
166 pr
->throttling
.state
= state
;
170 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
171 "Throttling state set to T%d (%d%%)\n", state
,
172 (pr
->throttling
.states
[state
].performance
?pr
->throttling
.states
[state
].performance
/10:0)));
179 acpi_processor_get_throttling_info (
180 struct acpi_processor
*pr
)
186 ACPI_FUNCTION_TRACE("acpi_processor_get_throttling_info");
188 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
189 "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n",
190 pr
->throttling
.address
,
191 pr
->throttling
.duty_offset
,
192 pr
->throttling
.duty_width
));
195 return_VALUE(-EINVAL
);
197 /* TBD: Support ACPI 2.0 objects */
199 if (!pr
->throttling
.address
) {
200 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No throttling register\n"));
203 else if (!pr
->throttling
.duty_width
) {
204 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No throttling states\n"));
207 /* TBD: Support duty_cycle values that span bit 4. */
208 else if ((pr
->throttling
.duty_offset
209 + pr
->throttling
.duty_width
) > 4) {
210 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "duty_cycle spans bit 4\n"));
215 * PIIX4 Errata: We don't support throttling on the original PIIX4.
216 * This shouldn't be an issue as few (if any) mobile systems ever
219 if (errata
.piix4
.throttle
) {
220 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
221 "Throttling not supported on PIIX4 A- or B-step\n"));
225 pr
->throttling
.state_count
= 1 << acpi_fadt
.duty_width
;
228 * Compute state values. Note that throttling displays a linear power/
229 * performance relationship (at 50% performance the CPU will consume
230 * 50% power). Values are in 1/10th of a percent to preserve accuracy.
233 step
= (1000 / pr
->throttling
.state_count
);
235 for (i
=0; i
<pr
->throttling
.state_count
; i
++) {
236 pr
->throttling
.states
[i
].performance
= step
* i
;
237 pr
->throttling
.states
[i
].power
= step
* i
;
240 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d throttling states\n",
241 pr
->throttling
.state_count
));
243 pr
->flags
.throttling
= 1;
246 * Disable throttling (if enabled). We'll let subsequent policy (e.g.
247 * thermal) decide to lower performance if it so chooses, but for now
248 * we'll crank up the speed.
251 result
= acpi_processor_get_throttling(pr
);
255 if (pr
->throttling
.state
) {
256 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Disabling throttling (was T%d)\n",
257 pr
->throttling
.state
));
258 result
= acpi_processor_set_throttling(pr
, 0);
265 pr
->flags
.throttling
= 0;
267 return_VALUE(result
);
273 static int acpi_processor_throttling_seq_show(struct seq_file
*seq
, void *offset
)
275 struct acpi_processor
*pr
= (struct acpi_processor
*)seq
->private;
279 ACPI_FUNCTION_TRACE("acpi_processor_throttling_seq_show");
284 if (!(pr
->throttling
.state_count
> 0)) {
285 seq_puts(seq
, "<not supported>\n");
289 result
= acpi_processor_get_throttling(pr
);
292 seq_puts(seq
, "Could not determine current throttling state.\n");
296 seq_printf(seq
, "state count: %d\n"
297 "active state: T%d\n",
298 pr
->throttling
.state_count
,
299 pr
->throttling
.state
);
301 seq_puts(seq
, "states:\n");
302 for (i
= 0; i
< pr
->throttling
.state_count
; i
++)
303 seq_printf(seq
, " %cT%d: %02d%%\n",
304 (i
== pr
->throttling
.state
?'*':' '), i
,
305 (pr
->throttling
.states
[i
].performance
?pr
->throttling
.states
[i
].performance
/10:0));
311 static int acpi_processor_throttling_open_fs(struct inode
*inode
, struct file
*file
)
313 return single_open(file
, acpi_processor_throttling_seq_show
,
317 ssize_t
acpi_processor_write_throttling (
319 const char __user
*buffer
,
324 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
325 struct acpi_processor
*pr
= (struct acpi_processor
*)m
->private;
326 char state_string
[12] = {'\0'};
328 ACPI_FUNCTION_TRACE("acpi_processor_write_throttling");
330 if (!pr
|| (count
> sizeof(state_string
) - 1))
331 return_VALUE(-EINVAL
);
333 if (copy_from_user(state_string
, buffer
, count
))
334 return_VALUE(-EFAULT
);
336 state_string
[count
] = '\0';
338 result
= acpi_processor_set_throttling(pr
,
339 simple_strtoul(state_string
, NULL
, 0));
341 return_VALUE(result
);
346 struct file_operations acpi_processor_throttling_fops
= {
347 .open
= acpi_processor_throttling_open_fs
,
350 .release
= single_release
,