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>
40 #include <linux/sched.h> /* need_resched() */
43 #include <asm/uaccess.h>
45 #include <acpi/acpi_bus.h>
46 #include <acpi/processor.h>
48 #define ACPI_PROCESSOR_COMPONENT 0x01000000
49 #define ACPI_PROCESSOR_CLASS "processor"
50 #define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
51 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
52 ACPI_MODULE_NAME("acpi_processor")
53 #define ACPI_PROCESSOR_FILE_POWER "power"
54 #define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
55 #define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
56 #define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
57 static void (*pm_idle_save) (void);
58 module_param(max_cstate, uint, 0644);
60 static unsigned int nocst = 0;
61 module_param(nocst, uint, 0000);
64 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
65 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
66 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
67 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
68 * reduce history for more aggressive entry into C3
70 static unsigned int bm_history =
71 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
72 module_param(bm_history, uint, 0644);
73 /* --------------------------------------------------------------------------
75 -------------------------------------------------------------------------- */
78 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
79 * For now disable this. Probably a bug somewhere else.
81 * To skip this limit, boot/load with a large max_cstate limit.
83 static int set_max_cstate(struct dmi_system_id *id)
85 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
88 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
89 " Override with \"processor.max_cstate=%d\"\n", id->ident,
90 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
92 max_cstate = (long)id->driver_data;
97 static struct dmi_system_id __initdata processor_power_dmi_table[] = {
98 {set_max_cstate, "IBM ThinkPad R40e", {
99 DMI_MATCH(DMI_BIOS_VENDOR,
101 DMI_MATCH(DMI_BIOS_VERSION,
104 {set_max_cstate, "Medion 41700", {
105 DMI_MATCH(DMI_BIOS_VENDOR,
106 "Phoenix Technologies LTD"),
107 DMI_MATCH(DMI_BIOS_VERSION,
108 "R01-A1J")}, (void *)1},
109 {set_max_cstate, "Clevo 5600D", {
110 DMI_MATCH(DMI_BIOS_VENDOR,
111 "Phoenix Technologies LTD"),
112 DMI_MATCH(DMI_BIOS_VERSION,
113 "SHE845M0.86C.0013.D.0302131307")},
118 static inline u32 ticks_elapsed(u32 t1, u32 t2)
122 else if (!acpi_fadt.tmr_val_ext)
123 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
125 return ((0xFFFFFFFF - t1) + t2);
129 acpi_processor_power_activate(struct acpi_processor *pr,
130 struct acpi_processor_cx *new)
132 struct acpi_processor_cx *old;
137 old = pr->power.state;
140 old->promotion.count = 0;
141 new->demotion.count = 0;
143 /* Cleanup from old state. */
147 /* Disable bus master reload */
148 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
149 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
150 ACPI_MTX_DO_NOT_LOCK);
155 /* Prepare to use new state. */
158 /* Enable bus master reload */
159 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
160 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1,
161 ACPI_MTX_DO_NOT_LOCK);
165 pr->power.state = new;
170 static void acpi_safe_halt(void)
172 int polling = test_thread_flag(TIF_POLLING_NRFLAG);
174 clear_thread_flag(TIF_POLLING_NRFLAG);
175 smp_mb__after_clear_bit();
180 set_thread_flag(TIF_POLLING_NRFLAG);
183 static atomic_t c3_cpu_count;
185 static void acpi_processor_idle(void)
187 struct acpi_processor *pr = NULL;
188 struct acpi_processor_cx *cx = NULL;
189 struct acpi_processor_cx *next_state = NULL;
193 pr = processors[smp_processor_id()];
198 * Interrupts must be disabled during bus mastering calculations and
199 * for C2/C3 transitions.
204 * Check whether we truly need to go idle, or should
207 if (unlikely(need_resched())) {
212 cx = pr->power.state;
224 * Check for bus mastering activity (if required), record, and check
227 if (pr->flags.bm_check) {
229 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
235 /* if we didn't get called, assume there was busmaster activity */
238 pr->power.bm_activity |= 0x1;
239 pr->power.bm_activity <<= 1;
242 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
243 &bm_status, ACPI_MTX_DO_NOT_LOCK);
245 pr->power.bm_activity++;
246 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
247 1, ACPI_MTX_DO_NOT_LOCK);
250 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
251 * the true state of bus mastering activity; forcing us to
252 * manually check the BMIDEA bit of each IDE channel.
254 else if (errata.piix4.bmisx) {
255 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
256 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
257 pr->power.bm_activity++;
260 pr->power.bm_check_timestamp = jiffies;
263 * Apply bus mastering demotion policy. Automatically demote
264 * to avoid a faulty transition. Note that the processor
265 * won't enter a low-power state during this call (to this
266 * funciton) but should upon the next.
268 * TBD: A better policy might be to fallback to the demotion
269 * state (use it for this quantum only) istead of
270 * demoting -- and rely on duration as our sole demotion
271 * qualification. This may, however, introduce DMA
272 * issues (e.g. floppy DMA transfer overrun/underrun).
274 if (pr->power.bm_activity & cx->demotion.threshold.bm) {
276 next_state = cx->demotion.state;
286 * Invoke the current Cx state to put the processor to sleep.
293 * Use the appropriate idle routine, the one that would
294 * be used without acpi C-states.
302 * TBD: Can't get time duration while in C1, as resumes
303 * go to an ISR rather than here. Need to instrument
304 * base interrupt handler.
306 sleep_ticks = 0xFFFFFFFF;
310 /* Get start time (ticks) */
311 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
314 /* Dummy op - must do something useless after P_LVL2 read */
315 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
316 /* Get end time (ticks) */
317 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
318 /* Re-enable interrupts */
320 /* Compute time (ticks) that we were actually asleep */
322 ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD;
327 if (pr->flags.bm_check) {
328 if (atomic_inc_return(&c3_cpu_count) ==
331 * All CPUs are trying to go to C3
332 * Disable bus master arbitration
334 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
335 ACPI_MTX_DO_NOT_LOCK);
338 /* SMP with no shared cache... Invalidate cache */
339 ACPI_FLUSH_CPU_CACHE();
342 /* Get start time (ticks) */
343 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
346 /* Dummy op - must do something useless after P_LVL3 read */
347 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
348 /* Get end time (ticks) */
349 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
350 if (pr->flags.bm_check) {
351 /* Enable bus master arbitration */
352 atomic_dec(&c3_cpu_count);
353 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
354 ACPI_MTX_DO_NOT_LOCK);
357 /* Re-enable interrupts */
359 /* Compute time (ticks) that we were actually asleep */
361 ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD;
369 next_state = pr->power.state;
374 * Track the number of longs (time asleep is greater than threshold)
375 * and promote when the count threshold is reached. Note that bus
376 * mastering activity may prevent promotions.
377 * Do not promote above max_cstate.
379 if (cx->promotion.state &&
380 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
381 if (sleep_ticks > cx->promotion.threshold.ticks) {
382 cx->promotion.count++;
383 cx->demotion.count = 0;
384 if (cx->promotion.count >=
385 cx->promotion.threshold.count) {
386 if (pr->flags.bm_check) {
388 (pr->power.bm_activity & cx->
389 promotion.threshold.bm)) {
395 next_state = cx->promotion.state;
405 * Track the number of shorts (time asleep is less than time threshold)
406 * and demote when the usage threshold is reached.
408 if (cx->demotion.state) {
409 if (sleep_ticks < cx->demotion.threshold.ticks) {
410 cx->demotion.count++;
411 cx->promotion.count = 0;
412 if (cx->demotion.count >= cx->demotion.threshold.count) {
413 next_state = cx->demotion.state;
421 * Demote if current state exceeds max_cstate
423 if ((pr->power.state - pr->power.states) > max_cstate) {
424 if (cx->demotion.state)
425 next_state = cx->demotion.state;
431 * If we're going to start using a new Cx state we must clean up
432 * from the previous and prepare to use the new.
434 if (next_state != pr->power.state)
435 acpi_processor_power_activate(pr, next_state);
438 static int acpi_processor_set_power_policy(struct acpi_processor *pr)
441 unsigned int state_is_set = 0;
442 struct acpi_processor_cx *lower = NULL;
443 struct acpi_processor_cx *higher = NULL;
444 struct acpi_processor_cx *cx;
446 ACPI_FUNCTION_TRACE("acpi_processor_set_power_policy");
449 return_VALUE(-EINVAL);
452 * This function sets the default Cx state policy (OS idle handler).
453 * Our scheme is to promote quickly to C2 but more conservatively
454 * to C3. We're favoring C2 for its characteristics of low latency
455 * (quick response), good power savings, and ability to allow bus
456 * mastering activity. Note that the Cx state policy is completely
457 * customizable and can be altered dynamically.
461 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
462 cx = &pr->power.states[i];
467 pr->power.state = cx;
473 return_VALUE(-ENODEV);
476 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
477 cx = &pr->power.states[i];
482 cx->demotion.state = lower;
483 cx->demotion.threshold.ticks = cx->latency_ticks;
484 cx->demotion.threshold.count = 1;
485 if (cx->type == ACPI_STATE_C3)
486 cx->demotion.threshold.bm = bm_history;
493 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
494 cx = &pr->power.states[i];
499 cx->promotion.state = higher;
500 cx->promotion.threshold.ticks = cx->latency_ticks;
501 if (cx->type >= ACPI_STATE_C2)
502 cx->promotion.threshold.count = 4;
504 cx->promotion.threshold.count = 10;
505 if (higher->type == ACPI_STATE_C3)
506 cx->promotion.threshold.bm = bm_history;
515 static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
519 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_fadt");
522 return_VALUE(-EINVAL);
525 return_VALUE(-ENODEV);
527 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
528 memset(pr->power.states, 0, sizeof(struct acpi_processor_cx));
530 /* if info is obtained from pblk/fadt, type equals state */
531 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
532 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
533 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
535 /* the C0 state only exists as a filler in our array,
536 * and all processors need to support C1 */
537 pr->power.states[ACPI_STATE_C0].valid = 1;
538 pr->power.states[ACPI_STATE_C1].valid = 1;
540 /* determine C2 and C3 address from pblk */
541 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
542 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
544 /* determine latencies from FADT */
545 pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat;
546 pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat;
548 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
549 "lvl2[0x%08x] lvl3[0x%08x]\n",
550 pr->power.states[ACPI_STATE_C2].address,
551 pr->power.states[ACPI_STATE_C3].address));
556 static int acpi_processor_get_power_info_default_c1(struct acpi_processor *pr)
560 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_default_c1");
562 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
563 memset(&(pr->power.states[i]), 0,
564 sizeof(struct acpi_processor_cx));
566 /* if info is obtained from pblk/fadt, type equals state */
567 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
568 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
569 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
571 /* the C0 state only exists as a filler in our array,
572 * and all processors need to support C1 */
573 pr->power.states[ACPI_STATE_C0].valid = 1;
574 pr->power.states[ACPI_STATE_C1].valid = 1;
579 static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
581 acpi_status status = 0;
584 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
585 union acpi_object *cst;
587 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_cst");
590 return_VALUE(-ENODEV);
593 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
594 memset(&(pr->power.states[i]), 0,
595 sizeof(struct acpi_processor_cx));
597 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
598 if (ACPI_FAILURE(status)) {
599 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
600 return_VALUE(-ENODEV);
603 cst = (union acpi_object *)buffer.pointer;
605 /* There must be at least 2 elements */
606 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
607 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
608 "not enough elements in _CST\n"));
613 count = cst->package.elements[0].integer.value;
615 /* Validate number of power states. */
616 if (count < 1 || count != cst->package.count - 1) {
617 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
618 "count given by _CST is not valid\n"));
623 /* We support up to ACPI_PROCESSOR_MAX_POWER. */
624 if (count > ACPI_PROCESSOR_MAX_POWER) {
626 "Limiting number of power states to max (%d)\n",
627 ACPI_PROCESSOR_MAX_POWER);
629 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
630 count = ACPI_PROCESSOR_MAX_POWER;
633 /* Tell driver that at least _CST is supported. */
634 pr->flags.has_cst = 1;
636 for (i = 1; i <= count; i++) {
637 union acpi_object *element;
638 union acpi_object *obj;
639 struct acpi_power_register *reg;
640 struct acpi_processor_cx cx;
642 memset(&cx, 0, sizeof(cx));
644 element = (union acpi_object *)&(cst->package.elements[i]);
645 if (element->type != ACPI_TYPE_PACKAGE)
648 if (element->package.count != 4)
651 obj = (union acpi_object *)&(element->package.elements[0]);
653 if (obj->type != ACPI_TYPE_BUFFER)
656 reg = (struct acpi_power_register *)obj->buffer.pointer;
658 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
659 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
662 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
665 /* There should be an easy way to extract an integer... */
666 obj = (union acpi_object *)&(element->package.elements[1]);
667 if (obj->type != ACPI_TYPE_INTEGER)
670 cx.type = obj->integer.value;
672 if ((cx.type != ACPI_STATE_C1) &&
673 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
676 if ((cx.type < ACPI_STATE_C1) || (cx.type > ACPI_STATE_C3))
679 obj = (union acpi_object *)&(element->package.elements[2]);
680 if (obj->type != ACPI_TYPE_INTEGER)
683 cx.latency = obj->integer.value;
685 obj = (union acpi_object *)&(element->package.elements[3]);
686 if (obj->type != ACPI_TYPE_INTEGER)
689 cx.power = obj->integer.value;
692 memcpy(&(pr->power.states[pr->power.count]), &cx, sizeof(cx));
695 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
698 /* Validate number of power states discovered */
699 if (pr->power.count < 2)
703 acpi_os_free(buffer.pointer);
705 return_VALUE(status);
708 static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
710 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c2");
716 * C2 latency must be less than or equal to 100
719 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
720 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
721 "latency too large [%d]\n", cx->latency));
726 * Otherwise we've met all of our C2 requirements.
727 * Normalize the C2 latency to expidite policy
730 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
735 static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
736 struct acpi_processor_cx *cx)
738 static int bm_check_flag;
740 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c3");
746 * C3 latency must be less than or equal to 1000
749 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
750 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
751 "latency too large [%d]\n", cx->latency));
756 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
757 * DMA transfers are used by any ISA device to avoid livelock.
758 * Note that we could disable Type-F DMA (as recommended by
759 * the erratum), but this is known to disrupt certain ISA
760 * devices thus we take the conservative approach.
762 else if (errata.piix4.fdma) {
763 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
764 "C3 not supported on PIIX4 with Type-F DMA\n"));
768 /* All the logic here assumes flags.bm_check is same across all CPUs */
769 if (!bm_check_flag) {
770 /* Determine whether bm_check is needed based on CPU */
771 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
772 bm_check_flag = pr->flags.bm_check;
774 pr->flags.bm_check = bm_check_flag;
777 if (pr->flags.bm_check) {
778 /* bus mastering control is necessary */
779 if (!pr->flags.bm_control) {
780 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
781 "C3 support requires bus mastering control\n"));
786 * WBINVD should be set in fadt, for C3 state to be
787 * supported on when bm_check is not required.
789 if (acpi_fadt.wb_invd != 1) {
790 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
791 "Cache invalidation should work properly"
792 " for C3 to be enabled on SMP systems\n"));
795 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
796 0, ACPI_MTX_DO_NOT_LOCK);
800 * Otherwise we've met all of our C3 requirements.
801 * Normalize the C3 latency to expidite policy. Enable
802 * checking of bus mastering status (bm_check) so we can
803 * use this in our C3 policy
806 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
811 static int acpi_processor_power_verify(struct acpi_processor *pr)
814 unsigned int working = 0;
816 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
817 struct acpi_processor_cx *cx = &pr->power.states[i];
825 acpi_processor_power_verify_c2(cx);
829 acpi_processor_power_verify_c3(pr, cx);
840 static int acpi_processor_get_power_info(struct acpi_processor *pr)
845 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info");
847 /* NOTE: the idle thread may not be running while calling
850 result = acpi_processor_get_power_info_cst(pr);
851 if ((result) || (acpi_processor_power_verify(pr) < 2)) {
852 result = acpi_processor_get_power_info_fadt(pr);
853 if ((result) || (acpi_processor_power_verify(pr) < 2))
854 result = acpi_processor_get_power_info_default_c1(pr);
860 * Now that we know which states are supported, set the default
861 * policy. Note that this policy can be changed dynamically
862 * (e.g. encourage deeper sleeps to conserve battery life when
865 result = acpi_processor_set_power_policy(pr);
867 return_VALUE(result);
870 * if one state of type C2 or C3 is available, mark this
871 * CPU as being "idle manageable"
873 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
874 if (pr->power.states[i].valid) {
883 int acpi_processor_cst_has_changed(struct acpi_processor *pr)
887 ACPI_FUNCTION_TRACE("acpi_processor_cst_has_changed");
890 return_VALUE(-EINVAL);
893 return_VALUE(-ENODEV);
896 if (!pr->flags.power_setup_done)
897 return_VALUE(-ENODEV);
899 /* Fall back to the default idle loop */
900 pm_idle = pm_idle_save;
901 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
904 result = acpi_processor_get_power_info(pr);
905 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
906 pm_idle = acpi_processor_idle;
908 return_VALUE(result);
913 static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
915 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
918 ACPI_FUNCTION_TRACE("acpi_processor_power_seq_show");
923 seq_printf(seq, "active state: C%zd\n"
925 "bus master activity: %08x\n",
926 pr->power.state ? pr->power.state - pr->power.states : 0,
927 max_cstate, (unsigned)pr->power.bm_activity);
929 seq_puts(seq, "states:\n");
931 for (i = 1; i <= pr->power.count; i++) {
932 seq_printf(seq, " %cC%d: ",
933 (&pr->power.states[i] ==
934 pr->power.state ? '*' : ' '), i);
936 if (!pr->power.states[i].valid) {
937 seq_puts(seq, "<not supported>\n");
941 switch (pr->power.states[i].type) {
943 seq_printf(seq, "type[C1] ");
946 seq_printf(seq, "type[C2] ");
949 seq_printf(seq, "type[C3] ");
952 seq_printf(seq, "type[--] ");
956 if (pr->power.states[i].promotion.state)
957 seq_printf(seq, "promotion[C%zd] ",
958 (pr->power.states[i].promotion.state -
961 seq_puts(seq, "promotion[--] ");
963 if (pr->power.states[i].demotion.state)
964 seq_printf(seq, "demotion[C%zd] ",
965 (pr->power.states[i].demotion.state -
968 seq_puts(seq, "demotion[--] ");
970 seq_printf(seq, "latency[%03d] usage[%08d]\n",
971 pr->power.states[i].latency,
972 pr->power.states[i].usage);
979 static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
981 return single_open(file, acpi_processor_power_seq_show,
985 static struct file_operations acpi_processor_power_fops = {
986 .open = acpi_processor_power_open_fs,
989 .release = single_release,
992 int acpi_processor_power_init(struct acpi_processor *pr,
993 struct acpi_device *device)
995 acpi_status status = 0;
996 static int first_run = 0;
997 struct proc_dir_entry *entry = NULL;
1000 ACPI_FUNCTION_TRACE("acpi_processor_power_init");
1003 dmi_check_system(processor_power_dmi_table);
1004 if (max_cstate < ACPI_C_STATES_MAX)
1006 "ACPI: processor limited to max C-state %d\n",
1012 return_VALUE(-EINVAL);
1014 if (acpi_fadt.cst_cnt && !nocst) {
1016 acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8);
1017 if (ACPI_FAILURE(status)) {
1018 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1019 "Notifying BIOS of _CST ability failed\n"));
1023 acpi_processor_power_init_pdc(&(pr->power), pr->id);
1024 acpi_processor_set_pdc(pr, pr->power.pdc);
1025 acpi_processor_get_power_info(pr);
1028 * Install the idle handler if processor power management is supported.
1029 * Note that we use previously set idle handler will be used on
1030 * platforms that only support C1.
1032 if ((pr->flags.power) && (!boot_option_idle_override)) {
1033 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1034 for (i = 1; i <= pr->power.count; i++)
1035 if (pr->power.states[i].valid)
1036 printk(" C%d[C%d]", i,
1037 pr->power.states[i].type);
1041 pm_idle_save = pm_idle;
1042 pm_idle = acpi_processor_idle;
1047 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1048 S_IRUGO, acpi_device_dir(device));
1050 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1051 "Unable to create '%s' fs entry\n",
1052 ACPI_PROCESSOR_FILE_POWER));
1054 entry->proc_fops = &acpi_processor_power_fops;
1055 entry->data = acpi_driver_data(device);
1056 entry->owner = THIS_MODULE;
1059 pr->flags.power_setup_done = 1;
1064 int acpi_processor_power_exit(struct acpi_processor *pr,
1065 struct acpi_device *device)
1067 ACPI_FUNCTION_TRACE("acpi_processor_power_exit");
1069 pr->flags.power_setup_done = 0;
1071 if (acpi_device_dir(device))
1072 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1073 acpi_device_dir(device));
1075 /* Unregister the idle handler when processor #0 is removed. */
1077 pm_idle = pm_idle_save;
1080 * We are about to unload the current idle thread pm callback
1081 * (pm_idle), Wait for all processors to update cached/local
1082 * copies of pm_idle before proceeding.