blob: 836362b50faa41f731b8a04a93a298fd9dedc41c [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
Len Brown4963f622007-12-13 23:50:45 -0500101#else /* CONFIG_CPU_IDLE */
Len Brown25de5712007-12-14 00:24:15 -0500102static unsigned int latency_factor __read_mostly = 2;
Len Brown4963f622007-12-13 23:50:45 -0500103module_param(latency_factor, uint, 0644);
Len Brown4f86d3a2007-10-03 18:58:00 -0400104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/*
107 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
108 * For now disable this. Probably a bug somewhere else.
109 *
110 * To skip this limit, boot/load with a large max_cstate limit.
111 */
Jeff Garzik18552562007-10-03 15:15:40 -0400112static int set_max_cstate(const struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
115 return 0;
116
Len Brown3d356002005-08-03 00:22:52 -0400117 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -0400118 " Override with \"processor.max_cstate=%d\"\n", id->ident,
119 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Len Brown3d356002005-08-03 00:22:52 -0400121 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 return 0;
124}
125
Ashok Raj7ded5682006-02-03 21:51:23 +0100126/* Actually this shouldn't be __cpuinitdata, would be better to fix the
127 callers to only run once -AK */
128static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -0500129 { set_max_cstate, "IBM ThinkPad R40e", {
130 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Bartlomiej Swierczf8313352006-05-29 07:16:00 -0400131 DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
132 { set_max_cstate, "IBM ThinkPad R40e", {
133 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Thomas Rosner876c1842006-01-06 01:31:00 -0500134 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
135 { set_max_cstate, "IBM ThinkPad R40e", {
136 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
137 DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
138 { set_max_cstate, "IBM ThinkPad R40e", {
139 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
140 DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
141 { set_max_cstate, "IBM ThinkPad R40e", {
142 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
143 DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
144 { set_max_cstate, "IBM ThinkPad R40e", {
145 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
146 DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
147 { set_max_cstate, "IBM ThinkPad R40e", {
148 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
149 DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
150 { set_max_cstate, "IBM ThinkPad R40e", {
151 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
152 DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
153 { set_max_cstate, "IBM ThinkPad R40e", {
154 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
155 DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
156 { set_max_cstate, "IBM ThinkPad R40e", {
157 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
158 DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
159 { set_max_cstate, "IBM ThinkPad R40e", {
160 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
161 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
162 { set_max_cstate, "IBM ThinkPad R40e", {
163 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
164 DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
165 { set_max_cstate, "IBM ThinkPad R40e", {
166 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
167 DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
168 { set_max_cstate, "IBM ThinkPad R40e", {
169 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
170 DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
171 { set_max_cstate, "IBM ThinkPad R40e", {
172 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
173 DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
174 { set_max_cstate, "IBM ThinkPad R40e", {
175 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
176 DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
177 { set_max_cstate, "Medion 41700", {
178 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
179 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
180 { set_max_cstate, "Clevo 5600D", {
181 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
182 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400183 (void *)2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 {},
185};
186
Len Brown4be44fc2005-08-05 00:44:28 -0400187static inline u32 ticks_elapsed(u32 t1, u32 t2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 if (t2 >= t1)
190 return (t2 - t1);
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300191 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
193 else
194 return ((0xFFFFFFFF - t1) + t2);
195}
196
Len Brown4f86d3a2007-10-03 18:58:00 -0400197static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2)
198{
199 if (t2 >= t1)
200 return PM_TIMER_TICKS_TO_US(t2 - t1);
201 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
202 return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
203 else
204 return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2);
205}
206
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800207/*
208 * Callers should disable interrupts before the call and enable
209 * interrupts after return.
210 */
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500211static void acpi_safe_halt(void)
212{
213 current_thread_info()->status &= ~TS_POLLING;
214 /*
215 * TS_POLLING-cleared state must be visible before we
216 * test NEED_RESCHED:
217 */
218 smp_mb();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700219 if (!need_resched()) {
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500220 safe_halt();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700221 local_irq_disable();
222 }
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500223 current_thread_info()->status |= TS_POLLING;
224}
225
Len Brown4f86d3a2007-10-03 18:58:00 -0400226#ifndef CONFIG_CPU_IDLE
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static void
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_processor_power_activate(struct acpi_processor *pr,
230 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Len Brown4be44fc2005-08-05 00:44:28 -0400232 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (!pr || !new)
235 return;
236
237 old = pr->power.state;
238
239 if (old)
240 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400241 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* Cleanup from old state. */
244 if (old) {
245 switch (old->type) {
246 case ACPI_STATE_C3:
247 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400248 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300249 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251 }
252 }
253
254 /* Prepare to use new state. */
255 switch (new->type) {
256 case ACPI_STATE_C3:
257 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400258 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300259 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 break;
261 }
262
263 pr->power.state = new;
264
265 return;
266}
267
Len Brown4be44fc2005-08-05 00:44:28 -0400268static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700270/* Common C-state entry for C2, C3, .. */
271static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
272{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800273 if (cstate->entry_method == ACPI_CSTATE_FFH) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700274 /* Call into architectural FFH based C-state */
275 acpi_processor_ffh_cstate_enter(cstate);
276 } else {
277 int unused;
278 /* IO port based C-state */
279 inb(cstate->address);
280 /* Dummy wait op - must do something useless after P_LVL2 read
281 because chipsets cannot guarantee that STPCLK# signal
282 gets asserted in time to freeze execution properly. */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300283 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700284 }
285}
Len Brown4f86d3a2007-10-03 18:58:00 -0400286#endif /* !CONFIG_CPU_IDLE */
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700287
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800288#ifdef ARCH_APICTIMER_STOPS_ON_C3
289
290/*
291 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700292 * This seems to be a common problem on AMD boxen, but other vendors
293 * are affected too. We pick the most conservative approach: we assume
294 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800295 */
296static void acpi_timer_check_state(int state, struct acpi_processor *pr,
297 struct acpi_processor_cx *cx)
298{
299 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100300 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800301
302 /*
303 * Check, if one of the previous states already marked the lapic
304 * unstable
305 */
306 if (pwr->timer_broadcast_on_state < state)
307 return;
308
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100309 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700310 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800311}
312
313static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
314{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800315 unsigned long reason;
316
317 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
318 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
319
320 clockevents_notify(reason, &pr->id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800321}
322
323/* Power(C) State timer broadcast control */
324static void acpi_state_timer_broadcast(struct acpi_processor *pr,
325 struct acpi_processor_cx *cx,
326 int broadcast)
327{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800328 int state = cx - pr->power.states;
329
330 if (state >= pr->power.timer_broadcast_on_state) {
331 unsigned long reason;
332
333 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
334 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
335 clockevents_notify(reason, &pr->id);
336 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800337}
338
339#else
340
341static void acpi_timer_check_state(int state, struct acpi_processor *pr,
342 struct acpi_processor_cx *cstate) { }
343static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800344static void acpi_state_timer_broadcast(struct acpi_processor *pr,
345 struct acpi_processor_cx *cx,
346 int broadcast)
347{
348}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800349
350#endif
351
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000352/*
353 * Suspend / resume control
354 */
355static int acpi_idle_suspend;
356
357int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
358{
359 acpi_idle_suspend = 1;
360 return 0;
361}
362
363int acpi_processor_resume(struct acpi_device * device)
364{
365 acpi_idle_suspend = 0;
366 return 0;
367}
368
Pavel Machek61331162008-02-19 11:00:29 +0100369#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86)
Andi Kleenddb25f92008-01-30 13:32:41 +0100370static int tsc_halts_in_c(int state)
371{
372 switch (boot_cpu_data.x86_vendor) {
373 case X86_VENDOR_AMD:
374 /*
375 * AMD Fam10h TSC will tick in all
376 * C/P/S0/S1 states when this bit is set.
377 */
378 if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
379 return 0;
380 /*FALL THROUGH*/
381 case X86_VENDOR_INTEL:
382 /* Several cases known where TSC halts in C2 too */
383 default:
384 return state > ACPI_STATE_C1;
385 }
386}
387#endif
388
Len Brown4f86d3a2007-10-03 18:58:00 -0400389#ifndef CONFIG_CPU_IDLE
Len Brown4be44fc2005-08-05 00:44:28 -0400390static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Len Brown4be44fc2005-08-05 00:44:28 -0400392 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct acpi_processor_cx *cx = NULL;
394 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400395 int sleep_ticks = 0;
396 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /*
399 * Interrupts must be disabled during bus mastering calculations and
400 * for C2/C3 transitions.
401 */
402 local_irq_disable();
403
Venkatesh Pallipadid5a3d322007-06-15 19:36:00 -0400404 pr = processors[smp_processor_id()];
405 if (!pr) {
406 local_irq_enable();
407 return;
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
411 * Check whether we truly need to go idle, or should
412 * reschedule:
413 */
414 if (unlikely(need_resched())) {
415 local_irq_enable();
416 return;
417 }
418
419 cx = pr->power.state;
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000420 if (!cx || acpi_idle_suspend) {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800421 if (pm_idle_save)
422 pm_idle_save();
423 else
424 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800425
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700426 if (irqs_disabled())
427 local_irq_enable();
428
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800429 return;
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /*
433 * Check BM Activity
434 * -----------------
435 * Check for bus mastering activity (if required), record, and check
436 * for demotion.
437 */
438 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400439 u32 bm_status = 0;
440 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400442 if (diff > 31)
443 diff = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400445 pr->power.bm_activity <<= diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Bob Moored8c71b62007-02-02 19:48:21 +0300447 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (bm_status) {
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400449 pr->power.bm_activity |= 0x1;
Bob Moored8c71b62007-02-02 19:48:21 +0300450 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 /*
453 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
454 * the true state of bus mastering activity; forcing us to
455 * manually check the BMIDEA bit of each IDE channel.
456 */
457 else if (errata.piix4.bmisx) {
458 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400459 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400460 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 pr->power.bm_check_timestamp = jiffies;
464
465 /*
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400466 * If bus mastering is or was active this jiffy, demote
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * to avoid a faulty transition. Note that the processor
468 * won't enter a low-power state during this call (to this
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400469 * function) but should upon the next.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
471 * TBD: A better policy might be to fallback to the demotion
472 * state (use it for this quantum only) istead of
473 * demoting -- and rely on duration as our sole demotion
474 * qualification. This may, however, introduce DMA
475 * issues (e.g. floppy DMA transfer overrun/underrun).
476 */
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400477 if ((pr->power.bm_activity & 0x1) &&
478 cx->demotion.threshold.bm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 local_irq_enable();
480 next_state = cx->demotion.state;
481 goto end;
482 }
483 }
484
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400485#ifdef CONFIG_HOTPLUG_CPU
486 /*
487 * Check for P_LVL2_UP flag before entering C2 and above on
488 * an SMP system. We do it here instead of doing it at _CST/P_LVL
489 * detection phase, to work cleanly with logical CPU hotplug.
490 */
Len Brown4f86d3a2007-10-03 18:58:00 -0400491 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300492 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
David Shaohua Li1e483962005-12-01 17:00:00 -0500493 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400494#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 * Sleep:
498 * ------
499 * Invoke the current Cx state to put the processor to sleep.
500 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100501 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200502 current_thread_info()->status &= ~TS_POLLING;
Ingo Molnar0888f062006-12-22 01:11:56 -0800503 /*
504 * TS_POLLING-cleared state must be visible before we
505 * test NEED_RESCHED:
506 */
507 smp_mb();
Nick Piggin2a298a32005-12-02 12:44:19 +1100508 if (need_resched()) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200509 current_thread_info()->status |= TS_POLLING;
Linus Torvaldsaf2eb172005-12-02 23:09:06 -0800510 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100511 return;
512 }
513 }
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 switch (cx->type) {
516
517 case ACPI_STATE_C1:
518 /*
519 * Invoke C1.
520 * Use the appropriate idle routine, the one that would
521 * be used without acpi C-states.
522 */
523 if (pm_idle_save)
524 pm_idle_save();
525 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800526 acpi_safe_halt();
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400529 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * go to an ISR rather than here. Need to instrument
531 * base interrupt handler.
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200532 *
533 * Note: the TSC better not stop in C1, sched_clock() will
534 * skew otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
536 sleep_ticks = 0xFFFFFFFF;
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700537 if (irqs_disabled())
538 local_irq_enable();
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 break;
541
542 case ACPI_STATE_C2:
543 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300544 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200545 /* Tell the scheduler that we are going deep-idle: */
546 sched_clock_idle_sleep_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* Invoke C2 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800548 acpi_state_timer_broadcast(pr, cx, 1);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700549 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300551 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
john stultz539eb112006-06-26 00:25:10 -0700552
Pavel Machek61331162008-02-19 11:00:29 +0100553#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86)
john stultz539eb112006-06-26 00:25:10 -0700554 /* TSC halts in C2, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100555 if (tsc_halts_in_c(ACPI_STATE_C2))
556 mark_tsc_unstable("possible TSC halt in C2");
john stultz539eb112006-06-26 00:25:10 -0700557#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200558 /* Compute time (ticks) that we were actually asleep */
559 sleep_ticks = ticks_elapsed(t1, t2);
560
561 /* Tell the scheduler how much we idled: */
562 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /* Re-enable interrupts */
565 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200566 /* Do not account our idle-switching overhead: */
567 sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
568
Andi Kleen495ab9c2006-06-26 13:59:11 +0200569 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800570 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572
573 case ACPI_STATE_C3:
Venki Pallipadibde6f5f2008-01-30 13:32:01 +0100574 acpi_unlazy_tlb(smp_processor_id());
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400575 /*
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100576 * Must be done before busmaster disable as we might
577 * need to access HPET !
578 */
579 acpi_state_timer_broadcast(pr, cx, 1);
580 /*
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400581 * disable bus master
582 * bm_check implies we need ARB_DIS
583 * !bm_check implies we need cache flush
584 * bm_control implies whether we can do ARB_DIS
585 *
586 * That leaves a case where bm_check is set and bm_control is
587 * not set. In that case we cannot do much, we enter C3
588 * without doing anything.
589 */
590 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400591 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400592 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400593 /*
594 * All CPUs are trying to go to C3
595 * Disable bus master arbitration
596 */
Bob Moored8c71b62007-02-02 19:48:21 +0300597 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400598 }
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400599 } else if (!pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400600 /* SMP with no shared cache... Invalidate cache */
601 ACPI_FLUSH_CPU_CACHE();
602 }
Len Brown4be44fc2005-08-05 00:44:28 -0400603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300605 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* Invoke C3 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200607 /* Tell the scheduler that we are going deep-idle: */
608 sched_clock_idle_sleep_event();
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700609 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300611 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400612 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400613 /* Enable bus master arbitration */
614 atomic_dec(&c3_cpu_count);
Bob Moored8c71b62007-02-02 19:48:21 +0300615 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400616 }
617
Pavel Machek61331162008-02-19 11:00:29 +0100618#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86)
john stultz539eb112006-06-26 00:25:10 -0700619 /* TSC halts in C3, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100620 if (tsc_halts_in_c(ACPI_STATE_C3))
621 mark_tsc_unstable("TSC halts in C3");
john stultz539eb112006-06-26 00:25:10 -0700622#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200623 /* Compute time (ticks) that we were actually asleep */
624 sleep_ticks = ticks_elapsed(t1, t2);
625 /* Tell the scheduler how much we idled: */
626 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* Re-enable interrupts */
629 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200630 /* Do not account our idle-switching overhead: */
631 sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
632
Andi Kleen495ab9c2006-06-26 13:59:11 +0200633 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800634 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636
637 default:
638 local_irq_enable();
639 return;
640 }
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400641 cx->usage++;
642 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
643 cx->time += sleep_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 next_state = pr->power.state;
646
David Shaohua Li1e483962005-12-01 17:00:00 -0500647#ifdef CONFIG_HOTPLUG_CPU
648 /* Don't do promotion/demotion */
649 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300650 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
David Shaohua Li1e483962005-12-01 17:00:00 -0500651 next_state = cx;
652 goto end;
653 }
654#endif
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
657 * Promotion?
658 * ----------
659 * Track the number of longs (time asleep is greater than threshold)
660 * and promote when the count threshold is reached. Note that bus
661 * mastering activity may prevent promotions.
662 * Do not promote above max_cstate.
663 */
664 if (cx->promotion.state &&
665 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
Arjan van de Ven5c875792006-09-30 23:27:17 -0700666 if (sleep_ticks > cx->promotion.threshold.ticks &&
Mark Grossf011e2e2008-02-04 22:30:09 -0800667 cx->promotion.state->latency <=
668 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400670 cx->demotion.count = 0;
671 if (cx->promotion.count >=
672 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400674 if (!
675 (pr->power.bm_activity & cx->
676 promotion.threshold.bm)) {
677 next_state =
678 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 goto end;
680 }
Len Brown4be44fc2005-08-05 00:44:28 -0400681 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 next_state = cx->promotion.state;
683 goto end;
684 }
685 }
686 }
687 }
688
689 /*
690 * Demotion?
691 * ---------
692 * Track the number of shorts (time asleep is less than time threshold)
693 * and demote when the usage threshold is reached.
694 */
695 if (cx->demotion.state) {
696 if (sleep_ticks < cx->demotion.threshold.ticks) {
697 cx->demotion.count++;
698 cx->promotion.count = 0;
699 if (cx->demotion.count >= cx->demotion.threshold.count) {
700 next_state = cx->demotion.state;
701 goto end;
702 }
703 }
704 }
705
Len Brown4be44fc2005-08-05 00:44:28 -0400706 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
708 * Demote if current state exceeds max_cstate
Arjan van de Ven5c875792006-09-30 23:27:17 -0700709 * or if the latency of the current state is unacceptable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Arjan van de Ven5c875792006-09-30 23:27:17 -0700711 if ((pr->power.state - pr->power.states) > max_cstate ||
Mark Grossf011e2e2008-02-04 22:30:09 -0800712 pr->power.state->latency >
713 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (cx->demotion.state)
715 next_state = cx->demotion.state;
716 }
717
718 /*
719 * New Cx State?
720 * -------------
721 * If we're going to start using a new Cx state we must clean up
722 * from the previous and prepare to use the new.
723 */
724 if (next_state != pr->power.state)
725 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Len Brown4be44fc2005-08-05 00:44:28 -0400728static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 unsigned int i;
731 unsigned int state_is_set = 0;
732 struct acpi_processor_cx *lower = NULL;
733 struct acpi_processor_cx *higher = NULL;
734 struct acpi_processor_cx *cx;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400738 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /*
741 * This function sets the default Cx state policy (OS idle handler).
742 * Our scheme is to promote quickly to C2 but more conservatively
743 * to C3. We're favoring C2 for its characteristics of low latency
744 * (quick response), good power savings, and ability to allow bus
745 * mastering activity. Note that the Cx state policy is completely
746 * customizable and can be altered dynamically.
747 */
748
749 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400750 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 cx = &pr->power.states[i];
752 if (!cx->valid)
753 continue;
754
755 if (!state_is_set)
756 pr->power.state = cx;
757 state_is_set++;
758 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 if (!state_is_set)
Patrick Mocheld550d982006-06-27 00:41:40 -0400762 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400765 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 cx = &pr->power.states[i];
767 if (!cx->valid)
768 continue;
769
770 if (lower) {
771 cx->demotion.state = lower;
772 cx->demotion.threshold.ticks = cx->latency_ticks;
773 cx->demotion.threshold.count = 1;
774 if (cx->type == ACPI_STATE_C3)
775 cx->demotion.threshold.bm = bm_history;
776 }
777
778 lower = cx;
779 }
780
781 /* promotion */
782 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
783 cx = &pr->power.states[i];
784 if (!cx->valid)
785 continue;
786
787 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400788 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 cx->promotion.threshold.ticks = cx->latency_ticks;
790 if (cx->type >= ACPI_STATE_C2)
791 cx->promotion.threshold.count = 4;
792 else
793 cx->promotion.threshold.count = 10;
794 if (higher->type == ACPI_STATE_C3)
795 cx->promotion.threshold.bm = bm_history;
796 }
797
798 higher = cx;
799 }
800
Patrick Mocheld550d982006-06-27 00:41:40 -0400801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
Len Brown4f86d3a2007-10-03 18:58:00 -0400803#endif /* !CONFIG_CPU_IDLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Len Brown4be44fc2005-08-05 00:44:28 -0400805static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400809 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400812 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
816 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
817
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400818#ifndef CONFIG_HOTPLUG_CPU
819 /*
820 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400821 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400822 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300823 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300824 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400826#endif
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* determine C2 and C3 address from pblk */
829 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
830 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
831
832 /* determine latencies from FADT */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300833 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
834 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
837 "lvl2[0x%08x] lvl3[0x%08x]\n",
838 pr->power.states[ACPI_STATE_C2].address,
839 pr->power.states[ACPI_STATE_C3].address));
840
Patrick Mocheld550d982006-06-27 00:41:40 -0400841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700844static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500845{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700846 if (!pr->power.states[ACPI_STATE_C1].valid) {
847 /* set the first C-State to C1 */
848 /* all processors need to support C1 */
849 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
850 pr->power.states[ACPI_STATE_C1].valid = 1;
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400851 pr->power.states[ACPI_STATE_C1].entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700852 }
853 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500854 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400855 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500856}
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Len Brown4be44fc2005-08-05 00:44:28 -0400860 acpi_status status = 0;
861 acpi_integer count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400862 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400863 int i;
864 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
865 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400869 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700871 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
874 if (ACPI_FAILURE(status)) {
875 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400876 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200879 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 /* There must be at least 2 elements */
882 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400883 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 status = -EFAULT;
885 goto end;
886 }
887
888 count = cst->package.elements[0].integer.value;
889
890 /* Validate number of power states. */
891 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400892 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 status = -EFAULT;
894 goto end;
895 }
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /* Tell driver that at least _CST is supported. */
898 pr->flags.has_cst = 1;
899
900 for (i = 1; i <= count; i++) {
901 union acpi_object *element;
902 union acpi_object *obj;
903 struct acpi_power_register *reg;
904 struct acpi_processor_cx cx;
905
906 memset(&cx, 0, sizeof(cx));
907
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200908 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (element->type != ACPI_TYPE_PACKAGE)
910 continue;
911
912 if (element->package.count != 4)
913 continue;
914
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200915 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 if (obj->type != ACPI_TYPE_BUFFER)
918 continue;
919
Len Brown4be44fc2005-08-05 00:44:28 -0400920 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400923 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 continue;
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200927 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (obj->type != ACPI_TYPE_INTEGER)
929 continue;
930
931 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700932 /*
933 * Some buggy BIOSes won't list C1 in _CST -
934 * Let acpi_processor_get_power_info_default() handle them later
935 */
936 if (i == 1 && cx.type != ACPI_STATE_C1)
937 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700939 cx.address = reg->address;
940 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800942 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700943 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
944 if (acpi_processor_ffh_cstate_probe
945 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800946 cx.entry_method = ACPI_CSTATE_FFH;
947 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700948 /*
949 * C1 is a special case where FIXED_HARDWARE
950 * can be handled in non-MWAIT way as well.
951 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700952 * Otherwise, ignore this info and continue.
953 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800954 cx.entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800955 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800956 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700957 continue;
958 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800959 } else {
960 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x",
961 cx.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400964 if (cx.type == ACPI_STATE_C1) {
965 cx.valid = 1;
966 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800967
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200968 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (obj->type != ACPI_TYPE_INTEGER)
970 continue;
971
972 cx.latency = obj->integer.value;
973
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200974 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (obj->type != ACPI_TYPE_INTEGER)
976 continue;
977
978 cx.power = obj->integer.value;
979
Janosch Machowinskicf824782005-08-20 08:02:00 -0400980 current_count++;
981 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
982
983 /*
984 * We support total ACPI_PROCESSOR_MAX_POWER - 1
985 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
986 */
987 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
988 printk(KERN_WARNING
989 "Limiting number of power states to max (%d)\n",
990 ACPI_PROCESSOR_MAX_POWER);
991 printk(KERN_WARNING
992 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
993 break;
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
Len Brown4be44fc2005-08-05 00:44:28 -0400997 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400998 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -04001001 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001002 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Len Brown4be44fc2005-08-05 00:44:28 -04001004 end:
Len Brown02438d82006-06-30 03:19:10 -04001005 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Patrick Mocheld550d982006-06-27 00:41:40 -04001007 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
1011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001014 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /*
1017 * C2 latency must be less than or equal to 100
1018 * microseconds.
1019 */
1020 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
1021 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001022 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001023 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /*
1027 * Otherwise we've met all of our C2 requirements.
1028 * Normalize the C2 latency to expidite policy
1029 */
1030 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001031
1032#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001034#else
1035 cx->latency_ticks = cx->latency;
1036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Len Brown4be44fc2005-08-05 00:44:28 -04001041static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
1042 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001044 static int bm_check_flag;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001048 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 /*
1051 * C3 latency must be less than or equal to 1000
1052 * microseconds.
1053 */
1054 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
1055 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001056 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001057 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1062 * DMA transfers are used by any ISA device to avoid livelock.
1063 * Note that we could disable Type-F DMA (as recommended by
1064 * the erratum), but this is known to disrupt certain ISA
1065 * devices thus we take the conservative approach.
1066 */
1067 else if (errata.piix4.fdma) {
1068 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001069 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001070 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
1072
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001073 /* All the logic here assumes flags.bm_check is same across all CPUs */
1074 if (!bm_check_flag) {
1075 /* Determine whether bm_check is needed based on CPU */
1076 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
1077 bm_check_flag = pr->flags.bm_check;
1078 } else {
1079 pr->flags.bm_check = bm_check_flag;
1080 }
1081
1082 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001083 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -07001084 if (pr->flags.has_cst != 1) {
1085 /* bus mastering control is necessary */
1086 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1087 "C3 support requires BM control\n"));
1088 return;
1089 } else {
1090 /* Here we enter C3 without bus mastering */
1091 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1092 "C3 support without BM control\n"));
1093 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001094 }
1095 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001096 /*
1097 * WBINVD should be set in fadt, for C3 state to be
1098 * supported on when bm_check is not required.
1099 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001100 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001101 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001102 "Cache invalidation should work properly"
1103 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001104 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001105 }
Bob Moored8c71b62007-02-02 19:48:21 +03001106 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001107 }
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /*
1110 * Otherwise we've met all of our C3 requirements.
1111 * Normalize the C3 latency to expidite policy. Enable
1112 * checking of bus mastering status (bm_check) so we can
1113 * use this in our C3 policy
1114 */
1115 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001116
1117#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001119#else
1120 cx->latency_ticks = cx->latency;
1121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Patrick Mocheld550d982006-06-27 00:41:40 -04001123 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126static int acpi_processor_power_verify(struct acpi_processor *pr)
1127{
1128 unsigned int i;
1129 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001130
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001131 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001132
Len Brown4be44fc2005-08-05 00:44:28 -04001133 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 struct acpi_processor_cx *cx = &pr->power.states[i];
1135
1136 switch (cx->type) {
1137 case ACPI_STATE_C1:
1138 cx->valid = 1;
1139 break;
1140
1141 case ACPI_STATE_C2:
1142 acpi_processor_power_verify_c2(cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001143 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001144 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146
1147 case ACPI_STATE_C3:
1148 acpi_processor_power_verify_c3(pr, cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001149 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001150 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
1152 }
1153
1154 if (cx->valid)
1155 working++;
1156 }
1157
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001158 acpi_propagate_timer_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +01001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return (working);
1161}
1162
Len Brown4be44fc2005-08-05 00:44:28 -04001163static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 unsigned int i;
1166 int result;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 /* NOTE: the idle thread may not be running while calling
1170 * this function */
1171
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001172 /* Zero initialize all the C-states info. */
1173 memset(pr->power.states, 0, sizeof(pr->power.states));
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001176 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -07001177 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001178
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001179 if (result)
1180 return result;
1181
1182 acpi_processor_get_power_info_default(pr);
1183
Janosch Machowinskicf824782005-08-20 08:02:00 -04001184 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Len Brown4f86d3a2007-10-03 18:58:00 -04001186#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /*
1188 * Set Default Policy
1189 * ------------------
1190 * Now that we know which states are supported, set the default
1191 * policy. Note that this policy can be changed dynamically
1192 * (e.g. encourage deeper sleeps to conserve battery life when
1193 * not on AC).
1194 */
1195 result = acpi_processor_set_power_policy(pr);
1196 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001197 return result;
Len Brown4f86d3a2007-10-03 18:58:00 -04001198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /*
1201 * if one state of type C2 or C3 is available, mark this
1202 * CPU as being "idle manageable"
1203 */
1204 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001205 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -08001207 if (pr->power.states[i].type >= ACPI_STATE_C2)
1208 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
Patrick Mocheld550d982006-06-27 00:41:40 -04001212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1216{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001217 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001218 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 if (!pr)
1222 goto end;
1223
1224 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -04001225 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -07001226 "bus master activity: %08x\n"
1227 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001228 pr->power.state ? pr->power.state - pr->power.states : 0,
Arjan van de Ven5c875792006-09-30 23:27:17 -07001229 max_cstate, (unsigned)pr->power.bm_activity,
Mark Grossf011e2e2008-02-04 22:30:09 -08001230 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 seq_puts(seq, "states:\n");
1233
1234 for (i = 1; i <= pr->power.count; i++) {
1235 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -04001236 (&pr->power.states[i] ==
1237 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 if (!pr->power.states[i].valid) {
1240 seq_puts(seq, "<not supported>\n");
1241 continue;
1242 }
1243
1244 switch (pr->power.states[i].type) {
1245 case ACPI_STATE_C1:
1246 seq_printf(seq, "type[C1] ");
1247 break;
1248 case ACPI_STATE_C2:
1249 seq_printf(seq, "type[C2] ");
1250 break;
1251 case ACPI_STATE_C3:
1252 seq_printf(seq, "type[C3] ");
1253 break;
1254 default:
1255 seq_printf(seq, "type[--] ");
1256 break;
1257 }
1258
1259 if (pr->power.states[i].promotion.state)
1260 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001261 (pr->power.states[i].promotion.state -
1262 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 else
1264 seq_puts(seq, "promotion[--] ");
1265
1266 if (pr->power.states[i].demotion.state)
1267 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001268 (pr->power.states[i].demotion.state -
1269 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 else
1271 seq_puts(seq, "demotion[--] ");
1272
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001273 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001274 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001275 pr->power.states[i].usage,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -05001276 (unsigned long long)pr->power.states[i].time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278
Len Brown4be44fc2005-08-05 00:44:28 -04001279 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1284{
1285 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001286 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
Arjan van de Vend7508032006-07-04 13:06:00 -04001289static const struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001290 .open = acpi_processor_power_open_fs,
1291 .read = seq_read,
1292 .llseek = seq_lseek,
1293 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294};
1295
Len Brown4f86d3a2007-10-03 18:58:00 -04001296#ifndef CONFIG_CPU_IDLE
1297
1298int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1299{
1300 int result = 0;
1301
1302
1303 if (!pr)
1304 return -EINVAL;
1305
1306 if (nocst) {
1307 return -ENODEV;
1308 }
1309
1310 if (!pr->flags.power_setup_done)
1311 return -ENODEV;
1312
1313 /* Fall back to the default idle loop */
1314 pm_idle = pm_idle_save;
1315 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1316
1317 pr->flags.power = 0;
1318 result = acpi_processor_get_power_info(pr);
1319 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
1320 pm_idle = acpi_processor_idle;
1321
1322 return result;
1323}
1324
Andrew Morton1fec74a2006-10-17 00:09:58 -07001325#ifdef CONFIG_SMP
Arjan van de Ven5c875792006-09-30 23:27:17 -07001326static void smp_callback(void *v)
1327{
1328 /* we already woke the CPU up, nothing more to do */
1329}
1330
1331/*
1332 * This function gets called when a part of the kernel has a new latency
1333 * requirement. This means we need to get all processors out of their C-state,
1334 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1335 * wakes them all right up.
1336 */
1337static int acpi_processor_latency_notify(struct notifier_block *b,
1338 unsigned long l, void *v)
1339{
1340 smp_call_function(smp_callback, NULL, 0, 1);
1341 return NOTIFY_OK;
1342}
1343
1344static struct notifier_block acpi_processor_latency_notifier = {
1345 .notifier_call = acpi_processor_latency_notify,
1346};
Len Brown4f86d3a2007-10-03 18:58:00 -04001347
Andrew Morton1fec74a2006-10-17 00:09:58 -07001348#endif
Arjan van de Ven5c875792006-09-30 23:27:17 -07001349
Len Brown4f86d3a2007-10-03 18:58:00 -04001350#else /* CONFIG_CPU_IDLE */
1351
1352/**
1353 * acpi_idle_bm_check - checks if bus master activity was detected
1354 */
1355static int acpi_idle_bm_check(void)
1356{
1357 u32 bm_status = 0;
1358
1359 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1360 if (bm_status)
1361 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1362 /*
1363 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1364 * the true state of bus mastering activity; forcing us to
1365 * manually check the BMIDEA bit of each IDE channel.
1366 */
1367 else if (errata.piix4.bmisx) {
1368 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
1369 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
1370 bm_status = 1;
1371 }
1372 return bm_status;
1373}
1374
1375/**
1376 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1377 * @pr: the processor
1378 * @target: the new target state
1379 */
1380static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
1381 struct acpi_processor_cx *target)
1382{
1383 if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
1384 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1385 pr->flags.bm_rld_set = 0;
1386 }
1387
1388 if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
1389 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1390 pr->flags.bm_rld_set = 1;
1391 }
1392}
1393
1394/**
1395 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1396 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001397 *
1398 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -04001399 */
1400static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
1401{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001402 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001403 /* Call into architectural FFH based C-state */
1404 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001405 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
1406 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -04001407 } else {
1408 int unused;
1409 /* IO port based C-state */
1410 inb(cx->address);
1411 /* Dummy wait op - must do something useless after P_LVL2 read
1412 because chipsets cannot guarantee that STPCLK# signal
1413 gets asserted in time to freeze execution properly. */
1414 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
1415 }
1416}
1417
1418/**
1419 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1420 * @dev: the target CPU
1421 * @state: the state data
1422 *
1423 * This is equivalent to the HALT instruction.
1424 */
1425static int acpi_idle_enter_c1(struct cpuidle_device *dev,
1426 struct cpuidle_state *state)
1427{
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001428 u32 t1, t2;
Len Brown4f86d3a2007-10-03 18:58:00 -04001429 struct acpi_processor *pr;
1430 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001431
Len Brown4f86d3a2007-10-03 18:58:00 -04001432 pr = processors[smp_processor_id()];
1433
1434 if (unlikely(!pr))
1435 return 0;
1436
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001437 local_irq_disable();
Venkatesh Pallipadib077fba2008-02-11 15:20:27 -08001438
1439 /* Do not access any ACPI IO ports in suspend path */
1440 if (acpi_idle_suspend) {
1441 acpi_safe_halt();
1442 local_irq_enable();
1443 return 0;
1444 }
1445
Len Brown4f86d3a2007-10-03 18:58:00 -04001446 if (pr->flags.bm_check)
1447 acpi_idle_update_bm_rld(pr, cx);
1448
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001449 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001450 acpi_idle_do_entry(cx);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001451 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -04001452
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001453 local_irq_enable();
Len Brown4f86d3a2007-10-03 18:58:00 -04001454 cx->usage++;
1455
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001456 return ticks_elapsed_in_us(t1, t2);
Len Brown4f86d3a2007-10-03 18:58:00 -04001457}
1458
1459/**
1460 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1461 * @dev: the target CPU
1462 * @state: the state data
1463 */
1464static int acpi_idle_enter_simple(struct cpuidle_device *dev,
1465 struct cpuidle_state *state)
1466{
1467 struct acpi_processor *pr;
1468 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1469 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001470 int sleep_ticks = 0;
1471
Len Brown4f86d3a2007-10-03 18:58:00 -04001472 pr = processors[smp_processor_id()];
1473
1474 if (unlikely(!pr))
1475 return 0;
1476
Len Browne1964412007-10-04 01:23:47 -04001477 if (acpi_idle_suspend)
1478 return(acpi_idle_enter_c1(dev, state));
1479
Len Brown4f86d3a2007-10-03 18:58:00 -04001480 local_irq_disable();
1481 current_thread_info()->status &= ~TS_POLLING;
1482 /*
1483 * TS_POLLING-cleared state must be visible before we test
1484 * NEED_RESCHED:
1485 */
1486 smp_mb();
1487
1488 if (unlikely(need_resched())) {
1489 current_thread_info()->status |= TS_POLLING;
1490 local_irq_enable();
1491 return 0;
1492 }
1493
Thomas Gleixnere17bcb42007-12-07 19:16:17 +01001494 /*
1495 * Must be done before busmaster disable as we might need to
1496 * access HPET !
1497 */
1498 acpi_state_timer_broadcast(pr, cx, 1);
1499
1500 if (pr->flags.bm_check)
1501 acpi_idle_update_bm_rld(pr, cx);
1502
Len Brown4f86d3a2007-10-03 18:58:00 -04001503 if (cx->type == ACPI_STATE_C3)
1504 ACPI_FLUSH_CPU_CACHE();
1505
1506 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001507 /* Tell the scheduler that we are going deep-idle: */
1508 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001509 acpi_idle_do_entry(cx);
1510 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1511
Pavel Machek61331162008-02-19 11:00:29 +01001512#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86)
Len Brown4f86d3a2007-10-03 18:58:00 -04001513 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001514 if (tsc_halts_in_c(cx->type))
1515 mark_tsc_unstable("TSC halts in idle");;
Len Brown4f86d3a2007-10-03 18:58:00 -04001516#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001517 sleep_ticks = ticks_elapsed(t1, t2);
1518
1519 /* Tell the scheduler how much we idled: */
1520 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001521
1522 local_irq_enable();
1523 current_thread_info()->status |= TS_POLLING;
1524
1525 cx->usage++;
1526
1527 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001528 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001529 return ticks_elapsed_in_us(t1, t2);
1530}
1531
1532static int c3_cpu_count;
1533static DEFINE_SPINLOCK(c3_lock);
1534
1535/**
1536 * acpi_idle_enter_bm - enters C3 with proper BM handling
1537 * @dev: the target CPU
1538 * @state: the state data
1539 *
1540 * If BM is detected, the deepest non-C3 idle state is entered instead.
1541 */
1542static int acpi_idle_enter_bm(struct cpuidle_device *dev,
1543 struct cpuidle_state *state)
1544{
1545 struct acpi_processor *pr;
1546 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1547 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001548 int sleep_ticks = 0;
1549
Len Brown4f86d3a2007-10-03 18:58:00 -04001550 pr = processors[smp_processor_id()];
1551
1552 if (unlikely(!pr))
1553 return 0;
1554
Len Browne1964412007-10-04 01:23:47 -04001555 if (acpi_idle_suspend)
1556 return(acpi_idle_enter_c1(dev, state));
1557
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001558 if (acpi_idle_bm_check()) {
1559 if (dev->safe_state) {
1560 return dev->safe_state->enter(dev, dev->safe_state);
1561 } else {
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001562 local_irq_disable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001563 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001564 local_irq_enable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001565 return 0;
1566 }
1567 }
1568
Len Brown4f86d3a2007-10-03 18:58:00 -04001569 local_irq_disable();
1570 current_thread_info()->status &= ~TS_POLLING;
1571 /*
1572 * TS_POLLING-cleared state must be visible before we test
1573 * NEED_RESCHED:
1574 */
1575 smp_mb();
1576
1577 if (unlikely(need_resched())) {
1578 current_thread_info()->status |= TS_POLLING;
1579 local_irq_enable();
1580 return 0;
1581 }
1582
Venki Pallipadi996520c2008-03-24 14:24:10 -07001583 acpi_unlazy_tlb(smp_processor_id());
1584
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001585 /* Tell the scheduler that we are going deep-idle: */
1586 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001587 /*
1588 * Must be done before busmaster disable as we might need to
1589 * access HPET !
1590 */
1591 acpi_state_timer_broadcast(pr, cx, 1);
1592
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001593 acpi_idle_update_bm_rld(pr, cx);
Len Brown4f86d3a2007-10-03 18:58:00 -04001594
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001595 /*
1596 * disable bus master
1597 * bm_check implies we need ARB_DIS
1598 * !bm_check implies we need cache flush
1599 * bm_control implies whether we can do ARB_DIS
1600 *
1601 * That leaves a case where bm_check is set and bm_control is
1602 * not set. In that case we cannot do much, we enter C3
1603 * without doing anything.
1604 */
1605 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001606 spin_lock(&c3_lock);
1607 c3_cpu_count++;
1608 /* Disable bus master arbitration when all CPUs are in C3 */
1609 if (c3_cpu_count == num_online_cpus())
1610 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
1611 spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001612 } else if (!pr->flags.bm_check) {
1613 ACPI_FLUSH_CPU_CACHE();
1614 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001615
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001616 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1617 acpi_idle_do_entry(cx);
1618 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -04001619
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001620 /* Re-enable bus master arbitration */
1621 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001622 spin_lock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001623 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -04001624 c3_cpu_count--;
1625 spin_unlock(&c3_lock);
1626 }
1627
Pavel Machek61331162008-02-19 11:00:29 +01001628#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86)
Len Brown4f86d3a2007-10-03 18:58:00 -04001629 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001630 if (tsc_halts_in_c(ACPI_STATE_C3))
1631 mark_tsc_unstable("TSC halts in idle");
Len Brown4f86d3a2007-10-03 18:58:00 -04001632#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001633 sleep_ticks = ticks_elapsed(t1, t2);
1634 /* Tell the scheduler how much we idled: */
1635 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001636
1637 local_irq_enable();
1638 current_thread_info()->status |= TS_POLLING;
1639
1640 cx->usage++;
1641
1642 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001643 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001644 return ticks_elapsed_in_us(t1, t2);
1645}
1646
1647struct cpuidle_driver acpi_idle_driver = {
1648 .name = "acpi_idle",
1649 .owner = THIS_MODULE,
1650};
1651
1652/**
1653 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1654 * @pr: the ACPI processor
1655 */
1656static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1657{
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001658 int i, count = CPUIDLE_DRIVER_STATE_START;
Len Brown4f86d3a2007-10-03 18:58:00 -04001659 struct acpi_processor_cx *cx;
1660 struct cpuidle_state *state;
1661 struct cpuidle_device *dev = &pr->power.dev;
1662
1663 if (!pr->flags.power_setup_done)
1664 return -EINVAL;
1665
1666 if (pr->flags.power == 0) {
1667 return -EINVAL;
1668 }
1669
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001670 for (i = 0; i < CPUIDLE_STATE_MAX; i++) {
1671 dev->states[i].name[0] = '\0';
1672 dev->states[i].desc[0] = '\0';
1673 }
1674
Len Brown4f86d3a2007-10-03 18:58:00 -04001675 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1676 cx = &pr->power.states[i];
1677 state = &dev->states[count];
1678
1679 if (!cx->valid)
1680 continue;
1681
1682#ifdef CONFIG_HOTPLUG_CPU
1683 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1684 !pr->flags.has_cst &&
1685 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1686 continue;
1687#endif
1688 cpuidle_set_statedata(state, cx);
1689
1690 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001691 strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
Len Brown4f86d3a2007-10-03 18:58:00 -04001692 state->exit_latency = cx->latency;
Len Brown4963f622007-12-13 23:50:45 -05001693 state->target_residency = cx->latency * latency_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -04001694 state->power_usage = cx->power;
1695
1696 state->flags = 0;
1697 switch (cx->type) {
1698 case ACPI_STATE_C1:
1699 state->flags |= CPUIDLE_FLAG_SHALLOW;
Venki Pallipadi8e92b662008-02-29 10:24:32 -08001700 if (cx->entry_method == ACPI_CSTATE_FFH)
1701 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1702
Len Brown4f86d3a2007-10-03 18:58:00 -04001703 state->enter = acpi_idle_enter_c1;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001704 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001705 break;
1706
1707 case ACPI_STATE_C2:
1708 state->flags |= CPUIDLE_FLAG_BALANCED;
1709 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1710 state->enter = acpi_idle_enter_simple;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001711 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001712 break;
1713
1714 case ACPI_STATE_C3:
1715 state->flags |= CPUIDLE_FLAG_DEEP;
1716 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1717 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1718 state->enter = pr->flags.bm_check ?
1719 acpi_idle_enter_bm :
1720 acpi_idle_enter_simple;
1721 break;
1722 }
1723
1724 count++;
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001725 if (count == CPUIDLE_STATE_MAX)
1726 break;
Len Brown4f86d3a2007-10-03 18:58:00 -04001727 }
1728
1729 dev->state_count = count;
1730
1731 if (!count)
1732 return -EINVAL;
1733
Len Brown4f86d3a2007-10-03 18:58:00 -04001734 return 0;
1735}
1736
1737int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1738{
1739 int ret;
1740
1741 if (!pr)
1742 return -EINVAL;
1743
1744 if (nocst) {
1745 return -ENODEV;
1746 }
1747
1748 if (!pr->flags.power_setup_done)
1749 return -ENODEV;
1750
1751 cpuidle_pause_and_lock();
1752 cpuidle_disable_device(&pr->power.dev);
1753 acpi_processor_get_power_info(pr);
1754 acpi_processor_setup_cpuidle(pr);
1755 ret = cpuidle_enable_device(&pr->power.dev);
1756 cpuidle_resume_and_unlock();
1757
1758 return ret;
1759}
1760
1761#endif /* CONFIG_CPU_IDLE */
1762
Pierre Ossman7af8b662006-10-10 14:20:31 -07001763int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
Len Brown4be44fc2005-08-05 00:44:28 -04001764 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Len Brown4be44fc2005-08-05 00:44:28 -04001766 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001767 static int first_run;
Len Brown4be44fc2005-08-05 00:44:28 -04001768 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 unsigned int i;
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 if (!first_run) {
1773 dmi_check_system(processor_power_dmi_table);
Alexey Starikovskiyc1c30632007-11-26 20:42:19 +01001774 max_cstate = acpi_processor_cstate_check(max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001776 printk(KERN_NOTICE
1777 "ACPI: processor limited to max C-state %d\n",
1778 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 first_run++;
Mark Grossf011e2e2008-02-04 22:30:09 -08001780#if !defined(CONFIG_CPU_IDLE) && defined(CONFIG_SMP)
1781 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
1782 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001783#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001786 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001787 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001788
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001789 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001790 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001791 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001793 ACPI_EXCEPTION((AE_INFO, status,
1794 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796 }
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001799 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 /*
1802 * Install the idle handler if processor power management is supported.
1803 * Note that we use previously set idle handler will be used on
1804 * platforms that only support C1.
1805 */
1806 if ((pr->flags.power) && (!boot_option_idle_override)) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001807#ifdef CONFIG_CPU_IDLE
1808 acpi_processor_setup_cpuidle(pr);
1809 pr->power.dev.cpu = pr->id;
1810 if (cpuidle_register_device(&pr->power.dev))
1811 return -EIO;
1812#endif
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1815 for (i = 1; i <= pr->power.count; i++)
1816 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001817 printk(" C%d[C%d]", i,
1818 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 printk(")\n");
1820
Len Brown4f86d3a2007-10-03 18:58:00 -04001821#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (pr->id == 0) {
1823 pm_idle_save = pm_idle;
1824 pm_idle = acpi_processor_idle;
1825 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001826#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828
1829 /* 'power' [R] */
1830 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001831 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001833 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 else {
1835 entry->proc_fops = &acpi_processor_power_fops;
1836 entry->data = acpi_driver_data(device);
1837 entry->owner = THIS_MODULE;
1838 }
1839
Patrick Mocheld550d982006-06-27 00:41:40 -04001840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Len Brown4be44fc2005-08-05 00:44:28 -04001843int acpi_processor_power_exit(struct acpi_processor *pr,
1844 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Len Brown4f86d3a2007-10-03 18:58:00 -04001846#ifdef CONFIG_CPU_IDLE
1847 if ((pr->flags.power) && (!boot_option_idle_override))
1848 cpuidle_unregister_device(&pr->power.dev);
1849#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 pr->flags.power_setup_done = 0;
1851
1852 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001853 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1854 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Len Brown4f86d3a2007-10-03 18:58:00 -04001856#ifndef CONFIG_CPU_IDLE
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 /* Unregister the idle handler when processor #0 is removed. */
1859 if (pr->id == 0) {
1860 pm_idle = pm_idle_save;
1861
1862 /*
1863 * We are about to unload the current idle thread pm callback
1864 * (pm_idle), Wait for all processors to update cached/local
1865 * copies of pm_idle before proceeding.
1866 */
1867 cpu_idle_wait();
Andrew Morton1fec74a2006-10-17 00:09:58 -07001868#ifdef CONFIG_SMP
Mark Grossf011e2e2008-02-04 22:30:09 -08001869 pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
1870 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001873#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Patrick Mocheld550d982006-06-27 00:41:40 -04001875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}