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, 2005 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() */
41 #include <linux/latency.h>
42 #include <linux/clockchips.h>
43 #include <linux/cpuidle.h>
46 * Include the apic definitions for x86 to have the APIC timer related defines
47 * available also for UP (on SMP it gets magically included via linux/smp.h).
48 * asm/acpi.h is not an option, as it would require more include magic. Also
49 * creating an empty asm-ia64/apic.h would just trade pest vs. cholera.
56 #include <asm/uaccess.h>
58 #include <acpi/acpi_bus.h>
59 #include <acpi/processor.h>
61 #define ACPI_PROCESSOR_COMPONENT 0x01000000
62 #define ACPI_PROCESSOR_CLASS "processor"
63 #define _COMPONENT ACPI_PROCESSOR_COMPONENT
64 ACPI_MODULE_NAME("processor_idle");
65 #define ACPI_PROCESSOR_FILE_POWER "power"
66 #define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
67 #define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY)
68 #ifndef CONFIG_CPU_IDLE
69 #define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
70 #define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
71 static void (*pm_idle_save
) (void) __read_mostly
;
73 #define C2_OVERHEAD 1 /* 1us */
74 #define C3_OVERHEAD 1 /* 1us */
76 #define PM_TIMER_TICKS_TO_US(p) (((p) * 1000)/(PM_TIMER_FREQUENCY/1000))
78 static unsigned int max_cstate __read_mostly
= ACPI_PROCESSOR_MAX_POWER
;
79 #ifdef CONFIG_CPU_IDLE
80 module_param(max_cstate
, uint
, 0000);
82 module_param(max_cstate
, uint
, 0644);
84 static unsigned int nocst __read_mostly
;
85 module_param(nocst
, uint
, 0000);
87 #ifndef CONFIG_CPU_IDLE
89 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
90 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
91 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
92 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
93 * reduce history for more aggressive entry into C3
95 static unsigned int bm_history __read_mostly
=
96 (HZ
>= 800 ? 0xFFFFFFFF : ((1U << (HZ
/ 25)) - 1));
97 module_param(bm_history
, uint
, 0644);
99 static int acpi_processor_set_power_policy(struct acpi_processor
*pr
);
104 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
105 * For now disable this. Probably a bug somewhere else.
107 * To skip this limit, boot/load with a large max_cstate limit.
109 static int set_max_cstate(const struct dmi_system_id
*id
)
111 if (max_cstate
> ACPI_PROCESSOR_MAX_POWER
)
114 printk(KERN_NOTICE PREFIX
"%s detected - limiting to C%ld max_cstate."
115 " Override with \"processor.max_cstate=%d\"\n", id
->ident
,
116 (long)id
->driver_data
, ACPI_PROCESSOR_MAX_POWER
+ 1);
118 max_cstate
= (long)id
->driver_data
;
123 /* Actually this shouldn't be __cpuinitdata, would be better to fix the
124 callers to only run once -AK */
125 static struct dmi_system_id __cpuinitdata processor_power_dmi_table
[] = {
126 { set_max_cstate
, "IBM ThinkPad R40e", {
127 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
128 DMI_MATCH(DMI_BIOS_VERSION
,"1SET70WW")}, (void *)1},
129 { set_max_cstate
, "IBM ThinkPad R40e", {
130 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
131 DMI_MATCH(DMI_BIOS_VERSION
,"1SET60WW")}, (void *)1},
132 { set_max_cstate
, "IBM ThinkPad R40e", {
133 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
134 DMI_MATCH(DMI_BIOS_VERSION
,"1SET43WW") }, (void*)1},
135 { set_max_cstate
, "IBM ThinkPad R40e", {
136 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
137 DMI_MATCH(DMI_BIOS_VERSION
,"1SET45WW") }, (void*)1},
138 { set_max_cstate
, "IBM ThinkPad R40e", {
139 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
140 DMI_MATCH(DMI_BIOS_VERSION
,"1SET47WW") }, (void*)1},
141 { set_max_cstate
, "IBM ThinkPad R40e", {
142 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
143 DMI_MATCH(DMI_BIOS_VERSION
,"1SET50WW") }, (void*)1},
144 { set_max_cstate
, "IBM ThinkPad R40e", {
145 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
146 DMI_MATCH(DMI_BIOS_VERSION
,"1SET52WW") }, (void*)1},
147 { set_max_cstate
, "IBM ThinkPad R40e", {
148 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
149 DMI_MATCH(DMI_BIOS_VERSION
,"1SET55WW") }, (void*)1},
150 { set_max_cstate
, "IBM ThinkPad R40e", {
151 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
152 DMI_MATCH(DMI_BIOS_VERSION
,"1SET56WW") }, (void*)1},
153 { set_max_cstate
, "IBM ThinkPad R40e", {
154 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
155 DMI_MATCH(DMI_BIOS_VERSION
,"1SET59WW") }, (void*)1},
156 { set_max_cstate
, "IBM ThinkPad R40e", {
157 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
158 DMI_MATCH(DMI_BIOS_VERSION
,"1SET60WW") }, (void*)1},
159 { set_max_cstate
, "IBM ThinkPad R40e", {
160 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
161 DMI_MATCH(DMI_BIOS_VERSION
,"1SET61WW") }, (void*)1},
162 { set_max_cstate
, "IBM ThinkPad R40e", {
163 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
164 DMI_MATCH(DMI_BIOS_VERSION
,"1SET62WW") }, (void*)1},
165 { set_max_cstate
, "IBM ThinkPad R40e", {
166 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
167 DMI_MATCH(DMI_BIOS_VERSION
,"1SET64WW") }, (void*)1},
168 { set_max_cstate
, "IBM ThinkPad R40e", {
169 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
170 DMI_MATCH(DMI_BIOS_VERSION
,"1SET65WW") }, (void*)1},
171 { set_max_cstate
, "IBM ThinkPad R40e", {
172 DMI_MATCH(DMI_BIOS_VENDOR
,"IBM"),
173 DMI_MATCH(DMI_BIOS_VERSION
,"1SET68WW") }, (void*)1},
174 { set_max_cstate
, "Medion 41700", {
175 DMI_MATCH(DMI_BIOS_VENDOR
,"Phoenix Technologies LTD"),
176 DMI_MATCH(DMI_BIOS_VERSION
,"R01-A1J")}, (void *)1},
177 { set_max_cstate
, "Clevo 5600D", {
178 DMI_MATCH(DMI_BIOS_VENDOR
,"Phoenix Technologies LTD"),
179 DMI_MATCH(DMI_BIOS_VERSION
,"SHE845M0.86C.0013.D.0302131307")},
184 static inline u32
ticks_elapsed(u32 t1
, u32 t2
)
188 else if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
))
189 return (((0x00FFFFFF - t1
) + t2
) & 0x00FFFFFF);
191 return ((0xFFFFFFFF - t1
) + t2
);
194 static inline u32
ticks_elapsed_in_us(u32 t1
, u32 t2
)
197 return PM_TIMER_TICKS_TO_US(t2
- t1
);
198 else if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_32BIT_TIMER
))
199 return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1
) + t2
) & 0x00FFFFFF);
201 return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1
) + t2
);
204 static void acpi_safe_halt(void)
206 current_thread_info()->status
&= ~TS_POLLING
;
208 * TS_POLLING-cleared state must be visible before we
214 current_thread_info()->status
|= TS_POLLING
;
217 #ifndef CONFIG_CPU_IDLE
220 acpi_processor_power_activate(struct acpi_processor
*pr
,
221 struct acpi_processor_cx
*new)
223 struct acpi_processor_cx
*old
;
228 old
= pr
->power
.state
;
231 old
->promotion
.count
= 0;
232 new->demotion
.count
= 0;
234 /* Cleanup from old state. */
238 /* Disable bus master reload */
239 if (new->type
!= ACPI_STATE_C3
&& pr
->flags
.bm_check
)
240 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD
, 0);
245 /* Prepare to use new state. */
248 /* Enable bus master reload */
249 if (old
->type
!= ACPI_STATE_C3
&& pr
->flags
.bm_check
)
250 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD
, 1);
254 pr
->power
.state
= new;
259 static atomic_t c3_cpu_count
;
261 /* Common C-state entry for C2, C3, .. */
262 static void acpi_cstate_enter(struct acpi_processor_cx
*cstate
)
264 if (cstate
->space_id
== ACPI_CSTATE_FFH
) {
265 /* Call into architectural FFH based C-state */
266 acpi_processor_ffh_cstate_enter(cstate
);
269 /* IO port based C-state */
270 inb(cstate
->address
);
271 /* Dummy wait op - must do something useless after P_LVL2 read
272 because chipsets cannot guarantee that STPCLK# signal
273 gets asserted in time to freeze execution properly. */
274 unused
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
277 #endif /* !CONFIG_CPU_IDLE */
279 #ifdef ARCH_APICTIMER_STOPS_ON_C3
282 * Some BIOS implementations switch to C3 in the published C2 state.
283 * This seems to be a common problem on AMD boxen, but other vendors
284 * are affected too. We pick the most conservative approach: we assume
285 * that the local APIC stops in both C2 and C3.
287 static void acpi_timer_check_state(int state
, struct acpi_processor
*pr
,
288 struct acpi_processor_cx
*cx
)
290 struct acpi_processor_power
*pwr
= &pr
->power
;
291 u8 type
= local_apic_timer_c2_ok
? ACPI_STATE_C3
: ACPI_STATE_C2
;
294 * Check, if one of the previous states already marked the lapic
297 if (pwr
->timer_broadcast_on_state
< state
)
300 if (cx
->type
>= type
)
301 pr
->power
.timer_broadcast_on_state
= state
;
304 static void acpi_propagate_timer_broadcast(struct acpi_processor
*pr
)
306 unsigned long reason
;
308 reason
= pr
->power
.timer_broadcast_on_state
< INT_MAX
?
309 CLOCK_EVT_NOTIFY_BROADCAST_ON
: CLOCK_EVT_NOTIFY_BROADCAST_OFF
;
311 clockevents_notify(reason
, &pr
->id
);
314 /* Power(C) State timer broadcast control */
315 static void acpi_state_timer_broadcast(struct acpi_processor
*pr
,
316 struct acpi_processor_cx
*cx
,
319 int state
= cx
- pr
->power
.states
;
321 if (state
>= pr
->power
.timer_broadcast_on_state
) {
322 unsigned long reason
;
324 reason
= broadcast
? CLOCK_EVT_NOTIFY_BROADCAST_ENTER
:
325 CLOCK_EVT_NOTIFY_BROADCAST_EXIT
;
326 clockevents_notify(reason
, &pr
->id
);
332 static void acpi_timer_check_state(int state
, struct acpi_processor
*pr
,
333 struct acpi_processor_cx
*cstate
) { }
334 static void acpi_propagate_timer_broadcast(struct acpi_processor
*pr
) { }
335 static void acpi_state_timer_broadcast(struct acpi_processor
*pr
,
336 struct acpi_processor_cx
*cx
,
344 * Suspend / resume control
346 static int acpi_idle_suspend
;
348 int acpi_processor_suspend(struct acpi_device
* device
, pm_message_t state
)
350 acpi_idle_suspend
= 1;
354 int acpi_processor_resume(struct acpi_device
* device
)
356 acpi_idle_suspend
= 0;
360 #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
361 static int tsc_halts_in_c(int state
)
363 switch (boot_cpu_data
.x86_vendor
) {
366 * AMD Fam10h TSC will tick in all
367 * C/P/S0/S1 states when this bit is set.
369 if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC
))
372 case X86_VENDOR_INTEL
:
373 /* Several cases known where TSC halts in C2 too */
375 return state
> ACPI_STATE_C1
;
380 #ifndef CONFIG_CPU_IDLE
381 static void acpi_processor_idle(void)
383 struct acpi_processor
*pr
= NULL
;
384 struct acpi_processor_cx
*cx
= NULL
;
385 struct acpi_processor_cx
*next_state
= NULL
;
390 * Interrupts must be disabled during bus mastering calculations and
391 * for C2/C3 transitions.
395 pr
= processors
[smp_processor_id()];
402 * Check whether we truly need to go idle, or should
405 if (unlikely(need_resched())) {
410 cx
= pr
->power
.state
;
411 if (!cx
|| acpi_idle_suspend
) {
422 * Check for bus mastering activity (if required), record, and check
425 if (pr
->flags
.bm_check
) {
427 unsigned long diff
= jiffies
- pr
->power
.bm_check_timestamp
;
432 pr
->power
.bm_activity
<<= diff
;
434 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS
, &bm_status
);
436 pr
->power
.bm_activity
|= 0x1;
437 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS
, 1);
440 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
441 * the true state of bus mastering activity; forcing us to
442 * manually check the BMIDEA bit of each IDE channel.
444 else if (errata
.piix4
.bmisx
) {
445 if ((inb_p(errata
.piix4
.bmisx
+ 0x02) & 0x01)
446 || (inb_p(errata
.piix4
.bmisx
+ 0x0A) & 0x01))
447 pr
->power
.bm_activity
|= 0x1;
450 pr
->power
.bm_check_timestamp
= jiffies
;
453 * If bus mastering is or was active this jiffy, demote
454 * to avoid a faulty transition. Note that the processor
455 * won't enter a low-power state during this call (to this
456 * function) but should upon the next.
458 * TBD: A better policy might be to fallback to the demotion
459 * state (use it for this quantum only) istead of
460 * demoting -- and rely on duration as our sole demotion
461 * qualification. This may, however, introduce DMA
462 * issues (e.g. floppy DMA transfer overrun/underrun).
464 if ((pr
->power
.bm_activity
& 0x1) &&
465 cx
->demotion
.threshold
.bm
) {
467 next_state
= cx
->demotion
.state
;
472 #ifdef CONFIG_HOTPLUG_CPU
474 * Check for P_LVL2_UP flag before entering C2 and above on
475 * an SMP system. We do it here instead of doing it at _CST/P_LVL
476 * detection phase, to work cleanly with logical CPU hotplug.
478 if ((cx
->type
!= ACPI_STATE_C1
) && (num_online_cpus() > 1) &&
479 !pr
->flags
.has_cst
&& !(acpi_gbl_FADT
.flags
& ACPI_FADT_C2_MP_SUPPORTED
))
480 cx
= &pr
->power
.states
[ACPI_STATE_C1
];
486 * Invoke the current Cx state to put the processor to sleep.
488 if (cx
->type
== ACPI_STATE_C2
|| cx
->type
== ACPI_STATE_C3
) {
489 current_thread_info()->status
&= ~TS_POLLING
;
491 * TS_POLLING-cleared state must be visible before we
495 if (need_resched()) {
496 current_thread_info()->status
|= TS_POLLING
;
507 * Use the appropriate idle routine, the one that would
508 * be used without acpi C-states.
516 * TBD: Can't get time duration while in C1, as resumes
517 * go to an ISR rather than here. Need to instrument
518 * base interrupt handler.
520 * Note: the TSC better not stop in C1, sched_clock() will
523 sleep_ticks
= 0xFFFFFFFF;
527 /* Get start time (ticks) */
528 t1
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
529 /* Tell the scheduler that we are going deep-idle: */
530 sched_clock_idle_sleep_event();
532 acpi_state_timer_broadcast(pr
, cx
, 1);
533 acpi_cstate_enter(cx
);
534 /* Get end time (ticks) */
535 t2
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
537 #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
538 /* TSC halts in C2, so notify users */
539 if (tsc_halts_in_c(ACPI_STATE_C2
))
540 mark_tsc_unstable("possible TSC halt in C2");
542 /* Compute time (ticks) that we were actually asleep */
543 sleep_ticks
= ticks_elapsed(t1
, t2
);
545 /* Tell the scheduler how much we idled: */
546 sched_clock_idle_wakeup_event(sleep_ticks
*PM_TIMER_TICK_NS
);
548 /* Re-enable interrupts */
550 /* Do not account our idle-switching overhead: */
551 sleep_ticks
-= cx
->latency_ticks
+ C2_OVERHEAD
;
553 current_thread_info()->status
|= TS_POLLING
;
554 acpi_state_timer_broadcast(pr
, cx
, 0);
558 acpi_unlazy_tlb(smp_processor_id());
560 * Must be done before busmaster disable as we might
561 * need to access HPET !
563 acpi_state_timer_broadcast(pr
, cx
, 1);
566 * bm_check implies we need ARB_DIS
567 * !bm_check implies we need cache flush
568 * bm_control implies whether we can do ARB_DIS
570 * That leaves a case where bm_check is set and bm_control is
571 * not set. In that case we cannot do much, we enter C3
572 * without doing anything.
574 if (pr
->flags
.bm_check
&& pr
->flags
.bm_control
) {
575 if (atomic_inc_return(&c3_cpu_count
) ==
578 * All CPUs are trying to go to C3
579 * Disable bus master arbitration
581 acpi_set_register(ACPI_BITREG_ARB_DISABLE
, 1);
583 } else if (!pr
->flags
.bm_check
) {
584 /* SMP with no shared cache... Invalidate cache */
585 ACPI_FLUSH_CPU_CACHE();
588 /* Get start time (ticks) */
589 t1
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
591 /* Tell the scheduler that we are going deep-idle: */
592 sched_clock_idle_sleep_event();
593 acpi_cstate_enter(cx
);
594 /* Get end time (ticks) */
595 t2
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
596 if (pr
->flags
.bm_check
&& pr
->flags
.bm_control
) {
597 /* Enable bus master arbitration */
598 atomic_dec(&c3_cpu_count
);
599 acpi_set_register(ACPI_BITREG_ARB_DISABLE
, 0);
602 #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
603 /* TSC halts in C3, so notify users */
604 if (tsc_halts_in_c(ACPI_STATE_C3
))
605 mark_tsc_unstable("TSC halts in C3");
607 /* Compute time (ticks) that we were actually asleep */
608 sleep_ticks
= ticks_elapsed(t1
, t2
);
609 /* Tell the scheduler how much we idled: */
610 sched_clock_idle_wakeup_event(sleep_ticks
*PM_TIMER_TICK_NS
);
612 /* Re-enable interrupts */
614 /* Do not account our idle-switching overhead: */
615 sleep_ticks
-= cx
->latency_ticks
+ C3_OVERHEAD
;
617 current_thread_info()->status
|= TS_POLLING
;
618 acpi_state_timer_broadcast(pr
, cx
, 0);
626 if ((cx
->type
!= ACPI_STATE_C1
) && (sleep_ticks
> 0))
627 cx
->time
+= sleep_ticks
;
629 next_state
= pr
->power
.state
;
631 #ifdef CONFIG_HOTPLUG_CPU
632 /* Don't do promotion/demotion */
633 if ((cx
->type
== ACPI_STATE_C1
) && (num_online_cpus() > 1) &&
634 !pr
->flags
.has_cst
&& !(acpi_gbl_FADT
.flags
& ACPI_FADT_C2_MP_SUPPORTED
)) {
643 * Track the number of longs (time asleep is greater than threshold)
644 * and promote when the count threshold is reached. Note that bus
645 * mastering activity may prevent promotions.
646 * Do not promote above max_cstate.
648 if (cx
->promotion
.state
&&
649 ((cx
->promotion
.state
- pr
->power
.states
) <= max_cstate
)) {
650 if (sleep_ticks
> cx
->promotion
.threshold
.ticks
&&
651 cx
->promotion
.state
->latency
<= system_latency_constraint()) {
652 cx
->promotion
.count
++;
653 cx
->demotion
.count
= 0;
654 if (cx
->promotion
.count
>=
655 cx
->promotion
.threshold
.count
) {
656 if (pr
->flags
.bm_check
) {
658 (pr
->power
.bm_activity
& cx
->
659 promotion
.threshold
.bm
)) {
665 next_state
= cx
->promotion
.state
;
675 * Track the number of shorts (time asleep is less than time threshold)
676 * and demote when the usage threshold is reached.
678 if (cx
->demotion
.state
) {
679 if (sleep_ticks
< cx
->demotion
.threshold
.ticks
) {
680 cx
->demotion
.count
++;
681 cx
->promotion
.count
= 0;
682 if (cx
->demotion
.count
>= cx
->demotion
.threshold
.count
) {
683 next_state
= cx
->demotion
.state
;
691 * Demote if current state exceeds max_cstate
692 * or if the latency of the current state is unacceptable
694 if ((pr
->power
.state
- pr
->power
.states
) > max_cstate
||
695 pr
->power
.state
->latency
> system_latency_constraint()) {
696 if (cx
->demotion
.state
)
697 next_state
= cx
->demotion
.state
;
703 * If we're going to start using a new Cx state we must clean up
704 * from the previous and prepare to use the new.
706 if (next_state
!= pr
->power
.state
)
707 acpi_processor_power_activate(pr
, next_state
);
710 static int acpi_processor_set_power_policy(struct acpi_processor
*pr
)
713 unsigned int state_is_set
= 0;
714 struct acpi_processor_cx
*lower
= NULL
;
715 struct acpi_processor_cx
*higher
= NULL
;
716 struct acpi_processor_cx
*cx
;
723 * This function sets the default Cx state policy (OS idle handler).
724 * Our scheme is to promote quickly to C2 but more conservatively
725 * to C3. We're favoring C2 for its characteristics of low latency
726 * (quick response), good power savings, and ability to allow bus
727 * mastering activity. Note that the Cx state policy is completely
728 * customizable and can be altered dynamically.
732 for (i
= 1; i
< ACPI_PROCESSOR_MAX_POWER
; i
++) {
733 cx
= &pr
->power
.states
[i
];
738 pr
->power
.state
= cx
;
747 for (i
= 1; i
< ACPI_PROCESSOR_MAX_POWER
; i
++) {
748 cx
= &pr
->power
.states
[i
];
753 cx
->demotion
.state
= lower
;
754 cx
->demotion
.threshold
.ticks
= cx
->latency_ticks
;
755 cx
->demotion
.threshold
.count
= 1;
756 if (cx
->type
== ACPI_STATE_C3
)
757 cx
->demotion
.threshold
.bm
= bm_history
;
764 for (i
= (ACPI_PROCESSOR_MAX_POWER
- 1); i
> 0; i
--) {
765 cx
= &pr
->power
.states
[i
];
770 cx
->promotion
.state
= higher
;
771 cx
->promotion
.threshold
.ticks
= cx
->latency_ticks
;
772 if (cx
->type
>= ACPI_STATE_C2
)
773 cx
->promotion
.threshold
.count
= 4;
775 cx
->promotion
.threshold
.count
= 10;
776 if (higher
->type
== ACPI_STATE_C3
)
777 cx
->promotion
.threshold
.bm
= bm_history
;
785 #endif /* !CONFIG_CPU_IDLE */
787 static int acpi_processor_get_power_info_fadt(struct acpi_processor
*pr
)
796 /* if info is obtained from pblk/fadt, type equals state */
797 pr
->power
.states
[ACPI_STATE_C2
].type
= ACPI_STATE_C2
;
798 pr
->power
.states
[ACPI_STATE_C3
].type
= ACPI_STATE_C3
;
800 #ifndef CONFIG_HOTPLUG_CPU
802 * Check for P_LVL2_UP flag before entering C2 and above on
805 if ((num_online_cpus() > 1) &&
806 !(acpi_gbl_FADT
.flags
& ACPI_FADT_C2_MP_SUPPORTED
))
810 /* determine C2 and C3 address from pblk */
811 pr
->power
.states
[ACPI_STATE_C2
].address
= pr
->pblk
+ 4;
812 pr
->power
.states
[ACPI_STATE_C3
].address
= pr
->pblk
+ 5;
814 /* determine latencies from FADT */
815 pr
->power
.states
[ACPI_STATE_C2
].latency
= acpi_gbl_FADT
.C2latency
;
816 pr
->power
.states
[ACPI_STATE_C3
].latency
= acpi_gbl_FADT
.C3latency
;
818 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
819 "lvl2[0x%08x] lvl3[0x%08x]\n",
820 pr
->power
.states
[ACPI_STATE_C2
].address
,
821 pr
->power
.states
[ACPI_STATE_C3
].address
));
826 static int acpi_processor_get_power_info_default(struct acpi_processor
*pr
)
828 if (!pr
->power
.states
[ACPI_STATE_C1
].valid
) {
829 /* set the first C-State to C1 */
830 /* all processors need to support C1 */
831 pr
->power
.states
[ACPI_STATE_C1
].type
= ACPI_STATE_C1
;
832 pr
->power
.states
[ACPI_STATE_C1
].valid
= 1;
834 /* the C0 state only exists as a filler in our array */
835 pr
->power
.states
[ACPI_STATE_C0
].valid
= 1;
839 static int acpi_processor_get_power_info_cst(struct acpi_processor
*pr
)
841 acpi_status status
= 0;
845 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
846 union acpi_object
*cst
;
854 status
= acpi_evaluate_object(pr
->handle
, "_CST", NULL
, &buffer
);
855 if (ACPI_FAILURE(status
)) {
856 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No _CST, giving up\n"));
860 cst
= buffer
.pointer
;
862 /* There must be at least 2 elements */
863 if (!cst
|| (cst
->type
!= ACPI_TYPE_PACKAGE
) || cst
->package
.count
< 2) {
864 printk(KERN_ERR PREFIX
"not enough elements in _CST\n");
869 count
= cst
->package
.elements
[0].integer
.value
;
871 /* Validate number of power states. */
872 if (count
< 1 || count
!= cst
->package
.count
- 1) {
873 printk(KERN_ERR PREFIX
"count given by _CST is not valid\n");
878 /* Tell driver that at least _CST is supported. */
879 pr
->flags
.has_cst
= 1;
881 for (i
= 1; i
<= count
; i
++) {
882 union acpi_object
*element
;
883 union acpi_object
*obj
;
884 struct acpi_power_register
*reg
;
885 struct acpi_processor_cx cx
;
887 memset(&cx
, 0, sizeof(cx
));
889 element
= &(cst
->package
.elements
[i
]);
890 if (element
->type
!= ACPI_TYPE_PACKAGE
)
893 if (element
->package
.count
!= 4)
896 obj
= &(element
->package
.elements
[0]);
898 if (obj
->type
!= ACPI_TYPE_BUFFER
)
901 reg
= (struct acpi_power_register
*)obj
->buffer
.pointer
;
903 if (reg
->space_id
!= ACPI_ADR_SPACE_SYSTEM_IO
&&
904 (reg
->space_id
!= ACPI_ADR_SPACE_FIXED_HARDWARE
))
907 /* There should be an easy way to extract an integer... */
908 obj
= &(element
->package
.elements
[1]);
909 if (obj
->type
!= ACPI_TYPE_INTEGER
)
912 cx
.type
= obj
->integer
.value
;
914 * Some buggy BIOSes won't list C1 in _CST -
915 * Let acpi_processor_get_power_info_default() handle them later
917 if (i
== 1 && cx
.type
!= ACPI_STATE_C1
)
920 cx
.address
= reg
->address
;
921 cx
.index
= current_count
+ 1;
923 cx
.space_id
= ACPI_CSTATE_SYSTEMIO
;
924 if (reg
->space_id
== ACPI_ADR_SPACE_FIXED_HARDWARE
) {
925 if (acpi_processor_ffh_cstate_probe
926 (pr
->id
, &cx
, reg
) == 0) {
927 cx
.space_id
= ACPI_CSTATE_FFH
;
928 } else if (cx
.type
!= ACPI_STATE_C1
) {
930 * C1 is a special case where FIXED_HARDWARE
931 * can be handled in non-MWAIT way as well.
932 * In that case, save this _CST entry info.
933 * That is, we retain space_id of SYSTEM_IO for
935 * Otherwise, ignore this info and continue.
941 obj
= &(element
->package
.elements
[2]);
942 if (obj
->type
!= ACPI_TYPE_INTEGER
)
945 cx
.latency
= obj
->integer
.value
;
947 obj
= &(element
->package
.elements
[3]);
948 if (obj
->type
!= ACPI_TYPE_INTEGER
)
951 cx
.power
= obj
->integer
.value
;
954 memcpy(&(pr
->power
.states
[current_count
]), &cx
, sizeof(cx
));
957 * We support total ACPI_PROCESSOR_MAX_POWER - 1
958 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
960 if (current_count
>= (ACPI_PROCESSOR_MAX_POWER
- 1)) {
962 "Limiting number of power states to max (%d)\n",
963 ACPI_PROCESSOR_MAX_POWER
);
965 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
970 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d power states\n",
973 /* Validate number of power states discovered */
974 if (current_count
< 2)
978 kfree(buffer
.pointer
);
983 static void acpi_processor_power_verify_c2(struct acpi_processor_cx
*cx
)
990 * C2 latency must be less than or equal to 100
993 else if (cx
->latency
> ACPI_PROCESSOR_MAX_C2_LATENCY
) {
994 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
995 "latency too large [%d]\n", cx
->latency
));
1000 * Otherwise we've met all of our C2 requirements.
1001 * Normalize the C2 latency to expidite policy
1005 #ifndef CONFIG_CPU_IDLE
1006 cx
->latency_ticks
= US_TO_PM_TIMER_TICKS(cx
->latency
);
1008 cx
->latency_ticks
= cx
->latency
;
1014 static void acpi_processor_power_verify_c3(struct acpi_processor
*pr
,
1015 struct acpi_processor_cx
*cx
)
1017 static int bm_check_flag
;
1024 * C3 latency must be less than or equal to 1000
1027 else if (cx
->latency
> ACPI_PROCESSOR_MAX_C3_LATENCY
) {
1028 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1029 "latency too large [%d]\n", cx
->latency
));
1034 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1035 * DMA transfers are used by any ISA device to avoid livelock.
1036 * Note that we could disable Type-F DMA (as recommended by
1037 * the erratum), but this is known to disrupt certain ISA
1038 * devices thus we take the conservative approach.
1040 else if (errata
.piix4
.fdma
) {
1041 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1042 "C3 not supported on PIIX4 with Type-F DMA\n"));
1046 /* All the logic here assumes flags.bm_check is same across all CPUs */
1047 if (!bm_check_flag
) {
1048 /* Determine whether bm_check is needed based on CPU */
1049 acpi_processor_power_init_bm_check(&(pr
->flags
), pr
->id
);
1050 bm_check_flag
= pr
->flags
.bm_check
;
1052 pr
->flags
.bm_check
= bm_check_flag
;
1055 if (pr
->flags
.bm_check
) {
1056 if (!pr
->flags
.bm_control
) {
1057 if (pr
->flags
.has_cst
!= 1) {
1058 /* bus mastering control is necessary */
1059 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1060 "C3 support requires BM control\n"));
1063 /* Here we enter C3 without bus mastering */
1064 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1065 "C3 support without BM control\n"));
1070 * WBINVD should be set in fadt, for C3 state to be
1071 * supported on when bm_check is not required.
1073 if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_WBINVD
)) {
1074 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1075 "Cache invalidation should work properly"
1076 " for C3 to be enabled on SMP systems\n"));
1079 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD
, 0);
1083 * Otherwise we've met all of our C3 requirements.
1084 * Normalize the C3 latency to expidite policy. Enable
1085 * checking of bus mastering status (bm_check) so we can
1086 * use this in our C3 policy
1090 #ifndef CONFIG_CPU_IDLE
1091 cx
->latency_ticks
= US_TO_PM_TIMER_TICKS(cx
->latency
);
1093 cx
->latency_ticks
= cx
->latency
;
1099 static int acpi_processor_power_verify(struct acpi_processor
*pr
)
1102 unsigned int working
= 0;
1104 pr
->power
.timer_broadcast_on_state
= INT_MAX
;
1106 for (i
= 1; i
< ACPI_PROCESSOR_MAX_POWER
; i
++) {
1107 struct acpi_processor_cx
*cx
= &pr
->power
.states
[i
];
1115 acpi_processor_power_verify_c2(cx
);
1117 acpi_timer_check_state(i
, pr
, cx
);
1121 acpi_processor_power_verify_c3(pr
, cx
);
1123 acpi_timer_check_state(i
, pr
, cx
);
1131 acpi_propagate_timer_broadcast(pr
);
1136 static int acpi_processor_get_power_info(struct acpi_processor
*pr
)
1142 /* NOTE: the idle thread may not be running while calling
1145 /* Zero initialize all the C-states info. */
1146 memset(pr
->power
.states
, 0, sizeof(pr
->power
.states
));
1148 result
= acpi_processor_get_power_info_cst(pr
);
1149 if (result
== -ENODEV
)
1150 result
= acpi_processor_get_power_info_fadt(pr
);
1155 acpi_processor_get_power_info_default(pr
);
1157 pr
->power
.count
= acpi_processor_power_verify(pr
);
1159 #ifndef CONFIG_CPU_IDLE
1161 * Set Default Policy
1162 * ------------------
1163 * Now that we know which states are supported, set the default
1164 * policy. Note that this policy can be changed dynamically
1165 * (e.g. encourage deeper sleeps to conserve battery life when
1168 result
= acpi_processor_set_power_policy(pr
);
1174 * if one state of type C2 or C3 is available, mark this
1175 * CPU as being "idle manageable"
1177 for (i
= 1; i
< ACPI_PROCESSOR_MAX_POWER
; i
++) {
1178 if (pr
->power
.states
[i
].valid
) {
1179 pr
->power
.count
= i
;
1180 if (pr
->power
.states
[i
].type
>= ACPI_STATE_C2
)
1181 pr
->flags
.power
= 1;
1188 static int acpi_processor_power_seq_show(struct seq_file
*seq
, void *offset
)
1190 struct acpi_processor
*pr
= seq
->private;
1197 seq_printf(seq
, "active state: C%zd\n"
1199 "bus master activity: %08x\n"
1200 "maximum allowed latency: %d usec\n",
1201 pr
->power
.state
? pr
->power
.state
- pr
->power
.states
: 0,
1202 max_cstate
, (unsigned)pr
->power
.bm_activity
,
1203 system_latency_constraint());
1205 seq_puts(seq
, "states:\n");
1207 for (i
= 1; i
<= pr
->power
.count
; i
++) {
1208 seq_printf(seq
, " %cC%d: ",
1209 (&pr
->power
.states
[i
] ==
1210 pr
->power
.state
? '*' : ' '), i
);
1212 if (!pr
->power
.states
[i
].valid
) {
1213 seq_puts(seq
, "<not supported>\n");
1217 switch (pr
->power
.states
[i
].type
) {
1219 seq_printf(seq
, "type[C1] ");
1222 seq_printf(seq
, "type[C2] ");
1225 seq_printf(seq
, "type[C3] ");
1228 seq_printf(seq
, "type[--] ");
1232 if (pr
->power
.states
[i
].promotion
.state
)
1233 seq_printf(seq
, "promotion[C%zd] ",
1234 (pr
->power
.states
[i
].promotion
.state
-
1237 seq_puts(seq
, "promotion[--] ");
1239 if (pr
->power
.states
[i
].demotion
.state
)
1240 seq_printf(seq
, "demotion[C%zd] ",
1241 (pr
->power
.states
[i
].demotion
.state
-
1244 seq_puts(seq
, "demotion[--] ");
1246 seq_printf(seq
, "latency[%03d] usage[%08d] duration[%020llu]\n",
1247 pr
->power
.states
[i
].latency
,
1248 pr
->power
.states
[i
].usage
,
1249 (unsigned long long)pr
->power
.states
[i
].time
);
1256 static int acpi_processor_power_open_fs(struct inode
*inode
, struct file
*file
)
1258 return single_open(file
, acpi_processor_power_seq_show
,
1262 static const struct file_operations acpi_processor_power_fops
= {
1263 .open
= acpi_processor_power_open_fs
,
1265 .llseek
= seq_lseek
,
1266 .release
= single_release
,
1269 #ifndef CONFIG_CPU_IDLE
1271 int acpi_processor_cst_has_changed(struct acpi_processor
*pr
)
1283 if (!pr
->flags
.power_setup_done
)
1286 /* Fall back to the default idle loop */
1287 pm_idle
= pm_idle_save
;
1288 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1290 pr
->flags
.power
= 0;
1291 result
= acpi_processor_get_power_info(pr
);
1292 if ((pr
->flags
.power
== 1) && (pr
->flags
.power_setup_done
))
1293 pm_idle
= acpi_processor_idle
;
1299 static void smp_callback(void *v
)
1301 /* we already woke the CPU up, nothing more to do */
1305 * This function gets called when a part of the kernel has a new latency
1306 * requirement. This means we need to get all processors out of their C-state,
1307 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1308 * wakes them all right up.
1310 static int acpi_processor_latency_notify(struct notifier_block
*b
,
1311 unsigned long l
, void *v
)
1313 smp_call_function(smp_callback
, NULL
, 0, 1);
1317 static struct notifier_block acpi_processor_latency_notifier
= {
1318 .notifier_call
= acpi_processor_latency_notify
,
1323 #else /* CONFIG_CPU_IDLE */
1326 * acpi_idle_bm_check - checks if bus master activity was detected
1328 static int acpi_idle_bm_check(void)
1332 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS
, &bm_status
);
1334 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS
, 1);
1336 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1337 * the true state of bus mastering activity; forcing us to
1338 * manually check the BMIDEA bit of each IDE channel.
1340 else if (errata
.piix4
.bmisx
) {
1341 if ((inb_p(errata
.piix4
.bmisx
+ 0x02) & 0x01)
1342 || (inb_p(errata
.piix4
.bmisx
+ 0x0A) & 0x01))
1349 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1350 * @pr: the processor
1351 * @target: the new target state
1353 static inline void acpi_idle_update_bm_rld(struct acpi_processor
*pr
,
1354 struct acpi_processor_cx
*target
)
1356 if (pr
->flags
.bm_rld_set
&& target
->type
!= ACPI_STATE_C3
) {
1357 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD
, 0);
1358 pr
->flags
.bm_rld_set
= 0;
1361 if (!pr
->flags
.bm_rld_set
&& target
->type
== ACPI_STATE_C3
) {
1362 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD
, 1);
1363 pr
->flags
.bm_rld_set
= 1;
1368 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1371 static inline void acpi_idle_do_entry(struct acpi_processor_cx
*cx
)
1373 if (cx
->space_id
== ACPI_CSTATE_FFH
) {
1374 /* Call into architectural FFH based C-state */
1375 acpi_processor_ffh_cstate_enter(cx
);
1378 /* IO port based C-state */
1380 /* Dummy wait op - must do something useless after P_LVL2 read
1381 because chipsets cannot guarantee that STPCLK# signal
1382 gets asserted in time to freeze execution properly. */
1383 unused
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
1388 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1389 * @dev: the target CPU
1390 * @state: the state data
1392 * This is equivalent to the HALT instruction.
1394 static int acpi_idle_enter_c1(struct cpuidle_device
*dev
,
1395 struct cpuidle_state
*state
)
1397 struct acpi_processor
*pr
;
1398 struct acpi_processor_cx
*cx
= cpuidle_get_statedata(state
);
1399 pr
= processors
[smp_processor_id()];
1404 if (pr
->flags
.bm_check
)
1405 acpi_idle_update_bm_rld(pr
, cx
);
1415 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1416 * @dev: the target CPU
1417 * @state: the state data
1419 static int acpi_idle_enter_simple(struct cpuidle_device
*dev
,
1420 struct cpuidle_state
*state
)
1422 struct acpi_processor
*pr
;
1423 struct acpi_processor_cx
*cx
= cpuidle_get_statedata(state
);
1425 int sleep_ticks
= 0;
1427 pr
= processors
[smp_processor_id()];
1432 if (acpi_idle_suspend
)
1433 return(acpi_idle_enter_c1(dev
, state
));
1435 local_irq_disable();
1436 current_thread_info()->status
&= ~TS_POLLING
;
1438 * TS_POLLING-cleared state must be visible before we test
1443 if (unlikely(need_resched())) {
1444 current_thread_info()->status
|= TS_POLLING
;
1449 acpi_unlazy_tlb(smp_processor_id());
1451 * Must be done before busmaster disable as we might need to
1454 acpi_state_timer_broadcast(pr
, cx
, 1);
1456 if (pr
->flags
.bm_check
)
1457 acpi_idle_update_bm_rld(pr
, cx
);
1459 if (cx
->type
== ACPI_STATE_C3
)
1460 ACPI_FLUSH_CPU_CACHE();
1462 t1
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
1463 /* Tell the scheduler that we are going deep-idle: */
1464 sched_clock_idle_sleep_event();
1465 acpi_idle_do_entry(cx
);
1466 t2
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
1468 #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1469 /* TSC could halt in idle, so notify users */
1470 if (tsc_halts_in_c(cx
->type
))
1471 mark_tsc_unstable("TSC halts in idle");;
1473 sleep_ticks
= ticks_elapsed(t1
, t2
);
1475 /* Tell the scheduler how much we idled: */
1476 sched_clock_idle_wakeup_event(sleep_ticks
*PM_TIMER_TICK_NS
);
1479 current_thread_info()->status
|= TS_POLLING
;
1483 acpi_state_timer_broadcast(pr
, cx
, 0);
1484 cx
->time
+= sleep_ticks
;
1485 return ticks_elapsed_in_us(t1
, t2
);
1488 static int c3_cpu_count
;
1489 static DEFINE_SPINLOCK(c3_lock
);
1492 * acpi_idle_enter_bm - enters C3 with proper BM handling
1493 * @dev: the target CPU
1494 * @state: the state data
1496 * If BM is detected, the deepest non-C3 idle state is entered instead.
1498 static int acpi_idle_enter_bm(struct cpuidle_device
*dev
,
1499 struct cpuidle_state
*state
)
1501 struct acpi_processor
*pr
;
1502 struct acpi_processor_cx
*cx
= cpuidle_get_statedata(state
);
1504 int sleep_ticks
= 0;
1506 pr
= processors
[smp_processor_id()];
1511 if (acpi_idle_suspend
)
1512 return(acpi_idle_enter_c1(dev
, state
));
1514 if (acpi_idle_bm_check()) {
1515 if (dev
->safe_state
) {
1516 return dev
->safe_state
->enter(dev
, dev
->safe_state
);
1523 local_irq_disable();
1524 current_thread_info()->status
&= ~TS_POLLING
;
1526 * TS_POLLING-cleared state must be visible before we test
1531 if (unlikely(need_resched())) {
1532 current_thread_info()->status
|= TS_POLLING
;
1537 /* Tell the scheduler that we are going deep-idle: */
1538 sched_clock_idle_sleep_event();
1540 * Must be done before busmaster disable as we might need to
1543 acpi_state_timer_broadcast(pr
, cx
, 1);
1545 acpi_idle_update_bm_rld(pr
, cx
);
1548 * disable bus master
1549 * bm_check implies we need ARB_DIS
1550 * !bm_check implies we need cache flush
1551 * bm_control implies whether we can do ARB_DIS
1553 * That leaves a case where bm_check is set and bm_control is
1554 * not set. In that case we cannot do much, we enter C3
1555 * without doing anything.
1557 if (pr
->flags
.bm_check
&& pr
->flags
.bm_control
) {
1558 spin_lock(&c3_lock
);
1560 /* Disable bus master arbitration when all CPUs are in C3 */
1561 if (c3_cpu_count
== num_online_cpus())
1562 acpi_set_register(ACPI_BITREG_ARB_DISABLE
, 1);
1563 spin_unlock(&c3_lock
);
1564 } else if (!pr
->flags
.bm_check
) {
1565 ACPI_FLUSH_CPU_CACHE();
1568 t1
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
1569 acpi_idle_do_entry(cx
);
1570 t2
= inl(acpi_gbl_FADT
.xpm_timer_block
.address
);
1572 /* Re-enable bus master arbitration */
1573 if (pr
->flags
.bm_check
&& pr
->flags
.bm_control
) {
1574 spin_lock(&c3_lock
);
1575 acpi_set_register(ACPI_BITREG_ARB_DISABLE
, 0);
1577 spin_unlock(&c3_lock
);
1580 #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1581 /* TSC could halt in idle, so notify users */
1582 if (tsc_halts_in_c(ACPI_STATE_C3
))
1583 mark_tsc_unstable("TSC halts in idle");
1585 sleep_ticks
= ticks_elapsed(t1
, t2
);
1586 /* Tell the scheduler how much we idled: */
1587 sched_clock_idle_wakeup_event(sleep_ticks
*PM_TIMER_TICK_NS
);
1590 current_thread_info()->status
|= TS_POLLING
;
1594 acpi_state_timer_broadcast(pr
, cx
, 0);
1595 cx
->time
+= sleep_ticks
;
1596 return ticks_elapsed_in_us(t1
, t2
);
1599 struct cpuidle_driver acpi_idle_driver
= {
1600 .name
= "acpi_idle",
1601 .owner
= THIS_MODULE
,
1605 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1606 * @pr: the ACPI processor
1608 static int acpi_processor_setup_cpuidle(struct acpi_processor
*pr
)
1611 struct acpi_processor_cx
*cx
;
1612 struct cpuidle_state
*state
;
1613 struct cpuidle_device
*dev
= &pr
->power
.dev
;
1615 if (!pr
->flags
.power_setup_done
)
1618 if (pr
->flags
.power
== 0) {
1622 for (i
= 1; i
< ACPI_PROCESSOR_MAX_POWER
&& i
<= max_cstate
; i
++) {
1623 cx
= &pr
->power
.states
[i
];
1624 state
= &dev
->states
[count
];
1629 #ifdef CONFIG_HOTPLUG_CPU
1630 if ((cx
->type
!= ACPI_STATE_C1
) && (num_online_cpus() > 1) &&
1631 !pr
->flags
.has_cst
&&
1632 !(acpi_gbl_FADT
.flags
& ACPI_FADT_C2_MP_SUPPORTED
))
1635 cpuidle_set_statedata(state
, cx
);
1637 snprintf(state
->name
, CPUIDLE_NAME_LEN
, "C%d", i
);
1638 state
->exit_latency
= cx
->latency
;
1639 state
->target_residency
= cx
->latency
* 6;
1640 state
->power_usage
= cx
->power
;
1645 state
->flags
|= CPUIDLE_FLAG_SHALLOW
;
1646 state
->enter
= acpi_idle_enter_c1
;
1647 dev
->safe_state
= state
;
1651 state
->flags
|= CPUIDLE_FLAG_BALANCED
;
1652 state
->flags
|= CPUIDLE_FLAG_TIME_VALID
;
1653 state
->enter
= acpi_idle_enter_simple
;
1654 dev
->safe_state
= state
;
1658 state
->flags
|= CPUIDLE_FLAG_DEEP
;
1659 state
->flags
|= CPUIDLE_FLAG_TIME_VALID
;
1660 state
->flags
|= CPUIDLE_FLAG_CHECK_BM
;
1661 state
->enter
= pr
->flags
.bm_check
?
1662 acpi_idle_enter_bm
:
1663 acpi_idle_enter_simple
;
1670 dev
->state_count
= count
;
1678 int acpi_processor_cst_has_changed(struct acpi_processor
*pr
)
1689 if (!pr
->flags
.power_setup_done
)
1692 cpuidle_pause_and_lock();
1693 cpuidle_disable_device(&pr
->power
.dev
);
1694 acpi_processor_get_power_info(pr
);
1695 acpi_processor_setup_cpuidle(pr
);
1696 ret
= cpuidle_enable_device(&pr
->power
.dev
);
1697 cpuidle_resume_and_unlock();
1702 #endif /* CONFIG_CPU_IDLE */
1704 int __cpuinit
acpi_processor_power_init(struct acpi_processor
*pr
,
1705 struct acpi_device
*device
)
1707 acpi_status status
= 0;
1708 static int first_run
;
1709 struct proc_dir_entry
*entry
= NULL
;
1714 dmi_check_system(processor_power_dmi_table
);
1715 max_cstate
= acpi_processor_cstate_check(max_cstate
);
1716 if (max_cstate
< ACPI_C_STATES_MAX
)
1718 "ACPI: processor limited to max C-state %d\n",
1721 #if !defined (CONFIG_CPU_IDLE) && defined (CONFIG_SMP)
1722 register_latency_notifier(&acpi_processor_latency_notifier
);
1729 if (acpi_gbl_FADT
.cst_control
&& !nocst
) {
1731 acpi_os_write_port(acpi_gbl_FADT
.smi_command
, acpi_gbl_FADT
.cst_control
, 8);
1732 if (ACPI_FAILURE(status
)) {
1733 ACPI_EXCEPTION((AE_INFO
, status
,
1734 "Notifying BIOS of _CST ability failed"));
1738 acpi_processor_get_power_info(pr
);
1739 pr
->flags
.power_setup_done
= 1;
1742 * Install the idle handler if processor power management is supported.
1743 * Note that we use previously set idle handler will be used on
1744 * platforms that only support C1.
1746 if ((pr
->flags
.power
) && (!boot_option_idle_override
)) {
1747 #ifdef CONFIG_CPU_IDLE
1748 acpi_processor_setup_cpuidle(pr
);
1749 pr
->power
.dev
.cpu
= pr
->id
;
1750 if (cpuidle_register_device(&pr
->power
.dev
))
1754 printk(KERN_INFO PREFIX
"CPU%d (power states:", pr
->id
);
1755 for (i
= 1; i
<= pr
->power
.count
; i
++)
1756 if (pr
->power
.states
[i
].valid
)
1757 printk(" C%d[C%d]", i
,
1758 pr
->power
.states
[i
].type
);
1761 #ifndef CONFIG_CPU_IDLE
1763 pm_idle_save
= pm_idle
;
1764 pm_idle
= acpi_processor_idle
;
1770 entry
= create_proc_entry(ACPI_PROCESSOR_FILE_POWER
,
1771 S_IRUGO
, acpi_device_dir(device
));
1775 entry
->proc_fops
= &acpi_processor_power_fops
;
1776 entry
->data
= acpi_driver_data(device
);
1777 entry
->owner
= THIS_MODULE
;
1783 int acpi_processor_power_exit(struct acpi_processor
*pr
,
1784 struct acpi_device
*device
)
1786 #ifdef CONFIG_CPU_IDLE
1787 if ((pr
->flags
.power
) && (!boot_option_idle_override
))
1788 cpuidle_unregister_device(&pr
->power
.dev
);
1790 pr
->flags
.power_setup_done
= 0;
1792 if (acpi_device_dir(device
))
1793 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER
,
1794 acpi_device_dir(device
));
1796 #ifndef CONFIG_CPU_IDLE
1798 /* Unregister the idle handler when processor #0 is removed. */
1800 pm_idle
= pm_idle_save
;
1803 * We are about to unload the current idle thread pm callback
1804 * (pm_idle), Wait for all processors to update cached/local
1805 * copies of pm_idle before proceeding.
1809 unregister_latency_notifier(&acpi_processor_latency_notifier
);