blob: baa389b908e2bd827f1b22cf6619bf6e585f2e81 [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();
219 if (!need_resched())
220 safe_halt();
221 current_thread_info()->status |= TS_POLLING;
222}
223
Len Brown4f86d3a2007-10-03 18:58:00 -0400224#ifndef CONFIG_CPU_IDLE
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static void
Len Brown4be44fc2005-08-05 00:44:28 -0400227acpi_processor_power_activate(struct acpi_processor *pr,
228 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Len Brown4be44fc2005-08-05 00:44:28 -0400230 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (!pr || !new)
233 return;
234
235 old = pr->power.state;
236
237 if (old)
238 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400239 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* Cleanup from old state. */
242 if (old) {
243 switch (old->type) {
244 case ACPI_STATE_C3:
245 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400246 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300247 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 break;
249 }
250 }
251
252 /* Prepare to use new state. */
253 switch (new->type) {
254 case ACPI_STATE_C3:
255 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400256 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300257 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
259 }
260
261 pr->power.state = new;
262
263 return;
264}
265
Len Brown4be44fc2005-08-05 00:44:28 -0400266static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700268/* Common C-state entry for C2, C3, .. */
269static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
270{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800271 if (cstate->entry_method == ACPI_CSTATE_FFH) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700272 /* Call into architectural FFH based C-state */
273 acpi_processor_ffh_cstate_enter(cstate);
274 } else {
275 int unused;
276 /* IO port based C-state */
277 inb(cstate->address);
278 /* Dummy wait op - must do something useless after P_LVL2 read
279 because chipsets cannot guarantee that STPCLK# signal
280 gets asserted in time to freeze execution properly. */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300281 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700282 }
283}
Len Brown4f86d3a2007-10-03 18:58:00 -0400284#endif /* !CONFIG_CPU_IDLE */
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700285
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800286#ifdef ARCH_APICTIMER_STOPS_ON_C3
287
288/*
289 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700290 * This seems to be a common problem on AMD boxen, but other vendors
291 * are affected too. We pick the most conservative approach: we assume
292 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800293 */
294static void acpi_timer_check_state(int state, struct acpi_processor *pr,
295 struct acpi_processor_cx *cx)
296{
297 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100298 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800299
300 /*
301 * Check, if one of the previous states already marked the lapic
302 * unstable
303 */
304 if (pwr->timer_broadcast_on_state < state)
305 return;
306
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100307 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700308 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800309}
310
311static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
312{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800313 unsigned long reason;
314
315 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
316 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
317
318 clockevents_notify(reason, &pr->id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800319}
320
321/* Power(C) State timer broadcast control */
322static void acpi_state_timer_broadcast(struct acpi_processor *pr,
323 struct acpi_processor_cx *cx,
324 int broadcast)
325{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800326 int state = cx - pr->power.states;
327
328 if (state >= pr->power.timer_broadcast_on_state) {
329 unsigned long reason;
330
331 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
332 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
333 clockevents_notify(reason, &pr->id);
334 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800335}
336
337#else
338
339static void acpi_timer_check_state(int state, struct acpi_processor *pr,
340 struct acpi_processor_cx *cstate) { }
341static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800342static void acpi_state_timer_broadcast(struct acpi_processor *pr,
343 struct acpi_processor_cx *cx,
344 int broadcast)
345{
346}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800347
348#endif
349
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000350/*
351 * Suspend / resume control
352 */
353static int acpi_idle_suspend;
354
355int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
356{
357 acpi_idle_suspend = 1;
358 return 0;
359}
360
361int acpi_processor_resume(struct acpi_device * device)
362{
363 acpi_idle_suspend = 0;
364 return 0;
365}
366
Andi Kleenddb25f92008-01-30 13:32:41 +0100367#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
368static int tsc_halts_in_c(int state)
369{
370 switch (boot_cpu_data.x86_vendor) {
371 case X86_VENDOR_AMD:
372 /*
373 * AMD Fam10h TSC will tick in all
374 * C/P/S0/S1 states when this bit is set.
375 */
376 if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
377 return 0;
378 /*FALL THROUGH*/
379 case X86_VENDOR_INTEL:
380 /* Several cases known where TSC halts in C2 too */
381 default:
382 return state > ACPI_STATE_C1;
383 }
384}
385#endif
386
Len Brown4f86d3a2007-10-03 18:58:00 -0400387#ifndef CONFIG_CPU_IDLE
Len Brown4be44fc2005-08-05 00:44:28 -0400388static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Len Brown4be44fc2005-08-05 00:44:28 -0400390 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct acpi_processor_cx *cx = NULL;
392 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400393 int sleep_ticks = 0;
394 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
397 * Interrupts must be disabled during bus mastering calculations and
398 * for C2/C3 transitions.
399 */
400 local_irq_disable();
401
Venkatesh Pallipadid5a3d322007-06-15 19:36:00 -0400402 pr = processors[smp_processor_id()];
403 if (!pr) {
404 local_irq_enable();
405 return;
406 }
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /*
409 * Check whether we truly need to go idle, or should
410 * reschedule:
411 */
412 if (unlikely(need_resched())) {
413 local_irq_enable();
414 return;
415 }
416
417 cx = pr->power.state;
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000418 if (!cx || acpi_idle_suspend) {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800419 if (pm_idle_save)
420 pm_idle_save();
421 else
422 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800423
424 local_irq_enable();
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800425 return;
426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /*
429 * Check BM Activity
430 * -----------------
431 * Check for bus mastering activity (if required), record, and check
432 * for demotion.
433 */
434 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400435 u32 bm_status = 0;
436 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400438 if (diff > 31)
439 diff = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400441 pr->power.bm_activity <<= diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bob Moored8c71b62007-02-02 19:48:21 +0300443 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (bm_status) {
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400445 pr->power.bm_activity |= 0x1;
Bob Moored8c71b62007-02-02 19:48:21 +0300446 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448 /*
449 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
450 * the true state of bus mastering activity; forcing us to
451 * manually check the BMIDEA bit of each IDE channel.
452 */
453 else if (errata.piix4.bmisx) {
454 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400455 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400456 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
459 pr->power.bm_check_timestamp = jiffies;
460
461 /*
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400462 * If bus mastering is or was active this jiffy, demote
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * to avoid a faulty transition. Note that the processor
464 * won't enter a low-power state during this call (to this
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400465 * function) but should upon the next.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
467 * TBD: A better policy might be to fallback to the demotion
468 * state (use it for this quantum only) istead of
469 * demoting -- and rely on duration as our sole demotion
470 * qualification. This may, however, introduce DMA
471 * issues (e.g. floppy DMA transfer overrun/underrun).
472 */
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400473 if ((pr->power.bm_activity & 0x1) &&
474 cx->demotion.threshold.bm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 local_irq_enable();
476 next_state = cx->demotion.state;
477 goto end;
478 }
479 }
480
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400481#ifdef CONFIG_HOTPLUG_CPU
482 /*
483 * Check for P_LVL2_UP flag before entering C2 and above on
484 * an SMP system. We do it here instead of doing it at _CST/P_LVL
485 * detection phase, to work cleanly with logical CPU hotplug.
486 */
Len Brown4f86d3a2007-10-03 18:58:00 -0400487 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300488 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
David Shaohua Li1e483962005-12-01 17:00:00 -0500489 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400490#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /*
493 * Sleep:
494 * ------
495 * Invoke the current Cx state to put the processor to sleep.
496 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100497 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200498 current_thread_info()->status &= ~TS_POLLING;
Ingo Molnar0888f062006-12-22 01:11:56 -0800499 /*
500 * TS_POLLING-cleared state must be visible before we
501 * test NEED_RESCHED:
502 */
503 smp_mb();
Nick Piggin2a298a32005-12-02 12:44:19 +1100504 if (need_resched()) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200505 current_thread_info()->status |= TS_POLLING;
Linus Torvaldsaf2eb172005-12-02 23:09:06 -0800506 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100507 return;
508 }
509 }
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 switch (cx->type) {
512
513 case ACPI_STATE_C1:
514 /*
515 * Invoke C1.
516 * Use the appropriate idle routine, the one that would
517 * be used without acpi C-states.
518 */
519 if (pm_idle_save)
520 pm_idle_save();
521 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800522 acpi_safe_halt();
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400525 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * go to an ISR rather than here. Need to instrument
527 * base interrupt handler.
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200528 *
529 * Note: the TSC better not stop in C1, sched_clock() will
530 * skew otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
532 sleep_ticks = 0xFFFFFFFF;
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800533 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 break;
535
536 case ACPI_STATE_C2:
537 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300538 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200539 /* Tell the scheduler that we are going deep-idle: */
540 sched_clock_idle_sleep_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* Invoke C2 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800542 acpi_state_timer_broadcast(pr, cx, 1);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700543 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300545 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
john stultz539eb112006-06-26 00:25:10 -0700546
Tony Luck0aa366f2007-07-20 11:22:30 -0700547#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700548 /* TSC halts in C2, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100549 if (tsc_halts_in_c(ACPI_STATE_C2))
550 mark_tsc_unstable("possible TSC halt in C2");
john stultz539eb112006-06-26 00:25:10 -0700551#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200552 /* Compute time (ticks) that we were actually asleep */
553 sleep_ticks = ticks_elapsed(t1, t2);
554
555 /* Tell the scheduler how much we idled: */
556 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* Re-enable interrupts */
559 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200560 /* Do not account our idle-switching overhead: */
561 sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
562
Andi Kleen495ab9c2006-06-26 13:59:11 +0200563 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800564 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566
567 case ACPI_STATE_C3:
Venki Pallipadibde6f5f2008-01-30 13:32:01 +0100568 acpi_unlazy_tlb(smp_processor_id());
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400569 /*
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100570 * Must be done before busmaster disable as we might
571 * need to access HPET !
572 */
573 acpi_state_timer_broadcast(pr, cx, 1);
574 /*
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400575 * disable bus master
576 * bm_check implies we need ARB_DIS
577 * !bm_check implies we need cache flush
578 * bm_control implies whether we can do ARB_DIS
579 *
580 * That leaves a case where bm_check is set and bm_control is
581 * not set. In that case we cannot do much, we enter C3
582 * without doing anything.
583 */
584 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400585 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400586 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400587 /*
588 * All CPUs are trying to go to C3
589 * Disable bus master arbitration
590 */
Bob Moored8c71b62007-02-02 19:48:21 +0300591 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400592 }
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400593 } else if (!pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400594 /* SMP with no shared cache... Invalidate cache */
595 ACPI_FLUSH_CPU_CACHE();
596 }
Len Brown4be44fc2005-08-05 00:44:28 -0400597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300599 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* Invoke C3 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200601 /* Tell the scheduler that we are going deep-idle: */
602 sched_clock_idle_sleep_event();
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700603 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300605 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400606 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400607 /* Enable bus master arbitration */
608 atomic_dec(&c3_cpu_count);
Bob Moored8c71b62007-02-02 19:48:21 +0300609 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400610 }
611
Tony Luck0aa366f2007-07-20 11:22:30 -0700612#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700613 /* TSC halts in C3, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +0100614 if (tsc_halts_in_c(ACPI_STATE_C3))
615 mark_tsc_unstable("TSC halts in C3");
john stultz539eb112006-06-26 00:25:10 -0700616#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200617 /* Compute time (ticks) that we were actually asleep */
618 sleep_ticks = ticks_elapsed(t1, t2);
619 /* Tell the scheduler how much we idled: */
620 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Re-enable interrupts */
623 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200624 /* Do not account our idle-switching overhead: */
625 sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
626
Andi Kleen495ab9c2006-06-26 13:59:11 +0200627 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800628 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 break;
630
631 default:
632 local_irq_enable();
633 return;
634 }
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400635 cx->usage++;
636 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
637 cx->time += sleep_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 next_state = pr->power.state;
640
David Shaohua Li1e483962005-12-01 17:00:00 -0500641#ifdef CONFIG_HOTPLUG_CPU
642 /* Don't do promotion/demotion */
643 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300644 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
David Shaohua Li1e483962005-12-01 17:00:00 -0500645 next_state = cx;
646 goto end;
647 }
648#endif
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
651 * Promotion?
652 * ----------
653 * Track the number of longs (time asleep is greater than threshold)
654 * and promote when the count threshold is reached. Note that bus
655 * mastering activity may prevent promotions.
656 * Do not promote above max_cstate.
657 */
658 if (cx->promotion.state &&
659 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
Arjan van de Ven5c875792006-09-30 23:27:17 -0700660 if (sleep_ticks > cx->promotion.threshold.ticks &&
Mark Grossf011e2e2008-02-04 22:30:09 -0800661 cx->promotion.state->latency <=
662 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400664 cx->demotion.count = 0;
665 if (cx->promotion.count >=
666 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400668 if (!
669 (pr->power.bm_activity & cx->
670 promotion.threshold.bm)) {
671 next_state =
672 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto end;
674 }
Len Brown4be44fc2005-08-05 00:44:28 -0400675 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 next_state = cx->promotion.state;
677 goto end;
678 }
679 }
680 }
681 }
682
683 /*
684 * Demotion?
685 * ---------
686 * Track the number of shorts (time asleep is less than time threshold)
687 * and demote when the usage threshold is reached.
688 */
689 if (cx->demotion.state) {
690 if (sleep_ticks < cx->demotion.threshold.ticks) {
691 cx->demotion.count++;
692 cx->promotion.count = 0;
693 if (cx->demotion.count >= cx->demotion.threshold.count) {
694 next_state = cx->demotion.state;
695 goto end;
696 }
697 }
698 }
699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * Demote if current state exceeds max_cstate
Arjan van de Ven5c875792006-09-30 23:27:17 -0700703 * or if the latency of the current state is unacceptable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Arjan van de Ven5c875792006-09-30 23:27:17 -0700705 if ((pr->power.state - pr->power.states) > max_cstate ||
Mark Grossf011e2e2008-02-04 22:30:09 -0800706 pr->power.state->latency >
707 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (cx->demotion.state)
709 next_state = cx->demotion.state;
710 }
711
712 /*
713 * New Cx State?
714 * -------------
715 * If we're going to start using a new Cx state we must clean up
716 * from the previous and prepare to use the new.
717 */
718 if (next_state != pr->power.state)
719 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 unsigned int i;
725 unsigned int state_is_set = 0;
726 struct acpi_processor_cx *lower = NULL;
727 struct acpi_processor_cx *higher = NULL;
728 struct acpi_processor_cx *cx;
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400732 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /*
735 * This function sets the default Cx state policy (OS idle handler).
736 * Our scheme is to promote quickly to C2 but more conservatively
737 * to C3. We're favoring C2 for its characteristics of low latency
738 * (quick response), good power savings, and ability to allow bus
739 * mastering activity. Note that the Cx state policy is completely
740 * customizable and can be altered dynamically.
741 */
742
743 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400744 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 cx = &pr->power.states[i];
746 if (!cx->valid)
747 continue;
748
749 if (!state_is_set)
750 pr->power.state = cx;
751 state_is_set++;
752 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 if (!state_is_set)
Patrick Mocheld550d982006-06-27 00:41:40 -0400756 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400759 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 cx = &pr->power.states[i];
761 if (!cx->valid)
762 continue;
763
764 if (lower) {
765 cx->demotion.state = lower;
766 cx->demotion.threshold.ticks = cx->latency_ticks;
767 cx->demotion.threshold.count = 1;
768 if (cx->type == ACPI_STATE_C3)
769 cx->demotion.threshold.bm = bm_history;
770 }
771
772 lower = cx;
773 }
774
775 /* promotion */
776 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
777 cx = &pr->power.states[i];
778 if (!cx->valid)
779 continue;
780
781 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400782 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 cx->promotion.threshold.ticks = cx->latency_ticks;
784 if (cx->type >= ACPI_STATE_C2)
785 cx->promotion.threshold.count = 4;
786 else
787 cx->promotion.threshold.count = 10;
788 if (higher->type == ACPI_STATE_C3)
789 cx->promotion.threshold.bm = bm_history;
790 }
791
792 higher = cx;
793 }
794
Patrick Mocheld550d982006-06-27 00:41:40 -0400795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
Len Brown4f86d3a2007-10-03 18:58:00 -0400797#endif /* !CONFIG_CPU_IDLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Len Brown4be44fc2005-08-05 00:44:28 -0400799static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
810 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
811
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400812#ifndef CONFIG_HOTPLUG_CPU
813 /*
814 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400815 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400816 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300817 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300818 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400819 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400820#endif
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* determine C2 and C3 address from pblk */
823 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
824 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
825
826 /* determine latencies from FADT */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300827 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
828 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
831 "lvl2[0x%08x] lvl3[0x%08x]\n",
832 pr->power.states[ACPI_STATE_C2].address,
833 pr->power.states[ACPI_STATE_C3].address));
834
Patrick Mocheld550d982006-06-27 00:41:40 -0400835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700838static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500839{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700840 if (!pr->power.states[ACPI_STATE_C1].valid) {
841 /* set the first C-State to C1 */
842 /* all processors need to support C1 */
843 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
844 pr->power.states[ACPI_STATE_C1].valid = 1;
845 }
846 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500847 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400848 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500849}
850
Len Brown4be44fc2005-08-05 00:44:28 -0400851static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Len Brown4be44fc2005-08-05 00:44:28 -0400853 acpi_status status = 0;
854 acpi_integer count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400855 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400856 int i;
857 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
858 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400862 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700864 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
867 if (ACPI_FAILURE(status)) {
868 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400869 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200872 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 /* There must be at least 2 elements */
875 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400876 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 status = -EFAULT;
878 goto end;
879 }
880
881 count = cst->package.elements[0].integer.value;
882
883 /* Validate number of power states. */
884 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400885 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 status = -EFAULT;
887 goto end;
888 }
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* Tell driver that at least _CST is supported. */
891 pr->flags.has_cst = 1;
892
893 for (i = 1; i <= count; i++) {
894 union acpi_object *element;
895 union acpi_object *obj;
896 struct acpi_power_register *reg;
897 struct acpi_processor_cx cx;
898
899 memset(&cx, 0, sizeof(cx));
900
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200901 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (element->type != ACPI_TYPE_PACKAGE)
903 continue;
904
905 if (element->package.count != 4)
906 continue;
907
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200908 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (obj->type != ACPI_TYPE_BUFFER)
911 continue;
912
Len Brown4be44fc2005-08-05 00:44:28 -0400913 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400916 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 continue;
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200920 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (obj->type != ACPI_TYPE_INTEGER)
922 continue;
923
924 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700925 /*
926 * Some buggy BIOSes won't list C1 in _CST -
927 * Let acpi_processor_get_power_info_default() handle them later
928 */
929 if (i == 1 && cx.type != ACPI_STATE_C1)
930 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700932 cx.address = reg->address;
933 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800935 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700936 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
937 if (acpi_processor_ffh_cstate_probe
938 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800939 cx.entry_method = ACPI_CSTATE_FFH;
940 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700941 /*
942 * C1 is a special case where FIXED_HARDWARE
943 * can be handled in non-MWAIT way as well.
944 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700945 * Otherwise, ignore this info and continue.
946 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800947 cx.entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800948 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800949 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700950 continue;
951 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800952 } else {
953 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x",
954 cx.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800957
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200958 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (obj->type != ACPI_TYPE_INTEGER)
960 continue;
961
962 cx.latency = obj->integer.value;
963
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200964 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (obj->type != ACPI_TYPE_INTEGER)
966 continue;
967
968 cx.power = obj->integer.value;
969
Janosch Machowinskicf824782005-08-20 08:02:00 -0400970 current_count++;
971 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
972
973 /*
974 * We support total ACPI_PROCESSOR_MAX_POWER - 1
975 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
976 */
977 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
978 printk(KERN_WARNING
979 "Limiting number of power states to max (%d)\n",
980 ACPI_PROCESSOR_MAX_POWER);
981 printk(KERN_WARNING
982 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
983 break;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
Len Brown4be44fc2005-08-05 00:44:28 -0400987 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400988 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400991 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400992 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Len Brown4be44fc2005-08-05 00:44:28 -0400994 end:
Len Brown02438d82006-06-30 03:19:10 -0400995 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Patrick Mocheld550d982006-06-27 00:41:40 -0400997 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
1001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001004 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 /*
1007 * C2 latency must be less than or equal to 100
1008 * microseconds.
1009 */
1010 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
1011 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001012 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001013 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /*
1017 * Otherwise we've met all of our C2 requirements.
1018 * Normalize the C2 latency to expidite policy
1019 */
1020 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001021
1022#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001024#else
1025 cx->latency_ticks = cx->latency;
1026#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Patrick Mocheld550d982006-06-27 00:41:40 -04001028 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Len Brown4be44fc2005-08-05 00:44:28 -04001031static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
1032 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001034 static int bm_check_flag;
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 /*
1041 * C3 latency must be less than or equal to 1000
1042 * microseconds.
1043 */
1044 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
1045 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001046 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001047 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 /*
1051 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1052 * DMA transfers are used by any ISA device to avoid livelock.
1053 * Note that we could disable Type-F DMA (as recommended by
1054 * the erratum), but this is known to disrupt certain ISA
1055 * devices thus we take the conservative approach.
1056 */
1057 else if (errata.piix4.fdma) {
1058 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001059 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001060 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001063 /* All the logic here assumes flags.bm_check is same across all CPUs */
1064 if (!bm_check_flag) {
1065 /* Determine whether bm_check is needed based on CPU */
1066 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
1067 bm_check_flag = pr->flags.bm_check;
1068 } else {
1069 pr->flags.bm_check = bm_check_flag;
1070 }
1071
1072 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001073 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -07001074 if (pr->flags.has_cst != 1) {
1075 /* bus mastering control is necessary */
1076 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1077 "C3 support requires BM control\n"));
1078 return;
1079 } else {
1080 /* Here we enter C3 without bus mastering */
1081 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1082 "C3 support without BM control\n"));
1083 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001084 }
1085 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001086 /*
1087 * WBINVD should be set in fadt, for C3 state to be
1088 * supported on when bm_check is not required.
1089 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001090 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001091 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001092 "Cache invalidation should work properly"
1093 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001094 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001095 }
Bob Moored8c71b62007-02-02 19:48:21 +03001096 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001097 }
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * Otherwise we've met all of our C3 requirements.
1101 * Normalize the C3 latency to expidite policy. Enable
1102 * checking of bus mastering status (bm_check) so we can
1103 * use this in our C3 policy
1104 */
1105 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001106
1107#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001109#else
1110 cx->latency_ticks = cx->latency;
1111#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Patrick Mocheld550d982006-06-27 00:41:40 -04001113 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116static int acpi_processor_power_verify(struct acpi_processor *pr)
1117{
1118 unsigned int i;
1119 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001120
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001121 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001122
Len Brown4be44fc2005-08-05 00:44:28 -04001123 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct acpi_processor_cx *cx = &pr->power.states[i];
1125
1126 switch (cx->type) {
1127 case ACPI_STATE_C1:
1128 cx->valid = 1;
1129 break;
1130
1131 case ACPI_STATE_C2:
1132 acpi_processor_power_verify_c2(cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001133 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001134 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 break;
1136
1137 case ACPI_STATE_C3:
1138 acpi_processor_power_verify_c3(pr, cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001139 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001140 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 break;
1142 }
1143
1144 if (cx->valid)
1145 working++;
1146 }
1147
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001148 acpi_propagate_timer_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +01001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return (working);
1151}
1152
Len Brown4be44fc2005-08-05 00:44:28 -04001153static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 unsigned int i;
1156 int result;
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* NOTE: the idle thread may not be running while calling
1160 * this function */
1161
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001162 /* Zero initialize all the C-states info. */
1163 memset(pr->power.states, 0, sizeof(pr->power.states));
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001166 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -07001167 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001168
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001169 if (result)
1170 return result;
1171
1172 acpi_processor_get_power_info_default(pr);
1173
Janosch Machowinskicf824782005-08-20 08:02:00 -04001174 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Len Brown4f86d3a2007-10-03 18:58:00 -04001176#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 /*
1178 * Set Default Policy
1179 * ------------------
1180 * Now that we know which states are supported, set the default
1181 * policy. Note that this policy can be changed dynamically
1182 * (e.g. encourage deeper sleeps to conserve battery life when
1183 * not on AC).
1184 */
1185 result = acpi_processor_set_power_policy(pr);
1186 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001187 return result;
Len Brown4f86d3a2007-10-03 18:58:00 -04001188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /*
1191 * if one state of type C2 or C3 is available, mark this
1192 * CPU as being "idle manageable"
1193 */
1194 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001195 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -08001197 if (pr->power.states[i].type >= ACPI_STATE_C2)
1198 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201
Patrick Mocheld550d982006-06-27 00:41:40 -04001202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1206{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001207 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001208 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (!pr)
1212 goto end;
1213
1214 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -04001215 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -07001216 "bus master activity: %08x\n"
1217 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001218 pr->power.state ? pr->power.state - pr->power.states : 0,
Arjan van de Ven5c875792006-09-30 23:27:17 -07001219 max_cstate, (unsigned)pr->power.bm_activity,
Mark Grossf011e2e2008-02-04 22:30:09 -08001220 pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 seq_puts(seq, "states:\n");
1223
1224 for (i = 1; i <= pr->power.count; i++) {
1225 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -04001226 (&pr->power.states[i] ==
1227 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (!pr->power.states[i].valid) {
1230 seq_puts(seq, "<not supported>\n");
1231 continue;
1232 }
1233
1234 switch (pr->power.states[i].type) {
1235 case ACPI_STATE_C1:
1236 seq_printf(seq, "type[C1] ");
1237 break;
1238 case ACPI_STATE_C2:
1239 seq_printf(seq, "type[C2] ");
1240 break;
1241 case ACPI_STATE_C3:
1242 seq_printf(seq, "type[C3] ");
1243 break;
1244 default:
1245 seq_printf(seq, "type[--] ");
1246 break;
1247 }
1248
1249 if (pr->power.states[i].promotion.state)
1250 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001251 (pr->power.states[i].promotion.state -
1252 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 else
1254 seq_puts(seq, "promotion[--] ");
1255
1256 if (pr->power.states[i].demotion.state)
1257 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001258 (pr->power.states[i].demotion.state -
1259 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 else
1261 seq_puts(seq, "demotion[--] ");
1262
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001263 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001264 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001265 pr->power.states[i].usage,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -05001266 (unsigned long long)pr->power.states[i].time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
Len Brown4be44fc2005-08-05 00:44:28 -04001269 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
1273static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1274{
1275 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001276 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
Arjan van de Vend7508032006-07-04 13:06:00 -04001279static const struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001280 .open = acpi_processor_power_open_fs,
1281 .read = seq_read,
1282 .llseek = seq_lseek,
1283 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284};
1285
Len Brown4f86d3a2007-10-03 18:58:00 -04001286#ifndef CONFIG_CPU_IDLE
1287
1288int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1289{
1290 int result = 0;
1291
1292
1293 if (!pr)
1294 return -EINVAL;
1295
1296 if (nocst) {
1297 return -ENODEV;
1298 }
1299
1300 if (!pr->flags.power_setup_done)
1301 return -ENODEV;
1302
1303 /* Fall back to the default idle loop */
1304 pm_idle = pm_idle_save;
1305 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1306
1307 pr->flags.power = 0;
1308 result = acpi_processor_get_power_info(pr);
1309 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
1310 pm_idle = acpi_processor_idle;
1311
1312 return result;
1313}
1314
Andrew Morton1fec74a2006-10-17 00:09:58 -07001315#ifdef CONFIG_SMP
Arjan van de Ven5c875792006-09-30 23:27:17 -07001316static void smp_callback(void *v)
1317{
1318 /* we already woke the CPU up, nothing more to do */
1319}
1320
1321/*
1322 * This function gets called when a part of the kernel has a new latency
1323 * requirement. This means we need to get all processors out of their C-state,
1324 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1325 * wakes them all right up.
1326 */
1327static int acpi_processor_latency_notify(struct notifier_block *b,
1328 unsigned long l, void *v)
1329{
1330 smp_call_function(smp_callback, NULL, 0, 1);
1331 return NOTIFY_OK;
1332}
1333
1334static struct notifier_block acpi_processor_latency_notifier = {
1335 .notifier_call = acpi_processor_latency_notify,
1336};
Len Brown4f86d3a2007-10-03 18:58:00 -04001337
Andrew Morton1fec74a2006-10-17 00:09:58 -07001338#endif
Arjan van de Ven5c875792006-09-30 23:27:17 -07001339
Len Brown4f86d3a2007-10-03 18:58:00 -04001340#else /* CONFIG_CPU_IDLE */
1341
1342/**
1343 * acpi_idle_bm_check - checks if bus master activity was detected
1344 */
1345static int acpi_idle_bm_check(void)
1346{
1347 u32 bm_status = 0;
1348
1349 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1350 if (bm_status)
1351 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1352 /*
1353 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1354 * the true state of bus mastering activity; forcing us to
1355 * manually check the BMIDEA bit of each IDE channel.
1356 */
1357 else if (errata.piix4.bmisx) {
1358 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
1359 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
1360 bm_status = 1;
1361 }
1362 return bm_status;
1363}
1364
1365/**
1366 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1367 * @pr: the processor
1368 * @target: the new target state
1369 */
1370static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
1371 struct acpi_processor_cx *target)
1372{
1373 if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
1374 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1375 pr->flags.bm_rld_set = 0;
1376 }
1377
1378 if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
1379 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1380 pr->flags.bm_rld_set = 1;
1381 }
1382}
1383
1384/**
1385 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1386 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001387 *
1388 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -04001389 */
1390static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
1391{
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001392 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001393 /* Call into architectural FFH based C-state */
1394 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001395 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
1396 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -04001397 } else {
1398 int unused;
1399 /* IO port based C-state */
1400 inb(cx->address);
1401 /* Dummy wait op - must do something useless after P_LVL2 read
1402 because chipsets cannot guarantee that STPCLK# signal
1403 gets asserted in time to freeze execution properly. */
1404 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
1405 }
1406}
1407
1408/**
1409 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1410 * @dev: the target CPU
1411 * @state: the state data
1412 *
1413 * This is equivalent to the HALT instruction.
1414 */
1415static int acpi_idle_enter_c1(struct cpuidle_device *dev,
1416 struct cpuidle_state *state)
1417{
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001418 u32 t1, t2;
Len Brown4f86d3a2007-10-03 18:58:00 -04001419 struct acpi_processor *pr;
1420 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001421
Len Brown4f86d3a2007-10-03 18:58:00 -04001422 pr = processors[smp_processor_id()];
1423
1424 if (unlikely(!pr))
1425 return 0;
1426
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001427 local_irq_disable();
Len Brown4f86d3a2007-10-03 18:58:00 -04001428 if (pr->flags.bm_check)
1429 acpi_idle_update_bm_rld(pr, cx);
1430
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001431 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -08001432 acpi_idle_do_entry(cx);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001433 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -04001434
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001435 local_irq_enable();
Len Brown4f86d3a2007-10-03 18:58:00 -04001436 cx->usage++;
1437
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001438 return ticks_elapsed_in_us(t1, t2);
Len Brown4f86d3a2007-10-03 18:58:00 -04001439}
1440
1441/**
1442 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1443 * @dev: the target CPU
1444 * @state: the state data
1445 */
1446static int acpi_idle_enter_simple(struct cpuidle_device *dev,
1447 struct cpuidle_state *state)
1448{
1449 struct acpi_processor *pr;
1450 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1451 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001452 int sleep_ticks = 0;
1453
Len Brown4f86d3a2007-10-03 18:58:00 -04001454 pr = processors[smp_processor_id()];
1455
1456 if (unlikely(!pr))
1457 return 0;
1458
Len Browne1964412007-10-04 01:23:47 -04001459 if (acpi_idle_suspend)
1460 return(acpi_idle_enter_c1(dev, state));
1461
Len Brown4f86d3a2007-10-03 18:58:00 -04001462 local_irq_disable();
1463 current_thread_info()->status &= ~TS_POLLING;
1464 /*
1465 * TS_POLLING-cleared state must be visible before we test
1466 * NEED_RESCHED:
1467 */
1468 smp_mb();
1469
1470 if (unlikely(need_resched())) {
1471 current_thread_info()->status |= TS_POLLING;
1472 local_irq_enable();
1473 return 0;
1474 }
1475
Venki Pallipadibde6f5f2008-01-30 13:32:01 +01001476 acpi_unlazy_tlb(smp_processor_id());
Thomas Gleixnere17bcb42007-12-07 19:16:17 +01001477 /*
1478 * Must be done before busmaster disable as we might need to
1479 * access HPET !
1480 */
1481 acpi_state_timer_broadcast(pr, cx, 1);
1482
1483 if (pr->flags.bm_check)
1484 acpi_idle_update_bm_rld(pr, cx);
1485
Len Brown4f86d3a2007-10-03 18:58:00 -04001486 if (cx->type == ACPI_STATE_C3)
1487 ACPI_FLUSH_CPU_CACHE();
1488
1489 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001490 /* Tell the scheduler that we are going deep-idle: */
1491 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001492 acpi_idle_do_entry(cx);
1493 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1494
1495#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1496 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001497 if (tsc_halts_in_c(cx->type))
1498 mark_tsc_unstable("TSC halts in idle");;
Len Brown4f86d3a2007-10-03 18:58:00 -04001499#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001500 sleep_ticks = ticks_elapsed(t1, t2);
1501
1502 /* Tell the scheduler how much we idled: */
1503 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001504
1505 local_irq_enable();
1506 current_thread_info()->status |= TS_POLLING;
1507
1508 cx->usage++;
1509
1510 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001511 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001512 return ticks_elapsed_in_us(t1, t2);
1513}
1514
1515static int c3_cpu_count;
1516static DEFINE_SPINLOCK(c3_lock);
1517
1518/**
1519 * acpi_idle_enter_bm - enters C3 with proper BM handling
1520 * @dev: the target CPU
1521 * @state: the state data
1522 *
1523 * If BM is detected, the deepest non-C3 idle state is entered instead.
1524 */
1525static int acpi_idle_enter_bm(struct cpuidle_device *dev,
1526 struct cpuidle_state *state)
1527{
1528 struct acpi_processor *pr;
1529 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1530 u32 t1, t2;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001531 int sleep_ticks = 0;
1532
Len Brown4f86d3a2007-10-03 18:58:00 -04001533 pr = processors[smp_processor_id()];
1534
1535 if (unlikely(!pr))
1536 return 0;
1537
Len Browne1964412007-10-04 01:23:47 -04001538 if (acpi_idle_suspend)
1539 return(acpi_idle_enter_c1(dev, state));
1540
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001541 if (acpi_idle_bm_check()) {
1542 if (dev->safe_state) {
1543 return dev->safe_state->enter(dev, dev->safe_state);
1544 } else {
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001545 local_irq_disable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001546 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -08001547 local_irq_enable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001548 return 0;
1549 }
1550 }
1551
Len Brown4f86d3a2007-10-03 18:58:00 -04001552 local_irq_disable();
1553 current_thread_info()->status &= ~TS_POLLING;
1554 /*
1555 * TS_POLLING-cleared state must be visible before we test
1556 * NEED_RESCHED:
1557 */
1558 smp_mb();
1559
1560 if (unlikely(need_resched())) {
1561 current_thread_info()->status |= TS_POLLING;
1562 local_irq_enable();
1563 return 0;
1564 }
1565
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001566 /* Tell the scheduler that we are going deep-idle: */
1567 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -04001568 /*
1569 * Must be done before busmaster disable as we might need to
1570 * access HPET !
1571 */
1572 acpi_state_timer_broadcast(pr, cx, 1);
1573
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001574 acpi_idle_update_bm_rld(pr, cx);
Len Brown4f86d3a2007-10-03 18:58:00 -04001575
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001576 /*
1577 * disable bus master
1578 * bm_check implies we need ARB_DIS
1579 * !bm_check implies we need cache flush
1580 * bm_control implies whether we can do ARB_DIS
1581 *
1582 * That leaves a case where bm_check is set and bm_control is
1583 * not set. In that case we cannot do much, we enter C3
1584 * without doing anything.
1585 */
1586 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001587 spin_lock(&c3_lock);
1588 c3_cpu_count++;
1589 /* Disable bus master arbitration when all CPUs are in C3 */
1590 if (c3_cpu_count == num_online_cpus())
1591 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
1592 spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001593 } else if (!pr->flags.bm_check) {
1594 ACPI_FLUSH_CPU_CACHE();
1595 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001596
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001597 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1598 acpi_idle_do_entry(cx);
1599 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -04001600
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001601 /* Re-enable bus master arbitration */
1602 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001603 spin_lock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001604 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -04001605 c3_cpu_count--;
1606 spin_unlock(&c3_lock);
1607 }
1608
1609#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1610 /* TSC could halt in idle, so notify users */
Andi Kleenddb25f92008-01-30 13:32:41 +01001611 if (tsc_halts_in_c(ACPI_STATE_C3))
1612 mark_tsc_unstable("TSC halts in idle");
Len Brown4f86d3a2007-10-03 18:58:00 -04001613#endif
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001614 sleep_ticks = ticks_elapsed(t1, t2);
1615 /* Tell the scheduler how much we idled: */
1616 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
Len Brown4f86d3a2007-10-03 18:58:00 -04001617
1618 local_irq_enable();
1619 current_thread_info()->status |= TS_POLLING;
1620
1621 cx->usage++;
1622
1623 acpi_state_timer_broadcast(pr, cx, 0);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001624 cx->time += sleep_ticks;
Len Brown4f86d3a2007-10-03 18:58:00 -04001625 return ticks_elapsed_in_us(t1, t2);
1626}
1627
1628struct cpuidle_driver acpi_idle_driver = {
1629 .name = "acpi_idle",
1630 .owner = THIS_MODULE,
1631};
1632
1633/**
1634 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1635 * @pr: the ACPI processor
1636 */
1637static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1638{
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001639 int i, count = CPUIDLE_DRIVER_STATE_START;
Len Brown4f86d3a2007-10-03 18:58:00 -04001640 struct acpi_processor_cx *cx;
1641 struct cpuidle_state *state;
1642 struct cpuidle_device *dev = &pr->power.dev;
1643
1644 if (!pr->flags.power_setup_done)
1645 return -EINVAL;
1646
1647 if (pr->flags.power == 0) {
1648 return -EINVAL;
1649 }
1650
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001651 for (i = 0; i < CPUIDLE_STATE_MAX; i++) {
1652 dev->states[i].name[0] = '\0';
1653 dev->states[i].desc[0] = '\0';
1654 }
1655
Len Brown4f86d3a2007-10-03 18:58:00 -04001656 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1657 cx = &pr->power.states[i];
1658 state = &dev->states[count];
1659
1660 if (!cx->valid)
1661 continue;
1662
1663#ifdef CONFIG_HOTPLUG_CPU
1664 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1665 !pr->flags.has_cst &&
1666 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1667 continue;
1668#endif
1669 cpuidle_set_statedata(state, cx);
1670
1671 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001672 strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
Len Brown4f86d3a2007-10-03 18:58:00 -04001673 state->exit_latency = cx->latency;
Len Brown4963f622007-12-13 23:50:45 -05001674 state->target_residency = cx->latency * latency_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -04001675 state->power_usage = cx->power;
1676
1677 state->flags = 0;
1678 switch (cx->type) {
1679 case ACPI_STATE_C1:
1680 state->flags |= CPUIDLE_FLAG_SHALLOW;
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -08001681 state->flags |= CPUIDLE_FLAG_TIME_VALID;
Len Brown4f86d3a2007-10-03 18:58:00 -04001682 state->enter = acpi_idle_enter_c1;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001683 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001684 break;
1685
1686 case ACPI_STATE_C2:
1687 state->flags |= CPUIDLE_FLAG_BALANCED;
1688 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1689 state->enter = acpi_idle_enter_simple;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001690 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001691 break;
1692
1693 case ACPI_STATE_C3:
1694 state->flags |= CPUIDLE_FLAG_DEEP;
1695 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1696 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1697 state->enter = pr->flags.bm_check ?
1698 acpi_idle_enter_bm :
1699 acpi_idle_enter_simple;
1700 break;
1701 }
1702
1703 count++;
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001704 if (count == CPUIDLE_STATE_MAX)
1705 break;
Len Brown4f86d3a2007-10-03 18:58:00 -04001706 }
1707
1708 dev->state_count = count;
1709
1710 if (!count)
1711 return -EINVAL;
1712
Len Brown4f86d3a2007-10-03 18:58:00 -04001713 return 0;
1714}
1715
1716int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1717{
1718 int ret;
1719
1720 if (!pr)
1721 return -EINVAL;
1722
1723 if (nocst) {
1724 return -ENODEV;
1725 }
1726
1727 if (!pr->flags.power_setup_done)
1728 return -ENODEV;
1729
1730 cpuidle_pause_and_lock();
1731 cpuidle_disable_device(&pr->power.dev);
1732 acpi_processor_get_power_info(pr);
1733 acpi_processor_setup_cpuidle(pr);
1734 ret = cpuidle_enable_device(&pr->power.dev);
1735 cpuidle_resume_and_unlock();
1736
1737 return ret;
1738}
1739
1740#endif /* CONFIG_CPU_IDLE */
1741
Pierre Ossman7af8b662006-10-10 14:20:31 -07001742int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
Len Brown4be44fc2005-08-05 00:44:28 -04001743 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Len Brown4be44fc2005-08-05 00:44:28 -04001745 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001746 static int first_run;
Len Brown4be44fc2005-08-05 00:44:28 -04001747 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 unsigned int i;
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 if (!first_run) {
1752 dmi_check_system(processor_power_dmi_table);
Alexey Starikovskiyc1c30632007-11-26 20:42:19 +01001753 max_cstate = acpi_processor_cstate_check(max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001755 printk(KERN_NOTICE
1756 "ACPI: processor limited to max C-state %d\n",
1757 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 first_run++;
Mark Grossf011e2e2008-02-04 22:30:09 -08001759#if !defined(CONFIG_CPU_IDLE) && defined(CONFIG_SMP)
1760 pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
1761 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
1764
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001765 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001766 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001767
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001768 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001769 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001770 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001772 ACPI_EXCEPTION((AE_INFO, status,
1773 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775 }
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001778 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 /*
1781 * Install the idle handler if processor power management is supported.
1782 * Note that we use previously set idle handler will be used on
1783 * platforms that only support C1.
1784 */
1785 if ((pr->flags.power) && (!boot_option_idle_override)) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001786#ifdef CONFIG_CPU_IDLE
1787 acpi_processor_setup_cpuidle(pr);
1788 pr->power.dev.cpu = pr->id;
1789 if (cpuidle_register_device(&pr->power.dev))
1790 return -EIO;
1791#endif
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1794 for (i = 1; i <= pr->power.count; i++)
1795 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001796 printk(" C%d[C%d]", i,
1797 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 printk(")\n");
1799
Len Brown4f86d3a2007-10-03 18:58:00 -04001800#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (pr->id == 0) {
1802 pm_idle_save = pm_idle;
1803 pm_idle = acpi_processor_idle;
1804 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001805#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807
1808 /* 'power' [R] */
1809 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001810 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001812 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 else {
1814 entry->proc_fops = &acpi_processor_power_fops;
1815 entry->data = acpi_driver_data(device);
1816 entry->owner = THIS_MODULE;
1817 }
1818
Patrick Mocheld550d982006-06-27 00:41:40 -04001819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
Len Brown4be44fc2005-08-05 00:44:28 -04001822int acpi_processor_power_exit(struct acpi_processor *pr,
1823 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Len Brown4f86d3a2007-10-03 18:58:00 -04001825#ifdef CONFIG_CPU_IDLE
1826 if ((pr->flags.power) && (!boot_option_idle_override))
1827 cpuidle_unregister_device(&pr->power.dev);
1828#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 pr->flags.power_setup_done = 0;
1830
1831 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001832 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1833 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Len Brown4f86d3a2007-10-03 18:58:00 -04001835#ifndef CONFIG_CPU_IDLE
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 /* Unregister the idle handler when processor #0 is removed. */
1838 if (pr->id == 0) {
1839 pm_idle = pm_idle_save;
1840
1841 /*
1842 * We are about to unload the current idle thread pm callback
1843 * (pm_idle), Wait for all processors to update cached/local
1844 * copies of pm_idle before proceeding.
1845 */
1846 cpu_idle_wait();
Andrew Morton1fec74a2006-10-17 00:09:58 -07001847#ifdef CONFIG_SMP
Mark Grossf011e2e2008-02-04 22:30:09 -08001848 pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
1849 &acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Patrick Mocheld550d982006-06-27 00:41:40 -04001854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}