[ACPI] Fix memset arguments in acpi processor_idle.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / processor_idle.c
blob42b34f5df98b94da8598aab89e2d55e5e4649bb4
1 /*
2 * processor_idle - idle state submodule to 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
9 * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
10 * - Added support for C3 on SMP
12 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
28 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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>
41 #include <asm/io.h>
42 #include <asm/uaccess.h>
44 #include <acpi/acpi_bus.h>
45 #include <acpi/processor.h>
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
51 ACPI_MODULE_NAME ("acpi_processor")
53 #define ACPI_PROCESSOR_FILE_POWER "power"
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) */
59 static void (*pm_idle_save)(void);
60 module_param(max_cstate, uint, 0644);
62 static unsigned int nocst = 0;
63 module_param(nocst, uint, 0000);
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
72 static unsigned int bm_history = (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
73 module_param(bm_history, uint, 0644);
74 /* --------------------------------------------------------------------------
75 Power Management
76 -------------------------------------------------------------------------- */
79 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
80 * For now disable this. Probably a bug somewhere else.
82 * To skip this limit, boot/load with a large max_cstate limit.
84 static int no_c2c3(struct dmi_system_id *id)
86 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
87 return 0;
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);
93 max_cstate = 1;
95 return 0;
101 static 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") }},
112 static inline u32
113 ticks_elapsed (
114 u32 t1,
115 u32 t2)
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);
126 static void
127 acpi_processor_power_activate (
128 struct acpi_processor *pr,
129 struct acpi_processor_cx *new)
131 struct acpi_processor_cx *old;
133 if (!pr || !new)
134 return;
136 old = pr->power.state;
138 if (old)
139 old->promotion.count = 0;
140 new->demotion.count = 0;
142 /* Cleanup from old state. */
143 if (old) {
144 switch (old->type) {
145 case ACPI_STATE_C3:
146 /* Disable bus master reload */
147 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
148 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0, ACPI_MTX_DO_NOT_LOCK);
149 break;
153 /* Prepare to use new state. */
154 switch (new->type) {
155 case ACPI_STATE_C3:
156 /* Enable bus master reload */
157 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
158 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1, ACPI_MTX_DO_NOT_LOCK);
159 break;
162 pr->power.state = new;
164 return;
168 static atomic_t c3_cpu_count;
171 static void acpi_processor_idle (void)
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;
179 pr = processors[_smp_processor_id()];
180 if (!pr)
181 return;
184 * Interrupts must be disabled during bus mastering calculations and
185 * for C2/C3 transitions.
187 local_irq_disable();
190 * Check whether we truly need to go idle, or should
191 * reschedule:
193 if (unlikely(need_resched())) {
194 local_irq_enable();
195 return;
198 cx = pr->power.state;
199 if (!cx)
200 goto easy_out;
203 * Check BM Activity
204 * -----------------
205 * Check for bus mastering activity (if required), record, and check
206 * for demotion.
208 if (pr->flags.bm_check) {
209 u32 bm_status = 0;
210 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
212 if (diff > 32)
213 diff = 32;
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;
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);
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.
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++;
241 pr->power.bm_check_timestamp = jiffies;
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.
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).
255 if (pr->power.bm_activity & cx->demotion.threshold.bm) {
256 local_irq_enable();
257 next_state = cx->demotion.state;
258 goto end;
262 cx->usage++;
265 * Sleep:
266 * ------
267 * Invoke the current Cx state to put the processor to sleep.
269 switch (cx->type) {
271 case ACPI_STATE_C1:
273 * Invoke C1.
274 * Use the appropriate idle routine, the one that would
275 * be used without acpi C-states.
277 if (pm_idle_save)
278 pm_idle_save();
279 else
280 safe_halt();
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.
286 sleep_ticks = 0xFFFFFFFF;
287 break;
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;
304 case ACPI_STATE_C3:
306 if (pr->flags.bm_check) {
307 if (atomic_inc_return(&c3_cpu_count) ==
308 num_online_cpus()) {
310 * All CPUs are trying to go to C3
311 * Disable bus master arbitration
313 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
314 ACPI_MTX_DO_NOT_LOCK);
316 } else {
317 /* SMP with no shared cache... Invalidate cache */
318 ACPI_FLUSH_CPU_CACHE();
321 /* 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);
329 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);
335 /* 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;
341 default:
342 local_irq_enable();
343 return;
346 next_state = pr->power.state;
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.
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;
368 else {
369 next_state = cx->promotion.state;
370 goto end;
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.
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;
393 end:
395 * Demote if current state exceeds max_cstate
397 if ((pr->power.state - pr->power.states) > max_cstate) {
398 if (cx->demotion.state)
399 next_state = cx->demotion.state;
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.
408 if (next_state != pr->power.state)
409 acpi_processor_power_activate(pr, next_state);
411 return;
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;
423 static int
424 acpi_processor_set_power_policy (
425 struct acpi_processor *pr)
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;
433 ACPI_FUNCTION_TRACE("acpi_processor_set_power_policy");
435 if (!pr)
436 return_VALUE(-EINVAL);
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.
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;
453 if (!state_is_set)
454 pr->power.state = cx;
455 state_is_set++;
456 break;
459 if (!state_is_set)
460 return_VALUE(-ENODEV);
462 /* demotion */
463 for (i=1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
464 cx = &pr->power.states[i];
465 if (!cx->valid)
466 continue;
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;
476 lower = cx;
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;
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;
496 higher = cx;
499 return_VALUE(0);
503 static int acpi_processor_get_power_info_fadt (struct acpi_processor *pr)
505 int i;
507 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_fadt");
509 if (!pr)
510 return_VALUE(-EINVAL);
512 if (!pr->pblk)
513 return_VALUE(-ENODEV);
515 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
516 memset(pr->power.states, 0, sizeof(struct acpi_processor_cx));
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;
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;
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;
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;
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));
541 return_VALUE(0);
545 static int acpi_processor_get_power_info_default_c1 (struct acpi_processor *pr)
547 int i;
549 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_default_c1");
551 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
552 memset(&(pr->power.states[i]), 0,
553 sizeof(struct acpi_processor_cx));
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;
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;
565 return_VALUE(0);
569 static int acpi_processor_get_power_info_cst (struct acpi_processor *pr)
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;
577 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_cst");
579 if (nocst)
580 return_VALUE(-ENODEV);
582 pr->power.count = 0;
583 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
584 memset(&(pr->power.states[i]), 0,
585 sizeof(struct acpi_processor_cx));
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);
593 cst = (union acpi_object *) buffer.pointer;
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;
602 count = cst->package.elements[0].integer.value;
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;
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;
618 /* Tell driver that at least _CST is supported. */
619 pr->flags.has_cst = 1;
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;
627 memset(&cx, 0, sizeof(cx));
629 element = (union acpi_object *) &(cst->package.elements[i]);
630 if (element->type != ACPI_TYPE_PACKAGE)
631 continue;
633 if (element->package.count != 4)
634 continue;
636 obj = (union acpi_object *) &(element->package.elements[0]);
638 if (obj->type != ACPI_TYPE_BUFFER)
639 continue;
641 reg = (struct acpi_power_register *) obj->buffer.pointer;
643 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
644 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
645 continue;
647 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
648 0 : reg->address;
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;
655 cx.type = obj->integer.value;
657 if ((cx.type != ACPI_STATE_C1) &&
658 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
659 continue;
661 if ((cx.type < ACPI_STATE_C1) ||
662 (cx.type > ACPI_STATE_C3))
663 continue;
665 obj = (union acpi_object *) &(element->package.elements[2]);
666 if (obj->type != ACPI_TYPE_INTEGER)
667 continue;
669 cx.latency = obj->integer.value;
671 obj = (union acpi_object *) &(element->package.elements[3]);
672 if (obj->type != ACPI_TYPE_INTEGER)
673 continue;
675 cx.power = obj->integer.value;
677 (pr->power.count)++;
678 memcpy(&(pr->power.states[pr->power.count]), &cx, sizeof(cx));
681 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n", pr->power.count));
683 /* Validate number of power states discovered */
684 if (pr->power.count < 2)
685 status = -ENODEV;
687 end:
688 acpi_os_free(buffer.pointer);
690 return_VALUE(status);
694 static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
696 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c2");
698 if (!cx->address)
699 return_VOID;
702 * C2 latency must be less than or equal to 100
703 * microseconds.
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;
713 * Otherwise we've met all of our C2 requirements.
714 * Normalize the C2 latency to expidite policy
716 cx->valid = 1;
717 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
719 return_VOID;
723 static void acpi_processor_power_verify_c3(
724 struct acpi_processor *pr,
725 struct acpi_processor_cx *cx)
727 static int bm_check_flag;
729 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c3");
731 if (!cx->address)
732 return_VOID;
735 * C3 latency must be less than or equal to 1000
736 * microseconds.
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;
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.
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;
758 /* 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;
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;
775 } else {
776 printk("Invalidating cache before entering C3\n");
778 * WBINVD should be set in fadt, for C3 state to be
779 * supported on when bm_check is not required.
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;
787 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
788 0, ACPI_MTX_DO_NOT_LOCK);
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
797 cx->valid = 1;
798 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
800 return_VOID;
804 static int acpi_processor_power_verify(struct acpi_processor *pr)
806 unsigned int i;
807 unsigned int working = 0;
809 for (i=1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
810 struct acpi_processor_cx *cx = &pr->power.states[i];
812 switch (cx->type) {
813 case ACPI_STATE_C1:
814 cx->valid = 1;
815 break;
817 case ACPI_STATE_C2:
818 acpi_processor_power_verify_c2(cx);
819 break;
821 case ACPI_STATE_C3:
822 acpi_processor_power_verify_c3(pr, cx);
823 break;
826 if (cx->valid)
827 working++;
830 return (working);
833 static int acpi_processor_get_power_info (
834 struct acpi_processor *pr)
836 unsigned int i;
837 int result;
839 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info");
841 /* NOTE: the idle thread may not be running while calling
842 * this function */
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);
847 if ((result) || (acpi_processor_power_verify(pr) < 2))
848 result = acpi_processor_get_power_info_default_c1(pr);
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).
859 result = acpi_processor_set_power_policy(pr);
860 if (result)
861 return_VALUE(result);
864 * if one state of type C2 or C3 is available, mark this
865 * CPU as being "idle manageable"
867 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
868 if (pr->power.states[i].valid) {
869 pr->power.count = i;
870 pr->flags.power = 1;
874 return_VALUE(0);
877 int acpi_processor_cst_has_changed (struct acpi_processor *pr)
879 int result = 0;
881 ACPI_FUNCTION_TRACE("acpi_processor_cst_has_changed");
883 if (!pr)
884 return_VALUE(-EINVAL);
886 if ( nocst) {
887 return_VALUE(-ENODEV);
890 if (!pr->flags.power_setup_done)
891 return_VALUE(-ENODEV);
893 /* Fall back to the default idle loop */
894 pm_idle = pm_idle_save;
895 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
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;
902 return_VALUE(result);
905 /* proc interface */
907 static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
909 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
910 unsigned int i;
912 ACPI_FUNCTION_TRACE("acpi_processor_power_seq_show");
914 if (!pr)
915 goto end;
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);
924 seq_puts(seq, "states:\n");
926 for (i = 1; i <= pr->power.count; i++) {
927 seq_printf(seq, " %cC%d: ",
928 (&pr->power.states[i] == pr->power.state?'*':' '), i);
930 if (!pr->power.states[i].valid) {
931 seq_puts(seq, "<not supported>\n");
932 continue;
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;
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[--] ");
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[--] ");
964 seq_printf(seq, "latency[%03d] usage[%08d]\n",
965 pr->power.states[i].latency,
966 pr->power.states[i].usage);
969 end:
970 return_VALUE(0);
973 static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
975 return single_open(file, acpi_processor_power_seq_show,
976 PDE(inode)->data);
979 static 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,
986 int acpi_processor_power_init(struct acpi_processor *pr, struct acpi_device *device)
988 acpi_status status = 0;
989 static int first_run = 0;
990 struct proc_dir_entry *entry = NULL;
991 unsigned int i;
993 ACPI_FUNCTION_TRACE("acpi_processor_power_init");
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++;
1002 if (!pr)
1003 return_VALUE(-EINVAL);
1005 if (acpi_fadt.cst_cnt && !nocst) {
1006 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"));
1013 acpi_processor_power_init_pdc(&(pr->power), pr->id);
1014 acpi_processor_set_pdc(pr, pr->power.pdc);
1015 acpi_processor_get_power_info(pr);
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.
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");
1029 if (pr->id == 0) {
1030 pm_idle_save = pm_idle;
1031 pm_idle = acpi_processor_idle;
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;
1048 pr->flags.power_setup_done = 1;
1050 return_VALUE(0);
1053 int acpi_processor_power_exit(struct acpi_processor *pr, struct acpi_device *device)
1055 ACPI_FUNCTION_TRACE("acpi_processor_power_exit");
1057 pr->flags.power_setup_done = 0;
1059 if (acpi_device_dir(device))
1060 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,acpi_device_dir(device));
1062 /* Unregister the idle handler when processor #0 is removed. */
1063 if (pr->id == 0) {
1064 pm_idle = pm_idle_save;
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.
1071 cpu_idle_wait();
1074 return_VALUE(0);