blob: acd875e0cacac3912a0c83a8f6549b343fd79176 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * processor_idle - idle state submodule to the ACPI processor driver
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de>
7 * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 * - Added processor hotplug support
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04009 * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
10 * - Added support for C3 on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27 *
28 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29 */
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/init.h>
34#include <linux/cpufreq.h>
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <linux/acpi.h>
38#include <linux/dmi.h>
39#include <linux/moduleparam.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080040#include <linux/sched.h> /* need_resched() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/io.h>
43#include <asm/uaccess.h>
44
45#include <acpi/acpi_bus.h>
46#include <acpi/processor.h>
47
48#define ACPI_PROCESSOR_COMPONENT 0x01000000
49#define ACPI_PROCESSOR_CLASS "processor"
50#define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
51#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("acpi_processor")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_PROCESSOR_FILE_POWER "power"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
55#define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
56#define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
Len Brown4be44fc2005-08-05 00:44:28 -040057static void (*pm_idle_save) (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058module_param(max_cstate, uint, 0644);
59
60static unsigned int nocst = 0;
61module_param(nocst, uint, 0000);
62
63/*
64 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
65 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
66 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
67 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
68 * reduce history for more aggressive entry into C3
69 */
Len Brown4be44fc2005-08-05 00:44:28 -040070static unsigned int bm_history =
71 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072module_param(bm_history, uint, 0644);
73/* --------------------------------------------------------------------------
74 Power Management
75 -------------------------------------------------------------------------- */
76
77/*
78 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
79 * For now disable this. Probably a bug somewhere else.
80 *
81 * To skip this limit, boot/load with a large max_cstate limit.
82 */
David Shaohua Li335f16b2005-06-22 18:37:00 -040083static int set_max_cstate(struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
86 return 0;
87
Len Brown3d356002005-08-03 00:22:52 -040088 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -040089 " Override with \"processor.max_cstate=%d\"\n", id->ident,
90 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Len Brown3d356002005-08-03 00:22:52 -040092 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 return 0;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static struct dmi_system_id __initdata processor_power_dmi_table[] = {
Len Brown4be44fc2005-08-05 00:44:28 -040098 {set_max_cstate, "IBM ThinkPad R40e", {
99 DMI_MATCH(DMI_BIOS_VENDOR,
100 "IBM"),
101 DMI_MATCH(DMI_BIOS_VERSION,
102 "1SET60WW")},
103 (void *)1},
104 {set_max_cstate, "Medion 41700", {
105 DMI_MATCH(DMI_BIOS_VENDOR,
106 "Phoenix Technologies LTD"),
107 DMI_MATCH(DMI_BIOS_VERSION,
108 "R01-A1J")}, (void *)1},
109 {set_max_cstate, "Clevo 5600D", {
110 DMI_MATCH(DMI_BIOS_VENDOR,
111 "Phoenix Technologies LTD"),
112 DMI_MATCH(DMI_BIOS_VERSION,
113 "SHE845M0.86C.0013.D.0302131307")},
114 (void *)2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 {},
116};
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118static inline u32 ticks_elapsed(u32 t1, u32 t2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 if (t2 >= t1)
121 return (t2 - t1);
122 else if (!acpi_fadt.tmr_val_ext)
123 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
124 else
125 return ((0xFFFFFFFF - t1) + t2);
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static void
Len Brown4be44fc2005-08-05 00:44:28 -0400129acpi_processor_power_activate(struct acpi_processor *pr,
130 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Len Brown4be44fc2005-08-05 00:44:28 -0400132 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (!pr || !new)
135 return;
136
137 old = pr->power.state;
138
139 if (old)
140 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400141 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /* Cleanup from old state. */
144 if (old) {
145 switch (old->type) {
146 case ACPI_STATE_C3:
147 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400148 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Len Brown4be44fc2005-08-05 00:44:28 -0400149 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
150 ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 break;
152 }
153 }
154
155 /* Prepare to use new state. */
156 switch (new->type) {
157 case ACPI_STATE_C3:
158 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400159 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Len Brown4be44fc2005-08-05 00:44:28 -0400160 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1,
161 ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163 }
164
165 pr->power.state = new;
166
167 return;
168}
169
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800170static void acpi_safe_halt(void)
171{
Nick Piggin2a298a32005-12-02 12:44:19 +1100172 clear_thread_flag(TIF_POLLING_NRFLAG);
173 smp_mb__after_clear_bit();
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800174 if (!need_resched())
175 safe_halt();
Nick Piggin2a298a32005-12-02 12:44:19 +1100176 set_thread_flag(TIF_POLLING_NRFLAG);
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800177}
178
Len Brown4be44fc2005-08-05 00:44:28 -0400179static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Len Brown4be44fc2005-08-05 00:44:28 -0400181static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Len Brown4be44fc2005-08-05 00:44:28 -0400183 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct acpi_processor_cx *cx = NULL;
185 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400186 int sleep_ticks = 0;
187 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800189 pr = processors[smp_processor_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (!pr)
191 return;
192
193 /*
194 * Interrupts must be disabled during bus mastering calculations and
195 * for C2/C3 transitions.
196 */
197 local_irq_disable();
198
199 /*
200 * Check whether we truly need to go idle, or should
201 * reschedule:
202 */
203 if (unlikely(need_resched())) {
204 local_irq_enable();
205 return;
206 }
207
208 cx = pr->power.state;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800209 if (!cx) {
210 if (pm_idle_save)
211 pm_idle_save();
212 else
213 acpi_safe_halt();
214 return;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /*
218 * Check BM Activity
219 * -----------------
220 * Check for bus mastering activity (if required), record, and check
221 * for demotion.
222 */
223 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400224 u32 bm_status = 0;
225 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (diff > 32)
228 diff = 32;
229
230 while (diff) {
231 /* if we didn't get called, assume there was busmaster activity */
232 diff--;
233 if (diff)
234 pr->power.bm_activity |= 0x1;
235 pr->power.bm_activity <<= 1;
236 }
237
238 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400239 &bm_status, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (bm_status) {
241 pr->power.bm_activity++;
242 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400243 1, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245 /*
246 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
247 * the true state of bus mastering activity; forcing us to
248 * manually check the BMIDEA bit of each IDE channel.
249 */
250 else if (errata.piix4.bmisx) {
251 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400252 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 pr->power.bm_activity++;
254 }
255
256 pr->power.bm_check_timestamp = jiffies;
257
258 /*
259 * Apply bus mastering demotion policy. Automatically demote
260 * to avoid a faulty transition. Note that the processor
261 * won't enter a low-power state during this call (to this
262 * funciton) but should upon the next.
263 *
264 * TBD: A better policy might be to fallback to the demotion
265 * state (use it for this quantum only) istead of
266 * demoting -- and rely on duration as our sole demotion
267 * qualification. This may, however, introduce DMA
268 * issues (e.g. floppy DMA transfer overrun/underrun).
269 */
270 if (pr->power.bm_activity & cx->demotion.threshold.bm) {
271 local_irq_enable();
272 next_state = cx->demotion.state;
273 goto end;
274 }
275 }
276
277 cx->usage++;
278
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400279#ifdef CONFIG_HOTPLUG_CPU
280 /*
281 * Check for P_LVL2_UP flag before entering C2 and above on
282 * an SMP system. We do it here instead of doing it at _CST/P_LVL
283 * detection phase, to work cleanly with logical CPU hotplug.
284 */
285 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
286 !pr->flags.has_cst && acpi_fadt.plvl2_up)
287 cx->type = ACPI_STATE_C1;
288#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /*
290 * Sleep:
291 * ------
292 * Invoke the current Cx state to put the processor to sleep.
293 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100294 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
295 clear_thread_flag(TIF_POLLING_NRFLAG);
296 smp_mb__after_clear_bit();
297 if (need_resched()) {
298 set_thread_flag(TIF_POLLING_NRFLAG);
299 return;
300 }
301 }
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 switch (cx->type) {
304
305 case ACPI_STATE_C1:
306 /*
307 * Invoke C1.
308 * Use the appropriate idle routine, the one that would
309 * be used without acpi C-states.
310 */
311 if (pm_idle_save)
312 pm_idle_save();
313 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800314 acpi_safe_halt();
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400317 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * go to an ISR rather than here. Need to instrument
319 * base interrupt handler.
320 */
321 sleep_ticks = 0xFFFFFFFF;
322 break;
323
324 case ACPI_STATE_C2:
325 /* Get start time (ticks) */
326 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
327 /* Invoke C2 */
328 inb(cx->address);
329 /* Dummy op - must do something useless after P_LVL2 read */
330 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
331 /* Get end time (ticks) */
332 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
333 /* Re-enable interrupts */
334 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100335 set_thread_flag(TIF_POLLING_NRFLAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400337 sleep_ticks =
338 ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340
341 case ACPI_STATE_C3:
Len Brown4be44fc2005-08-05 00:44:28 -0400342
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400343 if (pr->flags.bm_check) {
344 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400345 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400346 /*
347 * All CPUs are trying to go to C3
348 * Disable bus master arbitration
349 */
350 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
Len Brown4be44fc2005-08-05 00:44:28 -0400351 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400352 }
353 } else {
354 /* SMP with no shared cache... Invalidate cache */
355 ACPI_FLUSH_CPU_CACHE();
356 }
Len Brown4be44fc2005-08-05 00:44:28 -0400357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* Get start time (ticks) */
359 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
360 /* Invoke C3 */
361 inb(cx->address);
362 /* Dummy op - must do something useless after P_LVL3 read */
363 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
364 /* Get end time (ticks) */
365 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400366 if (pr->flags.bm_check) {
367 /* Enable bus master arbitration */
368 atomic_dec(&c3_cpu_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400369 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
370 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400371 }
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /* Re-enable interrupts */
374 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100375 set_thread_flag(TIF_POLLING_NRFLAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400377 sleep_ticks =
378 ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
380
381 default:
382 local_irq_enable();
383 return;
384 }
385
386 next_state = pr->power.state;
387
388 /*
389 * Promotion?
390 * ----------
391 * Track the number of longs (time asleep is greater than threshold)
392 * and promote when the count threshold is reached. Note that bus
393 * mastering activity may prevent promotions.
394 * Do not promote above max_cstate.
395 */
396 if (cx->promotion.state &&
397 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
398 if (sleep_ticks > cx->promotion.threshold.ticks) {
399 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400400 cx->demotion.count = 0;
401 if (cx->promotion.count >=
402 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400404 if (!
405 (pr->power.bm_activity & cx->
406 promotion.threshold.bm)) {
407 next_state =
408 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto end;
410 }
Len Brown4be44fc2005-08-05 00:44:28 -0400411 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 next_state = cx->promotion.state;
413 goto end;
414 }
415 }
416 }
417 }
418
419 /*
420 * Demotion?
421 * ---------
422 * Track the number of shorts (time asleep is less than time threshold)
423 * and demote when the usage threshold is reached.
424 */
425 if (cx->demotion.state) {
426 if (sleep_ticks < cx->demotion.threshold.ticks) {
427 cx->demotion.count++;
428 cx->promotion.count = 0;
429 if (cx->demotion.count >= cx->demotion.threshold.count) {
430 next_state = cx->demotion.state;
431 goto end;
432 }
433 }
434 }
435
Len Brown4be44fc2005-08-05 00:44:28 -0400436 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /*
438 * Demote if current state exceeds max_cstate
439 */
440 if ((pr->power.state - pr->power.states) > max_cstate) {
441 if (cx->demotion.state)
442 next_state = cx->demotion.state;
443 }
444
445 /*
446 * New Cx State?
447 * -------------
448 * If we're going to start using a new Cx state we must clean up
449 * from the previous and prepare to use the new.
450 */
451 if (next_state != pr->power.state)
452 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Len Brown4be44fc2005-08-05 00:44:28 -0400455static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 unsigned int i;
458 unsigned int state_is_set = 0;
459 struct acpi_processor_cx *lower = NULL;
460 struct acpi_processor_cx *higher = NULL;
461 struct acpi_processor_cx *cx;
462
Len Brown4be44fc2005-08-05 00:44:28 -0400463 ACPI_FUNCTION_TRACE("acpi_processor_set_power_policy");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (!pr)
466 return_VALUE(-EINVAL);
467
468 /*
469 * This function sets the default Cx state policy (OS idle handler).
470 * Our scheme is to promote quickly to C2 but more conservatively
471 * to C3. We're favoring C2 for its characteristics of low latency
472 * (quick response), good power savings, and ability to allow bus
473 * mastering activity. Note that the Cx state policy is completely
474 * customizable and can be altered dynamically.
475 */
476
477 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400478 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 cx = &pr->power.states[i];
480 if (!cx->valid)
481 continue;
482
483 if (!state_is_set)
484 pr->power.state = cx;
485 state_is_set++;
486 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (!state_is_set)
490 return_VALUE(-ENODEV);
491
492 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400493 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 cx = &pr->power.states[i];
495 if (!cx->valid)
496 continue;
497
498 if (lower) {
499 cx->demotion.state = lower;
500 cx->demotion.threshold.ticks = cx->latency_ticks;
501 cx->demotion.threshold.count = 1;
502 if (cx->type == ACPI_STATE_C3)
503 cx->demotion.threshold.bm = bm_history;
504 }
505
506 lower = cx;
507 }
508
509 /* promotion */
510 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
511 cx = &pr->power.states[i];
512 if (!cx->valid)
513 continue;
514
515 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400516 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 cx->promotion.threshold.ticks = cx->latency_ticks;
518 if (cx->type >= ACPI_STATE_C2)
519 cx->promotion.threshold.count = 4;
520 else
521 cx->promotion.threshold.count = 10;
522 if (higher->type == ACPI_STATE_C3)
523 cx->promotion.threshold.bm = bm_history;
524 }
525
526 higher = cx;
527 }
528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 return_VALUE(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Len Brown4be44fc2005-08-05 00:44:28 -0400532static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_fadt");
535
536 if (!pr)
537 return_VALUE(-EINVAL);
538
539 if (!pr->pblk)
540 return_VALUE(-ENODEV);
541
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800542 memset(pr->power.states, 0, sizeof(pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* if info is obtained from pblk/fadt, type equals state */
545 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
546 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
547 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
548
549 /* the C0 state only exists as a filler in our array,
550 * and all processors need to support C1 */
551 pr->power.states[ACPI_STATE_C0].valid = 1;
552 pr->power.states[ACPI_STATE_C1].valid = 1;
553
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400554#ifndef CONFIG_HOTPLUG_CPU
555 /*
556 * Check for P_LVL2_UP flag before entering C2 and above on
557 * an SMP system.
558 */
559 if ((num_online_cpus() > 1) && acpi_fadt.plvl2_up)
560 return_VALUE(-ENODEV);
561#endif
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* determine C2 and C3 address from pblk */
564 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
565 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
566
567 /* determine latencies from FADT */
568 pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat;
569 pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat;
570
571 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
572 "lvl2[0x%08x] lvl3[0x%08x]\n",
573 pr->power.states[ACPI_STATE_C2].address,
574 pr->power.states[ACPI_STATE_C3].address));
575
576 return_VALUE(0);
577}
578
Len Brown4be44fc2005-08-05 00:44:28 -0400579static int acpi_processor_get_power_info_default_c1(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500580{
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500581 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_default_c1");
582
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800583 memset(pr->power.states, 0, sizeof(pr->power.states));
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500584
585 /* if info is obtained from pblk/fadt, type equals state */
586 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
587 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
588 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
589
590 /* the C0 state only exists as a filler in our array,
591 * and all processors need to support C1 */
592 pr->power.states[ACPI_STATE_C0].valid = 1;
593 pr->power.states[ACPI_STATE_C1].valid = 1;
594
595 return_VALUE(0);
596}
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Len Brown4be44fc2005-08-05 00:44:28 -0400600 acpi_status status = 0;
601 acpi_integer count;
602 int i;
603 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
604 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_cst");
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (nocst)
609 return_VALUE(-ENODEV);
610
611 pr->power.count = 0;
612 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
Len Brown4be44fc2005-08-05 00:44:28 -0400613 memset(&(pr->power.states[i]), 0,
Venkatesh Pallipadi0b6b2f02005-07-29 16:00:13 -0400614 sizeof(struct acpi_processor_cx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
617 if (ACPI_FAILURE(status)) {
618 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
619 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -0400620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Len Brown4be44fc2005-08-05 00:44:28 -0400622 cst = (union acpi_object *)buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /* There must be at least 2 elements */
625 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400626 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
627 "not enough elements in _CST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 status = -EFAULT;
629 goto end;
630 }
631
632 count = cst->package.elements[0].integer.value;
633
634 /* Validate number of power states. */
635 if (count < 1 || count != cst->package.count - 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400636 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
637 "count given by _CST is not valid\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 status = -EFAULT;
639 goto end;
640 }
641
642 /* We support up to ACPI_PROCESSOR_MAX_POWER. */
643 if (count > ACPI_PROCESSOR_MAX_POWER) {
Len Brown4be44fc2005-08-05 00:44:28 -0400644 printk(KERN_WARNING
645 "Limiting number of power states to max (%d)\n",
646 ACPI_PROCESSOR_MAX_POWER);
647 printk(KERN_WARNING
648 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 count = ACPI_PROCESSOR_MAX_POWER;
650 }
651
652 /* Tell driver that at least _CST is supported. */
653 pr->flags.has_cst = 1;
654
655 for (i = 1; i <= count; i++) {
656 union acpi_object *element;
657 union acpi_object *obj;
658 struct acpi_power_register *reg;
659 struct acpi_processor_cx cx;
660
661 memset(&cx, 0, sizeof(cx));
662
Len Brown4be44fc2005-08-05 00:44:28 -0400663 element = (union acpi_object *)&(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (element->type != ACPI_TYPE_PACKAGE)
665 continue;
666
667 if (element->package.count != 4)
668 continue;
669
Len Brown4be44fc2005-08-05 00:44:28 -0400670 obj = (union acpi_object *)&(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (obj->type != ACPI_TYPE_BUFFER)
673 continue;
674
Len Brown4be44fc2005-08-05 00:44:28 -0400675 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400678 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 continue;
680
681 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
Len Brown4be44fc2005-08-05 00:44:28 -0400682 0 : reg->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* There should be an easy way to extract an integer... */
Len Brown4be44fc2005-08-05 00:44:28 -0400685 obj = (union acpi_object *)&(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (obj->type != ACPI_TYPE_INTEGER)
687 continue;
688
689 cx.type = obj->integer.value;
690
691 if ((cx.type != ACPI_STATE_C1) &&
692 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
693 continue;
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 if ((cx.type < ACPI_STATE_C1) || (cx.type > ACPI_STATE_C3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 continue;
697
Len Brown4be44fc2005-08-05 00:44:28 -0400698 obj = (union acpi_object *)&(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (obj->type != ACPI_TYPE_INTEGER)
700 continue;
701
702 cx.latency = obj->integer.value;
703
Len Brown4be44fc2005-08-05 00:44:28 -0400704 obj = (union acpi_object *)&(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (obj->type != ACPI_TYPE_INTEGER)
706 continue;
707
708 cx.power = obj->integer.value;
709
710 (pr->power.count)++;
711 memcpy(&(pr->power.states[pr->power.count]), &cx, sizeof(cx));
712 }
713
Len Brown4be44fc2005-08-05 00:44:28 -0400714 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
715 pr->power.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* Validate number of power states discovered */
718 if (pr->power.count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400719 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Len Brown4be44fc2005-08-05 00:44:28 -0400721 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 acpi_os_free(buffer.pointer);
723
724 return_VALUE(status);
725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
728{
729 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c2");
730
731 if (!cx->address)
732 return_VOID;
733
734 /*
735 * C2 latency must be less than or equal to 100
736 * microseconds.
737 */
738 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
739 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400740 "latency too large [%d]\n", cx->latency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return_VOID;
742 }
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * Otherwise we've met all of our C2 requirements.
746 * Normalize the C2 latency to expidite policy
747 */
748 cx->valid = 1;
749 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
750
751 return_VOID;
752}
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
755 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400757 static int bm_check_flag;
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c3");
760
761 if (!cx->address)
762 return_VOID;
763
764 /*
765 * C3 latency must be less than or equal to 1000
766 * microseconds.
767 */
768 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
769 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400770 "latency too large [%d]\n", cx->latency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return_VOID;
772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /*
775 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
776 * DMA transfers are used by any ISA device to avoid livelock.
777 * Note that we could disable Type-F DMA (as recommended by
778 * the erratum), but this is known to disrupt certain ISA
779 * devices thus we take the conservative approach.
780 */
781 else if (errata.piix4.fdma) {
782 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400783 "C3 not supported on PIIX4 with Type-F DMA\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return_VOID;
785 }
786
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400787 /* All the logic here assumes flags.bm_check is same across all CPUs */
788 if (!bm_check_flag) {
789 /* Determine whether bm_check is needed based on CPU */
790 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
791 bm_check_flag = pr->flags.bm_check;
792 } else {
793 pr->flags.bm_check = bm_check_flag;
794 }
795
796 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400797 /* bus mastering control is necessary */
798 if (!pr->flags.bm_control) {
799 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400800 "C3 support requires bus mastering control\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400801 return_VOID;
802 }
803 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400804 /*
805 * WBINVD should be set in fadt, for C3 state to be
806 * supported on when bm_check is not required.
807 */
808 if (acpi_fadt.wb_invd != 1) {
809 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400810 "Cache invalidation should work properly"
811 " for C3 to be enabled on SMP systems\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400812 return_VOID;
813 }
814 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
Len Brown4be44fc2005-08-05 00:44:28 -0400815 0, ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400816 }
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 /*
819 * Otherwise we've met all of our C3 requirements.
820 * Normalize the C3 latency to expidite policy. Enable
821 * checking of bus mastering status (bm_check) so we can
822 * use this in our C3 policy
823 */
824 cx->valid = 1;
825 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 return_VOID;
828}
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static int acpi_processor_power_verify(struct acpi_processor *pr)
831{
832 unsigned int i;
833 unsigned int working = 0;
834
Len Brown4be44fc2005-08-05 00:44:28 -0400835 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct acpi_processor_cx *cx = &pr->power.states[i];
837
838 switch (cx->type) {
839 case ACPI_STATE_C1:
840 cx->valid = 1;
841 break;
842
843 case ACPI_STATE_C2:
844 acpi_processor_power_verify_c2(cx);
845 break;
846
847 case ACPI_STATE_C3:
848 acpi_processor_power_verify_c3(pr, cx);
849 break;
850 }
851
852 if (cx->valid)
853 working++;
854 }
855
856 return (working);
857}
858
Len Brown4be44fc2005-08-05 00:44:28 -0400859static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 unsigned int i;
862 int result;
863
864 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info");
865
866 /* NOTE: the idle thread may not be running while calling
867 * this function */
868
869 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400870 if (result == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400872
873 if ((result) || (acpi_processor_power_verify(pr) < 2))
874 result = acpi_processor_get_power_info_default_c1(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 /*
877 * Set Default Policy
878 * ------------------
879 * Now that we know which states are supported, set the default
880 * policy. Note that this policy can be changed dynamically
881 * (e.g. encourage deeper sleeps to conserve battery life when
882 * not on AC).
883 */
884 result = acpi_processor_set_power_policy(pr);
885 if (result)
886 return_VALUE(result);
887
888 /*
889 * if one state of type C2 or C3 is available, mark this
890 * CPU as being "idle manageable"
891 */
892 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500893 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800895 if (pr->power.states[i].type >= ACPI_STATE_C2)
896 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
900 return_VALUE(0);
901}
902
Len Brown4be44fc2005-08-05 00:44:28 -0400903int acpi_processor_cst_has_changed(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Len Brown4be44fc2005-08-05 00:44:28 -0400905 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 ACPI_FUNCTION_TRACE("acpi_processor_cst_has_changed");
908
909 if (!pr)
Len Brown4be44fc2005-08-05 00:44:28 -0400910 return_VALUE(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Len Brown4be44fc2005-08-05 00:44:28 -0400912 if (nocst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return_VALUE(-ENODEV);
914 }
915
916 if (!pr->flags.power_setup_done)
917 return_VALUE(-ENODEV);
918
919 /* Fall back to the default idle loop */
920 pm_idle = pm_idle_save;
Len Brown4be44fc2005-08-05 00:44:28 -0400921 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 pr->flags.power = 0;
924 result = acpi_processor_get_power_info(pr);
925 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
926 pm_idle = acpi_processor_idle;
927
928 return_VALUE(result);
929}
930
931/* proc interface */
932
933static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
934{
Len Brown4be44fc2005-08-05 00:44:28 -0400935 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
936 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 ACPI_FUNCTION_TRACE("acpi_processor_power_seq_show");
939
940 if (!pr)
941 goto end;
942
943 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400944 "max_cstate: C%d\n"
945 "bus master activity: %08x\n",
946 pr->power.state ? pr->power.state - pr->power.states : 0,
947 max_cstate, (unsigned)pr->power.bm_activity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 seq_puts(seq, "states:\n");
950
951 for (i = 1; i <= pr->power.count; i++) {
952 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -0400953 (&pr->power.states[i] ==
954 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if (!pr->power.states[i].valid) {
957 seq_puts(seq, "<not supported>\n");
958 continue;
959 }
960
961 switch (pr->power.states[i].type) {
962 case ACPI_STATE_C1:
963 seq_printf(seq, "type[C1] ");
964 break;
965 case ACPI_STATE_C2:
966 seq_printf(seq, "type[C2] ");
967 break;
968 case ACPI_STATE_C3:
969 seq_printf(seq, "type[C3] ");
970 break;
971 default:
972 seq_printf(seq, "type[--] ");
973 break;
974 }
975
976 if (pr->power.states[i].promotion.state)
977 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -0400978 (pr->power.states[i].promotion.state -
979 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 else
981 seq_puts(seq, "promotion[--] ");
982
983 if (pr->power.states[i].demotion.state)
984 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -0400985 (pr->power.states[i].demotion.state -
986 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 else
988 seq_puts(seq, "demotion[--] ");
989
990 seq_printf(seq, "latency[%03d] usage[%08d]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400991 pr->power.states[i].latency,
992 pr->power.states[i].usage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994
Len Brown4be44fc2005-08-05 00:44:28 -0400995 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return_VALUE(0);
997}
998
999static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1000{
1001 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001002 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005static struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001006 .open = acpi_processor_power_open_fs,
1007 .read = seq_read,
1008 .llseek = seq_lseek,
1009 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010};
1011
Len Brown4be44fc2005-08-05 00:44:28 -04001012int acpi_processor_power_init(struct acpi_processor *pr,
1013 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Len Brown4be44fc2005-08-05 00:44:28 -04001015 acpi_status status = 0;
1016 static int first_run = 0;
1017 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 unsigned int i;
1019
1020 ACPI_FUNCTION_TRACE("acpi_processor_power_init");
1021
1022 if (!first_run) {
1023 dmi_check_system(processor_power_dmi_table);
1024 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001025 printk(KERN_NOTICE
1026 "ACPI: processor limited to max C-state %d\n",
1027 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 first_run++;
1029 }
1030
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001031 if (!pr)
1032 return_VALUE(-EINVAL);
1033
1034 if (acpi_fadt.cst_cnt && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001035 status =
1036 acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (ACPI_FAILURE(status)) {
1038 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1039 "Notifying BIOS of _CST ability failed\n"));
1040 }
1041 }
1042
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001043 acpi_processor_power_init_pdc(&(pr->power), pr->id);
1044 acpi_processor_set_pdc(pr, pr->power.pdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 acpi_processor_get_power_info(pr);
1046
1047 /*
1048 * Install the idle handler if processor power management is supported.
1049 * Note that we use previously set idle handler will be used on
1050 * platforms that only support C1.
1051 */
1052 if ((pr->flags.power) && (!boot_option_idle_override)) {
1053 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1054 for (i = 1; i <= pr->power.count; i++)
1055 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001056 printk(" C%d[C%d]", i,
1057 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 printk(")\n");
1059
1060 if (pr->id == 0) {
1061 pm_idle_save = pm_idle;
1062 pm_idle = acpi_processor_idle;
1063 }
1064 }
1065
1066 /* 'power' [R] */
1067 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001068 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (!entry)
1070 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -04001071 "Unable to create '%s' fs entry\n",
1072 ACPI_PROCESSOR_FILE_POWER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 else {
1074 entry->proc_fops = &acpi_processor_power_fops;
1075 entry->data = acpi_driver_data(device);
1076 entry->owner = THIS_MODULE;
1077 }
1078
1079 pr->flags.power_setup_done = 1;
1080
1081 return_VALUE(0);
1082}
1083
Len Brown4be44fc2005-08-05 00:44:28 -04001084int acpi_processor_power_exit(struct acpi_processor *pr,
1085 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 ACPI_FUNCTION_TRACE("acpi_processor_power_exit");
1088
1089 pr->flags.power_setup_done = 0;
1090
1091 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001092 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1093 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 /* Unregister the idle handler when processor #0 is removed. */
1096 if (pr->id == 0) {
1097 pm_idle = pm_idle_save;
1098
1099 /*
1100 * We are about to unload the current idle thread pm callback
1101 * (pm_idle), Wait for all processors to update cached/local
1102 * copies of pm_idle before proceeding.
1103 */
1104 cpu_idle_wait();
1105 }
1106
1107 return_VALUE(0);
1108}