blob: 800f99c4c0ef90cc866a51f53080b04c6c8ea6e7 [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{
172 int polling = test_thread_flag(TIF_POLLING_NRFLAG);
173 if (polling) {
174 clear_thread_flag(TIF_POLLING_NRFLAG);
175 smp_mb__after_clear_bit();
176 }
177 if (!need_resched())
178 safe_halt();
179 if (polling)
180 set_thread_flag(TIF_POLLING_NRFLAG);
181}
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Len Brown4be44fc2005-08-05 00:44:28 -0400185static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Len Brown4be44fc2005-08-05 00:44:28 -0400187 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct acpi_processor_cx *cx = NULL;
189 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400190 int sleep_ticks = 0;
191 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800193 pr = processors[smp_processor_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!pr)
195 return;
196
197 /*
198 * Interrupts must be disabled during bus mastering calculations and
199 * for C2/C3 transitions.
200 */
201 local_irq_disable();
202
203 /*
204 * Check whether we truly need to go idle, or should
205 * reschedule:
206 */
207 if (unlikely(need_resched())) {
208 local_irq_enable();
209 return;
210 }
211
212 cx = pr->power.state;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800213 if (!cx) {
214 if (pm_idle_save)
215 pm_idle_save();
216 else
217 acpi_safe_halt();
218 return;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /*
222 * Check BM Activity
223 * -----------------
224 * Check for bus mastering activity (if required), record, and check
225 * for demotion.
226 */
227 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400228 u32 bm_status = 0;
229 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 if (diff > 32)
232 diff = 32;
233
234 while (diff) {
235 /* if we didn't get called, assume there was busmaster activity */
236 diff--;
237 if (diff)
238 pr->power.bm_activity |= 0x1;
239 pr->power.bm_activity <<= 1;
240 }
241
242 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400243 &bm_status, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (bm_status) {
245 pr->power.bm_activity++;
246 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400247 1, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 /*
250 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
251 * the true state of bus mastering activity; forcing us to
252 * manually check the BMIDEA bit of each IDE channel.
253 */
254 else if (errata.piix4.bmisx) {
255 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400256 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 pr->power.bm_activity++;
258 }
259
260 pr->power.bm_check_timestamp = jiffies;
261
262 /*
263 * Apply bus mastering demotion policy. Automatically demote
264 * to avoid a faulty transition. Note that the processor
265 * won't enter a low-power state during this call (to this
266 * funciton) but should upon the next.
267 *
268 * TBD: A better policy might be to fallback to the demotion
269 * state (use it for this quantum only) istead of
270 * demoting -- and rely on duration as our sole demotion
271 * qualification. This may, however, introduce DMA
272 * issues (e.g. floppy DMA transfer overrun/underrun).
273 */
274 if (pr->power.bm_activity & cx->demotion.threshold.bm) {
275 local_irq_enable();
276 next_state = cx->demotion.state;
277 goto end;
278 }
279 }
280
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400281#ifdef CONFIG_HOTPLUG_CPU
282 /*
283 * Check for P_LVL2_UP flag before entering C2 and above on
284 * an SMP system. We do it here instead of doing it at _CST/P_LVL
285 * detection phase, to work cleanly with logical CPU hotplug.
286 */
287 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
David Shaohua Li1e483962005-12-01 17:00:00 -0500288 !pr->flags.has_cst && !acpi_fadt.plvl2_up)
289 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400290#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500291
292 cx->usage++;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /*
295 * Sleep:
296 * ------
297 * Invoke the current Cx state to put the processor to sleep.
298 */
299 switch (cx->type) {
300
301 case ACPI_STATE_C1:
302 /*
303 * Invoke C1.
304 * Use the appropriate idle routine, the one that would
305 * be used without acpi C-states.
306 */
307 if (pm_idle_save)
308 pm_idle_save();
309 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800310 acpi_safe_halt();
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400313 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * go to an ISR rather than here. Need to instrument
315 * base interrupt handler.
316 */
317 sleep_ticks = 0xFFFFFFFF;
318 break;
319
320 case ACPI_STATE_C2:
321 /* Get start time (ticks) */
322 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
323 /* Invoke C2 */
324 inb(cx->address);
325 /* Dummy op - must do something useless after P_LVL2 read */
326 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
327 /* Get end time (ticks) */
328 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
329 /* Re-enable interrupts */
330 local_irq_enable();
331 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400332 sleep_ticks =
333 ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 break;
335
336 case ACPI_STATE_C3:
Len Brown4be44fc2005-08-05 00:44:28 -0400337
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400338 if (pr->flags.bm_check) {
339 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400340 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400341 /*
342 * All CPUs are trying to go to C3
343 * Disable bus master arbitration
344 */
345 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
Len Brown4be44fc2005-08-05 00:44:28 -0400346 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400347 }
348 } else {
349 /* SMP with no shared cache... Invalidate cache */
350 ACPI_FLUSH_CPU_CACHE();
351 }
Len Brown4be44fc2005-08-05 00:44:28 -0400352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /* Get start time (ticks) */
354 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
355 /* Invoke C3 */
356 inb(cx->address);
357 /* Dummy op - must do something useless after P_LVL3 read */
358 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
359 /* Get end time (ticks) */
360 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400361 if (pr->flags.bm_check) {
362 /* Enable bus master arbitration */
363 atomic_dec(&c3_cpu_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400364 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
365 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400366 }
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* Re-enable interrupts */
369 local_irq_enable();
370 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400371 sleep_ticks =
372 ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 break;
374
375 default:
376 local_irq_enable();
377 return;
378 }
379
380 next_state = pr->power.state;
381
David Shaohua Li1e483962005-12-01 17:00:00 -0500382#ifdef CONFIG_HOTPLUG_CPU
383 /* Don't do promotion/demotion */
384 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
385 !pr->flags.has_cst && !acpi_fadt.plvl2_up) {
386 next_state = cx;
387 goto end;
388 }
389#endif
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /*
392 * Promotion?
393 * ----------
394 * Track the number of longs (time asleep is greater than threshold)
395 * and promote when the count threshold is reached. Note that bus
396 * mastering activity may prevent promotions.
397 * Do not promote above max_cstate.
398 */
399 if (cx->promotion.state &&
400 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
401 if (sleep_ticks > cx->promotion.threshold.ticks) {
402 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400403 cx->demotion.count = 0;
404 if (cx->promotion.count >=
405 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400407 if (!
408 (pr->power.bm_activity & cx->
409 promotion.threshold.bm)) {
410 next_state =
411 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto end;
413 }
Len Brown4be44fc2005-08-05 00:44:28 -0400414 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 next_state = cx->promotion.state;
416 goto end;
417 }
418 }
419 }
420 }
421
422 /*
423 * Demotion?
424 * ---------
425 * Track the number of shorts (time asleep is less than time threshold)
426 * and demote when the usage threshold is reached.
427 */
428 if (cx->demotion.state) {
429 if (sleep_ticks < cx->demotion.threshold.ticks) {
430 cx->demotion.count++;
431 cx->promotion.count = 0;
432 if (cx->demotion.count >= cx->demotion.threshold.count) {
433 next_state = cx->demotion.state;
434 goto end;
435 }
436 }
437 }
438
Len Brown4be44fc2005-08-05 00:44:28 -0400439 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /*
441 * Demote if current state exceeds max_cstate
442 */
443 if ((pr->power.state - pr->power.states) > max_cstate) {
444 if (cx->demotion.state)
445 next_state = cx->demotion.state;
446 }
447
448 /*
449 * New Cx State?
450 * -------------
451 * If we're going to start using a new Cx state we must clean up
452 * from the previous and prepare to use the new.
453 */
454 if (next_state != pr->power.state)
455 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Len Brown4be44fc2005-08-05 00:44:28 -0400458static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 unsigned int i;
461 unsigned int state_is_set = 0;
462 struct acpi_processor_cx *lower = NULL;
463 struct acpi_processor_cx *higher = NULL;
464 struct acpi_processor_cx *cx;
465
Len Brown4be44fc2005-08-05 00:44:28 -0400466 ACPI_FUNCTION_TRACE("acpi_processor_set_power_policy");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!pr)
469 return_VALUE(-EINVAL);
470
471 /*
472 * This function sets the default Cx state policy (OS idle handler).
473 * Our scheme is to promote quickly to C2 but more conservatively
474 * to C3. We're favoring C2 for its characteristics of low latency
475 * (quick response), good power savings, and ability to allow bus
476 * mastering activity. Note that the Cx state policy is completely
477 * customizable and can be altered dynamically.
478 */
479
480 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400481 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 cx = &pr->power.states[i];
483 if (!cx->valid)
484 continue;
485
486 if (!state_is_set)
487 pr->power.state = cx;
488 state_is_set++;
489 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (!state_is_set)
493 return_VALUE(-ENODEV);
494
495 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400496 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 cx = &pr->power.states[i];
498 if (!cx->valid)
499 continue;
500
501 if (lower) {
502 cx->demotion.state = lower;
503 cx->demotion.threshold.ticks = cx->latency_ticks;
504 cx->demotion.threshold.count = 1;
505 if (cx->type == ACPI_STATE_C3)
506 cx->demotion.threshold.bm = bm_history;
507 }
508
509 lower = cx;
510 }
511
512 /* promotion */
513 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
514 cx = &pr->power.states[i];
515 if (!cx->valid)
516 continue;
517
518 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400519 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 cx->promotion.threshold.ticks = cx->latency_ticks;
521 if (cx->type >= ACPI_STATE_C2)
522 cx->promotion.threshold.count = 4;
523 else
524 cx->promotion.threshold.count = 10;
525 if (higher->type == ACPI_STATE_C3)
526 cx->promotion.threshold.bm = bm_history;
527 }
528
529 higher = cx;
530 }
531
Len Brown4be44fc2005-08-05 00:44:28 -0400532 return_VALUE(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Len Brown4be44fc2005-08-05 00:44:28 -0400535static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_fadt");
538
539 if (!pr)
540 return_VALUE(-EINVAL);
541
542 if (!pr->pblk)
543 return_VALUE(-ENODEV);
544
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800545 memset(pr->power.states, 0, sizeof(pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* if info is obtained from pblk/fadt, type equals state */
548 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
549 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
550 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
551
552 /* the C0 state only exists as a filler in our array,
553 * and all processors need to support C1 */
554 pr->power.states[ACPI_STATE_C0].valid = 1;
555 pr->power.states[ACPI_STATE_C1].valid = 1;
556
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400557#ifndef CONFIG_HOTPLUG_CPU
558 /*
559 * Check for P_LVL2_UP flag before entering C2 and above on
560 * an SMP system.
561 */
David Shaohua Li1e483962005-12-01 17:00:00 -0500562 if ((num_online_cpus() > 1) && !acpi_fadt.plvl2_up)
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400563 return_VALUE(-ENODEV);
564#endif
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* determine C2 and C3 address from pblk */
567 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
568 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
569
570 /* determine latencies from FADT */
571 pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat;
572 pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat;
573
574 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
575 "lvl2[0x%08x] lvl3[0x%08x]\n",
576 pr->power.states[ACPI_STATE_C2].address,
577 pr->power.states[ACPI_STATE_C3].address));
578
579 return_VALUE(0);
580}
581
Len Brown4be44fc2005-08-05 00:44:28 -0400582static int acpi_processor_get_power_info_default_c1(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500583{
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500584 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_default_c1");
585
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800586 memset(pr->power.states, 0, sizeof(pr->power.states));
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500587
588 /* if info is obtained from pblk/fadt, type equals state */
589 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
590 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
591 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
592
593 /* the C0 state only exists as a filler in our array,
594 * and all processors need to support C1 */
595 pr->power.states[ACPI_STATE_C0].valid = 1;
596 pr->power.states[ACPI_STATE_C1].valid = 1;
597
598 return_VALUE(0);
599}
600
Len Brown4be44fc2005-08-05 00:44:28 -0400601static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Len Brown4be44fc2005-08-05 00:44:28 -0400603 acpi_status status = 0;
604 acpi_integer count;
605 int i;
606 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
607 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info_cst");
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (nocst)
612 return_VALUE(-ENODEV);
613
614 pr->power.count = 0;
615 for (i = 0; i < ACPI_PROCESSOR_MAX_POWER; i++)
Len Brown4be44fc2005-08-05 00:44:28 -0400616 memset(&(pr->power.states[i]), 0,
Venkatesh Pallipadi0b6b2f02005-07-29 16:00:13 -0400617 sizeof(struct acpi_processor_cx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
620 if (ACPI_FAILURE(status)) {
621 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
622 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -0400623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Len Brown4be44fc2005-08-05 00:44:28 -0400625 cst = (union acpi_object *)buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 /* There must be at least 2 elements */
628 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400629 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
630 "not enough elements in _CST\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 status = -EFAULT;
632 goto end;
633 }
634
635 count = cst->package.elements[0].integer.value;
636
637 /* Validate number of power states. */
638 if (count < 1 || count != cst->package.count - 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400639 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
640 "count given by _CST is not valid\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 status = -EFAULT;
642 goto end;
643 }
644
645 /* We support up to ACPI_PROCESSOR_MAX_POWER. */
646 if (count > ACPI_PROCESSOR_MAX_POWER) {
Len Brown4be44fc2005-08-05 00:44:28 -0400647 printk(KERN_WARNING
648 "Limiting number of power states to max (%d)\n",
649 ACPI_PROCESSOR_MAX_POWER);
650 printk(KERN_WARNING
651 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 count = ACPI_PROCESSOR_MAX_POWER;
653 }
654
655 /* Tell driver that at least _CST is supported. */
656 pr->flags.has_cst = 1;
657
658 for (i = 1; i <= count; i++) {
659 union acpi_object *element;
660 union acpi_object *obj;
661 struct acpi_power_register *reg;
662 struct acpi_processor_cx cx;
663
664 memset(&cx, 0, sizeof(cx));
665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 element = (union acpi_object *)&(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (element->type != ACPI_TYPE_PACKAGE)
668 continue;
669
670 if (element->package.count != 4)
671 continue;
672
Len Brown4be44fc2005-08-05 00:44:28 -0400673 obj = (union acpi_object *)&(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (obj->type != ACPI_TYPE_BUFFER)
676 continue;
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400681 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 continue;
683
684 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
Len Brown4be44fc2005-08-05 00:44:28 -0400685 0 : reg->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 /* There should be an easy way to extract an integer... */
Len Brown4be44fc2005-08-05 00:44:28 -0400688 obj = (union acpi_object *)&(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (obj->type != ACPI_TYPE_INTEGER)
690 continue;
691
692 cx.type = obj->integer.value;
693
694 if ((cx.type != ACPI_STATE_C1) &&
695 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
696 continue;
697
Len Brown4be44fc2005-08-05 00:44:28 -0400698 if ((cx.type < ACPI_STATE_C1) || (cx.type > ACPI_STATE_C3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 continue;
700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 obj = (union acpi_object *)&(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (obj->type != ACPI_TYPE_INTEGER)
703 continue;
704
705 cx.latency = obj->integer.value;
706
Len Brown4be44fc2005-08-05 00:44:28 -0400707 obj = (union acpi_object *)&(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (obj->type != ACPI_TYPE_INTEGER)
709 continue;
710
711 cx.power = obj->integer.value;
712
713 (pr->power.count)++;
714 memcpy(&(pr->power.states[pr->power.count]), &cx, sizeof(cx));
715 }
716
Len Brown4be44fc2005-08-05 00:44:28 -0400717 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
718 pr->power.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* Validate number of power states discovered */
721 if (pr->power.count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400722 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Len Brown4be44fc2005-08-05 00:44:28 -0400724 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 acpi_os_free(buffer.pointer);
726
727 return_VALUE(status);
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
731{
732 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c2");
733
734 if (!cx->address)
735 return_VOID;
736
737 /*
738 * C2 latency must be less than or equal to 100
739 * microseconds.
740 */
741 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
742 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400743 "latency too large [%d]\n", cx->latency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return_VOID;
745 }
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /*
748 * Otherwise we've met all of our C2 requirements.
749 * Normalize the C2 latency to expidite policy
750 */
751 cx->valid = 1;
752 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
753
754 return_VOID;
755}
756
Len Brown4be44fc2005-08-05 00:44:28 -0400757static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
758 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400760 static int bm_check_flag;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 ACPI_FUNCTION_TRACE("acpi_processor_get_power_verify_c3");
763
764 if (!cx->address)
765 return_VOID;
766
767 /*
768 * C3 latency must be less than or equal to 1000
769 * microseconds.
770 */
771 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
772 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400773 "latency too large [%d]\n", cx->latency));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return_VOID;
775 }
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
779 * DMA transfers are used by any ISA device to avoid livelock.
780 * Note that we could disable Type-F DMA (as recommended by
781 * the erratum), but this is known to disrupt certain ISA
782 * devices thus we take the conservative approach.
783 */
784 else if (errata.piix4.fdma) {
785 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400786 "C3 not supported on PIIX4 with Type-F DMA\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return_VOID;
788 }
789
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400790 /* All the logic here assumes flags.bm_check is same across all CPUs */
791 if (!bm_check_flag) {
792 /* Determine whether bm_check is needed based on CPU */
793 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
794 bm_check_flag = pr->flags.bm_check;
795 } else {
796 pr->flags.bm_check = bm_check_flag;
797 }
798
799 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400800 /* bus mastering control is necessary */
801 if (!pr->flags.bm_control) {
802 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400803 "C3 support requires bus mastering control\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400804 return_VOID;
805 }
806 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400807 /*
808 * WBINVD should be set in fadt, for C3 state to be
809 * supported on when bm_check is not required.
810 */
811 if (acpi_fadt.wb_invd != 1) {
812 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400813 "Cache invalidation should work properly"
814 " for C3 to be enabled on SMP systems\n"));
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400815 return_VOID;
816 }
817 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
Len Brown4be44fc2005-08-05 00:44:28 -0400818 0, ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400819 }
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
822 * Otherwise we've met all of our C3 requirements.
823 * Normalize the C3 latency to expidite policy. Enable
824 * checking of bus mastering status (bm_check) so we can
825 * use this in our C3 policy
826 */
827 cx->valid = 1;
828 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 return_VOID;
831}
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833static int acpi_processor_power_verify(struct acpi_processor *pr)
834{
835 unsigned int i;
836 unsigned int working = 0;
837
Len Brown4be44fc2005-08-05 00:44:28 -0400838 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct acpi_processor_cx *cx = &pr->power.states[i];
840
841 switch (cx->type) {
842 case ACPI_STATE_C1:
843 cx->valid = 1;
844 break;
845
846 case ACPI_STATE_C2:
847 acpi_processor_power_verify_c2(cx);
848 break;
849
850 case ACPI_STATE_C3:
851 acpi_processor_power_verify_c3(pr, cx);
852 break;
853 }
854
855 if (cx->valid)
856 working++;
857 }
858
859 return (working);
860}
861
Len Brown4be44fc2005-08-05 00:44:28 -0400862static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 unsigned int i;
865 int result;
866
867 ACPI_FUNCTION_TRACE("acpi_processor_get_power_info");
868
869 /* NOTE: the idle thread may not be running while calling
870 * this function */
871
872 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400873 if (result == -ENODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400875
876 if ((result) || (acpi_processor_power_verify(pr) < 2))
877 result = acpi_processor_get_power_info_default_c1(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /*
880 * Set Default Policy
881 * ------------------
882 * Now that we know which states are supported, set the default
883 * policy. Note that this policy can be changed dynamically
884 * (e.g. encourage deeper sleeps to conserve battery life when
885 * not on AC).
886 */
887 result = acpi_processor_set_power_policy(pr);
888 if (result)
889 return_VALUE(result);
890
891 /*
892 * if one state of type C2 or C3 is available, mark this
893 * CPU as being "idle manageable"
894 */
895 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500896 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800898 if (pr->power.states[i].type >= ACPI_STATE_C2)
899 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
903 return_VALUE(0);
904}
905
Len Brown4be44fc2005-08-05 00:44:28 -0400906int acpi_processor_cst_has_changed(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Len Brown4be44fc2005-08-05 00:44:28 -0400908 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 ACPI_FUNCTION_TRACE("acpi_processor_cst_has_changed");
911
912 if (!pr)
Len Brown4be44fc2005-08-05 00:44:28 -0400913 return_VALUE(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Len Brown4be44fc2005-08-05 00:44:28 -0400915 if (nocst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return_VALUE(-ENODEV);
917 }
918
919 if (!pr->flags.power_setup_done)
920 return_VALUE(-ENODEV);
921
922 /* Fall back to the default idle loop */
923 pm_idle = pm_idle_save;
Len Brown4be44fc2005-08-05 00:44:28 -0400924 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 pr->flags.power = 0;
927 result = acpi_processor_get_power_info(pr);
928 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
929 pm_idle = acpi_processor_idle;
930
931 return_VALUE(result);
932}
933
934/* proc interface */
935
936static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
937{
Len Brown4be44fc2005-08-05 00:44:28 -0400938 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
939 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 ACPI_FUNCTION_TRACE("acpi_processor_power_seq_show");
942
943 if (!pr)
944 goto end;
945
946 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400947 "max_cstate: C%d\n"
948 "bus master activity: %08x\n",
949 pr->power.state ? pr->power.state - pr->power.states : 0,
950 max_cstate, (unsigned)pr->power.bm_activity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 seq_puts(seq, "states:\n");
953
954 for (i = 1; i <= pr->power.count; i++) {
955 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -0400956 (&pr->power.states[i] ==
957 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 if (!pr->power.states[i].valid) {
960 seq_puts(seq, "<not supported>\n");
961 continue;
962 }
963
964 switch (pr->power.states[i].type) {
965 case ACPI_STATE_C1:
966 seq_printf(seq, "type[C1] ");
967 break;
968 case ACPI_STATE_C2:
969 seq_printf(seq, "type[C2] ");
970 break;
971 case ACPI_STATE_C3:
972 seq_printf(seq, "type[C3] ");
973 break;
974 default:
975 seq_printf(seq, "type[--] ");
976 break;
977 }
978
979 if (pr->power.states[i].promotion.state)
980 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -0400981 (pr->power.states[i].promotion.state -
982 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 else
984 seq_puts(seq, "promotion[--] ");
985
986 if (pr->power.states[i].demotion.state)
987 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -0400988 (pr->power.states[i].demotion.state -
989 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 else
991 seq_puts(seq, "demotion[--] ");
992
993 seq_printf(seq, "latency[%03d] usage[%08d]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400994 pr->power.states[i].latency,
995 pr->power.states[i].usage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Len Brown4be44fc2005-08-05 00:44:28 -0400998 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return_VALUE(0);
1000}
1001
1002static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1003{
1004 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001005 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008static struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001009 .open = acpi_processor_power_open_fs,
1010 .read = seq_read,
1011 .llseek = seq_lseek,
1012 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013};
1014
Len Brown4be44fc2005-08-05 00:44:28 -04001015int acpi_processor_power_init(struct acpi_processor *pr,
1016 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Len Brown4be44fc2005-08-05 00:44:28 -04001018 acpi_status status = 0;
1019 static int first_run = 0;
1020 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 unsigned int i;
1022
1023 ACPI_FUNCTION_TRACE("acpi_processor_power_init");
1024
1025 if (!first_run) {
1026 dmi_check_system(processor_power_dmi_table);
1027 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001028 printk(KERN_NOTICE
1029 "ACPI: processor limited to max C-state %d\n",
1030 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 first_run++;
1032 }
1033
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001034 if (!pr)
1035 return_VALUE(-EINVAL);
1036
1037 if (acpi_fadt.cst_cnt && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001038 status =
1039 acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (ACPI_FAILURE(status)) {
1041 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
1042 "Notifying BIOS of _CST ability failed\n"));
1043 }
1044 }
1045
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001046 acpi_processor_power_init_pdc(&(pr->power), pr->id);
1047 acpi_processor_set_pdc(pr, pr->power.pdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 acpi_processor_get_power_info(pr);
1049
1050 /*
1051 * Install the idle handler if processor power management is supported.
1052 * Note that we use previously set idle handler will be used on
1053 * platforms that only support C1.
1054 */
1055 if ((pr->flags.power) && (!boot_option_idle_override)) {
1056 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1057 for (i = 1; i <= pr->power.count; i++)
1058 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001059 printk(" C%d[C%d]", i,
1060 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 printk(")\n");
1062
1063 if (pr->id == 0) {
1064 pm_idle_save = pm_idle;
1065 pm_idle = acpi_processor_idle;
1066 }
1067 }
1068
1069 /* 'power' [R] */
1070 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001071 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (!entry)
1073 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -04001074 "Unable to create '%s' fs entry\n",
1075 ACPI_PROCESSOR_FILE_POWER));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 else {
1077 entry->proc_fops = &acpi_processor_power_fops;
1078 entry->data = acpi_driver_data(device);
1079 entry->owner = THIS_MODULE;
1080 }
1081
1082 pr->flags.power_setup_done = 1;
1083
1084 return_VALUE(0);
1085}
1086
Len Brown4be44fc2005-08-05 00:44:28 -04001087int acpi_processor_power_exit(struct acpi_processor *pr,
1088 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 ACPI_FUNCTION_TRACE("acpi_processor_power_exit");
1091
1092 pr->flags.power_setup_done = 0;
1093
1094 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001095 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1096 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /* Unregister the idle handler when processor #0 is removed. */
1099 if (pr->id == 0) {
1100 pm_idle = pm_idle_save;
1101
1102 /*
1103 * We are about to unload the current idle thread pm callback
1104 * (pm_idle), Wait for all processors to update cached/local
1105 * copies of pm_idle before proceeding.
1106 */
1107 cpu_idle_wait();
1108 }
1109
1110 return_VALUE(0);
1111}