blob: 42b34f5df98b94da8598aab89e2d55e5e4649bb4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * processor_idle - idle state submodule to 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
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04009 * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
10 * - Added support for C3 on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27 *
28 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 */
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/init.h>
34#include <linux/cpufreq.h>
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <linux/acpi.h>
38#include <linux/dmi.h>
39#include <linux/moduleparam.h>
40
41#include <asm/io.h>
42#include <asm/uaccess.h>
43
44#include <acpi/acpi_bus.h>
45#include <acpi/processor.h>
46
47#define ACPI_PROCESSOR_COMPONENT 0x01000000
48#define ACPI_PROCESSOR_CLASS "processor"
49#define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
50#define _COMPONENT ACPI_PROCESSOR_COMPONENT
51ACPI_MODULE_NAME ("acpi_processor")
52
53#define ACPI_PROCESSOR_FILE_POWER "power"
54
55#define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
56#define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
57#define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
58
59static void (*pm_idle_save)(void);
60module_param(max_cstate, uint, 0644);
61
62static unsigned int nocst = 0;
63module_param(nocst, uint, 0000);
64
65/*
66 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
67 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
68 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
69 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
70 * reduce history for more aggressive entry into C3
71 */
72static unsigned int bm_history = (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
73module_param(bm_history, uint, 0644);
74/* --------------------------------------------------------------------------
75 Power Management
76 -------------------------------------------------------------------------- */
77
78/*
79 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
80 * For now disable this. Probably a bug somewhere else.
81 *
82 * To skip this limit, boot/load with a large max_cstate limit.
83 */
84static int no_c2c3(struct dmi_system_id *id)
85{
86 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
87 return 0;
88
89 printk(KERN_NOTICE PREFIX "%s detected - C2,C3 disabled."
90 " Override with \"processor.max_cstate=%d\"\n", id->ident,
91 ACPI_PROCESSOR_MAX_POWER + 1);
92
93 max_cstate = 1;
94
95 return 0;
96}
97
98
99
100
101static struct dmi_system_id __initdata processor_power_dmi_table[] = {
102 { no_c2c3, "IBM ThinkPad R40e", {
103 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
104 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }},
105 { no_c2c3, "Medion 41700", {
106 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
107 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J") }},
108 {},
109};
110
111
112static inline u32
113ticks_elapsed (
114 u32 t1,
115 u32 t2)
116{
117 if (t2 >= t1)
118 return (t2 - t1);
119 else if (!acpi_fadt.tmr_val_ext)
120 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
121 else
122 return ((0xFFFFFFFF - t1) + t2);
123}
124
125
126static void
127acpi_processor_power_activate (
128 struct acpi_processor *pr,
129 struct acpi_processor_cx *new)
130{
131 struct acpi_processor_cx *old;
132
133 if (!pr || !new)
134 return;
135
136 old = pr->power.state;
137
138 if (old)
139 old->promotion.count = 0;
140 new->demotion.count = 0;
141
142 /* Cleanup from old state. */
143 if (old) {
144 switch (old->type) {
145 case ACPI_STATE_C3:
146 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400147 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0, ACPI_MTX_DO_NOT_LOCK);
149 break;
150 }
151 }
152
153 /* Prepare to use new state. */
154 switch (new->type) {
155 case ACPI_STATE_C3:
156 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400157 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1, ACPI_MTX_DO_NOT_LOCK);
159 break;
160 }
161
162 pr->power.state = new;
163
164 return;
165}
166
167
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400168static atomic_t c3_cpu_count;
169
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static void acpi_processor_idle (void)
172{
173 struct acpi_processor *pr = NULL;
174 struct acpi_processor_cx *cx = NULL;
175 struct acpi_processor_cx *next_state = NULL;
176 int sleep_ticks = 0;
177 u32 t1, t2 = 0;
178
179 pr = processors[_smp_processor_id()];
180 if (!pr)
181 return;
182
183 /*
184 * Interrupts must be disabled during bus mastering calculations and
185 * for C2/C3 transitions.
186 */
187 local_irq_disable();
188
189 /*
190 * Check whether we truly need to go idle, or should
191 * reschedule:
192 */
193 if (unlikely(need_resched())) {
194 local_irq_enable();
195 return;
196 }
197
198 cx = pr->power.state;
199 if (!cx)
200 goto easy_out;
201
202 /*
203 * Check BM Activity
204 * -----------------
205 * Check for bus mastering activity (if required), record, and check
206 * for demotion.
207 */
208 if (pr->flags.bm_check) {
209 u32 bm_status = 0;
210 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
211
212 if (diff > 32)
213 diff = 32;
214
215 while (diff) {
216 /* if we didn't get called, assume there was busmaster activity */
217 diff--;
218 if (diff)
219 pr->power.bm_activity |= 0x1;
220 pr->power.bm_activity <<= 1;
221 }
222
223 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
224 &bm_status, ACPI_MTX_DO_NOT_LOCK);
225 if (bm_status) {
226 pr->power.bm_activity++;
227 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
228 1, ACPI_MTX_DO_NOT_LOCK);
229 }
230 /*
231 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
232 * the true state of bus mastering activity; forcing us to
233 * manually check the BMIDEA bit of each IDE channel.
234 */
235 else if (errata.piix4.bmisx) {
236 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
237 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
238 pr->power.bm_activity++;
239 }
240
241 pr->power.bm_check_timestamp = jiffies;
242
243 /*
244 * Apply bus mastering demotion policy. Automatically demote
245 * to avoid a faulty transition. Note that the processor
246 * won't enter a low-power state during this call (to this
247 * funciton) but should upon the next.
248 *
249 * TBD: A better policy might be to fallback to the demotion
250 * state (use it for this quantum only) istead of
251 * demoting -- and rely on duration as our sole demotion
252 * qualification. This may, however, introduce DMA
253 * issues (e.g. floppy DMA transfer overrun/underrun).
254 */
255 if (pr->power.bm_activity & cx->demotion.threshold.bm) {
256 local_irq_enable();
257 next_state = cx->demotion.state;
258 goto end;
259 }
260 }
261
262 cx->usage++;
263
264 /*
265 * Sleep:
266 * ------
267 * Invoke the current Cx state to put the processor to sleep.
268 */
269 switch (cx->type) {
270
271 case ACPI_STATE_C1:
272 /*
273 * Invoke C1.
274 * Use the appropriate idle routine, the one that would
275 * be used without acpi C-states.
276 */
277 if (pm_idle_save)
278 pm_idle_save();
279 else
280 safe_halt();
281 /*
282 * TBD: Can't get time duration while in C1, as resumes
283 * go to an ISR rather than here. Need to instrument
284 * base interrupt handler.
285 */
286 sleep_ticks = 0xFFFFFFFF;
287 break;
288
289 case ACPI_STATE_C2:
290 /* Get start time (ticks) */
291 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
292 /* Invoke C2 */
293 inb(cx->address);
294 /* Dummy op - must do something useless after P_LVL2 read */
295 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
296 /* Get end time (ticks) */
297 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
298 /* Re-enable interrupts */
299 local_irq_enable();
300 /* Compute time (ticks) that we were actually asleep */
301 sleep_ticks = ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD;
302 break;
303
304 case ACPI_STATE_C3:
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400305
306 if (pr->flags.bm_check) {
307 if (atomic_inc_return(&c3_cpu_count) ==
308 num_online_cpus()) {
309 /*
310 * All CPUs are trying to go to C3
311 * Disable bus master arbitration
312 */
313 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
314 ACPI_MTX_DO_NOT_LOCK);
315 }
316 } else {
317 /* SMP with no shared cache... Invalidate cache */
318 ACPI_FLUSH_CPU_CACHE();
319 }
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* Get start time (ticks) */
322 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
323 /* Invoke C3 */
324 inb(cx->address);
325 /* Dummy op - must do something useless after P_LVL3 read */
326 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
327 /* Get end time (ticks) */
328 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400329 if (pr->flags.bm_check) {
330 /* Enable bus master arbitration */
331 atomic_dec(&c3_cpu_count);
332 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0, ACPI_MTX_DO_NOT_LOCK);
333 }
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* Re-enable interrupts */
336 local_irq_enable();
337 /* Compute time (ticks) that we were actually asleep */
338 sleep_ticks = ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD;
339 break;
340
341 default:
342 local_irq_enable();
343 return;
344 }
345
346 next_state = pr->power.state;
347
348 /*
349 * Promotion?
350 * ----------
351 * Track the number of longs (time asleep is greater than threshold)
352 * and promote when the count threshold is reached. Note that bus
353 * mastering activity may prevent promotions.
354 * Do not promote above max_cstate.
355 */
356 if (cx->promotion.state &&
357 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
358 if (sleep_ticks > cx->promotion.threshold.ticks) {
359 cx->promotion.count++;
360 cx->demotion.count = 0;
361 if (cx->promotion.count >= cx->promotion.threshold.count) {
362 if (pr->flags.bm_check) {
363 if (!(pr->power.bm_activity & cx->promotion.threshold.bm)) {
364 next_state = cx->promotion.state;
365 goto end;
366 }
367 }
368 else {
369 next_state = cx->promotion.state;
370 goto end;
371 }
372 }
373 }
374 }
375
376 /*
377 * Demotion?
378 * ---------
379 * Track the number of shorts (time asleep is less than time threshold)
380 * and demote when the usage threshold is reached.
381 */
382 if (cx->demotion.state) {
383 if (sleep_ticks < cx->demotion.threshold.ticks) {
384 cx->demotion.count++;
385 cx->promotion.count = 0;
386 if (cx->demotion.count >= cx->demotion.threshold.count) {
387 next_state = cx->demotion.state;
388 goto end;
389 }
390 }
391 }
392
393end:
394 /*
395 * Demote if current state exceeds max_cstate
396 */
397 if ((pr->power.state - pr->power.states) > max_cstate) {
398 if (cx->demotion.state)
399 next_state = cx->demotion.state;
400 }
401
402 /*
403 * New Cx State?
404 * -------------
405 * If we're going to start using a new Cx state we must clean up
406 * from the previous and prepare to use the new.
407 */
408 if (next_state != pr->power.state)
409 acpi_processor_power_activate(pr, next_state);
410
411 return;
412
413 easy_out:
414 /* do C1 instead of busy loop */
415 if (pm_idle_save)
416 pm_idle_save();
417 else
418 safe_halt();
419 return;
420}
421
422
423static int
424acpi_processor_set_power_policy (
425 struct acpi_processor *pr)
426{
427 unsigned int i;
428 unsigned int state_is_set = 0;
429 struct acpi_processor_cx *lower = NULL;
430 struct acpi_processor_cx *higher = NULL;
431 struct acpi_processor_cx *cx;
432
433 ACPI_FUNCTION_TRACE("acpi_processor_set_power_policy");
434
435 if (!pr)
436 return_VALUE(-EINVAL);
437
438 /*
439 * This function sets the default Cx state policy (OS idle handler).
440 * Our scheme is to promote quickly to C2 but more conservatively
441 * to C3. We're favoring C2 for its characteristics of low latency
442 * (quick response), good power savings, and ability to allow bus
443 * mastering activity. Note that the Cx state policy is completely
444 * customizable and can be altered dynamically.
445 */
446
447 /* startup state */
448 for (i=1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
449 cx = &pr->power.states[i];
450 if (!cx->valid)
451 continue;
452
453 if (!state_is_set)
454 pr->power.state = cx;
455 state_is_set++;
456 break;
457 }
458
459 if (!state_is_set)
460 return_VALUE(-ENODEV);
461
462 /* demotion */
463 for (i=1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
464 cx = &pr->power.states[i];
465 if (!cx->valid)
466 continue;
467
468 if (lower) {
469 cx->demotion.state = lower;
470 cx->demotion.threshold.ticks = cx->latency_ticks;
471 cx->demotion.threshold.count = 1;
472 if (cx->type == ACPI_STATE_C3)
473 cx->demotion.threshold.bm = bm_history;
474 }
475
476 lower = cx;
477 }
478
479 /* promotion */
480 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
481 cx = &pr->power.states[i];
482 if (!cx->valid)
483 continue;
484
485 if (higher) {
486 cx->promotion.state = higher;
487 cx->promotion.threshold.ticks = cx->latency_ticks;
488 if (cx->type >= ACPI_STATE_C2)
489 cx->promotion.threshold.count = 4;
490 else
491 cx->promotion.threshold.count = 10;
492 if (higher->type == ACPI_STATE_C3)
493 cx->promotion.threshold.bm = bm_history;
494 }
495
496 higher = cx;
497 }
498
499 return_VALUE(0);
500}
501
502
503static int acpi_processor_get_power_info_fadt (struct acpi_processor *pr)
504{
505 int i;
506
507 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_fadt");
508
509 if (!pr)
510 return_VALUE(-EINVAL);
511
512 if (!pr->pblk)
513 return_VALUE(-ENODEV);
514
515 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
516 memset(pr->power.states, 0, sizeof(struct acpi_processor_cx));
517
518 /* if info is obtained from pblk/fadt, type equals state */
519 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
520 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
521 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
522
523 /* the C0 state only exists as a filler in our array,
524 * and all processors need to support C1 */
525 pr->power.states[ACPI_STATE_C0].valid = 1;
526 pr->power.states[ACPI_STATE_C1].valid = 1;
527
528 /* determine C2 and C3 address from pblk */
529 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
530 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
531
532 /* determine latencies from FADT */
533 pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat;
534 pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat;
535
536 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
537 "lvl2[0x%08x] lvl3[0x%08x]\n",
538 pr->power.states[ACPI_STATE_C2].address,
539 pr->power.states[ACPI_STATE_C3].address));
540
541 return_VALUE(0);
542}
543
544
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500545static int acpi_processor_get_power_info_default_c1 (struct acpi_processor *pr)
546{
547 int i;
548
549 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_default_c1");
550
551 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
Venkatesh Pallipadi0b6b2f02005-07-29 16:00:13 -0400552 memset(&(pr->power.states[i]), 0,
553 sizeof(struct acpi_processor_cx));
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500554
555 /* if info is obtained from pblk/fadt, type equals state */
556 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
557 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
558 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
559
560 /* the C0 state only exists as a filler in our array,
561 * and all processors need to support C1 */
562 pr->power.states[ACPI_STATE_C0].valid = 1;
563 pr->power.states[ACPI_STATE_C1].valid = 1;
564
565 return_VALUE(0);
566}
567
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static int acpi_processor_get_power_info_cst (struct acpi_processor *pr)
570{
571 acpi_status status = 0;
572 acpi_integer count;
573 int i;
574 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
575 union acpi_object *cst;
576
577 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_cst");
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (nocst)
580 return_VALUE(-ENODEV);
581
582 pr->power.count = 0;
583 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
Venkatesh Pallipadi0b6b2f02005-07-29 16:00:13 -0400584 memset(&(pr->power.states[i]), 0,
585 sizeof(struct acpi_processor_cx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
588 if (ACPI_FAILURE(status)) {
589 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
590 return_VALUE(-ENODEV);
591 }
592
593 cst = (union acpi_object *) buffer.pointer;
594
595 /* There must be at least 2 elements */
596 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
597 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "not enough elements in _CST\n"));
598 status = -EFAULT;
599 goto end;
600 }
601
602 count = cst->package.elements[0].integer.value;
603
604 /* Validate number of power states. */
605 if (count < 1 || count != cst->package.count - 1) {
606 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "count given by _CST is not valid\n"));
607 status = -EFAULT;
608 goto end;
609 }
610
611 /* We support up to ACPI_PROCESSOR_MAX_POWER. */
612 if (count > ACPI_PROCESSOR_MAX_POWER) {
613 printk(KERN_WARNING "Limiting number of power states to max (%d)\n", ACPI_PROCESSOR_MAX_POWER);
614 printk(KERN_WARNING "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
615 count = ACPI_PROCESSOR_MAX_POWER;
616 }
617
618 /* Tell driver that at least _CST is supported. */
619 pr->flags.has_cst = 1;
620
621 for (i = 1; i <= count; i++) {
622 union acpi_object *element;
623 union acpi_object *obj;
624 struct acpi_power_register *reg;
625 struct acpi_processor_cx cx;
626
627 memset(&cx, 0, sizeof(cx));
628
629 element = (union acpi_object *) &(cst->package.elements[i]);
630 if (element->type != ACPI_TYPE_PACKAGE)
631 continue;
632
633 if (element->package.count != 4)
634 continue;
635
636 obj = (union acpi_object *) &(element->package.elements[0]);
637
638 if (obj->type != ACPI_TYPE_BUFFER)
639 continue;
640
641 reg = (struct acpi_power_register *) obj->buffer.pointer;
642
643 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
644 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
645 continue;
646
647 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
648 0 : reg->address;
649
650 /* There should be an easy way to extract an integer... */
651 obj = (union acpi_object *) &(element->package.elements[1]);
652 if (obj->type != ACPI_TYPE_INTEGER)
653 continue;
654
655 cx.type = obj->integer.value;
656
657 if ((cx.type != ACPI_STATE_C1) &&
658 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
659 continue;
660
661 if ((cx.type < ACPI_STATE_C1) ||
662 (cx.type > ACPI_STATE_C3))
663 continue;
664
665 obj = (union acpi_object *) &(element->package.elements[2]);
666 if (obj->type != ACPI_TYPE_INTEGER)
667 continue;
668
669 cx.latency = obj->integer.value;
670
671 obj = (union acpi_object *) &(element->package.elements[3]);
672 if (obj->type != ACPI_TYPE_INTEGER)
673 continue;
674
675 cx.power = obj->integer.value;
676
677 (pr->power.count)++;
678 memcpy(&(pr->power.states[pr->power.count]), &cx, sizeof(cx));
679 }
680
681 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n", pr->power.count));
682
683 /* Validate number of power states discovered */
684 if (pr->power.count < 2)
685 status = -ENODEV;
686
687end:
688 acpi_os_free(buffer.pointer);
689
690 return_VALUE(status);
691}
692
693
694static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
695{
696 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c2");
697
698 if (!cx->address)
699 return_VOID;
700
701 /*
702 * C2 latency must be less than or equal to 100
703 * microseconds.
704 */
705 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
706 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
707 "latency too large [%d]\n",
708 cx->latency));
709 return_VOID;
710 }
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /*
713 * Otherwise we've met all of our C2 requirements.
714 * Normalize the C2 latency to expidite policy
715 */
716 cx->valid = 1;
717 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
718
719 return_VOID;
720}
721
722
723static void acpi_processor_power_verify_c3(
724 struct acpi_processor *pr,
725 struct acpi_processor_cx *cx)
726{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400727 static int bm_check_flag;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c3");
730
731 if (!cx->address)
732 return_VOID;
733
734 /*
735 * C3 latency must be less than or equal to 1000
736 * microseconds.
737 */
738 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
739 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
740 "latency too large [%d]\n",
741 cx->latency));
742 return_VOID;
743 }
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 /*
746 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
747 * DMA transfers are used by any ISA device to avoid livelock.
748 * Note that we could disable Type-F DMA (as recommended by
749 * the erratum), but this is known to disrupt certain ISA
750 * devices thus we take the conservative approach.
751 */
752 else if (errata.piix4.fdma) {
753 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
754 "C3 not supported on PIIX4 with Type-F DMA\n"));
755 return_VOID;
756 }
757
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400758 /* All the logic here assumes flags.bm_check is same across all CPUs */
759 if (!bm_check_flag) {
760 /* Determine whether bm_check is needed based on CPU */
761 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
762 bm_check_flag = pr->flags.bm_check;
763 } else {
764 pr->flags.bm_check = bm_check_flag;
765 }
766
767 if (pr->flags.bm_check) {
768 printk("Disabling BM access before entering C3\n");
769 /* bus mastering control is necessary */
770 if (!pr->flags.bm_control) {
771 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
772 "C3 support requires bus mastering control\n"));
773 return_VOID;
774 }
775 } else {
776 printk("Invalidating cache before entering C3\n");
777 /*
778 * WBINVD should be set in fadt, for C3 state to be
779 * supported on when bm_check is not required.
780 */
781 if (acpi_fadt.wb_invd != 1) {
782 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
783 "Cache invalidation should work properly"
784 " for C3 to be enabled on SMP systems\n"));
785 return_VOID;
786 }
787 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
788 0, ACPI_MTX_DO_NOT_LOCK);
789 }
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /*
792 * Otherwise we've met all of our C3 requirements.
793 * Normalize the C3 latency to expidite policy. Enable
794 * checking of bus mastering status (bm_check) so we can
795 * use this in our C3 policy
796 */
797 cx->valid = 1;
798 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 return_VOID;
801}
802
803
804static int acpi_processor_power_verify(struct acpi_processor *pr)
805{
806 unsigned int i;
807 unsigned int working = 0;
808
809 for (i=1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
810 struct acpi_processor_cx *cx = &pr->power.states[i];
811
812 switch (cx->type) {
813 case ACPI_STATE_C1:
814 cx->valid = 1;
815 break;
816
817 case ACPI_STATE_C2:
818 acpi_processor_power_verify_c2(cx);
819 break;
820
821 case ACPI_STATE_C3:
822 acpi_processor_power_verify_c3(pr, cx);
823 break;
824 }
825
826 if (cx->valid)
827 working++;
828 }
829
830 return (working);
831}
832
833static int acpi_processor_get_power_info (
834 struct acpi_processor *pr)
835{
836 unsigned int i;
837 int result;
838
839 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info");
840
841 /* NOTE: the idle thread may not be running while calling
842 * this function */
843
844 result = acpi_processor_get_power_info_cst(pr);
845 if ((result) || (acpi_processor_power_verify(pr) < 2)) {
846 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi4a716402005-07-29 15:51:36 -0400847 if ((result) || (acpi_processor_power_verify(pr) < 2))
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500848 result = acpi_processor_get_power_info_default_c1(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
851 /*
852 * Set Default Policy
853 * ------------------
854 * Now that we know which states are supported, set the default
855 * policy. Note that this policy can be changed dynamically
856 * (e.g. encourage deeper sleeps to conserve battery life when
857 * not on AC).
858 */
859 result = acpi_processor_set_power_policy(pr);
860 if (result)
861 return_VALUE(result);
862
863 /*
864 * if one state of type C2 or C3 is available, mark this
865 * CPU as being "idle manageable"
866 */
867 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500868 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 pr->power.count = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
874 return_VALUE(0);
875}
876
877int acpi_processor_cst_has_changed (struct acpi_processor *pr)
878{
879 int result = 0;
880
881 ACPI_FUNCTION_TRACE("acpi_processor_cst_has_changed");
882
883 if (!pr)
884 return_VALUE(-EINVAL);
885
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400886 if ( nocst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return_VALUE(-ENODEV);
888 }
889
890 if (!pr->flags.power_setup_done)
891 return_VALUE(-ENODEV);
892
893 /* Fall back to the default idle loop */
894 pm_idle = pm_idle_save;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -0700895 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 pr->flags.power = 0;
898 result = acpi_processor_get_power_info(pr);
899 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
900 pm_idle = acpi_processor_idle;
901
902 return_VALUE(result);
903}
904
905/* proc interface */
906
907static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
908{
909 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
910 unsigned int i;
911
912 ACPI_FUNCTION_TRACE("acpi_processor_power_seq_show");
913
914 if (!pr)
915 goto end;
916
917 seq_printf(seq, "active state: C%zd\n"
918 "max_cstate: C%d\n"
919 "bus master activity: %08x\n",
920 pr->power.state ? pr->power.state - pr->power.states : 0,
921 max_cstate,
922 (unsigned)pr->power.bm_activity);
923
924 seq_puts(seq, "states:\n");
925
926 for (i = 1; i <= pr->power.count; i++) {
927 seq_printf(seq, " %cC%d: ",
928 (&pr->power.states[i] == pr->power.state?'*':' '), i);
929
930 if (!pr->power.states[i].valid) {
931 seq_puts(seq, "<not supported>\n");
932 continue;
933 }
934
935 switch (pr->power.states[i].type) {
936 case ACPI_STATE_C1:
937 seq_printf(seq, "type[C1] ");
938 break;
939 case ACPI_STATE_C2:
940 seq_printf(seq, "type[C2] ");
941 break;
942 case ACPI_STATE_C3:
943 seq_printf(seq, "type[C3] ");
944 break;
945 default:
946 seq_printf(seq, "type[--] ");
947 break;
948 }
949
950 if (pr->power.states[i].promotion.state)
951 seq_printf(seq, "promotion[C%zd] ",
952 (pr->power.states[i].promotion.state -
953 pr->power.states));
954 else
955 seq_puts(seq, "promotion[--] ");
956
957 if (pr->power.states[i].demotion.state)
958 seq_printf(seq, "demotion[C%zd] ",
959 (pr->power.states[i].demotion.state -
960 pr->power.states));
961 else
962 seq_puts(seq, "demotion[--] ");
963
964 seq_printf(seq, "latency[%03d] usage[%08d]\n",
965 pr->power.states[i].latency,
966 pr->power.states[i].usage);
967 }
968
969end:
970 return_VALUE(0);
971}
972
973static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
974{
975 return single_open(file, acpi_processor_power_seq_show,
976 PDE(inode)->data);
977}
978
979static struct file_operations acpi_processor_power_fops = {
980 .open = acpi_processor_power_open_fs,
981 .read = seq_read,
982 .llseek = seq_lseek,
983 .release = single_release,
984};
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986int acpi_processor_power_init(struct acpi_processor *pr, struct acpi_device *device)
987{
988 acpi_status status = 0;
989 static int first_run = 0;
990 struct proc_dir_entry *entry = NULL;
991 unsigned int i;
992
993 ACPI_FUNCTION_TRACE("acpi_processor_power_init");
994
995 if (!first_run) {
996 dmi_check_system(processor_power_dmi_table);
997 if (max_cstate < ACPI_C_STATES_MAX)
998 printk(KERN_NOTICE "ACPI: processor limited to max C-state %d\n", max_cstate);
999 first_run++;
1000 }
1001
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001002 if (!pr)
1003 return_VALUE(-EINVAL);
1004
1005 if (acpi_fadt.cst_cnt && !nocst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 status = acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8);
1007 if (ACPI_FAILURE(status)) {
1008 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1009 "Notifying BIOS of _CST ability failed\n"));
1010 }
1011 }
1012
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001013 acpi_processor_power_init_pdc(&(pr->power), pr->id);
1014 acpi_processor_set_pdc(pr, pr->power.pdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 acpi_processor_get_power_info(pr);
1016
1017 /*
1018 * Install the idle handler if processor power management is supported.
1019 * Note that we use previously set idle handler will be used on
1020 * platforms that only support C1.
1021 */
1022 if ((pr->flags.power) && (!boot_option_idle_override)) {
1023 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1024 for (i = 1; i <= pr->power.count; i++)
1025 if (pr->power.states[i].valid)
1026 printk(" C%d[C%d]", i, pr->power.states[i].type);
1027 printk(")\n");
1028
1029 if (pr->id == 0) {
1030 pm_idle_save = pm_idle;
1031 pm_idle = acpi_processor_idle;
1032 }
1033 }
1034
1035 /* 'power' [R] */
1036 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1037 S_IRUGO, acpi_device_dir(device));
1038 if (!entry)
1039 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1040 "Unable to create '%s' fs entry\n",
1041 ACPI_PROCESSOR_FILE_POWER));
1042 else {
1043 entry->proc_fops = &acpi_processor_power_fops;
1044 entry->data = acpi_driver_data(device);
1045 entry->owner = THIS_MODULE;
1046 }
1047
1048 pr->flags.power_setup_done = 1;
1049
1050 return_VALUE(0);
1051}
1052
1053int acpi_processor_power_exit(struct acpi_processor *pr, struct acpi_device *device)
1054{
1055 ACPI_FUNCTION_TRACE("acpi_processor_power_exit");
1056
1057 pr->flags.power_setup_done = 0;
1058
1059 if (acpi_device_dir(device))
1060 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,acpi_device_dir(device));
1061
1062 /* Unregister the idle handler when processor #0 is removed. */
1063 if (pr->id == 0) {
1064 pm_idle = pm_idle_save;
1065
1066 /*
1067 * We are about to unload the current idle thread pm callback
1068 * (pm_idle), Wait for all processors to update cached/local
1069 * copies of pm_idle before proceeding.
1070 */
1071 cpu_idle_wait();
1072 }
1073
1074 return_VALUE(0);
1075}