ACPI: If _TSS exists, do not access FADT.duty_width
[deliverable/linux.git] / drivers / acpi / processor_throttling.c
CommitLineData
1da177e4
LT
1/*
2 * processor_throttling.c - Throttling 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>
35
36#include <asm/io.h>
37#include <asm/uaccess.h>
38
39#include <acpi/acpi_bus.h>
40#include <acpi/processor.h>
41
42#define ACPI_PROCESSOR_COMPONENT 0x01000000
43#define ACPI_PROCESSOR_CLASS "processor"
1da177e4 44#define _COMPONENT ACPI_PROCESSOR_COMPONENT
f52fd66d 45ACPI_MODULE_NAME("processor_throttling");
1da177e4 46
ff55a9ce
LB
47static int acpi_processor_get_throttling(struct acpi_processor *pr);
48int acpi_processor_set_throttling(struct acpi_processor *pr, int state);
01854e69 49
c30c620e
LB
50/*
51 * _TPC - Throttling Present Capabilities
52 */
01854e69
LY
53static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
54{
55 acpi_status status = 0;
56 unsigned long tpc = 0;
57
ff55a9ce 58 if (!pr)
01854e69
LY
59 return -EINVAL;
60 status = acpi_evaluate_integer(pr->handle, "_TPC", NULL, &tpc);
c30c620e
LB
61 if (ACPI_FAILURE(status)) {
62 if (status != AE_NOT_FOUND) {
63 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TPC"));
64 }
01854e69
LY
65 return -ENODEV;
66 }
67 pr->throttling_platform_limit = (int)tpc;
68 return 0;
69}
70
71int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
72{
ef54d5ad
ZY
73 int result = 0;
74 int throttling_limit;
75 int current_state;
76 struct acpi_processor_limit *limit;
77 int target_state;
78
79 result = acpi_processor_get_platform_limit(pr);
80 if (result) {
81 /* Throttling Limit is unsupported */
82 return result;
83 }
84
85 throttling_limit = pr->throttling_platform_limit;
86 if (throttling_limit >= pr->throttling.state_count) {
87 /* Uncorrect Throttling Limit */
88 return -EINVAL;
89 }
90
91 current_state = pr->throttling.state;
92 if (current_state > throttling_limit) {
93 /*
94 * The current state can meet the requirement of
95 * _TPC limit. But it is reasonable that OSPM changes
96 * t-states from high to low for better performance.
97 * Of course the limit condition of thermal
98 * and user should be considered.
99 */
100 limit = &pr->limit;
101 target_state = throttling_limit;
102 if (limit->thermal.tx > target_state)
103 target_state = limit->thermal.tx;
104 if (limit->user.tx > target_state)
105 target_state = limit->user.tx;
106 } else if (current_state == throttling_limit) {
107 /*
108 * Unnecessary to change the throttling state
109 */
110 return 0;
111 } else {
112 /*
113 * If the current state is lower than the limit of _TPC, it
114 * will be forced to switch to the throttling state defined
115 * by throttling_platfor_limit.
116 * Because the previous state meets with the limit condition
117 * of thermal and user, it is unnecessary to check it again.
118 */
119 target_state = throttling_limit;
120 }
121 return acpi_processor_set_throttling(pr, target_state);
01854e69
LY
122}
123
c30c620e
LB
124/*
125 * _PTC - Processor Throttling Control (and status) register location
126 */
01854e69
LY
127static int acpi_processor_get_throttling_control(struct acpi_processor *pr)
128{
129 int result = 0;
130 acpi_status status = 0;
131 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
132 union acpi_object *ptc = NULL;
133 union acpi_object obj = { 0 };
134
135 status = acpi_evaluate_object(pr->handle, "_PTC", NULL, &buffer);
136 if (ACPI_FAILURE(status)) {
c30c620e
LB
137 if (status != AE_NOT_FOUND) {
138 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PTC"));
139 }
01854e69
LY
140 return -ENODEV;
141 }
142
143 ptc = (union acpi_object *)buffer.pointer;
144 if (!ptc || (ptc->type != ACPI_TYPE_PACKAGE)
145 || (ptc->package.count != 2)) {
146 printk(KERN_ERR PREFIX "Invalid _PTC data\n");
147 result = -EFAULT;
148 goto end;
149 }
150
151 /*
152 * control_register
153 */
154
155 obj = ptc->package.elements[0];
156
157 if ((obj.type != ACPI_TYPE_BUFFER)
158 || (obj.buffer.length < sizeof(struct acpi_ptc_register))
159 || (obj.buffer.pointer == NULL)) {
ff55a9ce
LB
160 printk(KERN_ERR PREFIX
161 "Invalid _PTC data (control_register)\n");
01854e69
LY
162 result = -EFAULT;
163 goto end;
164 }
165 memcpy(&pr->throttling.control_register, obj.buffer.pointer,
166 sizeof(struct acpi_ptc_register));
167
168 /*
169 * status_register
170 */
171
172 obj = ptc->package.elements[1];
173
174 if ((obj.type != ACPI_TYPE_BUFFER)
175 || (obj.buffer.length < sizeof(struct acpi_ptc_register))
176 || (obj.buffer.pointer == NULL)) {
177 printk(KERN_ERR PREFIX "Invalid _PTC data (status_register)\n");
178 result = -EFAULT;
179 goto end;
180 }
181
182 memcpy(&pr->throttling.status_register, obj.buffer.pointer,
ff55a9ce 183 sizeof(struct acpi_ptc_register));
01854e69 184
ff55a9ce 185 end:
01854e69
LY
186 kfree(buffer.pointer);
187
188 return result;
189}
c30c620e
LB
190
191/*
192 * _TSS - Throttling Supported States
193 */
01854e69
LY
194static int acpi_processor_get_throttling_states(struct acpi_processor *pr)
195{
196 int result = 0;
197 acpi_status status = AE_OK;
198 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
199 struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
200 struct acpi_buffer state = { 0, NULL };
201 union acpi_object *tss = NULL;
202 int i;
203
204 status = acpi_evaluate_object(pr->handle, "_TSS", NULL, &buffer);
205 if (ACPI_FAILURE(status)) {
c30c620e
LB
206 if (status != AE_NOT_FOUND) {
207 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSS"));
208 }
01854e69
LY
209 return -ENODEV;
210 }
211
212 tss = buffer.pointer;
213 if (!tss || (tss->type != ACPI_TYPE_PACKAGE)) {
214 printk(KERN_ERR PREFIX "Invalid _TSS data\n");
215 result = -EFAULT;
216 goto end;
217 }
218
219 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
220 tss->package.count));
221
222 pr->throttling.state_count = tss->package.count;
223 pr->throttling.states_tss =
224 kmalloc(sizeof(struct acpi_processor_tx_tss) * tss->package.count,
225 GFP_KERNEL);
226 if (!pr->throttling.states_tss) {
227 result = -ENOMEM;
228 goto end;
229 }
230
231 for (i = 0; i < pr->throttling.state_count; i++) {
232
ff55a9ce
LB
233 struct acpi_processor_tx_tss *tx =
234 (struct acpi_processor_tx_tss *)&(pr->throttling.
235 states_tss[i]);
01854e69
LY
236
237 state.length = sizeof(struct acpi_processor_tx_tss);
238 state.pointer = tx;
239
240 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Extracting state %d\n", i));
241
242 status = acpi_extract_package(&(tss->package.elements[i]),
243 &format, &state);
244 if (ACPI_FAILURE(status)) {
245 ACPI_EXCEPTION((AE_INFO, status, "Invalid _TSS data"));
246 result = -EFAULT;
247 kfree(pr->throttling.states_tss);
248 goto end;
249 }
250
251 if (!tx->freqpercentage) {
252 printk(KERN_ERR PREFIX
ff55a9ce 253 "Invalid _TSS data: freq is zero\n");
01854e69
LY
254 result = -EFAULT;
255 kfree(pr->throttling.states_tss);
256 goto end;
257 }
258 }
259
260 end:
261 kfree(buffer.pointer);
262
263 return result;
264}
c30c620e
LB
265
266/*
267 * _TSD - T-State Dependencies
268 */
ff55a9ce 269static int acpi_processor_get_tsd(struct acpi_processor *pr)
01854e69
LY
270{
271 int result = 0;
272 acpi_status status = AE_OK;
ff55a9ce
LB
273 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
274 struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
275 struct acpi_buffer state = { 0, NULL };
276 union acpi_object *tsd = NULL;
01854e69
LY
277 struct acpi_tsd_package *pdomain;
278
279 status = acpi_evaluate_object(pr->handle, "_TSD", NULL, &buffer);
280 if (ACPI_FAILURE(status)) {
c30c620e
LB
281 if (status != AE_NOT_FOUND) {
282 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSD"));
283 }
01854e69
LY
284 return -ENODEV;
285 }
286
287 tsd = buffer.pointer;
288 if (!tsd || (tsd->type != ACPI_TYPE_PACKAGE)) {
289 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n"));
290 result = -EFAULT;
291 goto end;
292 }
293
294 if (tsd->package.count != 1) {
295 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n"));
296 result = -EFAULT;
297 goto end;
298 }
299
300 pdomain = &(pr->throttling.domain_info);
301
302 state.length = sizeof(struct acpi_tsd_package);
303 state.pointer = pdomain;
304
305 status = acpi_extract_package(&(tsd->package.elements[0]),
ff55a9ce 306 &format, &state);
01854e69
LY
307 if (ACPI_FAILURE(status)) {
308 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid _TSD data\n"));
309 result = -EFAULT;
310 goto end;
311 }
312
313 if (pdomain->num_entries != ACPI_TSD_REV0_ENTRIES) {
314 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _TSD:num_entries\n"));
315 result = -EFAULT;
316 goto end;
317 }
318
319 if (pdomain->revision != ACPI_TSD_REV0_REVISION) {
320 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unknown _TSD:revision\n"));
321 result = -EFAULT;
322 goto end;
323 }
324
ff55a9ce 325 end:
01854e69
LY
326 kfree(buffer.pointer);
327 return result;
328}
329
1da177e4
LT
330/* --------------------------------------------------------------------------
331 Throttling Control
332 -------------------------------------------------------------------------- */
01854e69 333static int acpi_processor_get_throttling_fadt(struct acpi_processor *pr)
1da177e4 334{
4be44fcd
LB
335 int state = 0;
336 u32 value = 0;
337 u32 duty_mask = 0;
338 u32 duty_value = 0;
1da177e4 339
1da177e4 340 if (!pr)
d550d98d 341 return -EINVAL;
1da177e4
LT
342
343 if (!pr->flags.throttling)
d550d98d 344 return -ENODEV;
1da177e4
LT
345
346 pr->throttling.state = 0;
347
348 duty_mask = pr->throttling.state_count - 1;
349
350 duty_mask <<= pr->throttling.duty_offset;
351
352 local_irq_disable();
353
354 value = inl(pr->throttling.address);
355
356 /*
357 * Compute the current throttling state when throttling is enabled
358 * (bit 4 is on).
359 */
360 if (value & 0x10) {
361 duty_value = value & duty_mask;
362 duty_value >>= pr->throttling.duty_offset;
363
364 if (duty_value)
4be44fcd 365 state = pr->throttling.state_count - duty_value;
1da177e4
LT
366 }
367
368 pr->throttling.state = state;
369
370 local_irq_enable();
371
372 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
373 "Throttling state is T%d (%d%% throttling applied)\n",
374 state, pr->throttling.states[state].performance));
1da177e4 375
d550d98d 376 return 0;
1da177e4
LT
377}
378
ff55a9ce
LB
379static int acpi_read_throttling_status(struct acpi_processor_throttling
380 *throttling)
01854e69
LY
381{
382 int value = -1;
383 switch (throttling->status_register.space_id) {
384 case ACPI_ADR_SPACE_SYSTEM_IO:
ff55a9ce
LB
385 acpi_os_read_port((acpi_io_address) throttling->status_register.
386 address, &value,
387 (u32) throttling->status_register.bit_width *
388 8);
01854e69
LY
389 break;
390 case ACPI_ADR_SPACE_FIXED_HARDWARE:
ff55a9ce
LB
391 printk(KERN_ERR PREFIX
392 "HARDWARE addr space,NOT supported yet\n");
01854e69
LY
393 break;
394 default:
395 printk(KERN_ERR PREFIX "Unknown addr space %d\n",
ff55a9ce 396 (u32) (throttling->status_register.space_id));
01854e69
LY
397 }
398 return value;
399}
400
ff55a9ce
LB
401static int acpi_write_throttling_state(struct acpi_processor_throttling
402 *throttling, int value)
01854e69
LY
403{
404 int ret = -1;
405
406 switch (throttling->control_register.space_id) {
407 case ACPI_ADR_SPACE_SYSTEM_IO:
ff55a9ce
LB
408 acpi_os_write_port((acpi_io_address) throttling->
409 control_register.address, value,
410 (u32) throttling->control_register.
411 bit_width * 8);
01854e69
LY
412 ret = 0;
413 break;
414 case ACPI_ADR_SPACE_FIXED_HARDWARE:
ff55a9ce
LB
415 printk(KERN_ERR PREFIX
416 "HARDWARE addr space,NOT supported yet\n");
01854e69
LY
417 break;
418 default:
419 printk(KERN_ERR PREFIX "Unknown addr space %d\n",
ff55a9ce 420 (u32) (throttling->control_register.space_id));
01854e69
LY
421 }
422 return ret;
423}
424
ff55a9ce 425static int acpi_get_throttling_state(struct acpi_processor *pr, int value)
01854e69
LY
426{
427 int i;
428
429 for (i = 0; i < pr->throttling.state_count; i++) {
ff55a9ce
LB
430 struct acpi_processor_tx_tss *tx =
431 (struct acpi_processor_tx_tss *)&(pr->throttling.
432 states_tss[i]);
433 if (tx->control == value)
01854e69
LY
434 break;
435 }
ff55a9ce
LB
436 if (i > pr->throttling.state_count)
437 i = -1;
01854e69
LY
438 return i;
439}
440
ff55a9ce 441static int acpi_get_throttling_value(struct acpi_processor *pr, int state)
01854e69
LY
442{
443 int value = -1;
ff55a9ce
LB
444 if (state >= 0 && state <= pr->throttling.state_count) {
445 struct acpi_processor_tx_tss *tx =
446 (struct acpi_processor_tx_tss *)&(pr->throttling.
447 states_tss[state]);
01854e69
LY
448 value = tx->control;
449 }
450 return value;
451}
452
453static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr)
454{
455 int state = 0;
456 u32 value = 0;
457
01854e69
LY
458 if (!pr)
459 return -EINVAL;
460
461 if (!pr->flags.throttling)
462 return -ENODEV;
463
464 pr->throttling.state = 0;
465 local_irq_disable();
466 value = acpi_read_throttling_status(&pr->throttling);
ff55a9ce
LB
467 if (value >= 0) {
468 state = acpi_get_throttling_state(pr, value);
01854e69
LY
469 pr->throttling.state = state;
470 }
471 local_irq_enable();
472
473 return 0;
474}
475
01854e69
LY
476static int acpi_processor_get_throttling(struct acpi_processor *pr)
477{
478 return pr->throttling.acpi_processor_get_throttling(pr);
479}
480
22cc5019
ZY
481static int acpi_processor_get_fadt_info(struct acpi_processor *pr)
482{
483 int i, step;
484
485 if (!pr->throttling.address) {
486 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling register\n"));
487 return -EINVAL;
488 } else if (!pr->throttling.duty_width) {
489 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling states\n"));
490 return -EINVAL;
491 }
492 /* TBD: Support duty_cycle values that span bit 4. */
493 else if ((pr->throttling.duty_offset + pr->throttling.duty_width) > 4) {
494 printk(KERN_WARNING PREFIX "duty_cycle spans bit 4\n");
495 return -EINVAL;
496 }
497
498 pr->throttling.state_count = 1 << acpi_gbl_FADT.duty_width;
499
500 /*
501 * Compute state values. Note that throttling displays a linear power
502 * performance relationship (at 50% performance the CPU will consume
503 * 50% power). Values are in 1/10th of a percent to preserve accuracy.
504 */
505
506 step = (1000 / pr->throttling.state_count);
507
508 for (i = 0; i < pr->throttling.state_count; i++) {
509 pr->throttling.states[i].performance = 1000 - step * i;
510 pr->throttling.states[i].power = 1000 - step * i;
511 }
512 return 0;
513}
514
6c5cf8aa
AB
515static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr,
516 int state)
1da177e4 517{
4be44fcd
LB
518 u32 value = 0;
519 u32 duty_mask = 0;
520 u32 duty_value = 0;
1da177e4 521
1da177e4 522 if (!pr)
d550d98d 523 return -EINVAL;
1da177e4
LT
524
525 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
d550d98d 526 return -EINVAL;
1da177e4
LT
527
528 if (!pr->flags.throttling)
d550d98d 529 return -ENODEV;
1da177e4
LT
530
531 if (state == pr->throttling.state)
d550d98d 532 return 0;
1da177e4 533
01854e69
LY
534 if (state < pr->throttling_platform_limit)
535 return -EPERM;
1da177e4
LT
536 /*
537 * Calculate the duty_value and duty_mask.
538 */
539 if (state) {
540 duty_value = pr->throttling.state_count - state;
541
542 duty_value <<= pr->throttling.duty_offset;
543
544 /* Used to clear all duty_value bits */
545 duty_mask = pr->throttling.state_count - 1;
546
cee324b1 547 duty_mask <<= acpi_gbl_FADT.duty_offset;
1da177e4
LT
548 duty_mask = ~duty_mask;
549 }
550
551 local_irq_disable();
552
553 /*
554 * Disable throttling by writing a 0 to bit 4. Note that we must
555 * turn it off before you can change the duty_value.
556 */
557 value = inl(pr->throttling.address);
558 if (value & 0x10) {
559 value &= 0xFFFFFFEF;
560 outl(value, pr->throttling.address);
561 }
562
563 /*
564 * Write the new duty_value and then enable throttling. Note
565 * that a state value of 0 leaves throttling disabled.
566 */
567 if (state) {
568 value &= duty_mask;
569 value |= duty_value;
570 outl(value, pr->throttling.address);
571
572 value |= 0x00000010;
573 outl(value, pr->throttling.address);
574 }
575
576 pr->throttling.state = state;
577
578 local_irq_enable();
579
580 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
581 "Throttling state set to T%d (%d%%)\n", state,
582 (pr->throttling.states[state].performance ? pr->
583 throttling.states[state].performance / 10 : 0)));
1da177e4 584
d550d98d 585 return 0;
1da177e4
LT
586}
587
6c5cf8aa
AB
588static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr,
589 int state)
01854e69
LY
590{
591 u32 value = 0;
592
593 if (!pr)
594 return -EINVAL;
595
596 if ((state < 0) || (state > (pr->throttling.state_count - 1)))
597 return -EINVAL;
598
599 if (!pr->flags.throttling)
600 return -ENODEV;
601
602 if (state == pr->throttling.state)
603 return 0;
604
605 if (state < pr->throttling_platform_limit)
606 return -EPERM;
607
608 local_irq_disable();
609
ff55a9ce
LB
610 value = acpi_get_throttling_value(pr, state);
611 if (value >= 0) {
612 acpi_write_throttling_state(&pr->throttling, value);
01854e69
LY
613 pr->throttling.state = state;
614 }
615 local_irq_enable();
616
617 return 0;
618}
619
620int acpi_processor_set_throttling(struct acpi_processor *pr, int state)
621{
ff55a9ce 622 return pr->throttling.acpi_processor_set_throttling(pr, state);
01854e69
LY
623}
624
4be44fcd 625int acpi_processor_get_throttling_info(struct acpi_processor *pr)
1da177e4 626{
4be44fcd 627 int result = 0;
1da177e4 628
1da177e4 629 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
630 "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n",
631 pr->throttling.address,
632 pr->throttling.duty_offset,
633 pr->throttling.duty_width));
1da177e4
LT
634
635 if (!pr)
d550d98d 636 return -EINVAL;
1da177e4 637
c30c620e
LB
638 /*
639 * Evaluate _PTC, _TSS and _TPC
640 * They must all be present or none of them can be used.
641 */
642 if (acpi_processor_get_throttling_control(pr) ||
643 acpi_processor_get_throttling_states(pr) ||
644 acpi_processor_get_platform_limit(pr))
645 {
22cc5019
ZY
646 if (acpi_processor_get_fadt_info(pr))
647 return 0;
ff55a9ce
LB
648 pr->throttling.acpi_processor_get_throttling =
649 &acpi_processor_get_throttling_fadt;
650 pr->throttling.acpi_processor_set_throttling =
651 &acpi_processor_set_throttling_fadt;
01854e69 652 } else {
ff55a9ce
LB
653 pr->throttling.acpi_processor_get_throttling =
654 &acpi_processor_get_throttling_ptc;
655 pr->throttling.acpi_processor_set_throttling =
656 &acpi_processor_set_throttling_ptc;
01854e69 657 }
1da177e4 658
c30c620e
LB
659 acpi_processor_get_tsd(pr);
660
1da177e4
LT
661 /*
662 * PIIX4 Errata: We don't support throttling on the original PIIX4.
663 * This shouldn't be an issue as few (if any) mobile systems ever
664 * used this part.
665 */
666 if (errata.piix4.throttle) {
667 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 668 "Throttling not supported on PIIX4 A- or B-step\n"));
d550d98d 669 return 0;
1da177e4
LT
670 }
671
1da177e4 672 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
4be44fcd 673 pr->throttling.state_count));
1da177e4
LT
674
675 pr->flags.throttling = 1;
676
677 /*
678 * Disable throttling (if enabled). We'll let subsequent policy (e.g.
679 * thermal) decide to lower performance if it so chooses, but for now
680 * we'll crank up the speed.
681 */
682
683 result = acpi_processor_get_throttling(pr);
684 if (result)
685 goto end;
686
687 if (pr->throttling.state) {
4be44fcd
LB
688 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
689 "Disabling throttling (was T%d)\n",
690 pr->throttling.state));
1da177e4
LT
691 result = acpi_processor_set_throttling(pr, 0);
692 if (result)
693 goto end;
694 }
695
4be44fcd 696 end:
1da177e4
LT
697 if (result)
698 pr->flags.throttling = 0;
699
d550d98d 700 return result;
1da177e4
LT
701}
702
1da177e4
LT
703/* proc interface */
704
4be44fcd
LB
705static int acpi_processor_throttling_seq_show(struct seq_file *seq,
706 void *offset)
1da177e4 707{
50dd0969 708 struct acpi_processor *pr = seq->private;
4be44fcd
LB
709 int i = 0;
710 int result = 0;
1da177e4 711
1da177e4
LT
712 if (!pr)
713 goto end;
714
715 if (!(pr->throttling.state_count > 0)) {
716 seq_puts(seq, "<not supported>\n");
717 goto end;
718 }
719
720 result = acpi_processor_get_throttling(pr);
721
722 if (result) {
4be44fcd
LB
723 seq_puts(seq,
724 "Could not determine current throttling state.\n");
1da177e4
LT
725 goto end;
726 }
727
728 seq_printf(seq, "state count: %d\n"
01854e69 729 "active state: T%d\n"
ff55a9ce 730 "state available: T%d to T%d\n",
01854e69 731 pr->throttling.state_count, pr->throttling.state,
ff55a9ce
LB
732 pr->throttling_platform_limit,
733 pr->throttling.state_count - 1);
1da177e4
LT
734
735 seq_puts(seq, "states:\n");
3cc2649b
LY
736 if (pr->throttling.acpi_processor_get_throttling ==
737 acpi_processor_get_throttling_fadt) {
01854e69
LY
738 for (i = 0; i < pr->throttling.state_count; i++)
739 seq_printf(seq, " %cT%d: %02d%%\n",
ff55a9ce
LB
740 (i == pr->throttling.state ? '*' : ' '), i,
741 (pr->throttling.states[i].performance ? pr->
742 throttling.states[i].performance / 10 : 0));
3cc2649b 743 } else {
01854e69
LY
744 for (i = 0; i < pr->throttling.state_count; i++)
745 seq_printf(seq, " %cT%d: %02d%%\n",
ff55a9ce
LB
746 (i == pr->throttling.state ? '*' : ' '), i,
747 (int)pr->throttling.states_tss[i].
748 freqpercentage);
3cc2649b 749 }
1da177e4 750
4be44fcd 751 end:
d550d98d 752 return 0;
1da177e4
LT
753}
754
4be44fcd
LB
755static int acpi_processor_throttling_open_fs(struct inode *inode,
756 struct file *file)
1da177e4
LT
757{
758 return single_open(file, acpi_processor_throttling_seq_show,
4be44fcd 759 PDE(inode)->data);
1da177e4
LT
760}
761
ff55a9ce 762static ssize_t acpi_processor_write_throttling(struct file *file,
757b1866
AB
763 const char __user * buffer,
764 size_t count, loff_t * data)
1da177e4 765{
4be44fcd 766 int result = 0;
50dd0969
JE
767 struct seq_file *m = file->private_data;
768 struct acpi_processor *pr = m->private;
4be44fcd 769 char state_string[12] = { '\0' };
1da177e4 770
1da177e4 771 if (!pr || (count > sizeof(state_string) - 1))
d550d98d 772 return -EINVAL;
1da177e4
LT
773
774 if (copy_from_user(state_string, buffer, count))
d550d98d 775 return -EFAULT;
1da177e4
LT
776
777 state_string[count] = '\0';
778
779 result = acpi_processor_set_throttling(pr,
4be44fcd
LB
780 simple_strtoul(state_string,
781 NULL, 0));
1da177e4 782 if (result)
d550d98d 783 return result;
1da177e4 784
d550d98d 785 return count;
1da177e4
LT
786}
787
788struct file_operations acpi_processor_throttling_fops = {
4be44fcd
LB
789 .open = acpi_processor_throttling_open_fs,
790 .read = seq_read,
d479e908 791 .write = acpi_processor_write_throttling,
4be44fcd
LB
792 .llseek = seq_lseek,
793 .release = single_release,
1da177e4 794};
This page took 0.239981 seconds and 5 git commands to generate.