blob: 0a395fca843b46686b748ffe1583515cc863e9af [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() */
Arjan van de Ven5c875792006-09-30 23:27:17 -070041#include <linux/latency.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/io.h>
44#include <asm/uaccess.h>
45
46#include <acpi/acpi_bus.h>
47#include <acpi/processor.h>
48
49#define ACPI_PROCESSOR_COMPONENT 0x01000000
50#define ACPI_PROCESSOR_CLASS "processor"
51#define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver"
52#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("acpi_processor")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_PROCESSOR_FILE_POWER "power"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
56#define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
57#define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
Andreas Mohrb6835052006-04-27 05:25:00 -040058static void (*pm_idle_save) (void) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059module_param(max_cstate, uint, 0644);
60
Andreas Mohrb6835052006-04-27 05:25:00 -040061static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062module_param(nocst, uint, 0000);
63
64/*
65 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
66 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
67 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
68 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
69 * reduce history for more aggressive entry into C3
70 */
Andreas Mohrb6835052006-04-27 05:25:00 -040071static unsigned int bm_history __read_mostly =
Len Brown4be44fc2005-08-05 00:44:28 -040072 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073module_param(bm_history, uint, 0644);
74/* --------------------------------------------------------------------------
75 Power Management
76 -------------------------------------------------------------------------- */
77
78/*
79 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
80 * For now disable this. Probably a bug somewhere else.
81 *
82 * To skip this limit, boot/load with a large max_cstate limit.
83 */
David Shaohua Li335f16b2005-06-22 18:37:00 -040084static int set_max_cstate(struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
87 return 0;
88
Len Brown3d356002005-08-03 00:22:52 -040089 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -040090 " Override with \"processor.max_cstate=%d\"\n", id->ident,
91 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Len Brown3d356002005-08-03 00:22:52 -040093 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 return 0;
96}
97
Ashok Raj7ded5682006-02-03 21:51:23 +010098/* Actually this shouldn't be __cpuinitdata, would be better to fix the
99 callers to only run once -AK */
100static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -0500101 { set_max_cstate, "IBM ThinkPad R40e", {
102 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Bartlomiej Swierczf8313352006-05-29 07:16:00 -0400103 DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
104 { set_max_cstate, "IBM ThinkPad R40e", {
105 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Thomas Rosner876c1842006-01-06 01:31:00 -0500106 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
107 { set_max_cstate, "IBM ThinkPad R40e", {
108 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
109 DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
110 { set_max_cstate, "IBM ThinkPad R40e", {
111 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
112 DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
113 { set_max_cstate, "IBM ThinkPad R40e", {
114 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
115 DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
116 { set_max_cstate, "IBM ThinkPad R40e", {
117 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
118 DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
119 { set_max_cstate, "IBM ThinkPad R40e", {
120 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
121 DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
122 { set_max_cstate, "IBM ThinkPad R40e", {
123 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
124 DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
125 { set_max_cstate, "IBM ThinkPad R40e", {
126 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
127 DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
128 { set_max_cstate, "IBM ThinkPad R40e", {
129 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
130 DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
131 { set_max_cstate, "IBM ThinkPad R40e", {
132 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
133 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
134 { set_max_cstate, "IBM ThinkPad R40e", {
135 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
136 DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
137 { set_max_cstate, "IBM ThinkPad R40e", {
138 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
139 DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
140 { set_max_cstate, "IBM ThinkPad R40e", {
141 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
142 DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
143 { set_max_cstate, "IBM ThinkPad R40e", {
144 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
145 DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
146 { set_max_cstate, "IBM ThinkPad R40e", {
147 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
148 DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
149 { set_max_cstate, "Medion 41700", {
150 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
151 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
152 { set_max_cstate, "Clevo 5600D", {
153 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
154 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400155 (void *)2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 {},
157};
158
Len Brown4be44fc2005-08-05 00:44:28 -0400159static inline u32 ticks_elapsed(u32 t1, u32 t2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 if (t2 >= t1)
162 return (t2 - t1);
163 else if (!acpi_fadt.tmr_val_ext)
164 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
165 else
166 return ((0xFFFFFFFF - t1) + t2);
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static void
Len Brown4be44fc2005-08-05 00:44:28 -0400170acpi_processor_power_activate(struct acpi_processor *pr,
171 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Len Brown4be44fc2005-08-05 00:44:28 -0400173 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (!pr || !new)
176 return;
177
178 old = pr->power.state;
179
180 if (old)
181 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400182 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* Cleanup from old state. */
185 if (old) {
186 switch (old->type) {
187 case ACPI_STATE_C3:
188 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400189 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Len Brown4be44fc2005-08-05 00:44:28 -0400190 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
191 ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 break;
193 }
194 }
195
196 /* Prepare to use new state. */
197 switch (new->type) {
198 case ACPI_STATE_C3:
199 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400200 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Len Brown4be44fc2005-08-05 00:44:28 -0400201 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1,
202 ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 }
205
206 pr->power.state = new;
207
208 return;
209}
210
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800211static void acpi_safe_halt(void)
212{
Andi Kleen495ab9c2006-06-26 13:59:11 +0200213 current_thread_info()->status &= ~TS_POLLING;
Nick Piggin2a298a32005-12-02 12:44:19 +1100214 smp_mb__after_clear_bit();
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800215 if (!need_resched())
216 safe_halt();
Andi Kleen495ab9c2006-06-26 13:59:11 +0200217 current_thread_info()->status |= TS_POLLING;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800218}
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Len Brown4be44fc2005-08-05 00:44:28 -0400222static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Len Brown4be44fc2005-08-05 00:44:28 -0400224 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct acpi_processor_cx *cx = NULL;
226 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400227 int sleep_ticks = 0;
228 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800230 pr = processors[smp_processor_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (!pr)
232 return;
233
234 /*
235 * Interrupts must be disabled during bus mastering calculations and
236 * for C2/C3 transitions.
237 */
238 local_irq_disable();
239
240 /*
241 * Check whether we truly need to go idle, or should
242 * reschedule:
243 */
244 if (unlikely(need_resched())) {
245 local_irq_enable();
246 return;
247 }
248
249 cx = pr->power.state;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800250 if (!cx) {
251 if (pm_idle_save)
252 pm_idle_save();
253 else
254 acpi_safe_halt();
255 return;
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /*
259 * Check BM Activity
260 * -----------------
261 * Check for bus mastering activity (if required), record, and check
262 * for demotion.
263 */
264 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400265 u32 bm_status = 0;
266 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400268 if (diff > 31)
269 diff = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400271 pr->power.bm_activity <<= diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400274 &bm_status, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (bm_status) {
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400276 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
Len Brown4be44fc2005-08-05 00:44:28 -0400278 1, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 /*
281 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
282 * the true state of bus mastering activity; forcing us to
283 * manually check the BMIDEA bit of each IDE channel.
284 */
285 else if (errata.piix4.bmisx) {
286 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400287 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400288 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
291 pr->power.bm_check_timestamp = jiffies;
292
293 /*
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400294 * If bus mastering is or was active this jiffy, demote
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * to avoid a faulty transition. Note that the processor
296 * won't enter a low-power state during this call (to this
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400297 * function) but should upon the next.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 *
299 * TBD: A better policy might be to fallback to the demotion
300 * state (use it for this quantum only) istead of
301 * demoting -- and rely on duration as our sole demotion
302 * qualification. This may, however, introduce DMA
303 * issues (e.g. floppy DMA transfer overrun/underrun).
304 */
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400305 if ((pr->power.bm_activity & 0x1) &&
306 cx->demotion.threshold.bm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 local_irq_enable();
308 next_state = cx->demotion.state;
309 goto end;
310 }
311 }
312
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400313#ifdef CONFIG_HOTPLUG_CPU
314 /*
315 * Check for P_LVL2_UP flag before entering C2 and above on
316 * an SMP system. We do it here instead of doing it at _CST/P_LVL
317 * detection phase, to work cleanly with logical CPU hotplug.
318 */
319 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
David Shaohua Li1e483962005-12-01 17:00:00 -0500320 !pr->flags.has_cst && !acpi_fadt.plvl2_up)
321 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400322#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * Sleep:
326 * ------
327 * Invoke the current Cx state to put the processor to sleep.
328 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100329 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200330 current_thread_info()->status &= ~TS_POLLING;
Nick Piggin2a298a32005-12-02 12:44:19 +1100331 smp_mb__after_clear_bit();
332 if (need_resched()) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200333 current_thread_info()->status |= TS_POLLING;
Linus Torvaldsaf2eb172005-12-02 23:09:06 -0800334 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100335 return;
336 }
337 }
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 switch (cx->type) {
340
341 case ACPI_STATE_C1:
342 /*
343 * Invoke C1.
344 * Use the appropriate idle routine, the one that would
345 * be used without acpi C-states.
346 */
347 if (pm_idle_save)
348 pm_idle_save();
349 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800350 acpi_safe_halt();
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400353 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * go to an ISR rather than here. Need to instrument
355 * base interrupt handler.
356 */
357 sleep_ticks = 0xFFFFFFFF;
358 break;
359
360 case ACPI_STATE_C2:
361 /* Get start time (ticks) */
362 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
363 /* Invoke C2 */
364 inb(cx->address);
Andreas Mohrb488f022006-06-26 15:58:00 -0400365 /* Dummy wait op - must do something useless after P_LVL2 read
366 because chipsets cannot guarantee that STPCLK# signal
367 gets asserted in time to freeze execution properly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
369 /* Get end time (ticks) */
370 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
john stultz539eb112006-06-26 00:25:10 -0700371
372#ifdef CONFIG_GENERIC_TIME
373 /* TSC halts in C2, so notify users */
374 mark_tsc_unstable();
375#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /* Re-enable interrupts */
377 local_irq_enable();
Andi Kleen495ab9c2006-06-26 13:59:11 +0200378 current_thread_info()->status |= TS_POLLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400380 sleep_ticks =
381 ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 break;
383
384 case ACPI_STATE_C3:
Len Brown4be44fc2005-08-05 00:44:28 -0400385
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400386 if (pr->flags.bm_check) {
387 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400388 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400389 /*
390 * All CPUs are trying to go to C3
391 * Disable bus master arbitration
392 */
393 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
Len Brown4be44fc2005-08-05 00:44:28 -0400394 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400395 }
396 } else {
397 /* SMP with no shared cache... Invalidate cache */
398 ACPI_FLUSH_CPU_CACHE();
399 }
Len Brown4be44fc2005-08-05 00:44:28 -0400400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Get start time (ticks) */
402 t1 = inl(acpi_fadt.xpm_tmr_blk.address);
403 /* Invoke C3 */
404 inb(cx->address);
Andreas Mohrb488f022006-06-26 15:58:00 -0400405 /* Dummy wait op (see above) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
407 /* Get end time (ticks) */
408 t2 = inl(acpi_fadt.xpm_tmr_blk.address);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400409 if (pr->flags.bm_check) {
410 /* Enable bus master arbitration */
411 atomic_dec(&c3_cpu_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400412 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
413 ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400414 }
415
john stultz539eb112006-06-26 00:25:10 -0700416#ifdef CONFIG_GENERIC_TIME
417 /* TSC halts in C3, so notify users */
418 mark_tsc_unstable();
419#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* Re-enable interrupts */
421 local_irq_enable();
Andi Kleen495ab9c2006-06-26 13:59:11 +0200422 current_thread_info()->status |= TS_POLLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* Compute time (ticks) that we were actually asleep */
Len Brown4be44fc2005-08-05 00:44:28 -0400424 sleep_ticks =
425 ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 break;
427
428 default:
429 local_irq_enable();
430 return;
431 }
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400432 cx->usage++;
433 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
434 cx->time += sleep_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 next_state = pr->power.state;
437
David Shaohua Li1e483962005-12-01 17:00:00 -0500438#ifdef CONFIG_HOTPLUG_CPU
439 /* Don't do promotion/demotion */
440 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
441 !pr->flags.has_cst && !acpi_fadt.plvl2_up) {
442 next_state = cx;
443 goto end;
444 }
445#endif
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /*
448 * Promotion?
449 * ----------
450 * Track the number of longs (time asleep is greater than threshold)
451 * and promote when the count threshold is reached. Note that bus
452 * mastering activity may prevent promotions.
453 * Do not promote above max_cstate.
454 */
455 if (cx->promotion.state &&
456 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
Arjan van de Ven5c875792006-09-30 23:27:17 -0700457 if (sleep_ticks > cx->promotion.threshold.ticks &&
458 cx->promotion.state->latency <= system_latency_constraint()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400460 cx->demotion.count = 0;
461 if (cx->promotion.count >=
462 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400464 if (!
465 (pr->power.bm_activity & cx->
466 promotion.threshold.bm)) {
467 next_state =
468 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 goto end;
470 }
Len Brown4be44fc2005-08-05 00:44:28 -0400471 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 next_state = cx->promotion.state;
473 goto end;
474 }
475 }
476 }
477 }
478
479 /*
480 * Demotion?
481 * ---------
482 * Track the number of shorts (time asleep is less than time threshold)
483 * and demote when the usage threshold is reached.
484 */
485 if (cx->demotion.state) {
486 if (sleep_ticks < cx->demotion.threshold.ticks) {
487 cx->demotion.count++;
488 cx->promotion.count = 0;
489 if (cx->demotion.count >= cx->demotion.threshold.count) {
490 next_state = cx->demotion.state;
491 goto end;
492 }
493 }
494 }
495
Len Brown4be44fc2005-08-05 00:44:28 -0400496 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /*
498 * Demote if current state exceeds max_cstate
Arjan van de Ven5c875792006-09-30 23:27:17 -0700499 * or if the latency of the current state is unacceptable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
Arjan van de Ven5c875792006-09-30 23:27:17 -0700501 if ((pr->power.state - pr->power.states) > max_cstate ||
502 pr->power.state->latency > system_latency_constraint()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (cx->demotion.state)
504 next_state = cx->demotion.state;
505 }
506
507 /*
508 * New Cx State?
509 * -------------
510 * If we're going to start using a new Cx state we must clean up
511 * from the previous and prepare to use the new.
512 */
513 if (next_state != pr->power.state)
514 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Len Brown4be44fc2005-08-05 00:44:28 -0400517static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 unsigned int i;
520 unsigned int state_is_set = 0;
521 struct acpi_processor_cx *lower = NULL;
522 struct acpi_processor_cx *higher = NULL;
523 struct acpi_processor_cx *cx;
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400527 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /*
530 * This function sets the default Cx state policy (OS idle handler).
531 * Our scheme is to promote quickly to C2 but more conservatively
532 * to C3. We're favoring C2 for its characteristics of low latency
533 * (quick response), good power savings, and ability to allow bus
534 * mastering activity. Note that the Cx state policy is completely
535 * customizable and can be altered dynamically.
536 */
537
538 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400539 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 cx = &pr->power.states[i];
541 if (!cx->valid)
542 continue;
543
544 if (!state_is_set)
545 pr->power.state = cx;
546 state_is_set++;
547 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (!state_is_set)
Patrick Mocheld550d982006-06-27 00:41:40 -0400551 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400554 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 cx = &pr->power.states[i];
556 if (!cx->valid)
557 continue;
558
559 if (lower) {
560 cx->demotion.state = lower;
561 cx->demotion.threshold.ticks = cx->latency_ticks;
562 cx->demotion.threshold.count = 1;
563 if (cx->type == ACPI_STATE_C3)
564 cx->demotion.threshold.bm = bm_history;
565 }
566
567 lower = cx;
568 }
569
570 /* promotion */
571 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
572 cx = &pr->power.states[i];
573 if (!cx->valid)
574 continue;
575
576 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400577 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 cx->promotion.threshold.ticks = cx->latency_ticks;
579 if (cx->type >= ACPI_STATE_C2)
580 cx->promotion.threshold.count = 4;
581 else
582 cx->promotion.threshold.count = 10;
583 if (higher->type == ACPI_STATE_C3)
584 cx->promotion.threshold.bm = bm_history;
585 }
586
587 higher = cx;
588 }
589
Patrick Mocheld550d982006-06-27 00:41:40 -0400590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Len Brown4be44fc2005-08-05 00:44:28 -0400593static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400597 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
604 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
605
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400606#ifndef CONFIG_HOTPLUG_CPU
607 /*
608 * Check for P_LVL2_UP flag before entering C2 and above on
609 * an SMP system.
610 */
David Shaohua Li1e483962005-12-01 17:00:00 -0500611 if ((num_online_cpus() > 1) && !acpi_fadt.plvl2_up)
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400613#endif
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /* determine C2 and C3 address from pblk */
616 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
617 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
618
619 /* determine latencies from FADT */
620 pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat;
621 pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat;
622
623 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
624 "lvl2[0x%08x] lvl3[0x%08x]\n",
625 pr->power.states[ACPI_STATE_C2].address,
626 pr->power.states[ACPI_STATE_C3].address));
627
Patrick Mocheld550d982006-06-27 00:41:40 -0400628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Len Brown4be44fc2005-08-05 00:44:28 -0400631static int acpi_processor_get_power_info_default_c1(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500632{
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500633
Janosch Machowinskicf824782005-08-20 08:02:00 -0400634 /* Zero initialize all the C-states info. */
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800635 memset(pr->power.states, 0, sizeof(pr->power.states));
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500636
Janosch Machowinskicf824782005-08-20 08:02:00 -0400637 /* set the first C-State to C1 */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500638 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500639
640 /* the C0 state only exists as a filler in our array,
641 * and all processors need to support C1 */
642 pr->power.states[ACPI_STATE_C0].valid = 1;
643 pr->power.states[ACPI_STATE_C1].valid = 1;
644
Patrick Mocheld550d982006-06-27 00:41:40 -0400645 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500646}
647
Len Brown4be44fc2005-08-05 00:44:28 -0400648static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Len Brown4be44fc2005-08-05 00:44:28 -0400650 acpi_status status = 0;
651 acpi_integer count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400652 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400653 int i;
654 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
655 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400659 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Janosch Machowinskicf824782005-08-20 08:02:00 -0400661 current_count = 1;
662
663 /* Zero initialize C2 onwards and prepare for fresh CST lookup */
664 for (i = 2; i < ACPI_PROCESSOR_MAX_POWER; i++)
665 memset(&(pr->power.states[i]), 0,
666 sizeof(struct acpi_processor_cx));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
669 if (ACPI_FAILURE(status)) {
670 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400671 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Len Brown4be44fc2005-08-05 00:44:28 -0400674 cst = (union acpi_object *)buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* There must be at least 2 elements */
677 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400678 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 status = -EFAULT;
680 goto end;
681 }
682
683 count = cst->package.elements[0].integer.value;
684
685 /* Validate number of power states. */
686 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400687 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 status = -EFAULT;
689 goto end;
690 }
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* Tell driver that at least _CST is supported. */
693 pr->flags.has_cst = 1;
694
695 for (i = 1; i <= count; i++) {
696 union acpi_object *element;
697 union acpi_object *obj;
698 struct acpi_power_register *reg;
699 struct acpi_processor_cx cx;
700
701 memset(&cx, 0, sizeof(cx));
702
Len Brown4be44fc2005-08-05 00:44:28 -0400703 element = (union acpi_object *)&(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (element->type != ACPI_TYPE_PACKAGE)
705 continue;
706
707 if (element->package.count != 4)
708 continue;
709
Len Brown4be44fc2005-08-05 00:44:28 -0400710 obj = (union acpi_object *)&(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 if (obj->type != ACPI_TYPE_BUFFER)
713 continue;
714
Len Brown4be44fc2005-08-05 00:44:28 -0400715 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400718 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 continue;
720
721 cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ?
Len Brown4be44fc2005-08-05 00:44:28 -0400722 0 : reg->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* There should be an easy way to extract an integer... */
Len Brown4be44fc2005-08-05 00:44:28 -0400725 obj = (union acpi_object *)&(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (obj->type != ACPI_TYPE_INTEGER)
727 continue;
728
729 cx.type = obj->integer.value;
730
731 if ((cx.type != ACPI_STATE_C1) &&
732 (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO))
733 continue;
734
Janosch Machowinskicf824782005-08-20 08:02:00 -0400735 if ((cx.type < ACPI_STATE_C2) || (cx.type > ACPI_STATE_C3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 continue;
737
Len Brown4be44fc2005-08-05 00:44:28 -0400738 obj = (union acpi_object *)&(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (obj->type != ACPI_TYPE_INTEGER)
740 continue;
741
742 cx.latency = obj->integer.value;
743
Len Brown4be44fc2005-08-05 00:44:28 -0400744 obj = (union acpi_object *)&(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (obj->type != ACPI_TYPE_INTEGER)
746 continue;
747
748 cx.power = obj->integer.value;
749
Janosch Machowinskicf824782005-08-20 08:02:00 -0400750 current_count++;
751 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
752
753 /*
754 * We support total ACPI_PROCESSOR_MAX_POWER - 1
755 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
756 */
757 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
758 printk(KERN_WARNING
759 "Limiting number of power states to max (%d)\n",
760 ACPI_PROCESSOR_MAX_POWER);
761 printk(KERN_WARNING
762 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
763 break;
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766
Len Brown4be44fc2005-08-05 00:44:28 -0400767 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400768 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400771 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400772 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Len Brown4be44fc2005-08-05 00:44:28 -0400774 end:
Len Brown02438d82006-06-30 03:19:10 -0400775 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Patrick Mocheld550d982006-06-27 00:41:40 -0400777 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
781{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400784 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /*
787 * C2 latency must be less than or equal to 100
788 * microseconds.
789 */
790 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
791 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400792 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -0400793 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /*
797 * Otherwise we've met all of our C2 requirements.
798 * Normalize the C2 latency to expidite policy
799 */
800 cx->valid = 1;
801 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
802
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Len Brown4be44fc2005-08-05 00:44:28 -0400806static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
807 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400809 static int bm_check_flag;
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /*
816 * C3 latency must be less than or equal to 1000
817 * microseconds.
818 */
819 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
820 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400821 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -0400822 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /*
826 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
827 * DMA transfers are used by any ISA device to avoid livelock.
828 * Note that we could disable Type-F DMA (as recommended by
829 * the erratum), but this is known to disrupt certain ISA
830 * devices thus we take the conservative approach.
831 */
832 else if (errata.piix4.fdma) {
833 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400834 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400835 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400838 /* All the logic here assumes flags.bm_check is same across all CPUs */
839 if (!bm_check_flag) {
840 /* Determine whether bm_check is needed based on CPU */
841 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
842 bm_check_flag = pr->flags.bm_check;
843 } else {
844 pr->flags.bm_check = bm_check_flag;
845 }
846
847 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400848 /* bus mastering control is necessary */
849 if (!pr->flags.bm_control) {
850 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400851 "C3 support requires bus mastering control\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400852 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400853 }
854 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400855 /*
856 * WBINVD should be set in fadt, for C3 state to be
857 * supported on when bm_check is not required.
858 */
859 if (acpi_fadt.wb_invd != 1) {
860 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400861 "Cache invalidation should work properly"
862 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400863 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400864 }
865 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
Len Brown4be44fc2005-08-05 00:44:28 -0400866 0, ACPI_MTX_DO_NOT_LOCK);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400867 }
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Otherwise we've met all of our C3 requirements.
871 * Normalize the C3 latency to expidite policy. Enable
872 * checking of bus mastering status (bm_check) so we can
873 * use this in our C3 policy
874 */
875 cx->valid = 1;
876 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Patrick Mocheld550d982006-06-27 00:41:40 -0400878 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881static int acpi_processor_power_verify(struct acpi_processor *pr)
882{
883 unsigned int i;
884 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100885
Andi Kleenbd663342006-03-25 16:31:07 +0100886#ifdef ARCH_APICTIMER_STOPS_ON_C3
Andi Kleen0b5c59a2006-03-26 02:24:07 +0100887 int timer_broadcast = 0;
888 cpumask_t mask = cpumask_of_cpu(pr->id);
Andi Kleenbd663342006-03-25 16:31:07 +0100889 on_each_cpu(switch_ipi_to_APIC_timer, &mask, 1, 1);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100890#endif
891
Len Brown4be44fc2005-08-05 00:44:28 -0400892 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 struct acpi_processor_cx *cx = &pr->power.states[i];
894
895 switch (cx->type) {
896 case ACPI_STATE_C1:
897 cx->valid = 1;
898 break;
899
900 case ACPI_STATE_C2:
901 acpi_processor_power_verify_c2(cx);
Andi Kleenbd663342006-03-25 16:31:07 +0100902#ifdef ARCH_APICTIMER_STOPS_ON_C3
903 /* Some AMD systems fake C3 as C2, but still
904 have timer troubles */
905 if (cx->valid &&
906 boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
907 timer_broadcast++;
908#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 break;
910
911 case ACPI_STATE_C3:
912 acpi_processor_power_verify_c3(pr, cx);
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100913#ifdef ARCH_APICTIMER_STOPS_ON_C3
Andi Kleenbd663342006-03-25 16:31:07 +0100914 if (cx->valid)
915 timer_broadcast++;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100916#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 break;
918 }
919
920 if (cx->valid)
921 working++;
922 }
923
Andi Kleen0b5c59a2006-03-26 02:24:07 +0100924#ifdef ARCH_APICTIMER_STOPS_ON_C3
Andi Kleenbd663342006-03-25 16:31:07 +0100925 if (timer_broadcast)
926 on_each_cpu(switch_APIC_timer_to_ipi, &mask, 1, 1);
Andi Kleen0b5c59a2006-03-26 02:24:07 +0100927#endif
Andi Kleenbd663342006-03-25 16:31:07 +0100928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return (working);
930}
931
Len Brown4be44fc2005-08-05 00:44:28 -0400932static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 unsigned int i;
935 int result;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 /* NOTE: the idle thread may not be running while calling
939 * this function */
940
Janosch Machowinskicf824782005-08-20 08:02:00 -0400941 /* Adding C1 state */
942 acpi_processor_get_power_info_default_c1(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400944 if (result == -ENODEV)
Janosch Machowinskicf824782005-08-20 08:02:00 -0400945 acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400946
Janosch Machowinskicf824782005-08-20 08:02:00 -0400947 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /*
950 * Set Default Policy
951 * ------------------
952 * Now that we know which states are supported, set the default
953 * policy. Note that this policy can be changed dynamically
954 * (e.g. encourage deeper sleeps to conserve battery life when
955 * not on AC).
956 */
957 result = acpi_processor_set_power_policy(pr);
958 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400959 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /*
962 * if one state of type C2 or C3 is available, mark this
963 * CPU as being "idle manageable"
964 */
965 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500966 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800968 if (pr->power.states[i].type >= ACPI_STATE_C2)
969 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972
Patrick Mocheld550d982006-06-27 00:41:40 -0400973 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Len Brown4be44fc2005-08-05 00:44:28 -0400976int acpi_processor_cst_has_changed(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Len Brown4be44fc2005-08-05 00:44:28 -0400978 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400982 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Len Brown4be44fc2005-08-05 00:44:28 -0400984 if (nocst) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400985 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
988 if (!pr->flags.power_setup_done)
Patrick Mocheld550d982006-06-27 00:41:40 -0400989 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 /* Fall back to the default idle loop */
992 pm_idle = pm_idle_save;
Len Brown4be44fc2005-08-05 00:44:28 -0400993 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 pr->flags.power = 0;
996 result = acpi_processor_get_power_info(pr);
997 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
998 pm_idle = acpi_processor_idle;
999
Patrick Mocheld550d982006-06-27 00:41:40 -04001000 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003/* proc interface */
1004
1005static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1006{
Len Brown4be44fc2005-08-05 00:44:28 -04001007 struct acpi_processor *pr = (struct acpi_processor *)seq->private;
1008 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 if (!pr)
1012 goto end;
1013
1014 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -04001015 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -07001016 "bus master activity: %08x\n"
1017 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001018 pr->power.state ? pr->power.state - pr->power.states : 0,
Arjan van de Ven5c875792006-09-30 23:27:17 -07001019 max_cstate, (unsigned)pr->power.bm_activity,
1020 system_latency_constraint());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 seq_puts(seq, "states:\n");
1023
1024 for (i = 1; i <= pr->power.count; i++) {
1025 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -04001026 (&pr->power.states[i] ==
1027 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (!pr->power.states[i].valid) {
1030 seq_puts(seq, "<not supported>\n");
1031 continue;
1032 }
1033
1034 switch (pr->power.states[i].type) {
1035 case ACPI_STATE_C1:
1036 seq_printf(seq, "type[C1] ");
1037 break;
1038 case ACPI_STATE_C2:
1039 seq_printf(seq, "type[C2] ");
1040 break;
1041 case ACPI_STATE_C3:
1042 seq_printf(seq, "type[C3] ");
1043 break;
1044 default:
1045 seq_printf(seq, "type[--] ");
1046 break;
1047 }
1048
1049 if (pr->power.states[i].promotion.state)
1050 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001051 (pr->power.states[i].promotion.state -
1052 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 else
1054 seq_puts(seq, "promotion[--] ");
1055
1056 if (pr->power.states[i].demotion.state)
1057 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001058 (pr->power.states[i].demotion.state -
1059 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 else
1061 seq_puts(seq, "demotion[--] ");
1062
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001063 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001064 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001065 pr->power.states[i].usage,
1066 pr->power.states[i].time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068
Len Brown4be44fc2005-08-05 00:44:28 -04001069 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
1073static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1074{
1075 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001076 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Arjan van de Vend7508032006-07-04 13:06:00 -04001079static const struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001080 .open = acpi_processor_power_open_fs,
1081 .read = seq_read,
1082 .llseek = seq_lseek,
1083 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084};
1085
Arjan van de Ven5c875792006-09-30 23:27:17 -07001086static void smp_callback(void *v)
1087{
1088 /* we already woke the CPU up, nothing more to do */
1089}
1090
1091/*
1092 * This function gets called when a part of the kernel has a new latency
1093 * requirement. This means we need to get all processors out of their C-state,
1094 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1095 * wakes them all right up.
1096 */
1097static int acpi_processor_latency_notify(struct notifier_block *b,
1098 unsigned long l, void *v)
1099{
1100 smp_call_function(smp_callback, NULL, 0, 1);
1101 return NOTIFY_OK;
1102}
1103
1104static struct notifier_block acpi_processor_latency_notifier = {
1105 .notifier_call = acpi_processor_latency_notify,
1106};
1107
Len Brown4be44fc2005-08-05 00:44:28 -04001108int acpi_processor_power_init(struct acpi_processor *pr,
1109 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Len Brown4be44fc2005-08-05 00:44:28 -04001111 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001112 static int first_run;
Len Brown4be44fc2005-08-05 00:44:28 -04001113 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 unsigned int i;
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 if (!first_run) {
1118 dmi_check_system(processor_power_dmi_table);
1119 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001120 printk(KERN_NOTICE
1121 "ACPI: processor limited to max C-state %d\n",
1122 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 first_run++;
Arjan van de Ven5c875792006-09-30 23:27:17 -07001124 register_latency_notifier(&acpi_processor_latency_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001127 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001128 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001129
1130 if (acpi_fadt.cst_cnt && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001131 status =
1132 acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001134 ACPI_EXCEPTION((AE_INFO, status,
1135 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 }
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 acpi_processor_get_power_info(pr);
1140
1141 /*
1142 * Install the idle handler if processor power management is supported.
1143 * Note that we use previously set idle handler will be used on
1144 * platforms that only support C1.
1145 */
1146 if ((pr->flags.power) && (!boot_option_idle_override)) {
1147 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1148 for (i = 1; i <= pr->power.count; i++)
1149 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001150 printk(" C%d[C%d]", i,
1151 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 printk(")\n");
1153
1154 if (pr->id == 0) {
1155 pm_idle_save = pm_idle;
1156 pm_idle = acpi_processor_idle;
1157 }
1158 }
1159
1160 /* 'power' [R] */
1161 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001162 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001164 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 else {
1166 entry->proc_fops = &acpi_processor_power_fops;
1167 entry->data = acpi_driver_data(device);
1168 entry->owner = THIS_MODULE;
1169 }
1170
1171 pr->flags.power_setup_done = 1;
1172
Patrick Mocheld550d982006-06-27 00:41:40 -04001173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Len Brown4be44fc2005-08-05 00:44:28 -04001176int acpi_processor_power_exit(struct acpi_processor *pr,
1177 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 pr->flags.power_setup_done = 0;
1181
1182 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001183 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1184 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /* Unregister the idle handler when processor #0 is removed. */
1187 if (pr->id == 0) {
1188 pm_idle = pm_idle_save;
1189
1190 /*
1191 * We are about to unload the current idle thread pm callback
1192 * (pm_idle), Wait for all processors to update cached/local
1193 * copies of pm_idle before proceeding.
1194 */
1195 cpu_idle_wait();
Arjan van de Ven5c875792006-09-30 23:27:17 -07001196 unregister_latency_notifier(&acpi_processor_latency_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198
Patrick Mocheld550d982006-06-27 00:41:40 -04001199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}