blob: 99da6a790857da9cbc1ce4960e4518b903037df4 [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>
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;
79module_param(max_cstate, uint, 0000);
Andreas Mohrb6835052006-04-27 05:25:00 -040080static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081module_param(nocst, uint, 0000);
82
Len Brown4f86d3a2007-10-03 18:58:00 -040083#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * bm_history -- bit-mask with a bit per jiffy of bus-master activity
86 * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
87 * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
88 * 100 HZ: 0x0000000F: 4 jiffies = 40ms
89 * reduce history for more aggressive entry into C3
90 */
Andreas Mohrb6835052006-04-27 05:25:00 -040091static unsigned int bm_history __read_mostly =
Len Brown4be44fc2005-08-05 00:44:28 -040092 (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093module_param(bm_history, uint, 0644);
Len Brown4f86d3a2007-10-03 18:58:00 -040094
95static int acpi_processor_set_power_policy(struct acpi_processor *pr);
96
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
101 * For now disable this. Probably a bug somewhere else.
102 *
103 * To skip this limit, boot/load with a large max_cstate limit.
104 */
David Shaohua Li335f16b2005-06-22 18:37:00 -0400105static int set_max_cstate(struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
108 return 0;
109
Len Brown3d356002005-08-03 00:22:52 -0400110 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -0400111 " Override with \"processor.max_cstate=%d\"\n", id->ident,
112 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Len Brown3d356002005-08-03 00:22:52 -0400114 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 return 0;
117}
118
Ashok Raj7ded5682006-02-03 21:51:23 +0100119/* Actually this shouldn't be __cpuinitdata, would be better to fix the
120 callers to only run once -AK */
121static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -0500122 { set_max_cstate, "IBM ThinkPad R40e", {
123 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Bartlomiej Swierczf8313352006-05-29 07:16:00 -0400124 DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
125 { set_max_cstate, "IBM ThinkPad R40e", {
126 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
Thomas Rosner876c1842006-01-06 01:31:00 -0500127 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
128 { set_max_cstate, "IBM ThinkPad R40e", {
129 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
130 DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
131 { set_max_cstate, "IBM ThinkPad R40e", {
132 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
133 DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
134 { set_max_cstate, "IBM ThinkPad R40e", {
135 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
136 DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
137 { set_max_cstate, "IBM ThinkPad R40e", {
138 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
139 DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
140 { set_max_cstate, "IBM ThinkPad R40e", {
141 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
142 DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
143 { set_max_cstate, "IBM ThinkPad R40e", {
144 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
145 DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
146 { set_max_cstate, "IBM ThinkPad R40e", {
147 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
148 DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
149 { set_max_cstate, "IBM ThinkPad R40e", {
150 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
151 DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
152 { set_max_cstate, "IBM ThinkPad R40e", {
153 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
154 DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
155 { set_max_cstate, "IBM ThinkPad R40e", {
156 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
157 DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
158 { set_max_cstate, "IBM ThinkPad R40e", {
159 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
160 DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
161 { set_max_cstate, "IBM ThinkPad R40e", {
162 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
163 DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
164 { set_max_cstate, "IBM ThinkPad R40e", {
165 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
166 DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
167 { set_max_cstate, "IBM ThinkPad R40e", {
168 DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
169 DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
170 { set_max_cstate, "Medion 41700", {
171 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
172 DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
173 { set_max_cstate, "Clevo 5600D", {
174 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
175 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400176 (void *)2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 {},
178};
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180static inline u32 ticks_elapsed(u32 t1, u32 t2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 if (t2 >= t1)
183 return (t2 - t1);
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300184 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
186 else
187 return ((0xFFFFFFFF - t1) + t2);
188}
189
Len Brown4f86d3a2007-10-03 18:58:00 -0400190static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2)
191{
192 if (t2 >= t1)
193 return PM_TIMER_TICKS_TO_US(t2 - t1);
194 else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
195 return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
196 else
197 return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2);
198}
199
200#ifndef CONFIG_CPU_IDLE
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static void
Len Brown4be44fc2005-08-05 00:44:28 -0400203acpi_processor_power_activate(struct acpi_processor *pr,
204 struct acpi_processor_cx *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Len Brown4be44fc2005-08-05 00:44:28 -0400206 struct acpi_processor_cx *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 if (!pr || !new)
209 return;
210
211 old = pr->power.state;
212
213 if (old)
214 old->promotion.count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400215 new->demotion.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Cleanup from old state. */
218 if (old) {
219 switch (old->type) {
220 case ACPI_STATE_C3:
221 /* Disable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400222 if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300223 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 break;
225 }
226 }
227
228 /* Prepare to use new state. */
229 switch (new->type) {
230 case ACPI_STATE_C3:
231 /* Enable bus master reload */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400232 if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
Bob Moored8c71b62007-02-02 19:48:21 +0300233 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235 }
236
237 pr->power.state = new;
238
239 return;
240}
241
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800242static void acpi_safe_halt(void)
243{
Andi Kleen495ab9c2006-06-26 13:59:11 +0200244 current_thread_info()->status &= ~TS_POLLING;
Ingo Molnar0888f062006-12-22 01:11:56 -0800245 /*
246 * TS_POLLING-cleared state must be visible before we
247 * test NEED_RESCHED:
248 */
249 smp_mb();
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800250 if (!need_resched())
251 safe_halt();
Andi Kleen495ab9c2006-06-26 13:59:11 +0200252 current_thread_info()->status |= TS_POLLING;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800253}
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255static atomic_t c3_cpu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700257/* Common C-state entry for C2, C3, .. */
258static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
259{
260 if (cstate->space_id == ACPI_CSTATE_FFH) {
261 /* Call into architectural FFH based C-state */
262 acpi_processor_ffh_cstate_enter(cstate);
263 } else {
264 int unused;
265 /* IO port based C-state */
266 inb(cstate->address);
267 /* Dummy wait op - must do something useless after P_LVL2 read
268 because chipsets cannot guarantee that STPCLK# signal
269 gets asserted in time to freeze execution properly. */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300270 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700271 }
272}
Len Brown4f86d3a2007-10-03 18:58:00 -0400273#endif /* !CONFIG_CPU_IDLE */
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700274
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800275#ifdef ARCH_APICTIMER_STOPS_ON_C3
276
277/*
278 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700279 * This seems to be a common problem on AMD boxen, but other vendors
280 * are affected too. We pick the most conservative approach: we assume
281 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800282 */
283static void acpi_timer_check_state(int state, struct acpi_processor *pr,
284 struct acpi_processor_cx *cx)
285{
286 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100287 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800288
289 /*
290 * Check, if one of the previous states already marked the lapic
291 * unstable
292 */
293 if (pwr->timer_broadcast_on_state < state)
294 return;
295
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100296 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700297 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800298}
299
300static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
301{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800302#ifdef CONFIG_GENERIC_CLOCKEVENTS
303 unsigned long reason;
304
305 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
306 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
307
308 clockevents_notify(reason, &pr->id);
309#else
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800310 cpumask_t mask = cpumask_of_cpu(pr->id);
311
Linus Torvalds296d93c2007-03-23 08:03:47 -0700312 if (pr->power.timer_broadcast_on_state < INT_MAX)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800313 on_each_cpu(switch_APIC_timer_to_ipi, &mask, 1, 1);
Linus Torvalds296d93c2007-03-23 08:03:47 -0700314 else
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800315 on_each_cpu(switch_ipi_to_APIC_timer, &mask, 1, 1);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800316#endif
317}
318
319/* Power(C) State timer broadcast control */
320static void acpi_state_timer_broadcast(struct acpi_processor *pr,
321 struct acpi_processor_cx *cx,
322 int broadcast)
323{
324#ifdef CONFIG_GENERIC_CLOCKEVENTS
325
326 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 }
335#endif
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800336}
337
338#else
339
340static void acpi_timer_check_state(int state, struct acpi_processor *pr,
341 struct acpi_processor_cx *cstate) { }
342static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800343static void acpi_state_timer_broadcast(struct acpi_processor *pr,
344 struct acpi_processor_cx *cx,
345 int broadcast)
346{
347}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800348
349#endif
350
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000351/*
352 * Suspend / resume control
353 */
354static int acpi_idle_suspend;
355
356int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
357{
358 acpi_idle_suspend = 1;
359 return 0;
360}
361
362int acpi_processor_resume(struct acpi_device * device)
363{
364 acpi_idle_suspend = 0;
365 return 0;
366}
367
Len Brown4f86d3a2007-10-03 18:58:00 -0400368#ifndef CONFIG_CPU_IDLE
Len Brown4be44fc2005-08-05 00:44:28 -0400369static void acpi_processor_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Len Brown4be44fc2005-08-05 00:44:28 -0400371 struct acpi_processor *pr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct acpi_processor_cx *cx = NULL;
373 struct acpi_processor_cx *next_state = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400374 int sleep_ticks = 0;
375 u32 t1, t2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * Interrupts must be disabled during bus mastering calculations and
379 * for C2/C3 transitions.
380 */
381 local_irq_disable();
382
Venkatesh Pallipadid5a3d322007-06-15 19:36:00 -0400383 pr = processors[smp_processor_id()];
384 if (!pr) {
385 local_irq_enable();
386 return;
387 }
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /*
390 * Check whether we truly need to go idle, or should
391 * reschedule:
392 */
393 if (unlikely(need_resched())) {
394 local_irq_enable();
395 return;
396 }
397
398 cx = pr->power.state;
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000399 if (!cx || acpi_idle_suspend) {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800400 if (pm_idle_save)
401 pm_idle_save();
402 else
403 acpi_safe_halt();
404 return;
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /*
408 * Check BM Activity
409 * -----------------
410 * Check for bus mastering activity (if required), record, and check
411 * for demotion.
412 */
413 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400414 u32 bm_status = 0;
415 unsigned long diff = jiffies - pr->power.bm_check_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400417 if (diff > 31)
418 diff = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400420 pr->power.bm_activity <<= diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Bob Moored8c71b62007-02-02 19:48:21 +0300422 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (bm_status) {
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400424 pr->power.bm_activity |= 0x1;
Bob Moored8c71b62007-02-02 19:48:21 +0300425 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 /*
428 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
429 * the true state of bus mastering activity; forcing us to
430 * manually check the BMIDEA bit of each IDE channel.
431 */
432 else if (errata.piix4.bmisx) {
433 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
Len Brown4be44fc2005-08-05 00:44:28 -0400434 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
Dominik Brodowskic5ab81c2006-06-24 19:37:00 -0400435 pr->power.bm_activity |= 0x1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 pr->power.bm_check_timestamp = jiffies;
439
440 /*
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400441 * If bus mastering is or was active this jiffy, demote
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * to avoid a faulty transition. Note that the processor
443 * won't enter a low-power state during this call (to this
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400444 * function) but should upon the next.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 *
446 * TBD: A better policy might be to fallback to the demotion
447 * state (use it for this quantum only) istead of
448 * demoting -- and rely on duration as our sole demotion
449 * qualification. This may, however, introduce DMA
450 * issues (e.g. floppy DMA transfer overrun/underrun).
451 */
Dominik Brodowskic4a001b2006-06-24 19:37:00 -0400452 if ((pr->power.bm_activity & 0x1) &&
453 cx->demotion.threshold.bm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 local_irq_enable();
455 next_state = cx->demotion.state;
456 goto end;
457 }
458 }
459
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400460#ifdef CONFIG_HOTPLUG_CPU
461 /*
462 * Check for P_LVL2_UP flag before entering C2 and above on
463 * an SMP system. We do it here instead of doing it at _CST/P_LVL
464 * detection phase, to work cleanly with logical CPU hotplug.
465 */
Len Brown4f86d3a2007-10-03 18:58:00 -0400466 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300467 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
David Shaohua Li1e483962005-12-01 17:00:00 -0500468 cx = &pr->power.states[ACPI_STATE_C1];
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400469#endif
David Shaohua Li1e483962005-12-01 17:00:00 -0500470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 * Sleep:
473 * ------
474 * Invoke the current Cx state to put the processor to sleep.
475 */
Nick Piggin2a298a32005-12-02 12:44:19 +1100476 if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200477 current_thread_info()->status &= ~TS_POLLING;
Ingo Molnar0888f062006-12-22 01:11:56 -0800478 /*
479 * TS_POLLING-cleared state must be visible before we
480 * test NEED_RESCHED:
481 */
482 smp_mb();
Nick Piggin2a298a32005-12-02 12:44:19 +1100483 if (need_resched()) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200484 current_thread_info()->status |= TS_POLLING;
Linus Torvaldsaf2eb172005-12-02 23:09:06 -0800485 local_irq_enable();
Nick Piggin2a298a32005-12-02 12:44:19 +1100486 return;
487 }
488 }
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 switch (cx->type) {
491
492 case ACPI_STATE_C1:
493 /*
494 * Invoke C1.
495 * Use the appropriate idle routine, the one that would
496 * be used without acpi C-states.
497 */
498 if (pm_idle_save)
499 pm_idle_save();
500 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800501 acpi_safe_halt();
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400504 * TBD: Can't get time duration while in C1, as resumes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * go to an ISR rather than here. Need to instrument
506 * base interrupt handler.
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200507 *
508 * Note: the TSC better not stop in C1, sched_clock() will
509 * skew otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
511 sleep_ticks = 0xFFFFFFFF;
512 break;
513
514 case ACPI_STATE_C2:
515 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300516 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200517 /* Tell the scheduler that we are going deep-idle: */
518 sched_clock_idle_sleep_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* Invoke C2 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800520 acpi_state_timer_broadcast(pr, cx, 1);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700521 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300523 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
john stultz539eb112006-06-26 00:25:10 -0700524
Tony Luck0aa366f2007-07-20 11:22:30 -0700525#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700526 /* TSC halts in C2, so notify users */
john stultz5a90cf22007-05-02 19:27:08 +0200527 mark_tsc_unstable("possible TSC halt in C2");
john stultz539eb112006-06-26 00:25:10 -0700528#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200529 /* Compute time (ticks) that we were actually asleep */
530 sleep_ticks = ticks_elapsed(t1, t2);
531
532 /* Tell the scheduler how much we idled: */
533 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* Re-enable interrupts */
536 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200537 /* Do not account our idle-switching overhead: */
538 sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
539
Andi Kleen495ab9c2006-06-26 13:59:11 +0200540 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800541 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543
544 case ACPI_STATE_C3:
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400545 /*
546 * disable bus master
547 * bm_check implies we need ARB_DIS
548 * !bm_check implies we need cache flush
549 * bm_control implies whether we can do ARB_DIS
550 *
551 * That leaves a case where bm_check is set and bm_control is
552 * not set. In that case we cannot do much, we enter C3
553 * without doing anything.
554 */
555 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400556 if (atomic_inc_return(&c3_cpu_count) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400557 num_online_cpus()) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400558 /*
559 * All CPUs are trying to go to C3
560 * Disable bus master arbitration
561 */
Bob Moored8c71b62007-02-02 19:48:21 +0300562 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400563 }
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400564 } else if (!pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400565 /* SMP with no shared cache... Invalidate cache */
566 ACPI_FLUSH_CPU_CACHE();
567 }
Len Brown4be44fc2005-08-05 00:44:28 -0400568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* Get start time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300570 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Invoke C3 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800572 acpi_state_timer_broadcast(pr, cx, 1);
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200573 /* Tell the scheduler that we are going deep-idle: */
574 sched_clock_idle_sleep_event();
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700575 acpi_cstate_enter(cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* Get end time (ticks) */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300577 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
Venkatesh Pallipadi18eab852007-06-15 19:37:00 -0400578 if (pr->flags.bm_check && pr->flags.bm_control) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400579 /* Enable bus master arbitration */
580 atomic_dec(&c3_cpu_count);
Bob Moored8c71b62007-02-02 19:48:21 +0300581 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400582 }
583
Tony Luck0aa366f2007-07-20 11:22:30 -0700584#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
john stultz539eb112006-06-26 00:25:10 -0700585 /* TSC halts in C3, so notify users */
john stultz5a90cf22007-05-02 19:27:08 +0200586 mark_tsc_unstable("TSC halts in C3");
john stultz539eb112006-06-26 00:25:10 -0700587#endif
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200588 /* Compute time (ticks) that we were actually asleep */
589 sleep_ticks = ticks_elapsed(t1, t2);
590 /* Tell the scheduler how much we idled: */
591 sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* Re-enable interrupts */
594 local_irq_enable();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200595 /* Do not account our idle-switching overhead: */
596 sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
597
Andi Kleen495ab9c2006-06-26 13:59:11 +0200598 current_thread_info()->status |= TS_POLLING;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800599 acpi_state_timer_broadcast(pr, cx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
601
602 default:
603 local_irq_enable();
604 return;
605 }
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400606 cx->usage++;
607 if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
608 cx->time += sleep_ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 next_state = pr->power.state;
611
David Shaohua Li1e483962005-12-01 17:00:00 -0500612#ifdef CONFIG_HOTPLUG_CPU
613 /* Don't do promotion/demotion */
614 if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300615 !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
David Shaohua Li1e483962005-12-01 17:00:00 -0500616 next_state = cx;
617 goto end;
618 }
619#endif
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /*
622 * Promotion?
623 * ----------
624 * Track the number of longs (time asleep is greater than threshold)
625 * and promote when the count threshold is reached. Note that bus
626 * mastering activity may prevent promotions.
627 * Do not promote above max_cstate.
628 */
629 if (cx->promotion.state &&
630 ((cx->promotion.state - pr->power.states) <= max_cstate)) {
Arjan van de Ven5c875792006-09-30 23:27:17 -0700631 if (sleep_ticks > cx->promotion.threshold.ticks &&
632 cx->promotion.state->latency <= system_latency_constraint()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 cx->promotion.count++;
Len Brown4be44fc2005-08-05 00:44:28 -0400634 cx->demotion.count = 0;
635 if (cx->promotion.count >=
636 cx->promotion.threshold.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (pr->flags.bm_check) {
Len Brown4be44fc2005-08-05 00:44:28 -0400638 if (!
639 (pr->power.bm_activity & cx->
640 promotion.threshold.bm)) {
641 next_state =
642 cx->promotion.state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto end;
644 }
Len Brown4be44fc2005-08-05 00:44:28 -0400645 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 next_state = cx->promotion.state;
647 goto end;
648 }
649 }
650 }
651 }
652
653 /*
654 * Demotion?
655 * ---------
656 * Track the number of shorts (time asleep is less than time threshold)
657 * and demote when the usage threshold is reached.
658 */
659 if (cx->demotion.state) {
660 if (sleep_ticks < cx->demotion.threshold.ticks) {
661 cx->demotion.count++;
662 cx->promotion.count = 0;
663 if (cx->demotion.count >= cx->demotion.threshold.count) {
664 next_state = cx->demotion.state;
665 goto end;
666 }
667 }
668 }
669
Len Brown4be44fc2005-08-05 00:44:28 -0400670 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
672 * Demote if current state exceeds max_cstate
Arjan van de Ven5c875792006-09-30 23:27:17 -0700673 * or if the latency of the current state is unacceptable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 */
Arjan van de Ven5c875792006-09-30 23:27:17 -0700675 if ((pr->power.state - pr->power.states) > max_cstate ||
676 pr->power.state->latency > system_latency_constraint()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (cx->demotion.state)
678 next_state = cx->demotion.state;
679 }
680
681 /*
682 * New Cx State?
683 * -------------
684 * If we're going to start using a new Cx state we must clean up
685 * from the previous and prepare to use the new.
686 */
687 if (next_state != pr->power.state)
688 acpi_processor_power_activate(pr, next_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Len Brown4be44fc2005-08-05 00:44:28 -0400691static int acpi_processor_set_power_policy(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 unsigned int i;
694 unsigned int state_is_set = 0;
695 struct acpi_processor_cx *lower = NULL;
696 struct acpi_processor_cx *higher = NULL;
697 struct acpi_processor_cx *cx;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400701 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /*
704 * This function sets the default Cx state policy (OS idle handler).
705 * Our scheme is to promote quickly to C2 but more conservatively
706 * to C3. We're favoring C2 for its characteristics of low latency
707 * (quick response), good power savings, and ability to allow bus
708 * mastering activity. Note that the Cx state policy is completely
709 * customizable and can be altered dynamically.
710 */
711
712 /* startup state */
Len Brown4be44fc2005-08-05 00:44:28 -0400713 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 cx = &pr->power.states[i];
715 if (!cx->valid)
716 continue;
717
718 if (!state_is_set)
719 pr->power.state = cx;
720 state_is_set++;
721 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (!state_is_set)
Patrick Mocheld550d982006-06-27 00:41:40 -0400725 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* demotion */
Len Brown4be44fc2005-08-05 00:44:28 -0400728 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 cx = &pr->power.states[i];
730 if (!cx->valid)
731 continue;
732
733 if (lower) {
734 cx->demotion.state = lower;
735 cx->demotion.threshold.ticks = cx->latency_ticks;
736 cx->demotion.threshold.count = 1;
737 if (cx->type == ACPI_STATE_C3)
738 cx->demotion.threshold.bm = bm_history;
739 }
740
741 lower = cx;
742 }
743
744 /* promotion */
745 for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
746 cx = &pr->power.states[i];
747 if (!cx->valid)
748 continue;
749
750 if (higher) {
Len Brown4be44fc2005-08-05 00:44:28 -0400751 cx->promotion.state = higher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 cx->promotion.threshold.ticks = cx->latency_ticks;
753 if (cx->type >= ACPI_STATE_C2)
754 cx->promotion.threshold.count = 4;
755 else
756 cx->promotion.threshold.count = 10;
757 if (higher->type == ACPI_STATE_C3)
758 cx->promotion.threshold.bm = bm_history;
759 }
760
761 higher = cx;
762 }
763
Patrick Mocheld550d982006-06-27 00:41:40 -0400764 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
Len Brown4f86d3a2007-10-03 18:58:00 -0400766#endif /* !CONFIG_CPU_IDLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Len Brown4be44fc2005-08-05 00:44:28 -0400768static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400772 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
779 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
780
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400781#ifndef CONFIG_HOTPLUG_CPU
782 /*
783 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400784 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400785 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300786 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300787 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400788 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400789#endif
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* determine C2 and C3 address from pblk */
792 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
793 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
794
795 /* determine latencies from FADT */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300796 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
797 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
800 "lvl2[0x%08x] lvl3[0x%08x]\n",
801 pr->power.states[ACPI_STATE_C2].address,
802 pr->power.states[ACPI_STATE_C3].address));
803
Patrick Mocheld550d982006-06-27 00:41:40 -0400804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700807static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500808{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700809 if (!pr->power.states[ACPI_STATE_C1].valid) {
810 /* set the first C-State to C1 */
811 /* all processors need to support C1 */
812 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
813 pr->power.states[ACPI_STATE_C1].valid = 1;
814 }
815 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500816 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400817 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500818}
819
Len Brown4be44fc2005-08-05 00:44:28 -0400820static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Len Brown4be44fc2005-08-05 00:44:28 -0400822 acpi_status status = 0;
823 acpi_integer count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400824 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400825 int i;
826 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
827 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400831 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700833 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
836 if (ACPI_FAILURE(status)) {
837 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400838 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200841 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 /* There must be at least 2 elements */
844 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400845 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 status = -EFAULT;
847 goto end;
848 }
849
850 count = cst->package.elements[0].integer.value;
851
852 /* Validate number of power states. */
853 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400854 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 status = -EFAULT;
856 goto end;
857 }
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* Tell driver that at least _CST is supported. */
860 pr->flags.has_cst = 1;
861
862 for (i = 1; i <= count; i++) {
863 union acpi_object *element;
864 union acpi_object *obj;
865 struct acpi_power_register *reg;
866 struct acpi_processor_cx cx;
867
868 memset(&cx, 0, sizeof(cx));
869
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200870 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (element->type != ACPI_TYPE_PACKAGE)
872 continue;
873
874 if (element->package.count != 4)
875 continue;
876
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200877 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 if (obj->type != ACPI_TYPE_BUFFER)
880 continue;
881
Len Brown4be44fc2005-08-05 00:44:28 -0400882 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400885 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 continue;
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200889 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (obj->type != ACPI_TYPE_INTEGER)
891 continue;
892
893 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700894 /*
895 * Some buggy BIOSes won't list C1 in _CST -
896 * Let acpi_processor_get_power_info_default() handle them later
897 */
898 if (i == 1 && cx.type != ACPI_STATE_C1)
899 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700901 cx.address = reg->address;
902 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700904 cx.space_id = ACPI_CSTATE_SYSTEMIO;
905 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
906 if (acpi_processor_ffh_cstate_probe
907 (pr->id, &cx, reg) == 0) {
908 cx.space_id = ACPI_CSTATE_FFH;
909 } else if (cx.type != ACPI_STATE_C1) {
910 /*
911 * C1 is a special case where FIXED_HARDWARE
912 * can be handled in non-MWAIT way as well.
913 * In that case, save this _CST entry info.
914 * That is, we retain space_id of SYSTEM_IO for
915 * halt based C1.
916 * Otherwise, ignore this info and continue.
917 */
918 continue;
919 }
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200922 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (obj->type != ACPI_TYPE_INTEGER)
924 continue;
925
926 cx.latency = obj->integer.value;
927
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200928 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (obj->type != ACPI_TYPE_INTEGER)
930 continue;
931
932 cx.power = obj->integer.value;
933
Janosch Machowinskicf824782005-08-20 08:02:00 -0400934 current_count++;
935 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
936
937 /*
938 * We support total ACPI_PROCESSOR_MAX_POWER - 1
939 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
940 */
941 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
942 printk(KERN_WARNING
943 "Limiting number of power states to max (%d)\n",
944 ACPI_PROCESSOR_MAX_POWER);
945 printk(KERN_WARNING
946 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
947 break;
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Len Brown4be44fc2005-08-05 00:44:28 -0400951 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400952 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400955 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400956 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Len Brown4be44fc2005-08-05 00:44:28 -0400958 end:
Len Brown02438d82006-06-30 03:19:10 -0400959 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Patrick Mocheld550d982006-06-27 00:41:40 -0400961 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
965{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400968 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 /*
971 * C2 latency must be less than or equal to 100
972 * microseconds.
973 */
974 else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
975 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400976 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -0400977 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /*
981 * Otherwise we've met all of our C2 requirements.
982 * Normalize the C2 latency to expidite policy
983 */
984 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400985
986#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -0400988#else
989 cx->latency_ticks = cx->latency;
990#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Patrick Mocheld550d982006-06-27 00:41:40 -0400992 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Len Brown4be44fc2005-08-05 00:44:28 -0400995static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
996 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400998 static int bm_check_flag;
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -04001002 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * C3 latency must be less than or equal to 1000
1006 * microseconds.
1007 */
1008 else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
1009 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001010 "latency too large [%d]\n", cx->latency));
Patrick Mocheld550d982006-06-27 00:41:40 -04001011 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /*
1015 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
1016 * DMA transfers are used by any ISA device to avoid livelock.
1017 * Note that we could disable Type-F DMA (as recommended by
1018 * the erratum), but this is known to disrupt certain ISA
1019 * devices thus we take the conservative approach.
1020 */
1021 else if (errata.piix4.fdma) {
1022 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001023 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001024 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
1026
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001027 /* All the logic here assumes flags.bm_check is same across all CPUs */
1028 if (!bm_check_flag) {
1029 /* Determine whether bm_check is needed based on CPU */
1030 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
1031 bm_check_flag = pr->flags.bm_check;
1032 } else {
1033 pr->flags.bm_check = bm_check_flag;
1034 }
1035
1036 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001037 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -07001038 if (pr->flags.has_cst != 1) {
1039 /* bus mastering control is necessary */
1040 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1041 "C3 support requires BM control\n"));
1042 return;
1043 } else {
1044 /* Here we enter C3 without bus mastering */
1045 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1046 "C3 support without BM control\n"));
1047 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001048 }
1049 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001050 /*
1051 * WBINVD should be set in fadt, for C3 state to be
1052 * supported on when bm_check is not required.
1053 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001054 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001055 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001056 "Cache invalidation should work properly"
1057 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001058 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001059 }
Bob Moored8c71b62007-02-02 19:48:21 +03001060 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001061 }
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Otherwise we've met all of our C3 requirements.
1065 * Normalize the C3 latency to expidite policy. Enable
1066 * checking of bus mastering status (bm_check) so we can
1067 * use this in our C3 policy
1068 */
1069 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -04001070
1071#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
Len Brown4f86d3a2007-10-03 18:58:00 -04001073#else
1074 cx->latency_ticks = cx->latency;
1075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Patrick Mocheld550d982006-06-27 00:41:40 -04001077 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080static int acpi_processor_power_verify(struct acpi_processor *pr)
1081{
1082 unsigned int i;
1083 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001084
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001085 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +01001086
Len Brown4be44fc2005-08-05 00:44:28 -04001087 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct acpi_processor_cx *cx = &pr->power.states[i];
1089
1090 switch (cx->type) {
1091 case ACPI_STATE_C1:
1092 cx->valid = 1;
1093 break;
1094
1095 case ACPI_STATE_C2:
1096 acpi_processor_power_verify_c2(cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001097 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001098 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 break;
1100
1101 case ACPI_STATE_C3:
1102 acpi_processor_power_verify_c3(pr, cx);
Linus Torvalds296d93c2007-03-23 08:03:47 -07001103 if (cx->valid)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001104 acpi_timer_check_state(i, pr, cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 break;
1106 }
1107
1108 if (cx->valid)
1109 working++;
1110 }
1111
Thomas Gleixner169a0ab2007-02-16 01:27:55 -08001112 acpi_propagate_timer_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +01001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return (working);
1115}
1116
Len Brown4be44fc2005-08-05 00:44:28 -04001117static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 unsigned int i;
1120 int result;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 /* NOTE: the idle thread may not be running while calling
1124 * this function */
1125
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001126 /* Zero initialize all the C-states info. */
1127 memset(pr->power.states, 0, sizeof(pr->power.states));
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001130 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -07001131 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -04001132
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -07001133 if (result)
1134 return result;
1135
1136 acpi_processor_get_power_info_default(pr);
1137
Janosch Machowinskicf824782005-08-20 08:02:00 -04001138 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Len Brown4f86d3a2007-10-03 18:58:00 -04001140#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /*
1142 * Set Default Policy
1143 * ------------------
1144 * Now that we know which states are supported, set the default
1145 * policy. Note that this policy can be changed dynamically
1146 * (e.g. encourage deeper sleeps to conserve battery life when
1147 * not on AC).
1148 */
1149 result = acpi_processor_set_power_policy(pr);
1150 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -04001151 return result;
Len Brown4f86d3a2007-10-03 18:58:00 -04001152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /*
1155 * if one state of type C2 or C3 is available, mark this
1156 * CPU as being "idle manageable"
1157 */
1158 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001159 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -08001161 if (pr->power.states[i].type >= ACPI_STATE_C2)
1162 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -05001163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Patrick Mocheld550d982006-06-27 00:41:40 -04001166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
1170{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001171 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001172 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 if (!pr)
1176 goto end;
1177
1178 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -04001179 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -07001180 "bus master activity: %08x\n"
1181 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001182 pr->power.state ? pr->power.state - pr->power.states : 0,
Arjan van de Ven5c875792006-09-30 23:27:17 -07001183 max_cstate, (unsigned)pr->power.bm_activity,
1184 system_latency_constraint());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 seq_puts(seq, "states:\n");
1187
1188 for (i = 1; i <= pr->power.count; i++) {
1189 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -04001190 (&pr->power.states[i] ==
1191 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 if (!pr->power.states[i].valid) {
1194 seq_puts(seq, "<not supported>\n");
1195 continue;
1196 }
1197
1198 switch (pr->power.states[i].type) {
1199 case ACPI_STATE_C1:
1200 seq_printf(seq, "type[C1] ");
1201 break;
1202 case ACPI_STATE_C2:
1203 seq_printf(seq, "type[C2] ");
1204 break;
1205 case ACPI_STATE_C3:
1206 seq_printf(seq, "type[C3] ");
1207 break;
1208 default:
1209 seq_printf(seq, "type[--] ");
1210 break;
1211 }
1212
1213 if (pr->power.states[i].promotion.state)
1214 seq_printf(seq, "promotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001215 (pr->power.states[i].promotion.state -
1216 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 else
1218 seq_puts(seq, "promotion[--] ");
1219
1220 if (pr->power.states[i].demotion.state)
1221 seq_printf(seq, "demotion[C%zd] ",
Len Brown4be44fc2005-08-05 00:44:28 -04001222 (pr->power.states[i].demotion.state -
1223 pr->power.states));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 else
1225 seq_puts(seq, "demotion[--] ");
1226
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001227 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001228 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -04001229 pr->power.states[i].usage,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -05001230 (unsigned long long)pr->power.states[i].time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232
Len Brown4be44fc2005-08-05 00:44:28 -04001233 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
1238{
1239 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -04001240 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Arjan van de Vend7508032006-07-04 13:06:00 -04001243static const struct file_operations acpi_processor_power_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -04001244 .open = acpi_processor_power_open_fs,
1245 .read = seq_read,
1246 .llseek = seq_lseek,
1247 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248};
1249
Len Brown4f86d3a2007-10-03 18:58:00 -04001250#ifndef CONFIG_CPU_IDLE
1251
1252int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1253{
1254 int result = 0;
1255
1256
1257 if (!pr)
1258 return -EINVAL;
1259
1260 if (nocst) {
1261 return -ENODEV;
1262 }
1263
1264 if (!pr->flags.power_setup_done)
1265 return -ENODEV;
1266
1267 /* Fall back to the default idle loop */
1268 pm_idle = pm_idle_save;
1269 synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
1270
1271 pr->flags.power = 0;
1272 result = acpi_processor_get_power_info(pr);
1273 if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
1274 pm_idle = acpi_processor_idle;
1275
1276 return result;
1277}
1278
Andrew Morton1fec74a2006-10-17 00:09:58 -07001279#ifdef CONFIG_SMP
Arjan van de Ven5c875792006-09-30 23:27:17 -07001280static void smp_callback(void *v)
1281{
1282 /* we already woke the CPU up, nothing more to do */
1283}
1284
1285/*
1286 * This function gets called when a part of the kernel has a new latency
1287 * requirement. This means we need to get all processors out of their C-state,
1288 * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
1289 * wakes them all right up.
1290 */
1291static int acpi_processor_latency_notify(struct notifier_block *b,
1292 unsigned long l, void *v)
1293{
1294 smp_call_function(smp_callback, NULL, 0, 1);
1295 return NOTIFY_OK;
1296}
1297
1298static struct notifier_block acpi_processor_latency_notifier = {
1299 .notifier_call = acpi_processor_latency_notify,
1300};
Len Brown4f86d3a2007-10-03 18:58:00 -04001301
Andrew Morton1fec74a2006-10-17 00:09:58 -07001302#endif
Arjan van de Ven5c875792006-09-30 23:27:17 -07001303
Len Brown4f86d3a2007-10-03 18:58:00 -04001304#else /* CONFIG_CPU_IDLE */
1305
1306/**
1307 * acpi_idle_bm_check - checks if bus master activity was detected
1308 */
1309static int acpi_idle_bm_check(void)
1310{
1311 u32 bm_status = 0;
1312
1313 acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
1314 if (bm_status)
1315 acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
1316 /*
1317 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
1318 * the true state of bus mastering activity; forcing us to
1319 * manually check the BMIDEA bit of each IDE channel.
1320 */
1321 else if (errata.piix4.bmisx) {
1322 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
1323 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
1324 bm_status = 1;
1325 }
1326 return bm_status;
1327}
1328
1329/**
1330 * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
1331 * @pr: the processor
1332 * @target: the new target state
1333 */
1334static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
1335 struct acpi_processor_cx *target)
1336{
1337 if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
1338 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
1339 pr->flags.bm_rld_set = 0;
1340 }
1341
1342 if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
1343 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
1344 pr->flags.bm_rld_set = 1;
1345 }
1346}
1347
1348/**
1349 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
1350 * @cx: cstate data
1351 */
1352static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
1353{
1354 if (cx->space_id == ACPI_CSTATE_FFH) {
1355 /* Call into architectural FFH based C-state */
1356 acpi_processor_ffh_cstate_enter(cx);
1357 } else {
1358 int unused;
1359 /* IO port based C-state */
1360 inb(cx->address);
1361 /* Dummy wait op - must do something useless after P_LVL2 read
1362 because chipsets cannot guarantee that STPCLK# signal
1363 gets asserted in time to freeze execution properly. */
1364 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
1365 }
1366}
1367
1368/**
1369 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
1370 * @dev: the target CPU
1371 * @state: the state data
1372 *
1373 * This is equivalent to the HALT instruction.
1374 */
1375static int acpi_idle_enter_c1(struct cpuidle_device *dev,
1376 struct cpuidle_state *state)
1377{
1378 struct acpi_processor *pr;
1379 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1380 pr = processors[smp_processor_id()];
1381
1382 if (unlikely(!pr))
1383 return 0;
1384
1385 if (pr->flags.bm_check)
1386 acpi_idle_update_bm_rld(pr, cx);
1387
1388 current_thread_info()->status &= ~TS_POLLING;
1389 /*
1390 * TS_POLLING-cleared state must be visible before we test
1391 * NEED_RESCHED:
1392 */
1393 smp_mb();
1394 if (!need_resched())
1395 safe_halt();
1396 current_thread_info()->status |= TS_POLLING;
1397
1398 cx->usage++;
1399
1400 return 0;
1401}
1402
1403/**
1404 * acpi_idle_enter_simple - enters an ACPI state without BM handling
1405 * @dev: the target CPU
1406 * @state: the state data
1407 */
1408static int acpi_idle_enter_simple(struct cpuidle_device *dev,
1409 struct cpuidle_state *state)
1410{
1411 struct acpi_processor *pr;
1412 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1413 u32 t1, t2;
1414 pr = processors[smp_processor_id()];
1415
1416 if (unlikely(!pr))
1417 return 0;
1418
1419 if (pr->flags.bm_check)
1420 acpi_idle_update_bm_rld(pr, cx);
1421
1422 local_irq_disable();
1423 current_thread_info()->status &= ~TS_POLLING;
1424 /*
1425 * TS_POLLING-cleared state must be visible before we test
1426 * NEED_RESCHED:
1427 */
1428 smp_mb();
1429
1430 if (unlikely(need_resched())) {
1431 current_thread_info()->status |= TS_POLLING;
1432 local_irq_enable();
1433 return 0;
1434 }
1435
1436 if (cx->type == ACPI_STATE_C3)
1437 ACPI_FLUSH_CPU_CACHE();
1438
1439 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1440 acpi_state_timer_broadcast(pr, cx, 1);
1441 acpi_idle_do_entry(cx);
1442 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1443
1444#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1445 /* TSC could halt in idle, so notify users */
1446 mark_tsc_unstable("TSC halts in idle");;
1447#endif
1448
1449 local_irq_enable();
1450 current_thread_info()->status |= TS_POLLING;
1451
1452 cx->usage++;
1453
1454 acpi_state_timer_broadcast(pr, cx, 0);
1455 cx->time += ticks_elapsed(t1, t2);
1456 return ticks_elapsed_in_us(t1, t2);
1457}
1458
1459static int c3_cpu_count;
1460static DEFINE_SPINLOCK(c3_lock);
1461
1462/**
1463 * acpi_idle_enter_bm - enters C3 with proper BM handling
1464 * @dev: the target CPU
1465 * @state: the state data
1466 *
1467 * If BM is detected, the deepest non-C3 idle state is entered instead.
1468 */
1469static int acpi_idle_enter_bm(struct cpuidle_device *dev,
1470 struct cpuidle_state *state)
1471{
1472 struct acpi_processor *pr;
1473 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
1474 u32 t1, t2;
1475 pr = processors[smp_processor_id()];
1476
1477 if (unlikely(!pr))
1478 return 0;
1479
1480 local_irq_disable();
1481 current_thread_info()->status &= ~TS_POLLING;
1482 /*
1483 * TS_POLLING-cleared state must be visible before we test
1484 * NEED_RESCHED:
1485 */
1486 smp_mb();
1487
1488 if (unlikely(need_resched())) {
1489 current_thread_info()->status |= TS_POLLING;
1490 local_irq_enable();
1491 return 0;
1492 }
1493
1494 /*
1495 * Must be done before busmaster disable as we might need to
1496 * access HPET !
1497 */
1498 acpi_state_timer_broadcast(pr, cx, 1);
1499
1500 if (acpi_idle_bm_check()) {
1501 cx = pr->power.bm_state;
1502
1503 acpi_idle_update_bm_rld(pr, cx);
1504
1505 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1506 acpi_idle_do_entry(cx);
1507 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1508 } else {
1509 acpi_idle_update_bm_rld(pr, cx);
1510
1511 spin_lock(&c3_lock);
1512 c3_cpu_count++;
1513 /* Disable bus master arbitration when all CPUs are in C3 */
1514 if (c3_cpu_count == num_online_cpus())
1515 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
1516 spin_unlock(&c3_lock);
1517
1518 t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1519 acpi_idle_do_entry(cx);
1520 t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
1521
1522 spin_lock(&c3_lock);
1523 /* Re-enable bus master arbitration */
1524 if (c3_cpu_count == num_online_cpus())
1525 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
1526 c3_cpu_count--;
1527 spin_unlock(&c3_lock);
1528 }
1529
1530#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
1531 /* TSC could halt in idle, so notify users */
1532 mark_tsc_unstable("TSC halts in idle");
1533#endif
1534
1535 local_irq_enable();
1536 current_thread_info()->status |= TS_POLLING;
1537
1538 cx->usage++;
1539
1540 acpi_state_timer_broadcast(pr, cx, 0);
1541 cx->time += ticks_elapsed(t1, t2);
1542 return ticks_elapsed_in_us(t1, t2);
1543}
1544
1545struct cpuidle_driver acpi_idle_driver = {
1546 .name = "acpi_idle",
1547 .owner = THIS_MODULE,
1548};
1549
1550/**
1551 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1552 * @pr: the ACPI processor
1553 */
1554static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1555{
1556 int i, count = 0;
1557 struct acpi_processor_cx *cx;
1558 struct cpuidle_state *state;
1559 struct cpuidle_device *dev = &pr->power.dev;
1560
1561 if (!pr->flags.power_setup_done)
1562 return -EINVAL;
1563
1564 if (pr->flags.power == 0) {
1565 return -EINVAL;
1566 }
1567
1568 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1569 cx = &pr->power.states[i];
1570 state = &dev->states[count];
1571
1572 if (!cx->valid)
1573 continue;
1574
1575#ifdef CONFIG_HOTPLUG_CPU
1576 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1577 !pr->flags.has_cst &&
1578 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1579 continue;
1580#endif
1581 cpuidle_set_statedata(state, cx);
1582
1583 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
1584 state->exit_latency = cx->latency;
1585 state->target_residency = cx->latency * 6;
1586 state->power_usage = cx->power;
1587
1588 state->flags = 0;
1589 switch (cx->type) {
1590 case ACPI_STATE_C1:
1591 state->flags |= CPUIDLE_FLAG_SHALLOW;
1592 state->enter = acpi_idle_enter_c1;
1593 break;
1594
1595 case ACPI_STATE_C2:
1596 state->flags |= CPUIDLE_FLAG_BALANCED;
1597 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1598 state->enter = acpi_idle_enter_simple;
1599 break;
1600
1601 case ACPI_STATE_C3:
1602 state->flags |= CPUIDLE_FLAG_DEEP;
1603 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1604 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1605 state->enter = pr->flags.bm_check ?
1606 acpi_idle_enter_bm :
1607 acpi_idle_enter_simple;
1608 break;
1609 }
1610
1611 count++;
1612 }
1613
1614 dev->state_count = count;
1615
1616 if (!count)
1617 return -EINVAL;
1618
1619 /* find the deepest state that can handle active BM */
1620 if (pr->flags.bm_check) {
1621 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++)
1622 if (pr->power.states[i].type == ACPI_STATE_C3)
1623 break;
1624 pr->power.bm_state = &pr->power.states[i-1];
1625 }
1626
1627 return 0;
1628}
1629
1630int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1631{
1632 int ret;
1633
1634 if (!pr)
1635 return -EINVAL;
1636
1637 if (nocst) {
1638 return -ENODEV;
1639 }
1640
1641 if (!pr->flags.power_setup_done)
1642 return -ENODEV;
1643
1644 cpuidle_pause_and_lock();
1645 cpuidle_disable_device(&pr->power.dev);
1646 acpi_processor_get_power_info(pr);
1647 acpi_processor_setup_cpuidle(pr);
1648 ret = cpuidle_enable_device(&pr->power.dev);
1649 cpuidle_resume_and_unlock();
1650
1651 return ret;
1652}
1653
1654#endif /* CONFIG_CPU_IDLE */
1655
Pierre Ossman7af8b662006-10-10 14:20:31 -07001656int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
Len Brown4be44fc2005-08-05 00:44:28 -04001657 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Len Brown4be44fc2005-08-05 00:44:28 -04001659 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001660 static int first_run;
Len Brown4be44fc2005-08-05 00:44:28 -04001661 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 unsigned int i;
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 if (!first_run) {
1666 dmi_check_system(processor_power_dmi_table);
1667 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001668 printk(KERN_NOTICE
1669 "ACPI: processor limited to max C-state %d\n",
1670 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 first_run++;
Len Brown4f86d3a2007-10-03 18:58:00 -04001672#if !defined (CONFIG_CPU_IDLE) && defined (CONFIG_SMP)
Arjan van de Ven5c875792006-09-30 23:27:17 -07001673 register_latency_notifier(&acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001674#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001677 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001678 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001679
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001680 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001681 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001682 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001684 ACPI_EXCEPTION((AE_INFO, status,
1685 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687 }
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001690 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 /*
1693 * Install the idle handler if processor power management is supported.
1694 * Note that we use previously set idle handler will be used on
1695 * platforms that only support C1.
1696 */
1697 if ((pr->flags.power) && (!boot_option_idle_override)) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001698#ifdef CONFIG_CPU_IDLE
1699 acpi_processor_setup_cpuidle(pr);
1700 pr->power.dev.cpu = pr->id;
1701 if (cpuidle_register_device(&pr->power.dev))
1702 return -EIO;
1703#endif
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
1706 for (i = 1; i <= pr->power.count; i++)
1707 if (pr->power.states[i].valid)
Len Brown4be44fc2005-08-05 00:44:28 -04001708 printk(" C%d[C%d]", i,
1709 pr->power.states[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 printk(")\n");
1711
Len Brown4f86d3a2007-10-03 18:58:00 -04001712#ifndef CONFIG_CPU_IDLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (pr->id == 0) {
1714 pm_idle_save = pm_idle;
1715 pm_idle = acpi_processor_idle;
1716 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
1720 /* 'power' [R] */
1721 entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
Len Brown4be44fc2005-08-05 00:44:28 -04001722 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001724 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 else {
1726 entry->proc_fops = &acpi_processor_power_fops;
1727 entry->data = acpi_driver_data(device);
1728 entry->owner = THIS_MODULE;
1729 }
1730
Patrick Mocheld550d982006-06-27 00:41:40 -04001731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
Len Brown4be44fc2005-08-05 00:44:28 -04001734int acpi_processor_power_exit(struct acpi_processor *pr,
1735 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Len Brown4f86d3a2007-10-03 18:58:00 -04001737#ifdef CONFIG_CPU_IDLE
1738 if ((pr->flags.power) && (!boot_option_idle_override))
1739 cpuidle_unregister_device(&pr->power.dev);
1740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 pr->flags.power_setup_done = 0;
1742
1743 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001744 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1745 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Len Brown4f86d3a2007-10-03 18:58:00 -04001747#ifndef CONFIG_CPU_IDLE
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /* Unregister the idle handler when processor #0 is removed. */
1750 if (pr->id == 0) {
1751 pm_idle = pm_idle_save;
1752
1753 /*
1754 * We are about to unload the current idle thread pm callback
1755 * (pm_idle), Wait for all processors to update cached/local
1756 * copies of pm_idle before proceeding.
1757 */
1758 cpu_idle_wait();
Andrew Morton1fec74a2006-10-17 00:09:58 -07001759#ifdef CONFIG_SMP
Arjan van de Ven5c875792006-09-30 23:27:17 -07001760 unregister_latency_notifier(&acpi_processor_latency_notifier);
Andrew Morton1fec74a2006-10-17 00:09:58 -07001761#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001763#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Patrick Mocheld550d982006-06-27 00:41:40 -04001765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}