blob: 4ba3a9a473dd5efc33c2e5ec270538449cdfc8ac [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>
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -04006 * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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() */
Mark Grossf011e2e2008-02-04 22:30:09 -080041#include <linux/pm_qos_params.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080042#include <linux/clockchips.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040043#include <linux/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Thomas Gleixner34349332007-02-16 01:27:54 -080045/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050064ACPI_MODULE_NAME("processor_idle");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define ACPI_PROCESSOR_FILE_POWER "power"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
Ingo Molnar2aa44d02007-08-23 15:18:02 +020067#define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY)
Len Brown4f86d3a2007-10-03 18:58:00 -040068#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
70#define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
Andreas Mohrb6835052006-04-27 05:25:00 -040071static void (*pm_idle_save) (void) __read_mostly;
Len Brown4f86d3a2007-10-03 18:58:00 -040072#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))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brown4f86d3a2007-10-03 18:58:00 -040078static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
Venki Pallipadi5b3f0e62008-01-07 17:50:10 -050079#ifdef CONFIG_CPU_IDLE
Len Brown4f86d3a2007-10-03 18:58:00 -040080module_param(max_cstate, uint, 0000);
Venki Pallipadi5b3f0e62008-01-07 17:50:10 -050081#else
82module_param(max_cstate, uint, 0644);
83#endif
Andreas Mohrb6835052006-04-27 05:25:00 -040084static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085module_param(nocst, uint, 0000);
86
Len Brown4f86d3a2007-10-03 18:58:00 -040087#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
89 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
90 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
91 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
92 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
93 * reduce history for more aggressive entry into C3
94 */
Andreas Mohrb6835052006-04-27 05:25:00 -040095static unsigned int bm_history __read_mostly =
Len Brown4be44fc2005-08-05 00:44:28 -040096 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097module_param(bm_history, uint, 0644);
Len Brown4f86d3a2007-10-03 18:58:00 -040098
99static int acpi_processor_set_power_policy(struct acpi_processor *pr);
100
101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/*
104 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
105 * For now disable this. Probably a bug somewhere else.
106 *
107 * To skip this limit, boot/load with a large max_cstate limit.
108 */
Jeff Garzik18552562007-10-03 15:15:40 -0400109static int set_max_cstate(const struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
112 return 0;
113
Len Brown3d356002005-08-03 00:22:52 -0400114 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -0400115 " Override with \"processor.max_cstate=%d\"\n", id->ident,
116 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Len Brown3d356002005-08-03 00:22:52 -0400118 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 return 0;
121}
122
Ashok Raj7ded5682006-02-03 21:51:23 +0100123/* Actually this shouldn't be __cpuinitdata, would be better to fix the
124 callers to only run once -AK */
125static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -0500126 { set_max_cstate, "IBM ThinkPad R40e", {
127 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Bartlomiej Swierczf8313352006-05-29 07:16:00 -0400128 DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
129 { set_max_cstate, "IBM ThinkPad R40e", {
130 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Thomas Rosner876c1842006-01-06 01:31:00 -0500131 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
132 { set_max_cstate, "IBM ThinkPad R40e", {
133 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
134 DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
135 { set_max_cstate, "IBM ThinkPad R40e", {
136 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
137 DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
138 { set_max_cstate, "IBM ThinkPad R40e", {
139 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
140 DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
141 { set_max_cstate, "IBM ThinkPad R40e", {
142 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
143 DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
144 { set_max_cstate, "IBM ThinkPad R40e", {
145 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
146 DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
147 { set_max_cstate, "IBM ThinkPad R40e", {
148 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
149 DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
150 { set_max_cstate, "IBM ThinkPad R40e", {
151 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
152 DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
153 { set_max_cstate, "IBM ThinkPad R40e", {
154 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
155 DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
156 { set_max_cstate, "IBM ThinkPad R40e", {
157 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
158 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
159 { set_max_cstate, "IBM ThinkPad R40e", {
160 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
161 DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
162 { set_max_cstate, "IBM ThinkPad R40e", {
163 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
164 DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
165 { set_max_cstate, "IBM ThinkPad R40e", {
166 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
167 DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
168 { set_max_cstate, "IBM ThinkPad R40e", {
169 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
170 DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
171 { set_max_cstate, "IBM ThinkPad R40e", {
172 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
173 DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
174 { set_max_cstate, "Medion 41700", {
175 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
176 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
177 { set_max_cstate, "Clevo 5600D", {
178 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
179 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400180 (void *)2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 {},
182};
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184static inline u32 ticks_elapsed(u32 t1, u32 t2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 if (t2 >= t1)
187 return (t2 - t1);
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300188 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
190 else
191 return ((0xFFFFFFFF - t1) + t2);
192}
193
Len Brown4f86d3a2007-10-03 18:58:00 -0400194static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2)
195{
196 if (t2 >= t1)
197 return PM_TIMER_TICKS_TO_US(t2 - t1);
198 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
199 return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
200 else
201 return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2);
202}
203
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800204/*
205 * Callers should disable interrupts before the call and enable
206 * interrupts after return.
207 */
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500208static void acpi_safe_halt(void)
209{
210 current_thread_info()->status &= ~TS_POLLING;
211 /*
212 * TS_POLLING-cleared state must be visible before we
213 * test NEED_RESCHED:
214 */
215 smp_mb();
216 if (!need_resched())
217 safe_halt();
218 current_thread_info()->status |= TS_POLLING;
219}
220
Len Brown4f86d3a2007-10-03 18:58:00 -0400221#ifndef CONFIG_CPU_IDLE
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static void
Len Brown4be44fc2005-08-05 00:44:28 -0400224acpi_processor_power_activate(struct acpi_processor *pr,
225 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Len Brown4be44fc2005-08-05 00:44:28 -0400227 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 if (!pr || !new)
230 return;
231
232 old = pr->power.state;
233
234 if (old)
235 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400236 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* Cleanup from old state. */
239 if (old) {
240 switch (old->type) {
241 case ACPI_STATE_C3:
242 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400243 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300244 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246 }
247 }
248
249 /* Prepare to use new state. */
250 switch (new->type) {
251 case ACPI_STATE_C3:
252 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400253 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300254 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 }
257
258 pr->power.state = new;
259
260 return;
261}
262
Len Brown4be44fc2005-08-05 00:44:28 -0400263static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700265/* Common C-state entry for C2, C3, .. */
266static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
267{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800268 if (cstate->entry_method == ACPI_CSTATE_FFH) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700269 /* Call into architectural FFH based C-state */
270 acpi_processor_ffh_cstate_enter(cstate);
271 } else {
272 int unused;
273 /* IO port based C-state */
274 inb(cstate->address);
275 /* Dummy wait op - must do something useless after P_LVL2 read
276 because chipsets cannot guarantee that STPCLK# signal
277 gets asserted in time to freeze execution properly. */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300278 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700279 }
280}
Len Brown4f86d3a2007-10-03 18:58:00 -0400281#endif /* !CONFIG_CPU_IDLE */
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700282
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800283#ifdef ARCH_APICTIMER_STOPS_ON_C3
284
285/*
286 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700287 * This seems to be a common problem on AMD boxen, but other vendors
288 * are affected too. We pick the most conservative approach: we assume
289 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800290 */
291static void acpi_timer_check_state(int state, struct acpi_processor *pr,
292 struct acpi_processor_cx *cx)
293{
294 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100295 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800296
297 /*
298 * Check, if one of the previous states already marked the lapic
299 * unstable
300 */
301 if (pwr->timer_broadcast_on_state < state)
302 return;
303
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100304 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700305 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800306}
307
308static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
309{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800310 unsigned long reason;
311
312 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
313 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
314
315 clockevents_notify(reason, &pr->id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800316}
317
318/* Power(C) State timer broadcast control */
319static void acpi_state_timer_broadcast(struct acpi_processor *pr,
320 struct acpi_processor_cx *cx,
321 int broadcast)
322{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800323 int state = cx - pr->power.states;
324
325 if (state >= pr->power.timer_broadcast_on_state) {
326 unsigned long reason;
327
328 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
329 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
330 clockevents_notify(reason, &pr->id);
331 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800332}
333
334#else
335
336static void acpi_timer_check_state(int state, struct acpi_processor *pr,
337 struct acpi_processor_cx *cstate) { }
338static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800339static void acpi_state_timer_broadcast(struct acpi_processor *pr,
340 struct acpi_processor_cx *cx,
341 int broadcast)
342{
343}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800344
345#endif
346
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000347/*
348 * Suspend / resume control
349 */
350static int acpi_idle_suspend;
351
352int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
353{
354 acpi_idle_suspend = 1;
355 return 0;
356}
357
358int acpi_processor_resume(struct acpi_device * device)
359{
360 acpi_idle_suspend = 0;
361 return 0;
362}
363
Andi Kleenddb25f92008-01-30 13:32:41 +0100364#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
365static int tsc_halts_in_c(int state)
366{
367 switch (boot_cpu_data.x86_vendor) {
368 case X86_VENDOR_AMD:
369 /*
370 * AMD Fam10h TSC will tick in all
371 * C/P/S0/S1 states when this bit is set.
372 */
373 if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
374 return 0;
375 /*FALL THROUGH*/
376 case X86_VENDOR_INTEL:
377 /* Several cases known where TSC halts in C2 too */
378 default:
379 return state > ACPI_STATE_C1;
380 }
381}
382#endif
383
Len Brown4f86d3a2007-10-03 18:58:00 -0400384#ifndef CONFIG_CPU_IDLE
Len Brown4be44fc2005-08-05 00:44:28 -0400385static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Len Brown4be44fc2005-08-05 00:44:28 -0400387 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 struct acpi_processor_cx *cx = NULL;
389 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400390 int sleep_ticks = 0;
391 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /*
394 * Interrupts must be disabled during bus mastering calculations and
395 * for C2/C3 transitions.
396 */
397 local_irq_disable();
398
Venkatesh Pallipadid5a3d322007-06-15 19:36:00 -0400399 pr = processors[smp_processor_id()];
400 if (!pr) {
401 local_irq_enable();
402 return;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
406 * Check whether we truly need to go idle, or should
407 * reschedule:
408 */
409 if (unlikely(need_resched())) {
410 local_irq_enable();
411 return;
412 }
413
414 cx = pr->power.state;
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000415 if (!cx || acpi_idle_suspend) {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800416 if (pm_idle_save)
417 pm_idle_save();
418 else
419 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800420
421 local_irq_enable();
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800422 return;
423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /*
426 * Check BM Activity
427 * -----------------
428 * Check for bus mastering activity (if required), record, and check
429 * for demotion.
430 */
431 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400432 u32 bm_status = 0;
433 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400435 if (diff > 31)
436 diff = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400438 pr->power.bm_activity <<= diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Bob Moored8c71b62007-02-02 19:48:21 +0300440 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (bm_status) {
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400442 pr->power.bm_activity |= 0x1;
Bob Moored8c71b62007-02-02 19:48:21 +0300443 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 /*
446 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
447 * the true state of bus mastering activity; forcing us to
448 * manually check the BMIDEA bit of each IDE channel.
449 */
450 else if (errata.piix4.bmisx) {
451 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400452 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400453 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 pr->power.bm_check_timestamp = jiffies;
457
458 /*
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400459 * If bus mastering is or was active this jiffy, demote
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * to avoid a faulty transition. Note that the processor
461 * won't enter a low-power state during this call (to this
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400462 * function) but should upon the next.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
464 * TBD: A better policy might be to fallback to the demotion
465 * state (use it for this quantum only) istead of
466 * demoting -- and rely on duration as our sole demotion
467 * qualification. This may, however, introduce DMA
468 * issues (e.g. floppy DMA transfer overrun/underrun).
469 */
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400470 if ((pr->power.bm_activity & 0x1) &&
471 cx->demotion.threshold.bm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 local_irq_enable();
473 next_state = cx->demotion.state;
474 goto end;
475 }
476 }
477
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400478#ifdef CONFIG_HOTPLUG_CPU
479 /*
480 * Check for P_LVL2_UP flag before entering C2 and above on
481 * an SMP system. We do it here instead of doing it at _CST/P_LVL
482 * detection phase, to work cleanly with logical CPU hotplug.
483 */
Len Brown4f86d3a2007-10-03 18:58:00 -0400484 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300485 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
David Shaohua Li1e483962005-12-01 17:00:00 -0500486 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400487#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /*
490 * Sleep:
491 * ------
492 * Invoke the current Cx state to put the processor to sleep.
493 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100494 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200495 current_thread_info()->status &= ~TS_POLLING;
Ingo Molnar0888f062006-12-22 01:11:56 -0800496 /*
497 * TS_POLLING-cleared state must be visible before we
498 * test NEED_RESCHED:
499 */
500 smp_mb();
Nick Piggin2a298a32005-12-02 12:44:19 +1100501 if (need_resched()) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200502 current_thread_info()->status |= TS_POLLING;
Linus Torvaldsaf2eb172005-12-02 23:09:06 -0800503 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100504 return;
505 }
506 }
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 switch (cx->type) {
509
510 case ACPI_STATE_C1:
511 /*
512 * Invoke C1.
513 * Use the appropriate idle routine, the one that would
514 * be used without acpi C-states.
515 */
516 if (pm_idle_save)
517 pm_idle_save();
518 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800519 acpi_safe_halt();
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400522 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * go to an ISR rather than here. Need to instrument
524 * base interrupt handler.
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200525 *
526 * Note: the TSC better not stop in C1, sched_clock() will
527 * skew otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
529 sleep_ticks = 0xFFFFFFFF;
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800530 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532
533 case ACPI_STATE_C2:
534 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300535 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200536 /* Tell the scheduler that we are going deep-idle: */
537 sched_clock_idle_sleep_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* Invoke C2 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800539 acpi_state_timer_broadcast(pr, cx, 1);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700540 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300542 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
john stultz539eb112006-06-26 00:25:10 -0700543
Tony Luck0aa366f2007-07-20 11:22:30 -0700544#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700545 /* TSC halts in C2, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100546 if (tsc_halts_in_c(ACPI_STATE_C2))
547 mark_tsc_unstable("possible TSC halt in C2");
john stultz539eb112006-06-26 00:25:10 -0700548#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200549 /* Compute time (ticks) that we were actually asleep */
550 sleep_ticks = ticks_elapsed(t1, t2);
551
552 /* Tell the scheduler how much we idled: */
553 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* Re-enable interrupts */
556 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200557 /* Do not account our idle-switching overhead: */
558 sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
559
Andi Kleen495ab9c2006-06-26 13:59:11 +0200560 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800561 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
563
564 case ACPI_STATE_C3:
Venki Pallipadibde6f5f2008-01-30 13:32:01 +0100565 acpi_unlazy_tlb(smp_processor_id());
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400566 /*
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100567 * Must be done before busmaster disable as we might
568 * need to access HPET !
569 */
570 acpi_state_timer_broadcast(pr, cx, 1);
571 /*
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400572 * disable bus master
573 * bm_check implies we need ARB_DIS
574 * !bm_check implies we need cache flush
575 * bm_control implies whether we can do ARB_DIS
576 *
577 * That leaves a case where bm_check is set and bm_control is
578 * not set. In that case we cannot do much, we enter C3
579 * without doing anything.
580 */
581 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400582 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400583 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400584 /*
585 * All CPUs are trying to go to C3
586 * Disable bus master arbitration
587 */
Bob Moored8c71b62007-02-02 19:48:21 +0300588 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400589 }
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400590 } else if (!pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400591 /* SMP with no shared cache... Invalidate cache */
592 ACPI_FLUSH_CPU_CACHE();
593 }
Len Brown4be44fc2005-08-05 00:44:28 -0400594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300596 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Invoke C3 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200598 /* Tell the scheduler that we are going deep-idle: */
599 sched_clock_idle_sleep_event();
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700600 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300602 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400603 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400604 /* Enable bus master arbitration */
605 atomic_dec(&c3_cpu_count);
Bob Moored8c71b62007-02-02 19:48:21 +0300606 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400607 }
608
Tony Luck0aa366f2007-07-20 11:22:30 -0700609#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700610 /* TSC halts in C3, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100611 if (tsc_halts_in_c(ACPI_STATE_C3))
612 mark_tsc_unstable("TSC halts in C3");
john stultz539eb112006-06-26 00:25:10 -0700613#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200614 /* Compute time (ticks) that we were actually asleep */
615 sleep_ticks = ticks_elapsed(t1, t2);
616 /* Tell the scheduler how much we idled: */
617 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Re-enable interrupts */
620 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200621 /* Do not account our idle-switching overhead: */
622 sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
623
Andi Kleen495ab9c2006-06-26 13:59:11 +0200624 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800625 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 break;
627
628 default:
629 local_irq_enable();
630 return;
631 }
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400632 cx->usage++;
633 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
634 cx->time += sleep_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 next_state = pr->power.state;
637
David Shaohua Li1e483962005-12-01 17:00:00 -0500638#ifdef CONFIG_HOTPLUG_CPU
639 /* Don't do promotion/demotion */
640 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300641 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
David Shaohua Li1e483962005-12-01 17:00:00 -0500642 next_state = cx;
643 goto end;
644 }
645#endif
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /*
648 * Promotion?
649 * ----------
650 * Track the number of longs (time asleep is greater than threshold)
651 * and promote when the count threshold is reached. Note that bus
652 * mastering activity may prevent promotions.
653 * Do not promote above max_cstate.
654 */
655 if (cx->promotion.state &&
656 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
Arjan van de Ven5c875792006-09-30 23:27:17 -0700657 if (sleep_ticks > cx->promotion.threshold.ticks &&
Mark Grossf011e2e2008-02-04 22:30:09 -0800658 cx->promotion.state->latency <=
659 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400661 cx->demotion.count = 0;
662 if (cx->promotion.count >=
663 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400665 if (!
666 (pr->power.bm_activity & cx->
667 promotion.threshold.bm)) {
668 next_state =
669 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto end;
671 }
Len Brown4be44fc2005-08-05 00:44:28 -0400672 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 next_state = cx->promotion.state;
674 goto end;
675 }
676 }
677 }
678 }
679
680 /*
681 * Demotion?
682 * ---------
683 * Track the number of shorts (time asleep is less than time threshold)
684 * and demote when the usage threshold is reached.
685 */
686 if (cx->demotion.state) {
687 if (sleep_ticks < cx->demotion.threshold.ticks) {
688 cx->demotion.count++;
689 cx->promotion.count = 0;
690 if (cx->demotion.count >= cx->demotion.threshold.count) {
691 next_state = cx->demotion.state;
692 goto end;
693 }
694 }
695 }
696
Len Brown4be44fc2005-08-05 00:44:28 -0400697 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * Demote if current state exceeds max_cstate
Arjan van de Ven5c875792006-09-30 23:27:17 -0700700 * or if the latency of the current state is unacceptable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 */
Arjan van de Ven5c875792006-09-30 23:27:17 -0700702 if ((pr->power.state - pr->power.states) > max_cstate ||
Mark Grossf011e2e2008-02-04 22:30:09 -0800703 pr->power.state->latency >
704 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (cx->demotion.state)
706 next_state = cx->demotion.state;
707 }
708
709 /*
710 * New Cx State?
711 * -------------
712 * If we're going to start using a new Cx state we must clean up
713 * from the previous and prepare to use the new.
714 */
715 if (next_state != pr->power.state)
716 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Len Brown4be44fc2005-08-05 00:44:28 -0400719static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 unsigned int i;
722 unsigned int state_is_set = 0;
723 struct acpi_processor_cx *lower = NULL;
724 struct acpi_processor_cx *higher = NULL;
725 struct acpi_processor_cx *cx;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400729 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /*
732 * This function sets the default Cx state policy (OS idle handler).
733 * Our scheme is to promote quickly to C2 but more conservatively
734 * to C3. We're favoring C2 for its characteristics of low latency
735 * (quick response), good power savings, and ability to allow bus
736 * mastering activity. Note that the Cx state policy is completely
737 * customizable and can be altered dynamically.
738 */
739
740 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400741 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 cx = &pr->power.states[i];
743 if (!cx->valid)
744 continue;
745
746 if (!state_is_set)
747 pr->power.state = cx;
748 state_is_set++;
749 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (!state_is_set)
Patrick Mocheld550d982006-06-27 00:41:40 -0400753 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400756 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 cx = &pr->power.states[i];
758 if (!cx->valid)
759 continue;
760
761 if (lower) {
762 cx->demotion.state = lower;
763 cx->demotion.threshold.ticks = cx->latency_ticks;
764 cx->demotion.threshold.count = 1;
765 if (cx->type == ACPI_STATE_C3)
766 cx->demotion.threshold.bm = bm_history;
767 }
768
769 lower = cx;
770 }
771
772 /* promotion */
773 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
774 cx = &pr->power.states[i];
775 if (!cx->valid)
776 continue;
777
778 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400779 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 cx->promotion.threshold.ticks = cx->latency_ticks;
781 if (cx->type >= ACPI_STATE_C2)
782 cx->promotion.threshold.count = 4;
783 else
784 cx->promotion.threshold.count = 10;
785 if (higher->type == ACPI_STATE_C3)
786 cx->promotion.threshold.bm = bm_history;
787 }
788
789 higher = cx;
790 }
791
Patrick Mocheld550d982006-06-27 00:41:40 -0400792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
Len Brown4f86d3a2007-10-03 18:58:00 -0400794#endif /* !CONFIG_CPU_IDLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Len Brown4be44fc2005-08-05 00:44:28 -0400796static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400800 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
807 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
808
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400809#ifndef CONFIG_HOTPLUG_CPU
810 /*
811 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400812 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400813 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300814 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300815 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400816 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400817#endif
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* determine C2 and C3 address from pblk */
820 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
821 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
822
823 /* determine latencies from FADT */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300824 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
825 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
828 "lvl2[0x%08x] lvl3[0x%08x]\n",
829 pr->power.states[ACPI_STATE_C2].address,
830 pr->power.states[ACPI_STATE_C3].address));
831
Patrick Mocheld550d982006-06-27 00:41:40 -0400832 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700835static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500836{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700837 if (!pr->power.states[ACPI_STATE_C1].valid) {
838 /* set the first C-State to C1 */
839 /* all processors need to support C1 */
840 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
841 pr->power.states[ACPI_STATE_C1].valid = 1;
842 }
843 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500844 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400845 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500846}
847
Len Brown4be44fc2005-08-05 00:44:28 -0400848static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Len Brown4be44fc2005-08-05 00:44:28 -0400850 acpi_status status = 0;
851 acpi_integer count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400852 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400853 int i;
854 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
855 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400859 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700861 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
864 if (ACPI_FAILURE(status)) {
865 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200869 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 /* There must be at least 2 elements */
872 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400873 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 status = -EFAULT;
875 goto end;
876 }
877
878 count = cst->package.elements[0].integer.value;
879
880 /* Validate number of power states. */
881 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400882 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 status = -EFAULT;
884 goto end;
885 }
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* Tell driver that at least _CST is supported. */
888 pr->flags.has_cst = 1;
889
890 for (i = 1; i <= count; i++) {
891 union acpi_object *element;
892 union acpi_object *obj;
893 struct acpi_power_register *reg;
894 struct acpi_processor_cx cx;
895
896 memset(&cx, 0, sizeof(cx));
897
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200898 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (element->type != ACPI_TYPE_PACKAGE)
900 continue;
901
902 if (element->package.count != 4)
903 continue;
904
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200905 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 if (obj->type != ACPI_TYPE_BUFFER)
908 continue;
909
Len Brown4be44fc2005-08-05 00:44:28 -0400910 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400913 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 continue;
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200917 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (obj->type != ACPI_TYPE_INTEGER)
919 continue;
920
921 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700922 /*
923 * Some buggy BIOSes won't list C1 in _CST -
924 * Let acpi_processor_get_power_info_default() handle them later
925 */
926 if (i == 1 && cx.type != ACPI_STATE_C1)
927 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700929 cx.address = reg->address;
930 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800932 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700933 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
934 if (acpi_processor_ffh_cstate_probe
935 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800936 cx.entry_method = ACPI_CSTATE_FFH;
937 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700938 /*
939 * C1 is a special case where FIXED_HARDWARE
940 * can be handled in non-MWAIT way as well.
941 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700942 * Otherwise, ignore this info and continue.
943 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800944 cx.entry_method = ACPI_CSTATE_HALT;
945 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700946 continue;
947 }
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200950 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (obj->type != ACPI_TYPE_INTEGER)
952 continue;
953
954 cx.latency = obj->integer.value;
955
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200956 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (obj->type != ACPI_TYPE_INTEGER)
958 continue;
959
960 cx.power = obj->integer.value;
961
Janosch Machowinskicf824782005-08-20 08:02:00 -0400962 current_count++;
963 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
964
965 /*
966 * We support total ACPI_PROCESSOR_MAX_POWER - 1
967 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
968 */
969 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
970 printk(KERN_WARNING
971 "Limiting number of power states to max (%d)\n",
972 ACPI_PROCESSOR_MAX_POWER);
973 printk(KERN_WARNING
974 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
975 break;
976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
Len Brown4be44fc2005-08-05 00:44:28 -0400979 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400980 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400983 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400984 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Len Brown4be44fc2005-08-05 00:44:28 -0400986 end:
Len Brown02438d82006-06-30 03:19:10 -0400987 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Patrick Mocheld550d982006-06-27 00:41:40 -0400989 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
993{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400996 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /*
999 * C2 latency must be less than or equal to 100
1000 * microseconds.
1001 */
1002 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
1003 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001004 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001005 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * Otherwise we've met all of our C2 requirements.
1010 * Normalize the C2 latency to expidite policy
1011 */
1012 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001013
1014#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001016#else
1017 cx->latency_ticks = cx->latency;
1018#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Patrick Mocheld550d982006-06-27 00:41:40 -04001020 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Len Brown4be44fc2005-08-05 00:44:28 -04001023static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
1024 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001026 static int bm_check_flag;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001030 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /*
1033 * C3 latency must be less than or equal to 1000
1034 * microseconds.
1035 */
1036 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
1037 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001038 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001039 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /*
1043 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1044 * DMA transfers are used by any ISA device to avoid livelock.
1045 * Note that we could disable Type-F DMA (as recommended by
1046 * the erratum), but this is known to disrupt certain ISA
1047 * devices thus we take the conservative approach.
1048 */
1049 else if (errata.piix4.fdma) {
1050 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001051 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001052 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001055 /* All the logic here assumes flags.bm_check is same across all CPUs */
1056 if (!bm_check_flag) {
1057 /* Determine whether bm_check is needed based on CPU */
1058 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
1059 bm_check_flag = pr->flags.bm_check;
1060 } else {
1061 pr->flags.bm_check = bm_check_flag;
1062 }
1063
1064 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001065 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -07001066 if (pr->flags.has_cst != 1) {
1067 /* bus mastering control is necessary */
1068 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1069 "C3 support requires BM control\n"));
1070 return;
1071 } else {
1072 /* Here we enter C3 without bus mastering */
1073 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1074 "C3 support without BM control\n"));
1075 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001076 }
1077 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001078 /*
1079 * WBINVD should be set in fadt, for C3 state to be
1080 * supported on when bm_check is not required.
1081 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001082 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001083 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001084 "Cache invalidation should work properly"
1085 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001086 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001087 }
Bob Moored8c71b62007-02-02 19:48:21 +03001088 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001089 }
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 /*
1092 * Otherwise we've met all of our C3 requirements.
1093 * Normalize the C3 latency to expidite policy. Enable
1094 * checking of bus mastering status (bm_check) so we can
1095 * use this in our C3 policy
1096 */
1097 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001098
1099#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001101#else
1102 cx->latency_ticks = cx->latency;
1103#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Patrick Mocheld550d982006-06-27 00:41:40 -04001105 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108static int acpi_processor_power_verify(struct acpi_processor *pr)
1109{
1110 unsigned int i;
1111 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001112
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001113 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001114
Len Brown4be44fc2005-08-05 00:44:28 -04001115 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct acpi_processor_cx *cx = &pr->power.states[i];
1117
1118 switch (cx->type) {
1119 case ACPI_STATE_C1:
1120 cx->valid = 1;
1121 break;
1122
1123 case ACPI_STATE_C2:
1124 acpi_processor_power_verify_c2(cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001125 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001126 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 break;
1128
1129 case ACPI_STATE_C3:
1130 acpi_processor_power_verify_c3(pr, cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001131 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001132 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
1134 }
1135
1136 if (cx->valid)
1137 working++;
1138 }
1139
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001140 acpi_propagate_timer_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +01001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return (working);
1143}
1144
Len Brown4be44fc2005-08-05 00:44:28 -04001145static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 unsigned int i;
1148 int result;
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 /* NOTE: the idle thread may not be running while calling
1152 * this function */
1153
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001154 /* Zero initialize all the C-states info. */
1155 memset(pr->power.states, 0, sizeof(pr->power.states));
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001158 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -07001159 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001160
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001161 if (result)
1162 return result;
1163
1164 acpi_processor_get_power_info_default(pr);
1165
Janosch Machowinskicf824782005-08-20 08:02:00 -04001166 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Len Brown4f86d3a2007-10-03 18:58:00 -04001168#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /*
1170 * Set Default Policy
1171 * ------------------
1172 * Now that we know which states are supported, set the default
1173 * policy. Note that this policy can be changed dynamically
1174 * (e.g. encourage deeper sleeps to conserve battery life when
1175 * not on AC).
1176 */
1177 result = acpi_processor_set_power_policy(pr);
1178 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001179 return result;
Len Brown4f86d3a2007-10-03 18:58:00 -04001180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /*
1183 * if one state of type C2 or C3 is available, mark this
1184 * CPU as being "idle manageable"
1185 */
1186 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001187 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -08001189 if (pr->power.states[i].type >= ACPI_STATE_C2)
1190 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
Patrick Mocheld550d982006-06-27 00:41:40 -04001194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1198{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001199 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001200 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 if (!pr)
1204 goto end;
1205
1206 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -04001207 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -07001208 "bus master activity: %08x\n"
1209 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001210 pr->power.state ? pr->power.state - pr->power.states : 0,
Arjan van de Ven5c875792006-09-30 23:27:17 -07001211 max_cstate, (unsigned)pr->power.bm_activity,
Mark Grossf011e2e2008-02-04 22:30:09 -08001212 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 seq_puts(seq, "states:\n");
1215
1216 for (i = 1; i <= pr->power.count; i++) {
1217 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -04001218 (&pr->power.states[i] ==
1219 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 if (!pr->power.states[i].valid) {
1222 seq_puts(seq, "<not supported>\n");
1223 continue;
1224 }
1225
1226 switch (pr->power.states[i].type) {
1227 case ACPI_STATE_C1:
1228 seq_printf(seq, "type[C1] ");
1229 break;
1230 case ACPI_STATE_C2:
1231 seq_printf(seq, "type[C2] ");
1232 break;
1233 case ACPI_STATE_C3:
1234 seq_printf(seq, "type[C3] ");
1235 break;
1236 default:
1237 seq_printf(seq, "type[--] ");
1238 break;
1239 }
1240
1241 if (pr->power.states[i].promotion.state)
1242 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001243 (pr->power.states[i].promotion.state -
1244 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 else
1246 seq_puts(seq, "promotion[--] ");
1247
1248 if (pr->power.states[i].demotion.state)
1249 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001250 (pr->power.states[i].demotion.state -
1251 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 else
1253 seq_puts(seq, "demotion[--] ");
1254
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001255 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001256 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001257 pr->power.states[i].usage,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -05001258 (unsigned long long)pr->power.states[i].time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Len Brown4be44fc2005-08-05 00:44:28 -04001261 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1266{
1267 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001268 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Arjan van de Vend7508032006-07-04 13:06:00 -04001271static const struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001272 .open = acpi_processor_power_open_fs,
1273 .read = seq_read,
1274 .llseek = seq_lseek,
1275 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276};
1277
Len Brown4f86d3a2007-10-03 18:58:00 -04001278#ifndef CONFIG_CPU_IDLE
1279
1280int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1281{
1282 int result = 0;
1283
1284
1285 if (!pr)
1286 return -EINVAL;
1287
1288 if (nocst) {
1289 return -ENODEV;
1290 }
1291
1292 if (!pr->flags.power_setup_done)
1293 return -ENODEV;
1294
1295 /* Fall back to the default idle loop */
1296 pm_idle = pm_idle_save;
1297 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1298
1299 pr->flags.power = 0;
1300 result = acpi_processor_get_power_info(pr);
1301 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
1302 pm_idle = acpi_processor_idle;
1303
1304 return result;
1305}
1306
Andrew Morton1fec74a2006-10-17 00:09:58 -07001307#ifdef CONFIG_SMP
Arjan van de Ven5c875792006-09-30 23:27:17 -07001308static void smp_callback(void *v)
1309{
1310 /* we already woke the CPU up, nothing more to do */
1311}
1312
1313/*
1314 * This function gets called when a part of the kernel has a new latency
1315 * requirement. This means we need to get all processors out of their C-state,
1316 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1317 * wakes them all right up.
1318 */
1319static int acpi_processor_latency_notify(struct notifier_block *b,
1320 unsigned long l, void *v)
1321{
1322 smp_call_function(smp_callback, NULL, 0, 1);
1323 return NOTIFY_OK;
1324}
1325
1326static struct notifier_block acpi_processor_latency_notifier = {
1327 .notifier_call = acpi_processor_latency_notify,
1328};
Len Brown4f86d3a2007-10-03 18:58:00 -04001329
Andrew Morton1fec74a2006-10-17 00:09:58 -07001330#endif
Arjan van de Ven5c875792006-09-30 23:27:17 -07001331
Len Brown4f86d3a2007-10-03 18:58:00 -04001332#else /* CONFIG_CPU_IDLE */
1333
1334/**
1335 * acpi_idle_bm_check - checks if bus master activity was detected
1336 */
1337static int acpi_idle_bm_check(void)
1338{
1339 u32 bm_status = 0;
1340
1341 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1342 if (bm_status)
1343 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1344 /*
1345 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1346 * the true state of bus mastering activity; forcing us to
1347 * manually check the BMIDEA bit of each IDE channel.
1348 */
1349 else if (errata.piix4.bmisx) {
1350 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
1351 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
1352 bm_status = 1;
1353 }
1354 return bm_status;
1355}
1356
1357/**
1358 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1359 * @pr: the processor
1360 * @target: the new target state
1361 */
1362static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
1363 struct acpi_processor_cx *target)
1364{
1365 if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
1366 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1367 pr->flags.bm_rld_set = 0;
1368 }
1369
1370 if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
1371 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1372 pr->flags.bm_rld_set = 1;
1373 }
1374}
1375
1376/**
1377 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1378 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001379 *
1380 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -04001381 */
1382static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
1383{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001384 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001385 /* Call into architectural FFH based C-state */
1386 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001387 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
1388 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -04001389 } else {
1390 int unused;
1391 /* IO port based C-state */
1392 inb(cx->address);
1393 /* Dummy wait op - must do something useless after P_LVL2 read
1394 because chipsets cannot guarantee that STPCLK# signal
1395 gets asserted in time to freeze execution properly. */
1396 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
1397 }
1398}
1399
1400/**
1401 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1402 * @dev: the target CPU
1403 * @state: the state data
1404 *
1405 * This is equivalent to the HALT instruction.
1406 */
1407static int acpi_idle_enter_c1(struct cpuidle_device *dev,
1408 struct cpuidle_state *state)
1409{
1410 struct acpi_processor *pr;
1411 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1412 pr = processors[smp_processor_id()];
1413
1414 if (unlikely(!pr))
1415 return 0;
1416
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001417 local_irq_disable();
Len Brown4f86d3a2007-10-03 18:58:00 -04001418 if (pr->flags.bm_check)
1419 acpi_idle_update_bm_rld(pr, cx);
1420
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001421 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -04001422
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001423 local_irq_enable();
Len Brown4f86d3a2007-10-03 18:58:00 -04001424 cx->usage++;
1425
1426 return 0;
1427}
1428
1429/**
1430 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1431 * @dev: the target CPU
1432 * @state: the state data
1433 */
1434static int acpi_idle_enter_simple(struct cpuidle_device *dev,
1435 struct cpuidle_state *state)
1436{
1437 struct acpi_processor *pr;
1438 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1439 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001440 int sleep_ticks = 0;
1441
Len Brown4f86d3a2007-10-03 18:58:00 -04001442 pr = processors[smp_processor_id()];
1443
1444 if (unlikely(!pr))
1445 return 0;
1446
Len Browne1964412007-10-04 01:23:47 -04001447 if (acpi_idle_suspend)
1448 return(acpi_idle_enter_c1(dev, state));
1449
Len Brown4f86d3a2007-10-03 18:58:00 -04001450 local_irq_disable();
1451 current_thread_info()->status &= ~TS_POLLING;
1452 /*
1453 * TS_POLLING-cleared state must be visible before we test
1454 * NEED_RESCHED:
1455 */
1456 smp_mb();
1457
1458 if (unlikely(need_resched())) {
1459 current_thread_info()->status |= TS_POLLING;
1460 local_irq_enable();
1461 return 0;
1462 }
1463
Venki Pallipadibde6f5f2008-01-30 13:32:01 +01001464 acpi_unlazy_tlb(smp_processor_id());
Thomas Gleixnere17bcb42007-12-07 19:16:17 +01001465 /*
1466 * Must be done before busmaster disable as we might need to
1467 * access HPET !
1468 */
1469 acpi_state_timer_broadcast(pr, cx, 1);
1470
1471 if (pr->flags.bm_check)
1472 acpi_idle_update_bm_rld(pr, cx);
1473
Len Brown4f86d3a2007-10-03 18:58:00 -04001474 if (cx->type == ACPI_STATE_C3)
1475 ACPI_FLUSH_CPU_CACHE();
1476
1477 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001478 /* Tell the scheduler that we are going deep-idle: */
1479 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001480 acpi_idle_do_entry(cx);
1481 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1482
1483#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1484 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001485 if (tsc_halts_in_c(cx->type))
1486 mark_tsc_unstable("TSC halts in idle");;
Len Brown4f86d3a2007-10-03 18:58:00 -04001487#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001488 sleep_ticks = ticks_elapsed(t1, t2);
1489
1490 /* Tell the scheduler how much we idled: */
1491 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001492
1493 local_irq_enable();
1494 current_thread_info()->status |= TS_POLLING;
1495
1496 cx->usage++;
1497
1498 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001499 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001500 return ticks_elapsed_in_us(t1, t2);
1501}
1502
1503static int c3_cpu_count;
1504static DEFINE_SPINLOCK(c3_lock);
1505
1506/**
1507 * acpi_idle_enter_bm - enters C3 with proper BM handling
1508 * @dev: the target CPU
1509 * @state: the state data
1510 *
1511 * If BM is detected, the deepest non-C3 idle state is entered instead.
1512 */
1513static int acpi_idle_enter_bm(struct cpuidle_device *dev,
1514 struct cpuidle_state *state)
1515{
1516 struct acpi_processor *pr;
1517 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1518 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001519 int sleep_ticks = 0;
1520
Len Brown4f86d3a2007-10-03 18:58:00 -04001521 pr = processors[smp_processor_id()];
1522
1523 if (unlikely(!pr))
1524 return 0;
1525
Len Browne1964412007-10-04 01:23:47 -04001526 if (acpi_idle_suspend)
1527 return(acpi_idle_enter_c1(dev, state));
1528
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001529 if (acpi_idle_bm_check()) {
1530 if (dev->safe_state) {
1531 return dev->safe_state->enter(dev, dev->safe_state);
1532 } else {
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001533 local_irq_disable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001534 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001535 local_irq_enable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001536 return 0;
1537 }
1538 }
1539
Len Brown4f86d3a2007-10-03 18:58:00 -04001540 local_irq_disable();
1541 current_thread_info()->status &= ~TS_POLLING;
1542 /*
1543 * TS_POLLING-cleared state must be visible before we test
1544 * NEED_RESCHED:
1545 */
1546 smp_mb();
1547
1548 if (unlikely(need_resched())) {
1549 current_thread_info()->status |= TS_POLLING;
1550 local_irq_enable();
1551 return 0;
1552 }
1553
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001554 /* Tell the scheduler that we are going deep-idle: */
1555 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001556 /*
1557 * Must be done before busmaster disable as we might need to
1558 * access HPET !
1559 */
1560 acpi_state_timer_broadcast(pr, cx, 1);
1561
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001562 acpi_idle_update_bm_rld(pr, cx);
Len Brown4f86d3a2007-10-03 18:58:00 -04001563
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001564 /*
1565 * disable bus master
1566 * bm_check implies we need ARB_DIS
1567 * !bm_check implies we need cache flush
1568 * bm_control implies whether we can do ARB_DIS
1569 *
1570 * That leaves a case where bm_check is set and bm_control is
1571 * not set. In that case we cannot do much, we enter C3
1572 * without doing anything.
1573 */
1574 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001575 spin_lock(&c3_lock);
1576 c3_cpu_count++;
1577 /* Disable bus master arbitration when all CPUs are in C3 */
1578 if (c3_cpu_count == num_online_cpus())
1579 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
1580 spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001581 } else if (!pr->flags.bm_check) {
1582 ACPI_FLUSH_CPU_CACHE();
1583 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001584
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001585 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1586 acpi_idle_do_entry(cx);
1587 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -04001588
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001589 /* Re-enable bus master arbitration */
1590 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001591 spin_lock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001592 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -04001593 c3_cpu_count--;
1594 spin_unlock(&c3_lock);
1595 }
1596
1597#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1598 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001599 if (tsc_halts_in_c(ACPI_STATE_C3))
1600 mark_tsc_unstable("TSC halts in idle");
Len Brown4f86d3a2007-10-03 18:58:00 -04001601#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001602 sleep_ticks = ticks_elapsed(t1, t2);
1603 /* Tell the scheduler how much we idled: */
1604 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001605
1606 local_irq_enable();
1607 current_thread_info()->status |= TS_POLLING;
1608
1609 cx->usage++;
1610
1611 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001612 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001613 return ticks_elapsed_in_us(t1, t2);
1614}
1615
1616struct cpuidle_driver acpi_idle_driver = {
1617 .name = "acpi_idle",
1618 .owner = THIS_MODULE,
1619};
1620
1621/**
1622 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1623 * @pr: the ACPI processor
1624 */
1625static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1626{
1627 int i, count = 0;
1628 struct acpi_processor_cx *cx;
1629 struct cpuidle_state *state;
1630 struct cpuidle_device *dev = &pr->power.dev;
1631
1632 if (!pr->flags.power_setup_done)
1633 return -EINVAL;
1634
1635 if (pr->flags.power == 0) {
1636 return -EINVAL;
1637 }
1638
1639 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1640 cx = &pr->power.states[i];
1641 state = &dev->states[count];
1642
1643 if (!cx->valid)
1644 continue;
1645
1646#ifdef CONFIG_HOTPLUG_CPU
1647 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1648 !pr->flags.has_cst &&
1649 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1650 continue;
1651#endif
1652 cpuidle_set_statedata(state, cx);
1653
1654 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
1655 state->exit_latency = cx->latency;
1656 state->target_residency = cx->latency * 6;
1657 state->power_usage = cx->power;
1658
1659 state->flags = 0;
1660 switch (cx->type) {
1661 case ACPI_STATE_C1:
1662 state->flags |= CPUIDLE_FLAG_SHALLOW;
1663 state->enter = acpi_idle_enter_c1;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001664 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001665 break;
1666
1667 case ACPI_STATE_C2:
1668 state->flags |= CPUIDLE_FLAG_BALANCED;
1669 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1670 state->enter = acpi_idle_enter_simple;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001671 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001672 break;
1673
1674 case ACPI_STATE_C3:
1675 state->flags |= CPUIDLE_FLAG_DEEP;
1676 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1677 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1678 state->enter = pr->flags.bm_check ?
1679 acpi_idle_enter_bm :
1680 acpi_idle_enter_simple;
1681 break;
1682 }
1683
1684 count++;
1685 }
1686
1687 dev->state_count = count;
1688
1689 if (!count)
1690 return -EINVAL;
1691
Len Brown4f86d3a2007-10-03 18:58:00 -04001692 return 0;
1693}
1694
1695int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1696{
1697 int ret;
1698
1699 if (!pr)
1700 return -EINVAL;
1701
1702 if (nocst) {
1703 return -ENODEV;
1704 }
1705
1706 if (!pr->flags.power_setup_done)
1707 return -ENODEV;
1708
1709 cpuidle_pause_and_lock();
1710 cpuidle_disable_device(&pr->power.dev);
1711 acpi_processor_get_power_info(pr);
1712 acpi_processor_setup_cpuidle(pr);
1713 ret = cpuidle_enable_device(&pr->power.dev);
1714 cpuidle_resume_and_unlock();
1715
1716 return ret;
1717}
1718
1719#endif /* CONFIG_CPU_IDLE */
1720
Pierre Ossman7af8b662006-10-10 14:20:31 -07001721int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
Len Brown4be44fc2005-08-05 00:44:28 -04001722 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Len Brown4be44fc2005-08-05 00:44:28 -04001724 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001725 static int first_run;
Len Brown4be44fc2005-08-05 00:44:28 -04001726 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 unsigned int i;
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 if (!first_run) {
1731 dmi_check_system(processor_power_dmi_table);
Alexey Starikovskiyc1c30632007-11-26 20:42:19 +01001732 max_cstate = acpi_processor_cstate_check(max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001734 printk(KERN_NOTICE
1735 "ACPI: processor limited to max C-state %d\n",
1736 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 first_run++;
Mark Grossf011e2e2008-02-04 22:30:09 -08001738#if !defined(CONFIG_CPU_IDLE) && defined(CONFIG_SMP)
1739 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
1740 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001741#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001744 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001745 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001746
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001747 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001748 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001749 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001751 ACPI_EXCEPTION((AE_INFO, status,
1752 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754 }
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001757 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 /*
1760 * Install the idle handler if processor power management is supported.
1761 * Note that we use previously set idle handler will be used on
1762 * platforms that only support C1.
1763 */
1764 if ((pr->flags.power) && (!boot_option_idle_override)) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001765#ifdef CONFIG_CPU_IDLE
1766 acpi_processor_setup_cpuidle(pr);
1767 pr->power.dev.cpu = pr->id;
1768 if (cpuidle_register_device(&pr->power.dev))
1769 return -EIO;
1770#endif
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1773 for (i = 1; i <= pr->power.count; i++)
1774 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001775 printk(" C%d[C%d]", i,
1776 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 printk(")\n");
1778
Len Brown4f86d3a2007-10-03 18:58:00 -04001779#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (pr->id == 0) {
1781 pm_idle_save = pm_idle;
1782 pm_idle = acpi_processor_idle;
1783 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001784#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
1787 /* 'power' [R] */
1788 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001789 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001791 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 else {
1793 entry->proc_fops = &acpi_processor_power_fops;
1794 entry->data = acpi_driver_data(device);
1795 entry->owner = THIS_MODULE;
1796 }
1797
Patrick Mocheld550d982006-06-27 00:41:40 -04001798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800
Len Brown4be44fc2005-08-05 00:44:28 -04001801int acpi_processor_power_exit(struct acpi_processor *pr,
1802 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Len Brown4f86d3a2007-10-03 18:58:00 -04001804#ifdef CONFIG_CPU_IDLE
1805 if ((pr->flags.power) && (!boot_option_idle_override))
1806 cpuidle_unregister_device(&pr->power.dev);
1807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 pr->flags.power_setup_done = 0;
1809
1810 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001811 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1812 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Len Brown4f86d3a2007-10-03 18:58:00 -04001814#ifndef CONFIG_CPU_IDLE
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 /* Unregister the idle handler when processor #0 is removed. */
1817 if (pr->id == 0) {
1818 pm_idle = pm_idle_save;
1819
1820 /*
1821 * We are about to unload the current idle thread pm callback
1822 * (pm_idle), Wait for all processors to update cached/local
1823 * copies of pm_idle before proceeding.
1824 */
1825 cpu_idle_wait();
Andrew Morton1fec74a2006-10-17 00:09:58 -07001826#ifdef CONFIG_SMP
Mark Grossf011e2e2008-02-04 22:30:09 -08001827 pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
1828 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001831#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Patrick Mocheld550d982006-06-27 00:41:40 -04001833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}