cpuidle: consolidate 2.6.22 cpuidle branch into one patch
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / processor_idle.c
CommitLineData
1da177e4
LT
1/*
2 * processor_idle - idle state submodule to the ACPI processor driver
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
c5ab81ca 6 * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de>
1da177e4
LT
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
02df8b93
VP
9 * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
10 * - Added support for C3 on SMP
1da177e4
LT
11 *
12 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27 *
28 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 */
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/init.h>
34#include <linux/cpufreq.h>
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <linux/acpi.h>
38#include <linux/dmi.h>
39#include <linux/moduleparam.h>
4e57b681 40#include <linux/sched.h> /* need_resched() */
5c87579e 41#include <linux/latency.h>
e9e2cdb4 42#include <linux/clockchips.h>
4f86d3a8 43#include <linux/cpuidle.h>
1da177e4 44
3434933b
TG
45/*
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.
50 */
51#ifdef CONFIG_X86
52#include <asm/apic.h>
53#endif
54
1da177e4
LT
55#include <asm/io.h>
56#include <asm/uaccess.h>
57
58#include <acpi/acpi_bus.h>
59#include <acpi/processor.h>
60
61#define ACPI_PROCESSOR_COMPONENT 0x01000000
62#define ACPI_PROCESSOR_CLASS "processor"
1da177e4 63#define _COMPONENT ACPI_PROCESSOR_COMPONENT
f52fd66d 64ACPI_MODULE_NAME("processor_idle");
1da177e4 65#define ACPI_PROCESSOR_FILE_POWER "power"
1da177e4 66#define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
2aa44d05 67#define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY)
4f86d3a8 68#ifndef CONFIG_CPU_IDLE
1da177e4
LT
69#define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
70#define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
b6835052 71static void (*pm_idle_save) (void) __read_mostly;
4f86d3a8
LB
72#else
73#define C2_OVERHEAD 1 /* 1us */
74#define C3_OVERHEAD 1 /* 1us */
75#endif
76#define PM_TIMER_TICKS_TO_US(p) (((p) * 1000)/(PM_TIMER_FREQUENCY/1000))
1da177e4 77
4f86d3a8
LB
78static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
79module_param(max_cstate, uint, 0000);
b6835052 80static unsigned int nocst __read_mostly;
1da177e4
LT
81module_param(nocst, uint, 0000);
82
4f86d3a8 83#ifndef CONFIG_CPU_IDLE
1da177e4
LT
84/*
85 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
86 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
87 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
88 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
89 * reduce history for more aggressive entry into C3
90 */
b6835052 91static unsigned int bm_history __read_mostly =
4be44fcd 92 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
1da177e4 93module_param(bm_history, uint, 0644);
4f86d3a8
LB
94
95static int acpi_processor_set_power_policy(struct acpi_processor *pr);
96
97#endif
1da177e4
LT
98
99/*
100 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
101 * For now disable this. Probably a bug somewhere else.
102 *
103 * To skip this limit, boot/load with a large max_cstate limit.
104 */
335f16be 105static int set_max_cstate(struct dmi_system_id *id)
1da177e4
LT
106{
107 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
108 return 0;
109
3d35600a 110 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
4be44fcd
LB
111 " Override with \"processor.max_cstate=%d\"\n", id->ident,
112 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
1da177e4 113
3d35600a 114 max_cstate = (long)id->driver_data;
1da177e4
LT
115
116 return 0;
117}
118
7ded5689
AR
119/* Actually this shouldn't be __cpuinitdata, would be better to fix the
120 callers to only run once -AK */
121static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
f831335d
BS
122 { set_max_cstate, "IBM ThinkPad R40e", {
123 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
124 DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
876c184b
TR
125 { set_max_cstate, "IBM ThinkPad R40e", {
126 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
127 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
128 { set_max_cstate, "IBM ThinkPad R40e", {
129 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
130 DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
131 { set_max_cstate, "IBM ThinkPad R40e", {
132 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
133 DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
134 { set_max_cstate, "IBM ThinkPad R40e", {
135 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
136 DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
137 { set_max_cstate, "IBM ThinkPad R40e", {
138 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
139 DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
140 { set_max_cstate, "IBM ThinkPad R40e", {
141 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
142 DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
143 { set_max_cstate, "IBM ThinkPad R40e", {
144 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
145 DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
146 { set_max_cstate, "IBM ThinkPad R40e", {
147 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
148 DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
149 { set_max_cstate, "IBM ThinkPad R40e", {
150 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
151 DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
152 { set_max_cstate, "IBM ThinkPad R40e", {
153 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
154 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
155 { set_max_cstate, "IBM ThinkPad R40e", {
156 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
157 DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
158 { set_max_cstate, "IBM ThinkPad R40e", {
159 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
160 DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
161 { set_max_cstate, "IBM ThinkPad R40e", {
162 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
163 DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
164 { set_max_cstate, "IBM ThinkPad R40e", {
165 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
166 DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
167 { set_max_cstate, "IBM ThinkPad R40e", {
168 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
169 DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
170 { set_max_cstate, "Medion 41700", {
171 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
172 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
173 { set_max_cstate, "Clevo 5600D", {
174 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
175 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
4be44fcd 176 (void *)2},
1da177e4
LT
177 {},
178};
179
4be44fcd 180static inline u32 ticks_elapsed(u32 t1, u32 t2)
1da177e4
LT
181{
182 if (t2 >= t1)
183 return (t2 - t1);
cee324b1 184 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
1da177e4
LT
185 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
186 else
187 return ((0xFFFFFFFF - t1) + t2);
188}
189
4f86d3a8
LB
190static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2)
191{
192 if (t2 >= t1)
193 return PM_TIMER_TICKS_TO_US(t2 - t1);
194 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
195 return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
196 else
197 return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2);
198}
199
200#ifndef CONFIG_CPU_IDLE
201
1da177e4 202static void
4be44fcd
LB
203acpi_processor_power_activate(struct acpi_processor *pr,
204 struct acpi_processor_cx *new)
1da177e4 205{
4be44fcd 206 struct acpi_processor_cx *old;
1da177e4
LT
207
208 if (!pr || !new)
209 return;
210
211 old = pr->power.state;
212
213 if (old)
214 old->promotion.count = 0;
4be44fcd 215 new->demotion.count = 0;
1da177e4
LT
216
217 /* Cleanup from old state. */
218 if (old) {
219 switch (old->type) {
220 case ACPI_STATE_C3:
221 /* Disable bus master reload */
02df8b93 222 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
d8c71b6d 223 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1da177e4
LT
224 break;
225 }
226 }
227
228 /* Prepare to use new state. */
229 switch (new->type) {
230 case ACPI_STATE_C3:
231 /* Enable bus master reload */
02df8b93 232 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
d8c71b6d 233 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1da177e4
LT
234 break;
235 }
236
237 pr->power.state = new;
238
239 return;
240}
241
64c7c8f8
NP
242static void acpi_safe_halt(void)
243{
495ab9c0 244 current_thread_info()->status &= ~TS_POLLING;
0888f06a
IM
245 /*
246 * TS_POLLING-cleared state must be visible before we
247 * test NEED_RESCHED:
248 */
249 smp_mb();
64c7c8f8
NP
250 if (!need_resched())
251 safe_halt();
495ab9c0 252 current_thread_info()->status |= TS_POLLING;
64c7c8f8
NP
253}
254
4be44fcd 255static atomic_t c3_cpu_count;
1da177e4 256
991528d7
VP
257/* Common C-state entry for C2, C3, .. */
258static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
259{
260 if (cstate->space_id == ACPI_CSTATE_FFH) {
261 /* Call into architectural FFH based C-state */
262 acpi_processor_ffh_cstate_enter(cstate);
263 } else {
264 int unused;
265 /* IO port based C-state */
266 inb(cstate->address);
267 /* Dummy wait op - must do something useless after P_LVL2 read
268 because chipsets cannot guarantee that STPCLK# signal
269 gets asserted in time to freeze execution properly. */
cee324b1 270 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
991528d7
VP
271 }
272}
4f86d3a8 273#endif /* !CONFIG_CPU_IDLE */
991528d7 274
169a0abb
TG
275#ifdef ARCH_APICTIMER_STOPS_ON_C3
276
277/*
278 * Some BIOS implementations switch to C3 in the published C2 state.
296d93cd
LT
279 * This seems to be a common problem on AMD boxen, but other vendors
280 * are affected too. We pick the most conservative approach: we assume
281 * that the local APIC stops in both C2 and C3.
169a0abb
TG
282 */
283static void acpi_timer_check_state(int state, struct acpi_processor *pr,
284 struct acpi_processor_cx *cx)
285{
286 struct acpi_processor_power *pwr = &pr->power;
e585bef8 287 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
169a0abb
TG
288
289 /*
290 * Check, if one of the previous states already marked the lapic
291 * unstable
292 */
293 if (pwr->timer_broadcast_on_state < state)
294 return;
295
e585bef8 296 if (cx->type >= type)
296d93cd 297 pr->power.timer_broadcast_on_state = state;
169a0abb
TG
298}
299
300static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
301{
e9e2cdb4
TG
302#ifdef CONFIG_GENERIC_CLOCKEVENTS
303 unsigned long reason;
304
305 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
306 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
307
308 clockevents_notify(reason, &pr->id);
309#else
169a0abb
TG
310 cpumask_t mask = cpumask_of_cpu(pr->id);
311
296d93cd 312 if (pr->power.timer_broadcast_on_state < INT_MAX)
169a0abb 313 on_each_cpu(switch_APIC_timer_to_ipi, &mask, 1, 1);
296d93cd 314 else
169a0abb 315 on_each_cpu(switch_ipi_to_APIC_timer, &mask, 1, 1);
e9e2cdb4
TG
316#endif
317}
318
319/* Power(C) State timer broadcast control */
320static void acpi_state_timer_broadcast(struct acpi_processor *pr,
321 struct acpi_processor_cx *cx,
322 int broadcast)
323{
324#ifdef CONFIG_GENERIC_CLOCKEVENTS
325
326 int state = cx - pr->power.states;
327
328 if (state >= pr->power.timer_broadcast_on_state) {
329 unsigned long reason;
330
331 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
332 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
333 clockevents_notify(reason, &pr->id);
334 }
335#endif
169a0abb
TG
336}
337
338#else
339
340static void acpi_timer_check_state(int state, struct acpi_processor *pr,
341 struct acpi_processor_cx *cstate) { }
342static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
e9e2cdb4
TG
343static void acpi_state_timer_broadcast(struct acpi_processor *pr,
344 struct acpi_processor_cx *cx,
345 int broadcast)
346{
347}
169a0abb
TG
348
349#endif
350
b04e7bdb
TG
351/*
352 * Suspend / resume control
353 */
354static int acpi_idle_suspend;
355
356int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
357{
358 acpi_idle_suspend = 1;
359 return 0;
360}
361
362int acpi_processor_resume(struct acpi_device * device)
363{
364 acpi_idle_suspend = 0;
365 return 0;
366}
367
4f86d3a8 368#ifndef CONFIG_CPU_IDLE
4be44fcd 369static void acpi_processor_idle(void)
1da177e4 370{
4be44fcd 371 struct acpi_processor *pr = NULL;
1da177e4
LT
372 struct acpi_processor_cx *cx = NULL;
373 struct acpi_processor_cx *next_state = NULL;
4be44fcd
LB
374 int sleep_ticks = 0;
375 u32 t1, t2 = 0;
1da177e4 376
1da177e4
LT
377 /*
378 * Interrupts must be disabled during bus mastering calculations and
379 * for C2/C3 transitions.
380 */
381 local_irq_disable();
382
d5a3d32a
VP
383 pr = processors[smp_processor_id()];
384 if (!pr) {
385 local_irq_enable();
386 return;
387 }
388
1da177e4
LT
389 /*
390 * Check whether we truly need to go idle, or should
391 * reschedule:
392 */
393 if (unlikely(need_resched())) {
394 local_irq_enable();
395 return;
396 }
397
398 cx = pr->power.state;
b04e7bdb 399 if (!cx || acpi_idle_suspend) {
64c7c8f8
NP
400 if (pm_idle_save)
401 pm_idle_save();
402 else
403 acpi_safe_halt();
404 return;
405 }
1da177e4
LT
406
407 /*
408 * Check BM Activity
409 * -----------------
410 * Check for bus mastering activity (if required), record, and check
411 * for demotion.
412 */
413 if (pr->flags.bm_check) {
4be44fcd
LB
414 u32 bm_status = 0;
415 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
1da177e4 416
c5ab81ca
DB
417 if (diff > 31)
418 diff = 31;
1da177e4 419
c5ab81ca 420 pr->power.bm_activity <<= diff;
1da177e4 421
d8c71b6d 422 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1da177e4 423 if (bm_status) {
c5ab81ca 424 pr->power.bm_activity |= 0x1;
d8c71b6d 425 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1da177e4
LT
426 }
427 /*
428 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
429 * the true state of bus mastering activity; forcing us to
430 * manually check the BMIDEA bit of each IDE channel.
431 */
432 else if (errata.piix4.bmisx) {
433 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
4be44fcd 434 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
c5ab81ca 435 pr->power.bm_activity |= 0x1;
1da177e4
LT
436 }
437
438 pr->power.bm_check_timestamp = jiffies;
439
440 /*
c4a001b1 441 * If bus mastering is or was active this jiffy, demote
1da177e4
LT
442 * to avoid a faulty transition. Note that the processor
443 * won't enter a low-power state during this call (to this
c4a001b1 444 * function) but should upon the next.
1da177e4
LT
445 *
446 * TBD: A better policy might be to fallback to the demotion
447 * state (use it for this quantum only) istead of
448 * demoting -- and rely on duration as our sole demotion
449 * qualification. This may, however, introduce DMA
450 * issues (e.g. floppy DMA transfer overrun/underrun).
451 */
c4a001b1
DB
452 if ((pr->power.bm_activity & 0x1) &&
453 cx->demotion.threshold.bm) {
1da177e4
LT
454 local_irq_enable();
455 next_state = cx->demotion.state;
456 goto end;
457 }
458 }
459
4c033552
VP
460#ifdef CONFIG_HOTPLUG_CPU
461 /*
462 * Check for P_LVL2_UP flag before entering C2 and above on
463 * an SMP system. We do it here instead of doing it at _CST/P_LVL
464 * detection phase, to work cleanly with logical CPU hotplug.
465 */
4f86d3a8 466 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
cee324b1 467 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1e483969 468 cx = &pr->power.states[ACPI_STATE_C1];
4c033552 469#endif
1e483969 470
1da177e4
LT
471 /*
472 * Sleep:
473 * ------
474 * Invoke the current Cx state to put the processor to sleep.
475 */
2a298a35 476 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
495ab9c0 477 current_thread_info()->status &= ~TS_POLLING;
0888f06a
IM
478 /*
479 * TS_POLLING-cleared state must be visible before we
480 * test NEED_RESCHED:
481 */
482 smp_mb();
2a298a35 483 if (need_resched()) {
495ab9c0 484 current_thread_info()->status |= TS_POLLING;
af2eb17b 485 local_irq_enable();
2a298a35
NP
486 return;
487 }
488 }
489
1da177e4
LT
490 switch (cx->type) {
491
492 case ACPI_STATE_C1:
493 /*
494 * Invoke C1.
495 * Use the appropriate idle routine, the one that would
496 * be used without acpi C-states.
497 */
498 if (pm_idle_save)
499 pm_idle_save();
500 else
64c7c8f8
NP
501 acpi_safe_halt();
502
1da177e4 503 /*
4be44fcd 504 * TBD: Can't get time duration while in C1, as resumes
1da177e4
LT
505 * go to an ISR rather than here. Need to instrument
506 * base interrupt handler.
2aa44d05
IM
507 *
508 * Note: the TSC better not stop in C1, sched_clock() will
509 * skew otherwise.
1da177e4
LT
510 */
511 sleep_ticks = 0xFFFFFFFF;
512 break;
513
514 case ACPI_STATE_C2:
515 /* Get start time (ticks) */
cee324b1 516 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
2aa44d05
IM
517 /* Tell the scheduler that we are going deep-idle: */
518 sched_clock_idle_sleep_event();
1da177e4 519 /* Invoke C2 */
e9e2cdb4 520 acpi_state_timer_broadcast(pr, cx, 1);
991528d7 521 acpi_cstate_enter(cx);
1da177e4 522 /* Get end time (ticks) */
cee324b1 523 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
539eb11e 524
0aa366f3 525#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
539eb11e 526 /* TSC halts in C2, so notify users */
5a90cf20 527 mark_tsc_unstable("possible TSC halt in C2");
539eb11e 528#endif
2aa44d05
IM
529 /* Compute time (ticks) that we were actually asleep */
530 sleep_ticks = ticks_elapsed(t1, t2);
531
532 /* Tell the scheduler how much we idled: */
533 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
534
1da177e4
LT
535 /* Re-enable interrupts */
536 local_irq_enable();
2aa44d05
IM
537 /* Do not account our idle-switching overhead: */
538 sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
539
495ab9c0 540 current_thread_info()->status |= TS_POLLING;
e9e2cdb4 541 acpi_state_timer_broadcast(pr, cx, 0);
1da177e4
LT
542 break;
543
544 case ACPI_STATE_C3:
18eab855
VP
545 /*
546 * disable bus master
547 * bm_check implies we need ARB_DIS
548 * !bm_check implies we need cache flush
549 * bm_control implies whether we can do ARB_DIS
550 *
551 * That leaves a case where bm_check is set and bm_control is
552 * not set. In that case we cannot do much, we enter C3
553 * without doing anything.
554 */
555 if (pr->flags.bm_check && pr->flags.bm_control) {
02df8b93 556 if (atomic_inc_return(&c3_cpu_count) ==
4be44fcd 557 num_online_cpus()) {
02df8b93
VP
558 /*
559 * All CPUs are trying to go to C3
560 * Disable bus master arbitration
561 */
d8c71b6d 562 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
02df8b93 563 }
18eab855 564 } else if (!pr->flags.bm_check) {
02df8b93
VP
565 /* SMP with no shared cache... Invalidate cache */
566 ACPI_FLUSH_CPU_CACHE();
567 }
4be44fcd 568
1da177e4 569 /* Get start time (ticks) */
cee324b1 570 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1da177e4 571 /* Invoke C3 */
e9e2cdb4 572 acpi_state_timer_broadcast(pr, cx, 1);
2aa44d05
IM
573 /* Tell the scheduler that we are going deep-idle: */
574 sched_clock_idle_sleep_event();
991528d7 575 acpi_cstate_enter(cx);
1da177e4 576 /* Get end time (ticks) */
cee324b1 577 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
18eab855 578 if (pr->flags.bm_check && pr->flags.bm_control) {
02df8b93
VP
579 /* Enable bus master arbitration */
580 atomic_dec(&c3_cpu_count);
d8c71b6d 581 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
02df8b93
VP
582 }
583
0aa366f3 584#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
539eb11e 585 /* TSC halts in C3, so notify users */
5a90cf20 586 mark_tsc_unstable("TSC halts in C3");
539eb11e 587#endif
2aa44d05
IM
588 /* Compute time (ticks) that we were actually asleep */
589 sleep_ticks = ticks_elapsed(t1, t2);
590 /* Tell the scheduler how much we idled: */
591 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
592
1da177e4
LT
593 /* Re-enable interrupts */
594 local_irq_enable();
2aa44d05
IM
595 /* Do not account our idle-switching overhead: */
596 sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
597
495ab9c0 598 current_thread_info()->status |= TS_POLLING;
e9e2cdb4 599 acpi_state_timer_broadcast(pr, cx, 0);
1da177e4
LT
600 break;
601
602 default:
603 local_irq_enable();
604 return;
605 }
a3c6598f
DB
606 cx->usage++;
607 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
608 cx->time += sleep_ticks;
1da177e4
LT
609
610 next_state = pr->power.state;
611
1e483969
DSL
612#ifdef CONFIG_HOTPLUG_CPU
613 /* Don't do promotion/demotion */
614 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
cee324b1 615 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
1e483969
DSL
616 next_state = cx;
617 goto end;
618 }
619#endif
620
1da177e4
LT
621 /*
622 * Promotion?
623 * ----------
624 * Track the number of longs (time asleep is greater than threshold)
625 * and promote when the count threshold is reached. Note that bus
626 * mastering activity may prevent promotions.
627 * Do not promote above max_cstate.
628 */
629 if (cx->promotion.state &&
630 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
5c87579e
AV
631 if (sleep_ticks > cx->promotion.threshold.ticks &&
632 cx->promotion.state->latency <= system_latency_constraint()) {
1da177e4 633 cx->promotion.count++;
4be44fcd
LB
634 cx->demotion.count = 0;
635 if (cx->promotion.count >=
636 cx->promotion.threshold.count) {
1da177e4 637 if (pr->flags.bm_check) {
4be44fcd
LB
638 if (!
639 (pr->power.bm_activity & cx->
640 promotion.threshold.bm)) {
641 next_state =
642 cx->promotion.state;
1da177e4
LT
643 goto end;
644 }
4be44fcd 645 } else {
1da177e4
LT
646 next_state = cx->promotion.state;
647 goto end;
648 }
649 }
650 }
651 }
652
653 /*
654 * Demotion?
655 * ---------
656 * Track the number of shorts (time asleep is less than time threshold)
657 * and demote when the usage threshold is reached.
658 */
659 if (cx->demotion.state) {
660 if (sleep_ticks < cx->demotion.threshold.ticks) {
661 cx->demotion.count++;
662 cx->promotion.count = 0;
663 if (cx->demotion.count >= cx->demotion.threshold.count) {
664 next_state = cx->demotion.state;
665 goto end;
666 }
667 }
668 }
669
4be44fcd 670 end:
1da177e4
LT
671 /*
672 * Demote if current state exceeds max_cstate
5c87579e 673 * or if the latency of the current state is unacceptable
1da177e4 674 */
5c87579e
AV
675 if ((pr->power.state - pr->power.states) > max_cstate ||
676 pr->power.state->latency > system_latency_constraint()) {
1da177e4
LT
677 if (cx->demotion.state)
678 next_state = cx->demotion.state;
679 }
680
681 /*
682 * New Cx State?
683 * -------------
684 * If we're going to start using a new Cx state we must clean up
685 * from the previous and prepare to use the new.
686 */
687 if (next_state != pr->power.state)
688 acpi_processor_power_activate(pr, next_state);
1da177e4
LT
689}
690
4be44fcd 691static int acpi_processor_set_power_policy(struct acpi_processor *pr)
1da177e4
LT
692{
693 unsigned int i;
694 unsigned int state_is_set = 0;
695 struct acpi_processor_cx *lower = NULL;
696 struct acpi_processor_cx *higher = NULL;
697 struct acpi_processor_cx *cx;
698
1da177e4
LT
699
700 if (!pr)
d550d98d 701 return -EINVAL;
1da177e4
LT
702
703 /*
704 * This function sets the default Cx state policy (OS idle handler).
705 * Our scheme is to promote quickly to C2 but more conservatively
706 * to C3. We're favoring C2 for its characteristics of low latency
707 * (quick response), good power savings, and ability to allow bus
708 * mastering activity. Note that the Cx state policy is completely
709 * customizable and can be altered dynamically.
710 */
711
712 /* startup state */
4be44fcd 713 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
1da177e4
LT
714 cx = &pr->power.states[i];
715 if (!cx->valid)
716 continue;
717
718 if (!state_is_set)
719 pr->power.state = cx;
720 state_is_set++;
721 break;
4be44fcd 722 }
1da177e4
LT
723
724 if (!state_is_set)
d550d98d 725 return -ENODEV;
1da177e4
LT
726
727 /* demotion */
4be44fcd 728 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
1da177e4
LT
729 cx = &pr->power.states[i];
730 if (!cx->valid)
731 continue;
732
733 if (lower) {
734 cx->demotion.state = lower;
735 cx->demotion.threshold.ticks = cx->latency_ticks;
736 cx->demotion.threshold.count = 1;
737 if (cx->type == ACPI_STATE_C3)
738 cx->demotion.threshold.bm = bm_history;
739 }
740
741 lower = cx;
742 }
743
744 /* promotion */
745 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
746 cx = &pr->power.states[i];
747 if (!cx->valid)
748 continue;
749
750 if (higher) {
4be44fcd 751 cx->promotion.state = higher;
1da177e4
LT
752 cx->promotion.threshold.ticks = cx->latency_ticks;
753 if (cx->type >= ACPI_STATE_C2)
754 cx->promotion.threshold.count = 4;
755 else
756 cx->promotion.threshold.count = 10;
757 if (higher->type == ACPI_STATE_C3)
758 cx->promotion.threshold.bm = bm_history;
759 }
760
761 higher = cx;
762 }
763
d550d98d 764 return 0;
1da177e4 765}
4f86d3a8 766#endif /* !CONFIG_CPU_IDLE */
1da177e4 767
4be44fcd 768static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
1da177e4 769{
1da177e4
LT
770
771 if (!pr)
d550d98d 772 return -EINVAL;
1da177e4
LT
773
774 if (!pr->pblk)
d550d98d 775 return -ENODEV;
1da177e4 776
1da177e4 777 /* if info is obtained from pblk/fadt, type equals state */
1da177e4
LT
778 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
779 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
780
4c033552
VP
781#ifndef CONFIG_HOTPLUG_CPU
782 /*
783 * Check for P_LVL2_UP flag before entering C2 and above on
4f86d3a8 784 * an SMP system.
4c033552 785 */
ad71860a 786 if ((num_online_cpus() > 1) &&
cee324b1 787 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
d550d98d 788 return -ENODEV;
4c033552
VP
789#endif
790
1da177e4
LT
791 /* determine C2 and C3 address from pblk */
792 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
793 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
794
795 /* determine latencies from FADT */
cee324b1
AS
796 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
797 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
1da177e4
LT
798
799 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
800 "lvl2[0x%08x] lvl3[0x%08x]\n",
801 pr->power.states[ACPI_STATE_C2].address,
802 pr->power.states[ACPI_STATE_C3].address));
803
d550d98d 804 return 0;
1da177e4
LT
805}
806
991528d7 807static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
acf05f4b 808{
991528d7
VP
809 if (!pr->power.states[ACPI_STATE_C1].valid) {
810 /* set the first C-State to C1 */
811 /* all processors need to support C1 */
812 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
813 pr->power.states[ACPI_STATE_C1].valid = 1;
814 }
815 /* the C0 state only exists as a filler in our array */
acf05f4b 816 pr->power.states[ACPI_STATE_C0].valid = 1;
d550d98d 817 return 0;
acf05f4b
VP
818}
819
4be44fcd 820static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
1da177e4 821{
4be44fcd
LB
822 acpi_status status = 0;
823 acpi_integer count;
cf824788 824 int current_count;
4be44fcd
LB
825 int i;
826 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
827 union acpi_object *cst;
1da177e4 828
1da177e4 829
1da177e4 830 if (nocst)
d550d98d 831 return -ENODEV;
1da177e4 832
991528d7 833 current_count = 0;
1da177e4
LT
834
835 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
836 if (ACPI_FAILURE(status)) {
837 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
d550d98d 838 return -ENODEV;
4be44fcd 839 }
1da177e4 840
50dd0969 841 cst = buffer.pointer;
1da177e4
LT
842
843 /* There must be at least 2 elements */
844 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
6468463a 845 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
1da177e4
LT
846 status = -EFAULT;
847 goto end;
848 }
849
850 count = cst->package.elements[0].integer.value;
851
852 /* Validate number of power states. */
853 if (count < 1 || count != cst->package.count - 1) {
6468463a 854 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
1da177e4
LT
855 status = -EFAULT;
856 goto end;
857 }
858
1da177e4
LT
859 /* Tell driver that at least _CST is supported. */
860 pr->flags.has_cst = 1;
861
862 for (i = 1; i <= count; i++) {
863 union acpi_object *element;
864 union acpi_object *obj;
865 struct acpi_power_register *reg;
866 struct acpi_processor_cx cx;
867
868 memset(&cx, 0, sizeof(cx));
869
50dd0969 870 element = &(cst->package.elements[i]);
1da177e4
LT
871 if (element->type != ACPI_TYPE_PACKAGE)
872 continue;
873
874 if (element->package.count != 4)
875 continue;
876
50dd0969 877 obj = &(element->package.elements[0]);
1da177e4
LT
878
879 if (obj->type != ACPI_TYPE_BUFFER)
880 continue;
881
4be44fcd 882 reg = (struct acpi_power_register *)obj->buffer.pointer;
1da177e4
LT
883
884 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
4be44fcd 885 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
1da177e4
LT
886 continue;
887
1da177e4 888 /* There should be an easy way to extract an integer... */
50dd0969 889 obj = &(element->package.elements[1]);
1da177e4
LT
890 if (obj->type != ACPI_TYPE_INTEGER)
891 continue;
892
893 cx.type = obj->integer.value;
991528d7
VP
894 /*
895 * Some buggy BIOSes won't list C1 in _CST -
896 * Let acpi_processor_get_power_info_default() handle them later
897 */
898 if (i == 1 && cx.type != ACPI_STATE_C1)
899 current_count++;
900
901 cx.address = reg->address;
902 cx.index = current_count + 1;
903
904 cx.space_id = ACPI_CSTATE_SYSTEMIO;
905 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
906 if (acpi_processor_ffh_cstate_probe
907 (pr->id, &cx, reg) == 0) {
908 cx.space_id = ACPI_CSTATE_FFH;
909 } else if (cx.type != ACPI_STATE_C1) {
910 /*
911 * C1 is a special case where FIXED_HARDWARE
912 * can be handled in non-MWAIT way as well.
913 * In that case, save this _CST entry info.
914 * That is, we retain space_id of SYSTEM_IO for
915 * halt based C1.
916 * Otherwise, ignore this info and continue.
917 */
918 continue;
919 }
920 }
1da177e4 921
50dd0969 922 obj = &(element->package.elements[2]);
1da177e4
LT
923 if (obj->type != ACPI_TYPE_INTEGER)
924 continue;
925
926 cx.latency = obj->integer.value;
927
50dd0969 928 obj = &(element->package.elements[3]);
1da177e4
LT
929 if (obj->type != ACPI_TYPE_INTEGER)
930 continue;
931
932 cx.power = obj->integer.value;
933
cf824788
JM
934 current_count++;
935 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
936
937 /*
938 * We support total ACPI_PROCESSOR_MAX_POWER - 1
939 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
940 */
941 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
942 printk(KERN_WARNING
943 "Limiting number of power states to max (%d)\n",
944 ACPI_PROCESSOR_MAX_POWER);
945 printk(KERN_WARNING
946 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
947 break;
948 }
1da177e4
LT
949 }
950
4be44fcd 951 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
cf824788 952 current_count));
1da177e4
LT
953
954 /* Validate number of power states discovered */
cf824788 955 if (current_count < 2)
6d93c648 956 status = -EFAULT;
1da177e4 957
4be44fcd 958 end:
02438d87 959 kfree(buffer.pointer);
1da177e4 960
d550d98d 961 return status;
1da177e4
LT
962}
963
1da177e4
LT
964static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
965{
1da177e4
LT
966
967 if (!cx->address)
d550d98d 968 return;
1da177e4
LT
969
970 /*
971 * C2 latency must be less than or equal to 100
972 * microseconds.
973 */
974 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
975 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 976 "latency too large [%d]\n", cx->latency));
d550d98d 977 return;
1da177e4
LT
978 }
979
1da177e4
LT
980 /*
981 * Otherwise we've met all of our C2 requirements.
982 * Normalize the C2 latency to expidite policy
983 */
984 cx->valid = 1;
4f86d3a8
LB
985
986#ifndef CONFIG_CPU_IDLE
1da177e4 987 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
4f86d3a8
LB
988#else
989 cx->latency_ticks = cx->latency;
990#endif
1da177e4 991
d550d98d 992 return;
1da177e4
LT
993}
994
4be44fcd
LB
995static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
996 struct acpi_processor_cx *cx)
1da177e4 997{
02df8b93
VP
998 static int bm_check_flag;
999
1da177e4
LT
1000
1001 if (!cx->address)
d550d98d 1002 return;
1da177e4
LT
1003
1004 /*
1005 * C3 latency must be less than or equal to 1000
1006 * microseconds.
1007 */
1008 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
1009 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 1010 "latency too large [%d]\n", cx->latency));
d550d98d 1011 return;
1da177e4
LT
1012 }
1013
1da177e4
LT
1014 /*
1015 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1016 * DMA transfers are used by any ISA device to avoid livelock.
1017 * Note that we could disable Type-F DMA (as recommended by
1018 * the erratum), but this is known to disrupt certain ISA
1019 * devices thus we take the conservative approach.
1020 */
1021 else if (errata.piix4.fdma) {
1022 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 1023 "C3 not supported on PIIX4 with Type-F DMA\n"));
d550d98d 1024 return;
1da177e4
LT
1025 }
1026
02df8b93
VP
1027 /* All the logic here assumes flags.bm_check is same across all CPUs */
1028 if (!bm_check_flag) {
1029 /* Determine whether bm_check is needed based on CPU */
1030 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
1031 bm_check_flag = pr->flags.bm_check;
1032 } else {
1033 pr->flags.bm_check = bm_check_flag;
1034 }
1035
1036 if (pr->flags.bm_check) {
02df8b93 1037 if (!pr->flags.bm_control) {
ed3110ef
VP
1038 if (pr->flags.has_cst != 1) {
1039 /* bus mastering control is necessary */
1040 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1041 "C3 support requires BM control\n"));
1042 return;
1043 } else {
1044 /* Here we enter C3 without bus mastering */
1045 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1046 "C3 support without BM control\n"));
1047 }
02df8b93
VP
1048 }
1049 } else {
02df8b93
VP
1050 /*
1051 * WBINVD should be set in fadt, for C3 state to be
1052 * supported on when bm_check is not required.
1053 */
cee324b1 1054 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
02df8b93 1055 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
1056 "Cache invalidation should work properly"
1057 " for C3 to be enabled on SMP systems\n"));
d550d98d 1058 return;
02df8b93 1059 }
d8c71b6d 1060 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
02df8b93
VP
1061 }
1062
1da177e4
LT
1063 /*
1064 * Otherwise we've met all of our C3 requirements.
1065 * Normalize the C3 latency to expidite policy. Enable
1066 * checking of bus mastering status (bm_check) so we can
1067 * use this in our C3 policy
1068 */
1069 cx->valid = 1;
4f86d3a8
LB
1070
1071#ifndef CONFIG_CPU_IDLE
1da177e4 1072 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
4f86d3a8
LB
1073#else
1074 cx->latency_ticks = cx->latency;
1075#endif
1da177e4 1076
d550d98d 1077 return;
1da177e4
LT
1078}
1079
1da177e4
LT
1080static int acpi_processor_power_verify(struct acpi_processor *pr)
1081{
1082 unsigned int i;
1083 unsigned int working = 0;
6eb0a0fd 1084
169a0abb 1085 pr->power.timer_broadcast_on_state = INT_MAX;
6eb0a0fd 1086
4be44fcd 1087 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
1da177e4
LT
1088 struct acpi_processor_cx *cx = &pr->power.states[i];
1089
1090 switch (cx->type) {
1091 case ACPI_STATE_C1:
1092 cx->valid = 1;
1093 break;
1094
1095 case ACPI_STATE_C2:
1096 acpi_processor_power_verify_c2(cx);
296d93cd 1097 if (cx->valid)
169a0abb 1098 acpi_timer_check_state(i, pr, cx);
1da177e4
LT
1099 break;
1100
1101 case ACPI_STATE_C3:
1102 acpi_processor_power_verify_c3(pr, cx);
296d93cd 1103 if (cx->valid)
169a0abb 1104 acpi_timer_check_state(i, pr, cx);
1da177e4
LT
1105 break;
1106 }
1107
1108 if (cx->valid)
1109 working++;
1110 }
bd663347 1111
169a0abb 1112 acpi_propagate_timer_broadcast(pr);
1da177e4
LT
1113
1114 return (working);
1115}
1116
4be44fcd 1117static int acpi_processor_get_power_info(struct acpi_processor *pr)
1da177e4
LT
1118{
1119 unsigned int i;
1120 int result;
1121
1da177e4
LT
1122
1123 /* NOTE: the idle thread may not be running while calling
1124 * this function */
1125
991528d7
VP
1126 /* Zero initialize all the C-states info. */
1127 memset(pr->power.states, 0, sizeof(pr->power.states));
1128
1da177e4 1129 result = acpi_processor_get_power_info_cst(pr);
6d93c648 1130 if (result == -ENODEV)
c5a114f1 1131 result = acpi_processor_get_power_info_fadt(pr);
6d93c648 1132
991528d7
VP
1133 if (result)
1134 return result;
1135
1136 acpi_processor_get_power_info_default(pr);
1137
cf824788 1138 pr->power.count = acpi_processor_power_verify(pr);
1da177e4 1139
4f86d3a8 1140#ifndef CONFIG_CPU_IDLE
1da177e4
LT
1141 /*
1142 * Set Default Policy
1143 * ------------------
1144 * Now that we know which states are supported, set the default
1145 * policy. Note that this policy can be changed dynamically
1146 * (e.g. encourage deeper sleeps to conserve battery life when
1147 * not on AC).
1148 */
1149 result = acpi_processor_set_power_policy(pr);
1150 if (result)
d550d98d 1151 return result;
4f86d3a8 1152#endif
1da177e4
LT
1153
1154 /*
1155 * if one state of type C2 or C3 is available, mark this
1156 * CPU as being "idle manageable"
1157 */
1158 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
acf05f4b 1159 if (pr->power.states[i].valid) {
1da177e4 1160 pr->power.count = i;
2203d6ed
LT
1161 if (pr->power.states[i].type >= ACPI_STATE_C2)
1162 pr->flags.power = 1;
acf05f4b 1163 }
1da177e4
LT
1164 }
1165
d550d98d 1166 return 0;
1da177e4
LT
1167}
1168
1da177e4
LT
1169static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1170{
50dd0969 1171 struct acpi_processor *pr = seq->private;
4be44fcd 1172 unsigned int i;
1da177e4 1173
1da177e4
LT
1174
1175 if (!pr)
1176 goto end;
1177
1178 seq_printf(seq, "active state: C%zd\n"
4be44fcd 1179 "max_cstate: C%d\n"
5c87579e
AV
1180 "bus master activity: %08x\n"
1181 "maximum allowed latency: %d usec\n",
4be44fcd 1182 pr->power.state ? pr->power.state - pr->power.states : 0,
5c87579e
AV
1183 max_cstate, (unsigned)pr->power.bm_activity,
1184 system_latency_constraint());
1da177e4
LT
1185
1186 seq_puts(seq, "states:\n");
1187
1188 for (i = 1; i <= pr->power.count; i++) {
1189 seq_printf(seq, " %cC%d: ",
4be44fcd
LB
1190 (&pr->power.states[i] ==
1191 pr->power.state ? '*' : ' '), i);
1da177e4
LT
1192
1193 if (!pr->power.states[i].valid) {
1194 seq_puts(seq, "<not supported>\n");
1195 continue;
1196 }
1197
1198 switch (pr->power.states[i].type) {
1199 case ACPI_STATE_C1:
1200 seq_printf(seq, "type[C1] ");
1201 break;
1202 case ACPI_STATE_C2:
1203 seq_printf(seq, "type[C2] ");
1204 break;
1205 case ACPI_STATE_C3:
1206 seq_printf(seq, "type[C3] ");
1207 break;
1208 default:
1209 seq_printf(seq, "type[--] ");
1210 break;
1211 }
1212
1213 if (pr->power.states[i].promotion.state)
1214 seq_printf(seq, "promotion[C%zd] ",
4be44fcd
LB
1215 (pr->power.states[i].promotion.state -
1216 pr->power.states));
1da177e4
LT
1217 else
1218 seq_puts(seq, "promotion[--] ");
1219
1220 if (pr->power.states[i].demotion.state)
1221 seq_printf(seq, "demotion[C%zd] ",
4be44fcd
LB
1222 (pr->power.states[i].demotion.state -
1223 pr->power.states));
1da177e4
LT
1224 else
1225 seq_puts(seq, "demotion[--] ");
1226
a3c6598f 1227 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
4be44fcd 1228 pr->power.states[i].latency,
a3c6598f 1229 pr->power.states[i].usage,
b0b7eaaf 1230 (unsigned long long)pr->power.states[i].time);
1da177e4
LT
1231 }
1232
4be44fcd 1233 end:
d550d98d 1234 return 0;
1da177e4
LT
1235}
1236
1237static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1238{
1239 return single_open(file, acpi_processor_power_seq_show,
4be44fcd 1240 PDE(inode)->data);
1da177e4
LT
1241}
1242
d7508032 1243static const struct file_operations acpi_processor_power_fops = {
4be44fcd
LB
1244 .open = acpi_processor_power_open_fs,
1245 .read = seq_read,
1246 .llseek = seq_lseek,
1247 .release = single_release,
1da177e4
LT
1248};
1249
4f86d3a8
LB
1250#ifndef CONFIG_CPU_IDLE
1251
1252int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1253{
1254 int result = 0;
1255
1256
1257 if (!pr)
1258 return -EINVAL;
1259
1260 if (nocst) {
1261 return -ENODEV;
1262 }
1263
1264 if (!pr->flags.power_setup_done)
1265 return -ENODEV;
1266
1267 /* Fall back to the default idle loop */
1268 pm_idle = pm_idle_save;
1269 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1270
1271 pr->flags.power = 0;
1272 result = acpi_processor_get_power_info(pr);
1273 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
1274 pm_idle = acpi_processor_idle;
1275
1276 return result;
1277}
1278
1fec74a9 1279#ifdef CONFIG_SMP
5c87579e
AV
1280static void smp_callback(void *v)
1281{
1282 /* we already woke the CPU up, nothing more to do */
1283}
1284
1285/*
1286 * This function gets called when a part of the kernel has a new latency
1287 * requirement. This means we need to get all processors out of their C-state,
1288 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1289 * wakes them all right up.
1290 */
1291static int acpi_processor_latency_notify(struct notifier_block *b,
1292 unsigned long l, void *v)
1293{
1294 smp_call_function(smp_callback, NULL, 0, 1);
1295 return NOTIFY_OK;
1296}
1297
1298static struct notifier_block acpi_processor_latency_notifier = {
1299 .notifier_call = acpi_processor_latency_notify,
1300};
4f86d3a8
LB
1301
1302#endif
1303
1304#else /* CONFIG_CPU_IDLE */
1305
1306/**
1307 * acpi_idle_bm_check - checks if bus master activity was detected
1308 */
1309static int acpi_idle_bm_check(void)
1310{
1311 u32 bm_status = 0;
1312
1313 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1314 if (bm_status)
1315 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1316 /*
1317 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1318 * the true state of bus mastering activity; forcing us to
1319 * manually check the BMIDEA bit of each IDE channel.
1320 */
1321 else if (errata.piix4.bmisx) {
1322 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
1323 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
1324 bm_status = 1;
1325 }
1326 return bm_status;
1327}
1328
1329/**
1330 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1331 * @pr: the processor
1332 * @target: the new target state
1333 */
1334static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
1335 struct acpi_processor_cx *target)
1336{
1337 if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
1338 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1339 pr->flags.bm_rld_set = 0;
1340 }
1341
1342 if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
1343 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1344 pr->flags.bm_rld_set = 1;
1345 }
1346}
1347
1348/**
1349 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1350 * @cx: cstate data
1351 */
1352static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
1353{
1354 if (cx->space_id == ACPI_CSTATE_FFH) {
1355 /* Call into architectural FFH based C-state */
1356 acpi_processor_ffh_cstate_enter(cx);
1357 } else {
1358 int unused;
1359 /* IO port based C-state */
1360 inb(cx->address);
1361 /* Dummy wait op - must do something useless after P_LVL2 read
1362 because chipsets cannot guarantee that STPCLK# signal
1363 gets asserted in time to freeze execution properly. */
1364 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
1365 }
1366}
1367
1368/**
1369 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1370 * @dev: the target CPU
1371 * @state: the state data
1372 *
1373 * This is equivalent to the HALT instruction.
1374 */
1375static int acpi_idle_enter_c1(struct cpuidle_device *dev,
1376 struct cpuidle_state *state)
1377{
1378 struct acpi_processor *pr;
1379 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1380 pr = processors[smp_processor_id()];
1381
1382 if (unlikely(!pr))
1383 return 0;
1384
1385 if (pr->flags.bm_check)
1386 acpi_idle_update_bm_rld(pr, cx);
1387
1388 current_thread_info()->status &= ~TS_POLLING;
1389 /*
1390 * TS_POLLING-cleared state must be visible before we test
1391 * NEED_RESCHED:
1392 */
1393 smp_mb();
1394 if (!need_resched())
1395 safe_halt();
1396 current_thread_info()->status |= TS_POLLING;
1397
1398 cx->usage++;
1399
1400 return 0;
1401}
1402
1403/**
1404 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1405 * @dev: the target CPU
1406 * @state: the state data
1407 */
1408static int acpi_idle_enter_simple(struct cpuidle_device *dev,
1409 struct cpuidle_state *state)
1410{
1411 struct acpi_processor *pr;
1412 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1413 u32 t1, t2;
1414 pr = processors[smp_processor_id()];
1415
1416 if (unlikely(!pr))
1417 return 0;
1418
1419 if (pr->flags.bm_check)
1420 acpi_idle_update_bm_rld(pr, cx);
1421
1422 local_irq_disable();
1423 current_thread_info()->status &= ~TS_POLLING;
1424 /*
1425 * TS_POLLING-cleared state must be visible before we test
1426 * NEED_RESCHED:
1427 */
1428 smp_mb();
1429
1430 if (unlikely(need_resched())) {
1431 current_thread_info()->status |= TS_POLLING;
1432 local_irq_enable();
1433 return 0;
1434 }
1435
1436 if (cx->type == ACPI_STATE_C3)
1437 ACPI_FLUSH_CPU_CACHE();
1438
1439 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1440 acpi_state_timer_broadcast(pr, cx, 1);
1441 acpi_idle_do_entry(cx);
1442 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1443
1444#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1445 /* TSC could halt in idle, so notify users */
1446 mark_tsc_unstable("TSC halts in idle");;
1447#endif
1448
1449 local_irq_enable();
1450 current_thread_info()->status |= TS_POLLING;
1451
1452 cx->usage++;
1453
1454 acpi_state_timer_broadcast(pr, cx, 0);
1455 cx->time += ticks_elapsed(t1, t2);
1456 return ticks_elapsed_in_us(t1, t2);
1457}
1458
1459static int c3_cpu_count;
1460static DEFINE_SPINLOCK(c3_lock);
1461
1462/**
1463 * acpi_idle_enter_bm - enters C3 with proper BM handling
1464 * @dev: the target CPU
1465 * @state: the state data
1466 *
1467 * If BM is detected, the deepest non-C3 idle state is entered instead.
1468 */
1469static int acpi_idle_enter_bm(struct cpuidle_device *dev,
1470 struct cpuidle_state *state)
1471{
1472 struct acpi_processor *pr;
1473 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1474 u32 t1, t2;
1475 pr = processors[smp_processor_id()];
1476
1477 if (unlikely(!pr))
1478 return 0;
1479
1480 local_irq_disable();
1481 current_thread_info()->status &= ~TS_POLLING;
1482 /*
1483 * TS_POLLING-cleared state must be visible before we test
1484 * NEED_RESCHED:
1485 */
1486 smp_mb();
1487
1488 if (unlikely(need_resched())) {
1489 current_thread_info()->status |= TS_POLLING;
1490 local_irq_enable();
1491 return 0;
1492 }
1493
1494 /*
1495 * Must be done before busmaster disable as we might need to
1496 * access HPET !
1497 */
1498 acpi_state_timer_broadcast(pr, cx, 1);
1499
1500 if (acpi_idle_bm_check()) {
1501 cx = pr->power.bm_state;
1502
1503 acpi_idle_update_bm_rld(pr, cx);
1504
1505 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1506 acpi_idle_do_entry(cx);
1507 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1508 } else {
1509 acpi_idle_update_bm_rld(pr, cx);
1510
1511 spin_lock(&c3_lock);
1512 c3_cpu_count++;
1513 /* Disable bus master arbitration when all CPUs are in C3 */
1514 if (c3_cpu_count == num_online_cpus())
1515 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
1516 spin_unlock(&c3_lock);
1517
1518 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1519 acpi_idle_do_entry(cx);
1520 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1521
1522 spin_lock(&c3_lock);
1523 /* Re-enable bus master arbitration */
1524 if (c3_cpu_count == num_online_cpus())
1525 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
1526 c3_cpu_count--;
1527 spin_unlock(&c3_lock);
1528 }
1529
1530#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1531 /* TSC could halt in idle, so notify users */
1532 mark_tsc_unstable("TSC halts in idle");
1533#endif
1534
1535 local_irq_enable();
1536 current_thread_info()->status |= TS_POLLING;
1537
1538 cx->usage++;
1539
1540 acpi_state_timer_broadcast(pr, cx, 0);
1541 cx->time += ticks_elapsed(t1, t2);
1542 return ticks_elapsed_in_us(t1, t2);
1543}
1544
1545struct cpuidle_driver acpi_idle_driver = {
1546 .name = "acpi_idle",
1547 .owner = THIS_MODULE,
1548};
1549
1550/**
1551 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1552 * @pr: the ACPI processor
1553 */
1554static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1555{
1556 int i, count = 0;
1557 struct acpi_processor_cx *cx;
1558 struct cpuidle_state *state;
1559 struct cpuidle_device *dev = &pr->power.dev;
1560
1561 if (!pr->flags.power_setup_done)
1562 return -EINVAL;
1563
1564 if (pr->flags.power == 0) {
1565 return -EINVAL;
1566 }
1567
1568 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1569 cx = &pr->power.states[i];
1570 state = &dev->states[count];
1571
1572 if (!cx->valid)
1573 continue;
1574
1575#ifdef CONFIG_HOTPLUG_CPU
1576 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1577 !pr->flags.has_cst &&
1578 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1579 continue;
1fec74a9 1580#endif
4f86d3a8
LB
1581 cpuidle_set_statedata(state, cx);
1582
1583 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
1584 state->exit_latency = cx->latency;
1585 state->target_residency = cx->latency * 6;
1586 state->power_usage = cx->power;
1587
1588 state->flags = 0;
1589 switch (cx->type) {
1590 case ACPI_STATE_C1:
1591 state->flags |= CPUIDLE_FLAG_SHALLOW;
1592 state->enter = acpi_idle_enter_c1;
1593 break;
1594
1595 case ACPI_STATE_C2:
1596 state->flags |= CPUIDLE_FLAG_BALANCED;
1597 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1598 state->enter = acpi_idle_enter_simple;
1599 break;
1600
1601 case ACPI_STATE_C3:
1602 state->flags |= CPUIDLE_FLAG_DEEP;
1603 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1604 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1605 state->enter = pr->flags.bm_check ?
1606 acpi_idle_enter_bm :
1607 acpi_idle_enter_simple;
1608 break;
1609 }
1610
1611 count++;
1612 }
1613
1614 dev->state_count = count;
1615
1616 if (!count)
1617 return -EINVAL;
1618
1619 /* find the deepest state that can handle active BM */
1620 if (pr->flags.bm_check) {
1621 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++)
1622 if (pr->power.states[i].type == ACPI_STATE_C3)
1623 break;
1624 pr->power.bm_state = &pr->power.states[i-1];
1625 }
1626
1627 return 0;
1628}
1629
1630int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1631{
1632 int ret;
1633
1634 if (!pr)
1635 return -EINVAL;
1636
1637 if (nocst) {
1638 return -ENODEV;
1639 }
1640
1641 if (!pr->flags.power_setup_done)
1642 return -ENODEV;
1643
1644 cpuidle_pause_and_lock();
1645 cpuidle_disable_device(&pr->power.dev);
1646 acpi_processor_get_power_info(pr);
1647 acpi_processor_setup_cpuidle(pr);
1648 ret = cpuidle_enable_device(&pr->power.dev);
1649 cpuidle_resume_and_unlock();
1650
1651 return ret;
1652}
1653
1654#endif /* CONFIG_CPU_IDLE */
5c87579e 1655
7af8b660 1656int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
4be44fcd 1657 struct acpi_device *device)
1da177e4 1658{
4be44fcd 1659 acpi_status status = 0;
b6835052 1660 static int first_run;
4be44fcd 1661 struct proc_dir_entry *entry = NULL;
1da177e4
LT
1662 unsigned int i;
1663
1da177e4
LT
1664
1665 if (!first_run) {
1666 dmi_check_system(processor_power_dmi_table);
1667 if (max_cstate < ACPI_C_STATES_MAX)
4be44fcd
LB
1668 printk(KERN_NOTICE
1669 "ACPI: processor limited to max C-state %d\n",
1670 max_cstate);
1da177e4 1671 first_run++;
4f86d3a8 1672#if !defined (CONFIG_CPU_IDLE) && defined (CONFIG_SMP)
5c87579e 1673 register_latency_notifier(&acpi_processor_latency_notifier);
1fec74a9 1674#endif
1da177e4
LT
1675 }
1676
02df8b93 1677 if (!pr)
d550d98d 1678 return -EINVAL;
02df8b93 1679
cee324b1 1680 if (acpi_gbl_FADT.cst_control && !nocst) {
4be44fcd 1681 status =
cee324b1 1682 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
1da177e4 1683 if (ACPI_FAILURE(status)) {
a6fc6720
TR
1684 ACPI_EXCEPTION((AE_INFO, status,
1685 "Notifying BIOS of _CST ability failed"));
1da177e4
LT
1686 }
1687 }
1688
1689 acpi_processor_get_power_info(pr);
4f86d3a8 1690 pr->flags.power_setup_done = 1;
1da177e4
LT
1691
1692 /*
1693 * Install the idle handler if processor power management is supported.
1694 * Note that we use previously set idle handler will be used on
1695 * platforms that only support C1.
1696 */
1697 if ((pr->flags.power) && (!boot_option_idle_override)) {
4f86d3a8
LB
1698#ifdef CONFIG_CPU_IDLE
1699 acpi_processor_setup_cpuidle(pr);
1700 pr->power.dev.cpu = pr->id;
1701 if (cpuidle_register_device(&pr->power.dev))
1702 return -EIO;
1703#endif
1704
1da177e4
LT
1705 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1706 for (i = 1; i <= pr->power.count; i++)
1707 if (pr->power.states[i].valid)
4be44fcd
LB
1708 printk(" C%d[C%d]", i,
1709 pr->power.states[i].type);
1da177e4
LT
1710 printk(")\n");
1711
4f86d3a8 1712#ifndef CONFIG_CPU_IDLE
1da177e4
LT
1713 if (pr->id == 0) {
1714 pm_idle_save = pm_idle;
1715 pm_idle = acpi_processor_idle;
1716 }
4f86d3a8 1717#endif
1da177e4
LT
1718 }
1719
1720 /* 'power' [R] */
1721 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
4be44fcd 1722 S_IRUGO, acpi_device_dir(device));
1da177e4 1723 if (!entry)
a6fc6720 1724 return -EIO;
1da177e4
LT
1725 else {
1726 entry->proc_fops = &acpi_processor_power_fops;
1727 entry->data = acpi_driver_data(device);
1728 entry->owner = THIS_MODULE;
1729 }
1730
d550d98d 1731 return 0;
1da177e4
LT
1732}
1733
4be44fcd
LB
1734int acpi_processor_power_exit(struct acpi_processor *pr,
1735 struct acpi_device *device)
1da177e4 1736{
4f86d3a8
LB
1737#ifdef CONFIG_CPU_IDLE
1738 if ((pr->flags.power) && (!boot_option_idle_override))
1739 cpuidle_unregister_device(&pr->power.dev);
1740#endif
1da177e4
LT
1741 pr->flags.power_setup_done = 0;
1742
1743 if (acpi_device_dir(device))
4be44fcd
LB
1744 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1745 acpi_device_dir(device));
1da177e4 1746
4f86d3a8
LB
1747#ifndef CONFIG_CPU_IDLE
1748
1da177e4
LT
1749 /* Unregister the idle handler when processor #0 is removed. */
1750 if (pr->id == 0) {
1751 pm_idle = pm_idle_save;
1752
1753 /*
1754 * We are about to unload the current idle thread pm callback
1755 * (pm_idle), Wait for all processors to update cached/local
1756 * copies of pm_idle before proceeding.
1757 */
1758 cpu_idle_wait();
1fec74a9 1759#ifdef CONFIG_SMP
5c87579e 1760 unregister_latency_notifier(&acpi_processor_latency_notifier);
1fec74a9 1761#endif
1da177e4 1762 }
4f86d3a8 1763#endif
1da177e4 1764
d550d98d 1765 return 0;
1da177e4 1766}