blob: 649ae99b9216d3f3a0f19952729f01d7783ae06f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * processor_thermal.c - Passive cooling submodule of the ACPI processor driver
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) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
9 *
10 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 *
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.
16 *
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.
21 *
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.
25 *
26 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 */
28
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>
Zhang Ruid9460fd222008-01-17 15:51:23 +080035#include <linux/sysdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/uaccess.h>
38
39#include <acpi/acpi_bus.h>
40#include <acpi/processor.h>
41#include <acpi/acpi_drivers.h>
42
43#define ACPI_PROCESSOR_COMPONENT 0x01000000
44#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050046ACPI_MODULE_NAME("processor_thermal");
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/* --------------------------------------------------------------------------
49 Limit Interface
50 -------------------------------------------------------------------------- */
Len Brown4be44fc2005-08-05 00:44:28 -040051static int acpi_processor_apply_limit(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Len Brown4be44fc2005-08-05 00:44:28 -040053 int result = 0;
54 u16 px = 0;
55 u16 tx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -040059 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (!pr->flags.limit)
Patrick Mocheld550d982006-06-27 00:41:40 -040062 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 if (pr->flags.throttling) {
65 if (pr->limit.user.tx > tx)
66 tx = pr->limit.user.tx;
67 if (pr->limit.thermal.tx > tx)
68 tx = pr->limit.thermal.tx;
69
70 result = acpi_processor_set_throttling(pr, tx);
71 if (result)
72 goto end;
73 }
74
75 pr->limit.state.px = px;
76 pr->limit.state.tx = tx;
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
79 "Processor [%d] limit set to (P%d:T%d)\n", pr->id,
80 pr->limit.state.px, pr->limit.state.tx));
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Len Brown4be44fc2005-08-05 00:44:28 -040082 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (result)
Len Brown64684632006-06-26 23:41:38 -040084 printk(KERN_ERR PREFIX "Unable to set limit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Patrick Mocheld550d982006-06-27 00:41:40 -040086 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#ifdef CONFIG_CPU_FREQ
90
91/* If a passive cooling situation is detected, primarily CPUfreq is used, as it
92 * offers (in most cases) voltage scaling in addition to frequency scaling, and
93 * thus a cubic (instead of linear) reduction of energy. Also, we allow for
94 * _any_ cpufreq driver and not only the acpi-cpufreq driver.
95 */
96
Zhang Ruid9460fd222008-01-17 15:51:23 +080097#define CPUFREQ_THERMAL_MIN_STEP 0
98#define CPUFREQ_THERMAL_MAX_STEP 3
99
Mike Travisc938ac22008-03-05 08:31:29 -0800100static DEFINE_PER_CPU(unsigned int, cpufreq_thermal_reduction_pctg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static unsigned int acpi_thermal_cpufreq_is_init = 0;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int cpu_has_cpufreq(unsigned int cpu)
104{
105 struct cpufreq_policy policy;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400106 if (!acpi_thermal_cpufreq_is_init || cpufreq_get_policy(&policy, cpu))
Thomas Renninger75b245b32005-12-21 01:29:00 -0500107 return 0;
108 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int acpi_thermal_cpufreq_increase(unsigned int cpu)
112{
113 if (!cpu_has_cpufreq(cpu))
114 return -ENODEV;
115
Mike Travisc938ac22008-03-05 08:31:29 -0800116 if (per_cpu(cpufreq_thermal_reduction_pctg, cpu) <
Zhang Ruid9460fd222008-01-17 15:51:23 +0800117 CPUFREQ_THERMAL_MAX_STEP) {
Mike Travisc938ac22008-03-05 08:31:29 -0800118 per_cpu(cpufreq_thermal_reduction_pctg, cpu)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 cpufreq_update_policy(cpu);
120 return 0;
121 }
122
123 return -ERANGE;
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static int acpi_thermal_cpufreq_decrease(unsigned int cpu)
127{
128 if (!cpu_has_cpufreq(cpu))
129 return -ENODEV;
130
Mike Travisc938ac22008-03-05 08:31:29 -0800131 if (per_cpu(cpufreq_thermal_reduction_pctg, cpu) >
Zhang Ruid9460fd222008-01-17 15:51:23 +0800132 (CPUFREQ_THERMAL_MIN_STEP + 1))
Mike Travisc938ac22008-03-05 08:31:29 -0800133 per_cpu(cpufreq_thermal_reduction_pctg, cpu)--;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400134 else
Mike Travisc938ac22008-03-05 08:31:29 -0800135 per_cpu(cpufreq_thermal_reduction_pctg, cpu) = 0;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400136 cpufreq_update_policy(cpu);
137 /* We reached max freq again and can leave passive mode */
Mike Travisc938ac22008-03-05 08:31:29 -0800138 return !per_cpu(cpufreq_thermal_reduction_pctg, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Len Brown4be44fc2005-08-05 00:44:28 -0400141static int acpi_thermal_cpufreq_notifier(struct notifier_block *nb,
142 unsigned long event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 struct cpufreq_policy *policy = data;
145 unsigned long max_freq = 0;
146
147 if (event != CPUFREQ_ADJUST)
148 goto out;
149
Mike Travisc938ac22008-03-05 08:31:29 -0800150 max_freq = (
151 policy->cpuinfo.max_freq *
152 (100 - per_cpu(cpufreq_thermal_reduction_pctg, policy->cpu) * 20)
153 ) / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 cpufreq_verify_within_limits(policy, 0, max_freq);
156
Len Brown4be44fc2005-08-05 00:44:28 -0400157 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159}
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static struct notifier_block acpi_thermal_cpufreq_notifier_block = {
162 .notifier_call = acpi_thermal_cpufreq_notifier,
163};
164
Zhang Ruid9460fd222008-01-17 15:51:23 +0800165static int cpufreq_get_max_state(unsigned int cpu)
166{
167 if (!cpu_has_cpufreq(cpu))
168 return 0;
169
170 return CPUFREQ_THERMAL_MAX_STEP;
171}
172
173static int cpufreq_get_cur_state(unsigned int cpu)
174{
175 if (!cpu_has_cpufreq(cpu))
176 return 0;
177
Mike Travisc938ac22008-03-05 08:31:29 -0800178 return per_cpu(cpufreq_thermal_reduction_pctg, cpu);
Zhang Ruid9460fd222008-01-17 15:51:23 +0800179}
180
181static int cpufreq_set_cur_state(unsigned int cpu, int state)
182{
183 if (!cpu_has_cpufreq(cpu))
184 return 0;
185
Mike Travisc938ac22008-03-05 08:31:29 -0800186 per_cpu(cpufreq_thermal_reduction_pctg, cpu) = state;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800187 cpufreq_update_policy(cpu);
188 return 0;
189}
190
Len Brown4be44fc2005-08-05 00:44:28 -0400191void acpi_thermal_cpufreq_init(void)
192{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int i;
194
Mike Travisc938ac22008-03-05 08:31:29 -0800195 for (i = 0; i < nr_cpu_ids; i++)
196 if (cpu_present(i))
197 per_cpu(cpufreq_thermal_reduction_pctg, i) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Len Brown4be44fc2005-08-05 00:44:28 -0400199 i = cpufreq_register_notifier(&acpi_thermal_cpufreq_notifier_block,
200 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (!i)
202 acpi_thermal_cpufreq_is_init = 1;
203}
204
Len Brown4be44fc2005-08-05 00:44:28 -0400205void acpi_thermal_cpufreq_exit(void)
206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (acpi_thermal_cpufreq_is_init)
Len Brown4be44fc2005-08-05 00:44:28 -0400208 cpufreq_unregister_notifier
209 (&acpi_thermal_cpufreq_notifier_block,
210 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 acpi_thermal_cpufreq_is_init = 0;
213}
214
Len Brown4be44fc2005-08-05 00:44:28 -0400215#else /* ! CONFIG_CPU_FREQ */
Zhang Ruid9460fd222008-01-17 15:51:23 +0800216static int cpufreq_get_max_state(unsigned int cpu)
217{
218 return 0;
219}
220
221static int cpufreq_get_cur_state(unsigned int cpu)
222{
223 return 0;
224}
225
226static int cpufreq_set_cur_state(unsigned int cpu, int state)
227{
228 return 0;
229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Len Brown4be44fc2005-08-05 00:44:28 -0400231static int acpi_thermal_cpufreq_increase(unsigned int cpu)
232{
233 return -ENODEV;
234}
235static int acpi_thermal_cpufreq_decrease(unsigned int cpu)
236{
237 return -ENODEV;
238}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240#endif
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242int acpi_processor_set_thermal_limit(acpi_handle handle, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Len Brown4be44fc2005-08-05 00:44:28 -0400244 int result = 0;
245 struct acpi_processor *pr = NULL;
246 struct acpi_device *device = NULL;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400247 int tx = 0, max_tx_px = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if ((type < ACPI_PROCESSOR_LIMIT_NONE)
Len Brown4be44fc2005-08-05 00:44:28 -0400251 || (type > ACPI_PROCESSOR_LIMIT_DECREMENT))
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 result = acpi_bus_get_device(handle, &device);
255 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400256 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200258 pr = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400260 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* Thermal limits are always relative to the current Px/Tx state. */
263 if (pr->flags.throttling)
264 pr->limit.thermal.tx = pr->throttling.state;
265
266 /*
267 * Our default policy is to only use throttling at the lowest
268 * performance state.
269 */
270
271 tx = pr->limit.thermal.tx;
272
273 switch (type) {
274
275 case ACPI_PROCESSOR_LIMIT_NONE:
276 do {
277 result = acpi_thermal_cpufreq_decrease(pr->id);
278 } while (!result);
279 tx = 0;
280 break;
281
282 case ACPI_PROCESSOR_LIMIT_INCREMENT:
283 /* if going up: P-states first, T-states later */
284
285 result = acpi_thermal_cpufreq_increase(pr->id);
286 if (!result)
287 goto end;
288 else if (result == -ERANGE)
289 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400290 "At maximum performance state\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 if (pr->flags.throttling) {
293 if (tx == (pr->throttling.state_count - 1))
294 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400295 "At maximum throttling state\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 else
297 tx++;
298 }
299 break;
300
301 case ACPI_PROCESSOR_LIMIT_DECREMENT:
302 /* if going down: T-states first, P-states later */
303
304 if (pr->flags.throttling) {
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400305 if (tx == 0) {
306 max_tx_px = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400308 "At minimum throttling state\n"));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400309 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 tx--;
311 goto end;
312 }
313 }
314
315 result = acpi_thermal_cpufreq_decrease(pr->id);
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400316 if (result) {
317 /*
318 * We only could get -ERANGE, 1 or 0.
319 * In the first two cases we reached max freq again.
320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400322 "At minimum performance state\n"));
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400323 max_tx_px = 1;
324 } else
325 max_tx_px = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 break;
328 }
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (pr->flags.throttling) {
332 pr->limit.thermal.px = 0;
333 pr->limit.thermal.tx = tx;
334
335 result = acpi_processor_apply_limit(pr);
336 if (result)
Len Brown64684632006-06-26 23:41:38 -0400337 printk(KERN_ERR PREFIX "Unable to set thermal limit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Thermal limit now (P%d:T%d)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400340 pr->limit.thermal.px, pr->limit.thermal.tx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 } else
342 result = 0;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400343 if (max_tx_px)
Patrick Mocheld550d982006-06-27 00:41:40 -0400344 return 1;
Thomas Renninger1cbf4c52004-09-16 11:07:00 -0400345 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400346 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Len Brown4be44fc2005-08-05 00:44:28 -0400349int acpi_processor_get_limit_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400353 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (pr->flags.throttling)
356 pr->flags.limit = 1;
357
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Zhang Ruid9460fd222008-01-17 15:51:23 +0800361/* thermal coolign device callbacks */
362static int acpi_processor_max_state(struct acpi_processor *pr)
363{
364 int max_state = 0;
365
366 /*
367 * There exists four states according to
368 * cpufreq_thermal_reduction_ptg. 0, 1, 2, 3
369 */
370 max_state += cpufreq_get_max_state(pr->id);
371 if (pr->flags.throttling)
372 max_state += (pr->throttling.state_count -1);
373
374 return max_state;
375}
376static int
377processor_get_max_state(struct thermal_cooling_device *cdev, char *buf)
378{
379 struct acpi_device *device = cdev->devdata;
380 struct acpi_processor *pr = acpi_driver_data(device);
381
382 if (!device || !pr)
383 return -EINVAL;
384
385 return sprintf(buf, "%d\n", acpi_processor_max_state(pr));
386}
387
388static int
389processor_get_cur_state(struct thermal_cooling_device *cdev, char *buf)
390{
391 struct acpi_device *device = cdev->devdata;
392 struct acpi_processor *pr = acpi_driver_data(device);
393 int cur_state;
394
395 if (!device || !pr)
396 return -EINVAL;
397
398 cur_state = cpufreq_get_cur_state(pr->id);
399 if (pr->flags.throttling)
400 cur_state += pr->throttling.state;
401
402 return sprintf(buf, "%d\n", cur_state);
403}
404
405static int
406processor_set_cur_state(struct thermal_cooling_device *cdev, unsigned int state)
407{
408 struct acpi_device *device = cdev->devdata;
409 struct acpi_processor *pr = acpi_driver_data(device);
410 int result = 0;
411 int max_pstate;
412
413 if (!device || !pr)
414 return -EINVAL;
415
416 max_pstate = cpufreq_get_max_state(pr->id);
417
418 if (state > acpi_processor_max_state(pr))
419 return -EINVAL;
420
421 if (state <= max_pstate) {
422 if (pr->flags.throttling && pr->throttling.state)
423 result = acpi_processor_set_throttling(pr, 0);
424 cpufreq_set_cur_state(pr->id, state);
425 } else {
426 cpufreq_set_cur_state(pr->id, max_pstate);
427 result = acpi_processor_set_throttling(pr,
428 state - max_pstate);
429 }
430 return result;
431}
432
433struct thermal_cooling_device_ops processor_cooling_ops = {
434 .get_max_state = processor_get_max_state,
435 .get_cur_state = processor_get_cur_state,
436 .set_cur_state = processor_set_cur_state,
437};
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/* /proc interface */
440
441static int acpi_processor_limit_seq_show(struct seq_file *seq, void *offset)
442{
Len Brown4be44fc2005-08-05 00:44:28 -0400443 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (!pr)
447 goto end;
448
449 if (!pr->flags.limit) {
450 seq_puts(seq, "<not supported>\n");
451 goto end;
452 }
453
454 seq_printf(seq, "active limit: P%d:T%d\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400455 "user limit: P%d:T%d\n"
456 "thermal limit: P%d:T%d\n",
457 pr->limit.state.px, pr->limit.state.tx,
458 pr->limit.user.px, pr->limit.user.tx,
459 pr->limit.thermal.px, pr->limit.thermal.tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Len Brown4be44fc2005-08-05 00:44:28 -0400461 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465static int acpi_processor_limit_open_fs(struct inode *inode, struct file *file)
466{
467 return single_open(file, acpi_processor_limit_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400468 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Adrian Bunk757b1862006-01-07 13:19:00 -0500471static ssize_t acpi_processor_write_limit(struct file * file,
472 const char __user * buffer,
473 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Len Brown4be44fc2005-08-05 00:44:28 -0400475 int result = 0;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200476 struct seq_file *m = file->private_data;
477 struct acpi_processor *pr = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400478 char limit_string[25] = { '\0' };
479 int px = 0;
480 int tx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 if (!pr || (count > sizeof(limit_string) - 1)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400484 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 if (copy_from_user(limit_string, buffer, count)) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400488 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490
491 limit_string[count] = '\0';
492
493 if (sscanf(limit_string, "%d:%d", &px, &tx) != 2) {
Len Brown64684632006-06-26 23:41:38 -0400494 printk(KERN_ERR PREFIX "Invalid data format\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400495 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
498 if (pr->flags.throttling) {
499 if ((tx < 0) || (tx > (pr->throttling.state_count - 1))) {
Len Brown64684632006-06-26 23:41:38 -0400500 printk(KERN_ERR PREFIX "Invalid tx\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400501 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 pr->limit.user.tx = tx;
504 }
505
506 result = acpi_processor_apply_limit(pr);
507
Patrick Mocheld550d982006-06-27 00:41:40 -0400508 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511struct file_operations acpi_processor_limit_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400512 .open = acpi_processor_limit_open_fs,
513 .read = seq_read,
Arjan van de Vend479e902006-01-06 16:47:00 -0500514 .write = acpi_processor_write_limit,
Len Brown4be44fc2005-08-05 00:44:28 -0400515 .llseek = seq_lseek,
516 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517};