blob: 294e10b5480a6770102bc5892739cd4cf4d4bd5f [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/proc_fs.h>
37#include <linux/seq_file.h>
38#include <linux/acpi.h>
39#include <linux/dmi.h>
40#include <linux/moduleparam.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080041#include <linux/sched.h> /* need_resched() */
Mark Grossf011e2e2008-02-04 22:30:09 -080042#include <linux/pm_qos_params.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080043#include <linux/clockchips.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040044#include <linux/cpuidle.h>
Russell Kingba84be22009-01-06 14:41:07 -080045#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Thomas Gleixner34349332007-02-16 01:27:54 -080047/*
48 * Include the apic definitions for x86 to have the APIC timer related defines
49 * available also for UP (on SMP it gets magically included via linux/smp.h).
50 * asm/acpi.h is not an option, as it would require more include magic. Also
51 * creating an empty asm-ia64/apic.h would just trade pest vs. cholera.
52 */
53#ifdef CONFIG_X86
54#include <asm/apic.h>
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/io.h>
58#include <asm/uaccess.h>
59
60#include <acpi/acpi_bus.h>
61#include <acpi/processor.h>
Zhao Yakuic1e3b372008-06-24 17:58:53 +080062#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Len Browna192a952009-07-28 16:45:54 -040064#define PREFIX "ACPI: "
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050068ACPI_MODULE_NAME("processor_idle");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define ACPI_PROCESSOR_FILE_POWER "power"
Ingo Molnar2aa44d02007-08-23 15:18:02 +020070#define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY)
Len Brown4f86d3a2007-10-03 18:58:00 -040071#define C2_OVERHEAD 1 /* 1us */
72#define C3_OVERHEAD 1 /* 1us */
Len Brown4f86d3a2007-10-03 18:58:00 -040073#define PM_TIMER_TICKS_TO_US(p) (((p) * 1000)/(PM_TIMER_FREQUENCY/1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Len Brown4f86d3a2007-10-03 18:58:00 -040075static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
76module_param(max_cstate, uint, 0000);
Andreas Mohrb6835052006-04-27 05:25:00 -040077static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078module_param(nocst, uint, 0000);
Len Brownd3e7e992010-07-22 17:23:10 -040079static int bm_check_disable __read_mostly;
80module_param(bm_check_disable, uint, 0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Len Brown25de5712007-12-14 00:24:15 -050082static unsigned int latency_factor __read_mostly = 2;
Len Brown4963f622007-12-13 23:50:45 -050083module_param(latency_factor, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
KOSAKI Motohiro6c9c0fd2010-07-20 15:18:35 -070085#ifdef CONFIG_ACPI_PROCFS
Venkatesh Pallipadibceefad2010-06-02 10:01:09 -070086static u64 us_to_pm_timer_ticks(s64 t)
alex.shiff69f2b2009-03-04 11:55:26 -080087{
88 return div64_u64(t * PM_TIMER_FREQUENCY, 1000000);
89}
KOSAKI Motohiro6c9c0fd2010-07-20 15:18:35 -070090#endif
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
94 * For now disable this. Probably a bug somewhere else.
95 *
96 * To skip this limit, boot/load with a large max_cstate limit.
97 */
Jeff Garzik18552562007-10-03 15:15:40 -040098static int set_max_cstate(const struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
101 return 0;
102
Len Brown3d356002005-08-03 00:22:52 -0400103 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -0400104 " Override with \"processor.max_cstate=%d\"\n", id->ident,
105 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Len Brown3d356002005-08-03 00:22:52 -0400107 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return 0;
110}
111
Ashok Raj7ded5682006-02-03 21:51:23 +0100112/* Actually this shouldn't be __cpuinitdata, would be better to fix the
113 callers to only run once -AK */
114static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -0500115 { set_max_cstate, "Clevo 5600D", {
116 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
117 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400118 (void *)2},
Arjan van de Ven370d5cd2010-01-27 15:25:39 -0800119 { set_max_cstate, "Pavilion zv5000", {
120 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
121 DMI_MATCH(DMI_PRODUCT_NAME,"Pavilion zv5000 (DS502A#ABA)")},
122 (void *)1},
123 { set_max_cstate, "Asus L8400B", {
124 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
125 DMI_MATCH(DMI_PRODUCT_NAME,"L8400B series Notebook PC")},
126 (void *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 {},
128};
129
Len Brown4f86d3a2007-10-03 18:58:00 -0400130
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800131/*
132 * Callers should disable interrupts before the call and enable
133 * interrupts after return.
134 */
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500135static void acpi_safe_halt(void)
136{
137 current_thread_info()->status &= ~TS_POLLING;
138 /*
139 * TS_POLLING-cleared state must be visible before we
140 * test NEED_RESCHED:
141 */
142 smp_mb();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700143 if (!need_resched()) {
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500144 safe_halt();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700145 local_irq_disable();
146 }
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500147 current_thread_info()->status |= TS_POLLING;
148}
149
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800150#ifdef ARCH_APICTIMER_STOPS_ON_C3
151
152/*
153 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700154 * This seems to be a common problem on AMD boxen, but other vendors
155 * are affected too. We pick the most conservative approach: we assume
156 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800157 */
Len Brown7e275cc2009-05-15 02:08:44 -0400158static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800159 struct acpi_processor_cx *cx)
160{
161 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100162 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800163
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700164 if (cpu_has(&cpu_data(pr->id), X86_FEATURE_ARAT))
165 return;
166
Shaohua Li87ad57ba2009-05-19 16:09:42 +0800167 if (boot_cpu_has(X86_FEATURE_AMDC1E))
168 type = ACPI_STATE_C1;
169
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800170 /*
171 * Check, if one of the previous states already marked the lapic
172 * unstable
173 */
174 if (pwr->timer_broadcast_on_state < state)
175 return;
176
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100177 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700178 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800179}
180
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900181static void __lapic_timer_propagate_broadcast(void *arg)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800182{
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700183 struct acpi_processor *pr = (struct acpi_processor *) arg;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800184 unsigned long reason;
185
186 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
187 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
188
189 clockevents_notify(reason, &pr->id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800190}
191
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900192static void lapic_timer_propagate_broadcast(struct acpi_processor *pr)
193{
194 smp_call_function_single(pr->id, __lapic_timer_propagate_broadcast,
195 (void *)pr, 1);
196}
197
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800198/* Power(C) State timer broadcast control */
Len Brown7e275cc2009-05-15 02:08:44 -0400199static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800200 struct acpi_processor_cx *cx,
201 int broadcast)
202{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800203 int state = cx - pr->power.states;
204
205 if (state >= pr->power.timer_broadcast_on_state) {
206 unsigned long reason;
207
208 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
209 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
210 clockevents_notify(reason, &pr->id);
211 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800212}
213
214#else
215
Len Brown7e275cc2009-05-15 02:08:44 -0400216static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800217 struct acpi_processor_cx *cstate) { }
Len Brown7e275cc2009-05-15 02:08:44 -0400218static void lapic_timer_propagate_broadcast(struct acpi_processor *pr) { }
219static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800220 struct acpi_processor_cx *cx,
221 int broadcast)
222{
223}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800224
225#endif
226
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000227/*
228 * Suspend / resume control
229 */
230static int acpi_idle_suspend;
Len Brown815ab0f2009-05-07 22:19:45 -0400231static u32 saved_bm_rld;
232
233static void acpi_idle_bm_rld_save(void)
234{
235 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &saved_bm_rld);
236}
237static void acpi_idle_bm_rld_restore(void)
238{
239 u32 resumed_bm_rld;
240
241 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &resumed_bm_rld);
242
243 if (resumed_bm_rld != saved_bm_rld)
244 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, saved_bm_rld);
245}
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000246
247int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
248{
Len Brown815ab0f2009-05-07 22:19:45 -0400249 if (acpi_idle_suspend == 1)
250 return 0;
251
252 acpi_idle_bm_rld_save();
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000253 acpi_idle_suspend = 1;
254 return 0;
255}
256
257int acpi_processor_resume(struct acpi_device * device)
258{
Len Brown815ab0f2009-05-07 22:19:45 -0400259 if (acpi_idle_suspend == 0)
260 return 0;
261
262 acpi_idle_bm_rld_restore();
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000263 acpi_idle_suspend = 0;
264 return 0;
265}
266
John Stultz592913e2010-07-13 17:56:20 -0700267#if defined(CONFIG_X86)
Len Brown520daf72009-05-14 17:27:38 -0400268static void tsc_check_state(int state)
Andi Kleenddb25f92008-01-30 13:32:41 +0100269{
270 switch (boot_cpu_data.x86_vendor) {
271 case X86_VENDOR_AMD:
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800272 case X86_VENDOR_INTEL:
Andi Kleenddb25f92008-01-30 13:32:41 +0100273 /*
274 * AMD Fam10h TSC will tick in all
275 * C/P/S0/S1 states when this bit is set.
276 */
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800277 if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Len Brown520daf72009-05-14 17:27:38 -0400278 return;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800279
Andi Kleenddb25f92008-01-30 13:32:41 +0100280 /*FALL THROUGH*/
Andi Kleenddb25f92008-01-30 13:32:41 +0100281 default:
Len Brown520daf72009-05-14 17:27:38 -0400282 /* TSC could halt in idle, so notify users */
283 if (state > ACPI_STATE_C1)
284 mark_tsc_unstable("TSC halts in idle");
Andi Kleenddb25f92008-01-30 13:32:41 +0100285 }
286}
Len Brown520daf72009-05-14 17:27:38 -0400287#else
288static void tsc_check_state(int state) { return; }
Andi Kleenddb25f92008-01-30 13:32:41 +0100289#endif
290
Len Brown4be44fc2005-08-05 00:44:28 -0400291static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400295 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
302 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
303
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400304#ifndef CONFIG_HOTPLUG_CPU
305 /*
306 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400307 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400308 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300309 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300310 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400312#endif
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* determine C2 and C3 address from pblk */
315 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
316 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
317
318 /* determine latencies from FADT */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300319 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
320 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Len Brown5d76b6f2010-01-19 22:41:14 -0500322 /*
323 * FADT specified C2 latency must be less than or equal to
324 * 100 microseconds.
325 */
326 if (acpi_gbl_FADT.C2latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
327 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
328 "C2 latency too large [%d]\n", acpi_gbl_FADT.C2latency));
329 /* invalidate C2 */
330 pr->power.states[ACPI_STATE_C2].address = 0;
331 }
332
Len Browna6d72c12010-01-19 23:10:04 -0500333 /*
334 * FADT supplied C3 latency must be less than or equal to
335 * 1000 microseconds.
336 */
337 if (acpi_gbl_FADT.C3latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
338 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
339 "C3 latency too large [%d]\n", acpi_gbl_FADT.C3latency));
340 /* invalidate C3 */
341 pr->power.states[ACPI_STATE_C3].address = 0;
342 }
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
345 "lvl2[0x%08x] lvl3[0x%08x]\n",
346 pr->power.states[ACPI_STATE_C2].address,
347 pr->power.states[ACPI_STATE_C3].address));
348
Patrick Mocheld550d982006-06-27 00:41:40 -0400349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700352static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500353{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700354 if (!pr->power.states[ACPI_STATE_C1].valid) {
355 /* set the first C-State to C1 */
356 /* all processors need to support C1 */
357 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
358 pr->power.states[ACPI_STATE_C1].valid = 1;
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400359 pr->power.states[ACPI_STATE_C1].entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700360 }
361 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500362 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400363 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500364}
365
Len Brown4be44fc2005-08-05 00:44:28 -0400366static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Len Brown4be44fc2005-08-05 00:44:28 -0400368 acpi_status status = 0;
Lin Ming439913f2010-01-28 10:53:19 +0800369 u64 count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400370 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400371 int i;
372 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
373 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400377 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700379 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
382 if (ACPI_FAILURE(status)) {
383 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400384 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200387 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 /* There must be at least 2 elements */
390 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400391 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 status = -EFAULT;
393 goto end;
394 }
395
396 count = cst->package.elements[0].integer.value;
397
398 /* Validate number of power states. */
399 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400400 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 status = -EFAULT;
402 goto end;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* Tell driver that at least _CST is supported. */
406 pr->flags.has_cst = 1;
407
408 for (i = 1; i <= count; i++) {
409 union acpi_object *element;
410 union acpi_object *obj;
411 struct acpi_power_register *reg;
412 struct acpi_processor_cx cx;
413
414 memset(&cx, 0, sizeof(cx));
415
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200416 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (element->type != ACPI_TYPE_PACKAGE)
418 continue;
419
420 if (element->package.count != 4)
421 continue;
422
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200423 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (obj->type != ACPI_TYPE_BUFFER)
426 continue;
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400431 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 continue;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200435 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (obj->type != ACPI_TYPE_INTEGER)
437 continue;
438
439 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700440 /*
441 * Some buggy BIOSes won't list C1 in _CST -
442 * Let acpi_processor_get_power_info_default() handle them later
443 */
444 if (i == 1 && cx.type != ACPI_STATE_C1)
445 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700447 cx.address = reg->address;
448 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800450 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700451 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
452 if (acpi_processor_ffh_cstate_probe
453 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800454 cx.entry_method = ACPI_CSTATE_FFH;
455 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700456 /*
457 * C1 is a special case where FIXED_HARDWARE
458 * can be handled in non-MWAIT way as well.
459 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700460 * Otherwise, ignore this info and continue.
461 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800462 cx.entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800463 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800464 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700465 continue;
466 }
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800467 if (cx.type == ACPI_STATE_C1 &&
468 (idle_halt || idle_nomwait)) {
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800469 /*
470 * In most cases the C1 space_id obtained from
471 * _CST object is FIXED_HARDWARE access mode.
472 * But when the option of idle=halt is added,
473 * the entry_method type should be changed from
474 * CSTATE_FFH to CSTATE_HALT.
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800475 * When the option of idle=nomwait is added,
476 * the C1 entry_method type should be
477 * CSTATE_HALT.
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800478 */
479 cx.entry_method = ACPI_CSTATE_HALT;
480 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
481 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800482 } else {
483 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x",
484 cx.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400487 if (cx.type == ACPI_STATE_C1) {
488 cx.valid = 1;
489 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800490
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200491 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (obj->type != ACPI_TYPE_INTEGER)
493 continue;
494
495 cx.latency = obj->integer.value;
496
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200497 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (obj->type != ACPI_TYPE_INTEGER)
499 continue;
500
501 cx.power = obj->integer.value;
502
Janosch Machowinskicf824782005-08-20 08:02:00 -0400503 current_count++;
504 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
505
506 /*
507 * We support total ACPI_PROCESSOR_MAX_POWER - 1
508 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
509 */
510 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
511 printk(KERN_WARNING
512 "Limiting number of power states to max (%d)\n",
513 ACPI_PROCESSOR_MAX_POWER);
514 printk(KERN_WARNING
515 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
516 break;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Len Brown4be44fc2005-08-05 00:44:28 -0400520 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400521 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400524 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400525 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Len Brown4be44fc2005-08-05 00:44:28 -0400527 end:
Len Brown02438d82006-06-30 03:19:10 -0400528 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Patrick Mocheld550d982006-06-27 00:41:40 -0400530 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Len Brown4be44fc2005-08-05 00:44:28 -0400533static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
534 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700536 static int bm_check_flag = -1;
537 static int bm_control_flag = -1;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400541 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
545 * DMA transfers are used by any ISA device to avoid livelock.
546 * Note that we could disable Type-F DMA (as recommended by
547 * the erratum), but this is known to disrupt certain ISA
548 * devices thus we take the conservative approach.
549 */
550 else if (errata.piix4.fdma) {
551 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400552 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400553 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400556 /* All the logic here assumes flags.bm_check is same across all CPUs */
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700557 if (bm_check_flag == -1) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400558 /* Determine whether bm_check is needed based on CPU */
559 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
560 bm_check_flag = pr->flags.bm_check;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700561 bm_control_flag = pr->flags.bm_control;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400562 } else {
563 pr->flags.bm_check = bm_check_flag;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700564 pr->flags.bm_control = bm_control_flag;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400565 }
566
567 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400568 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -0700569 if (pr->flags.has_cst != 1) {
570 /* bus mastering control is necessary */
571 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
572 "C3 support requires BM control\n"));
573 return;
574 } else {
575 /* Here we enter C3 without bus mastering */
576 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
577 "C3 support without BM control\n"));
578 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400579 }
580 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400581 /*
582 * WBINVD should be set in fadt, for C3 state to be
583 * supported on when bm_check is not required.
584 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300585 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400586 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400587 "Cache invalidation should work properly"
588 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400590 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400591 }
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
594 * Otherwise we've met all of our C3 requirements.
595 * Normalize the C3 latency to expidite policy. Enable
596 * checking of bus mastering status (bm_check) so we can
597 * use this in our C3 policy
598 */
599 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400600
Len Brown4f86d3a2007-10-03 18:58:00 -0400601 cx->latency_ticks = cx->latency;
Len Brown31878dd2009-01-28 18:28:09 -0500602 /*
603 * On older chipsets, BM_RLD needs to be set
604 * in order for Bus Master activity to wake the
605 * system from C3. Newer chipsets handle DMA
606 * during C3 automatically and BM_RLD is a NOP.
607 * In either case, the proper way to
608 * handle BM_RLD is to set it and leave it set.
609 */
Bob Moore50ffba12009-02-23 15:02:07 +0800610 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615static int acpi_processor_power_verify(struct acpi_processor *pr)
616{
617 unsigned int i;
618 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100619
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800620 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100621
Len Browna0bf2842009-05-15 01:29:31 -0400622 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct acpi_processor_cx *cx = &pr->power.states[i];
624
625 switch (cx->type) {
626 case ACPI_STATE_C1:
627 cx->valid = 1;
628 break;
629
630 case ACPI_STATE_C2:
Len Brownd22edd22010-01-19 23:29:09 -0500631 if (!cx->address)
632 break;
633 cx->valid = 1;
634 cx->latency_ticks = cx->latency; /* Normalize latency */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636
637 case ACPI_STATE_C3:
638 acpi_processor_power_verify_c3(pr, cx);
639 break;
640 }
Len Brown7e275cc2009-05-15 02:08:44 -0400641 if (!cx->valid)
642 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Len Brown7e275cc2009-05-15 02:08:44 -0400644 lapic_timer_check_state(i, pr, cx);
645 tsc_check_state(cx->type);
646 working++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900649 lapic_timer_propagate_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +0100650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return (working);
652}
653
Len Brown4be44fc2005-08-05 00:44:28 -0400654static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 unsigned int i;
657 int result;
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /* NOTE: the idle thread may not be running while calling
661 * this function */
662
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700663 /* Zero initialize all the C-states info. */
664 memset(pr->power.states, 0, sizeof(pr->power.states));
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400667 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -0700668 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400669
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700670 if (result)
671 return result;
672
673 acpi_processor_get_power_info_default(pr);
674
Janosch Machowinskicf824782005-08-20 08:02:00 -0400675 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /*
678 * if one state of type C2 or C3 is available, mark this
679 * CPU as being "idle manageable"
680 */
681 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500682 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800684 if (pr->power.states[i].type >= ACPI_STATE_C2)
685 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800692#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
694{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200695 struct acpi_processor *pr = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400696 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (!pr)
700 goto end;
701
702 seq_printf(seq, "active state: C%zd\n"
Len Brown4be44fc2005-08-05 00:44:28 -0400703 "max_cstate: C%d\n"
Arjan van de Ven5c875792006-09-30 23:27:17 -0700704 "maximum allowed latency: %d usec\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400705 pr->power.state ? pr->power.state - pr->power.states : 0,
Mark Grossed771342010-05-06 01:59:26 +0200706 max_cstate, pm_qos_request(PM_QOS_CPU_DMA_LATENCY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 seq_puts(seq, "states:\n");
709
710 for (i = 1; i <= pr->power.count; i++) {
711 seq_printf(seq, " %cC%d: ",
Len Brown4be44fc2005-08-05 00:44:28 -0400712 (&pr->power.states[i] ==
713 pr->power.state ? '*' : ' '), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 if (!pr->power.states[i].valid) {
716 seq_puts(seq, "<not supported>\n");
717 continue;
718 }
719
720 switch (pr->power.states[i].type) {
721 case ACPI_STATE_C1:
722 seq_printf(seq, "type[C1] ");
723 break;
724 case ACPI_STATE_C2:
725 seq_printf(seq, "type[C2] ");
726 break;
727 case ACPI_STATE_C3:
728 seq_printf(seq, "type[C3] ");
729 break;
730 default:
731 seq_printf(seq, "type[--] ");
732 break;
733 }
734
Len Brown34a18d62010-05-21 19:40:02 -0400735 seq_puts(seq, "promotion[--] ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Len Brown34a18d62010-05-21 19:40:02 -0400737 seq_puts(seq, "demotion[--] ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Venkatesh Pallipadibceefad2010-06-02 10:01:09 -0700739 seq_printf(seq, "latency[%03d] usage[%08d] duration[%020Lu]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400740 pr->power.states[i].latency,
Dominik Brodowskia3c65982006-06-24 19:37:00 -0400741 pr->power.states[i].usage,
Venkatesh Pallipadibceefad2010-06-02 10:01:09 -0700742 us_to_pm_timer_ticks(pr->power.states[i].time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
Len Brown4be44fc2005-08-05 00:44:28 -0400745 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
750{
751 return single_open(file, acpi_processor_power_seq_show,
Len Brown4be44fc2005-08-05 00:44:28 -0400752 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Arjan van de Vend7508032006-07-04 13:06:00 -0400755static const struct file_operations acpi_processor_power_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700756 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400757 .open = acpi_processor_power_open_fs,
758 .read = seq_read,
759 .llseek = seq_lseek,
760 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761};
Zhao Yakui74cad4e2009-06-24 11:49:49 +0800762#endif
Len Brown4f86d3a2007-10-03 18:58:00 -0400763
764/**
765 * acpi_idle_bm_check - checks if bus master activity was detected
766 */
767static int acpi_idle_bm_check(void)
768{
769 u32 bm_status = 0;
770
Len Brownd3e7e992010-07-22 17:23:10 -0400771 if (bm_check_disable)
772 return 0;
773
Bob Moore50ffba12009-02-23 15:02:07 +0800774 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Len Brown4f86d3a2007-10-03 18:58:00 -0400775 if (bm_status)
Bob Moore50ffba12009-02-23 15:02:07 +0800776 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400777 /*
778 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
779 * the true state of bus mastering activity; forcing us to
780 * manually check the BMIDEA bit of each IDE channel.
781 */
782 else if (errata.piix4.bmisx) {
783 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
784 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
785 bm_status = 1;
786 }
787 return bm_status;
788}
789
790/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400791 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
792 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800793 *
794 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -0400795 */
796static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
797{
Steven Rostedtdcf309972008-07-25 18:00:42 -0400798 /* Don't trace irqs off for idle */
799 stop_critical_timings();
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800800 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400801 /* Call into architectural FFH based C-state */
802 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800803 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
804 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -0400805 } else {
806 int unused;
807 /* IO port based C-state */
808 inb(cx->address);
809 /* Dummy wait op - must do something useless after P_LVL2 read
810 because chipsets cannot guarantee that STPCLK# signal
811 gets asserted in time to freeze execution properly. */
812 unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
813 }
Steven Rostedtdcf309972008-07-25 18:00:42 -0400814 start_critical_timings();
Len Brown4f86d3a2007-10-03 18:58:00 -0400815}
816
817/**
818 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
819 * @dev: the target CPU
820 * @state: the state data
821 *
822 * This is equivalent to the HALT instruction.
823 */
824static int acpi_idle_enter_c1(struct cpuidle_device *dev,
825 struct cpuidle_state *state)
826{
alex.shiff69f2b2009-03-04 11:55:26 -0800827 ktime_t kt1, kt2;
828 s64 idle_time;
Len Brown4f86d3a2007-10-03 18:58:00 -0400829 struct acpi_processor *pr;
830 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -0800831
Mike Travis706546d2008-06-09 16:22:23 -0700832 pr = __get_cpu_var(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400833
834 if (unlikely(!pr))
835 return 0;
836
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800837 local_irq_disable();
Venkatesh Pallipadib077fba2008-02-11 15:20:27 -0800838
839 /* Do not access any ACPI IO ports in suspend path */
840 if (acpi_idle_suspend) {
Venkatesh Pallipadib077fba2008-02-11 15:20:27 -0800841 local_irq_enable();
Shaohua Li7d60e8a2009-05-19 16:09:54 +0800842 cpu_relax();
Venkatesh Pallipadib077fba2008-02-11 15:20:27 -0800843 return 0;
844 }
845
Len Brown7e275cc2009-05-15 02:08:44 -0400846 lapic_timer_state_broadcast(pr, cx, 1);
alex.shiff69f2b2009-03-04 11:55:26 -0800847 kt1 = ktime_get_real();
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800848 acpi_idle_do_entry(cx);
alex.shiff69f2b2009-03-04 11:55:26 -0800849 kt2 = ktime_get_real();
850 idle_time = ktime_to_us(ktime_sub(kt2, kt1));
Len Brown4f86d3a2007-10-03 18:58:00 -0400851
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800852 local_irq_enable();
Len Brown4f86d3a2007-10-03 18:58:00 -0400853 cx->usage++;
Len Brown7e275cc2009-05-15 02:08:44 -0400854 lapic_timer_state_broadcast(pr, cx, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -0400855
alex.shiff69f2b2009-03-04 11:55:26 -0800856 return idle_time;
Len Brown4f86d3a2007-10-03 18:58:00 -0400857}
858
859/**
860 * acpi_idle_enter_simple - enters an ACPI state without BM handling
861 * @dev: the target CPU
862 * @state: the state data
863 */
864static int acpi_idle_enter_simple(struct cpuidle_device *dev,
865 struct cpuidle_state *state)
866{
867 struct acpi_processor *pr;
868 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
alex.shiff69f2b2009-03-04 11:55:26 -0800869 ktime_t kt1, kt2;
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -0700870 s64 idle_time_ns;
alex.shiff69f2b2009-03-04 11:55:26 -0800871 s64 idle_time;
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500872
Mike Travis706546d2008-06-09 16:22:23 -0700873 pr = __get_cpu_var(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400874
875 if (unlikely(!pr))
876 return 0;
877
Len Browne1964412007-10-04 01:23:47 -0400878 if (acpi_idle_suspend)
879 return(acpi_idle_enter_c1(dev, state));
880
Len Brown4f86d3a2007-10-03 18:58:00 -0400881 local_irq_disable();
Len Brown02cf4f92010-05-24 14:27:44 -0400882
Pallipadi, Venkateshd306ebc2010-02-10 10:35:31 -0800883 if (cx->entry_method != ACPI_CSTATE_FFH) {
884 current_thread_info()->status &= ~TS_POLLING;
885 /*
886 * TS_POLLING-cleared state must be visible before we test
887 * NEED_RESCHED:
888 */
889 smp_mb();
Len Brown4f86d3a2007-10-03 18:58:00 -0400890
Len Brown02cf4f92010-05-24 14:27:44 -0400891 if (unlikely(need_resched())) {
892 current_thread_info()->status |= TS_POLLING;
893 local_irq_enable();
894 return 0;
895 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400896 }
897
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100898 /*
899 * Must be done before busmaster disable as we might need to
900 * access HPET !
901 */
Len Brown7e275cc2009-05-15 02:08:44 -0400902 lapic_timer_state_broadcast(pr, cx, 1);
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100903
Len Brown4f86d3a2007-10-03 18:58:00 -0400904 if (cx->type == ACPI_STATE_C3)
905 ACPI_FLUSH_CPU_CACHE();
906
alex.shiff69f2b2009-03-04 11:55:26 -0800907 kt1 = ktime_get_real();
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500908 /* Tell the scheduler that we are going deep-idle: */
909 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -0400910 acpi_idle_do_entry(cx);
alex.shiff69f2b2009-03-04 11:55:26 -0800911 kt2 = ktime_get_real();
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -0700912 idle_time_ns = ktime_to_ns(ktime_sub(kt2, kt1));
913 idle_time = idle_time_ns;
914 do_div(idle_time, NSEC_PER_USEC);
Len Brown4f86d3a2007-10-03 18:58:00 -0400915
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500916 /* Tell the scheduler how much we idled: */
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -0700917 sched_clock_idle_wakeup_event(idle_time_ns);
Len Brown4f86d3a2007-10-03 18:58:00 -0400918
919 local_irq_enable();
Len Brown02cf4f92010-05-24 14:27:44 -0400920 if (cx->entry_method != ACPI_CSTATE_FFH)
921 current_thread_info()->status |= TS_POLLING;
Len Brown4f86d3a2007-10-03 18:58:00 -0400922
923 cx->usage++;
924
Len Brown7e275cc2009-05-15 02:08:44 -0400925 lapic_timer_state_broadcast(pr, cx, 0);
Venkatesh Pallipadibceefad2010-06-02 10:01:09 -0700926 cx->time += idle_time;
alex.shiff69f2b2009-03-04 11:55:26 -0800927 return idle_time;
Len Brown4f86d3a2007-10-03 18:58:00 -0400928}
929
930static int c3_cpu_count;
931static DEFINE_SPINLOCK(c3_lock);
932
933/**
934 * acpi_idle_enter_bm - enters C3 with proper BM handling
935 * @dev: the target CPU
936 * @state: the state data
937 *
938 * If BM is detected, the deepest non-C3 idle state is entered instead.
939 */
940static int acpi_idle_enter_bm(struct cpuidle_device *dev,
941 struct cpuidle_state *state)
942{
943 struct acpi_processor *pr;
944 struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
alex.shiff69f2b2009-03-04 11:55:26 -0800945 ktime_t kt1, kt2;
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -0700946 s64 idle_time_ns;
alex.shiff69f2b2009-03-04 11:55:26 -0800947 s64 idle_time;
alex.shiff69f2b2009-03-04 11:55:26 -0800948
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500949
Mike Travis706546d2008-06-09 16:22:23 -0700950 pr = __get_cpu_var(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400951
952 if (unlikely(!pr))
953 return 0;
954
Len Browne1964412007-10-04 01:23:47 -0400955 if (acpi_idle_suspend)
956 return(acpi_idle_enter_c1(dev, state));
957
Len Brown718be4a2010-07-22 16:54:27 -0400958 if (!cx->bm_sts_skip && acpi_idle_bm_check()) {
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500959 if (dev->safe_state) {
Venkatesh Pallipadiaddbad42008-09-29 15:24:28 -0700960 dev->last_state = dev->safe_state;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500961 return dev->safe_state->enter(dev, dev->safe_state);
962 } else {
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800963 local_irq_disable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500964 acpi_safe_halt();
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800965 local_irq_enable();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500966 return 0;
967 }
968 }
969
Len Brown4f86d3a2007-10-03 18:58:00 -0400970 local_irq_disable();
Len Brown02cf4f92010-05-24 14:27:44 -0400971
Pallipadi, Venkateshd306ebc2010-02-10 10:35:31 -0800972 if (cx->entry_method != ACPI_CSTATE_FFH) {
973 current_thread_info()->status &= ~TS_POLLING;
974 /*
975 * TS_POLLING-cleared state must be visible before we test
976 * NEED_RESCHED:
977 */
978 smp_mb();
Len Brown4f86d3a2007-10-03 18:58:00 -0400979
Len Brown02cf4f92010-05-24 14:27:44 -0400980 if (unlikely(need_resched())) {
981 current_thread_info()->status |= TS_POLLING;
982 local_irq_enable();
983 return 0;
984 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400985 }
986
Venki Pallipadi996520c2008-03-24 14:24:10 -0700987 acpi_unlazy_tlb(smp_processor_id());
988
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500989 /* Tell the scheduler that we are going deep-idle: */
990 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -0400991 /*
992 * Must be done before busmaster disable as we might need to
993 * access HPET !
994 */
Len Brown7e275cc2009-05-15 02:08:44 -0400995 lapic_timer_state_broadcast(pr, cx, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400996
Len Brownf461dde2009-04-23 18:59:43 -0400997 kt1 = ktime_get_real();
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500998 /*
999 * disable bus master
1000 * bm_check implies we need ARB_DIS
1001 * !bm_check implies we need cache flush
1002 * bm_control implies whether we can do ARB_DIS
1003 *
1004 * That leaves a case where bm_check is set and bm_control is
1005 * not set. In that case we cannot do much, we enter C3
1006 * without doing anything.
1007 */
1008 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001009 spin_lock(&c3_lock);
1010 c3_cpu_count++;
1011 /* Disable bus master arbitration when all CPUs are in C3 */
1012 if (c3_cpu_count == num_online_cpus())
Bob Moore50ffba12009-02-23 15:02:07 +08001013 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -04001014 spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001015 } else if (!pr->flags.bm_check) {
1016 ACPI_FLUSH_CPU_CACHE();
1017 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001018
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001019 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -04001020
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001021 /* Re-enable bus master arbitration */
1022 if (pr->flags.bm_check && pr->flags.bm_control) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001023 spin_lock(&c3_lock);
Bob Moore50ffba12009-02-23 15:02:07 +08001024 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -04001025 c3_cpu_count--;
1026 spin_unlock(&c3_lock);
1027 }
Len Brownf461dde2009-04-23 18:59:43 -04001028 kt2 = ktime_get_real();
Zhao Yakui157317b2010-06-02 11:04:09 +08001029 idle_time_ns = ktime_to_ns(ktime_sub(kt2, kt1));
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -07001030 idle_time = idle_time_ns;
1031 do_div(idle_time, NSEC_PER_USEC);
Len Brown4f86d3a2007-10-03 18:58:00 -04001032
Venkatesh Pallipadi50629112007-11-19 19:49:00 -05001033 /* Tell the scheduler how much we idled: */
Venkatesh Pallipadi2da513f2010-04-22 16:48:33 -07001034 sched_clock_idle_wakeup_event(idle_time_ns);
Len Brown4f86d3a2007-10-03 18:58:00 -04001035
1036 local_irq_enable();
Len Brown02cf4f92010-05-24 14:27:44 -04001037 if (cx->entry_method != ACPI_CSTATE_FFH)
1038 current_thread_info()->status |= TS_POLLING;
Len Brown4f86d3a2007-10-03 18:58:00 -04001039
1040 cx->usage++;
1041
Len Brown7e275cc2009-05-15 02:08:44 -04001042 lapic_timer_state_broadcast(pr, cx, 0);
Venkatesh Pallipadibceefad2010-06-02 10:01:09 -07001043 cx->time += idle_time;
alex.shiff69f2b2009-03-04 11:55:26 -08001044 return idle_time;
Len Brown4f86d3a2007-10-03 18:58:00 -04001045}
1046
1047struct cpuidle_driver acpi_idle_driver = {
1048 .name = "acpi_idle",
1049 .owner = THIS_MODULE,
1050};
1051
1052/**
1053 * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
1054 * @pr: the ACPI processor
1055 */
1056static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
1057{
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001058 int i, count = CPUIDLE_DRIVER_STATE_START;
Len Brown4f86d3a2007-10-03 18:58:00 -04001059 struct acpi_processor_cx *cx;
1060 struct cpuidle_state *state;
1061 struct cpuidle_device *dev = &pr->power.dev;
1062
1063 if (!pr->flags.power_setup_done)
1064 return -EINVAL;
1065
1066 if (pr->flags.power == 0) {
1067 return -EINVAL;
1068 }
1069
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001070 dev->cpu = pr->id;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001071 for (i = 0; i < CPUIDLE_STATE_MAX; i++) {
1072 dev->states[i].name[0] = '\0';
1073 dev->states[i].desc[0] = '\0';
1074 }
1075
Len Brown615dfd92009-04-23 23:21:29 -04001076 if (max_cstate == 0)
1077 max_cstate = 1;
1078
Len Brown4f86d3a2007-10-03 18:58:00 -04001079 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1080 cx = &pr->power.states[i];
1081 state = &dev->states[count];
1082
1083 if (!cx->valid)
1084 continue;
1085
1086#ifdef CONFIG_HOTPLUG_CPU
1087 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1088 !pr->flags.has_cst &&
1089 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1090 continue;
1091#endif
1092 cpuidle_set_statedata(state, cx);
1093
1094 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001095 strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
Len Brown4f86d3a2007-10-03 18:58:00 -04001096 state->exit_latency = cx->latency;
Len Brown4963f622007-12-13 23:50:45 -05001097 state->target_residency = cx->latency * latency_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -04001098 state->power_usage = cx->power;
1099
1100 state->flags = 0;
1101 switch (cx->type) {
1102 case ACPI_STATE_C1:
1103 state->flags |= CPUIDLE_FLAG_SHALLOW;
Venki Pallipadi8e92b662008-02-29 10:24:32 -08001104 if (cx->entry_method == ACPI_CSTATE_FFH)
1105 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1106
Len Brown4f86d3a2007-10-03 18:58:00 -04001107 state->enter = acpi_idle_enter_c1;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001108 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001109 break;
1110
1111 case ACPI_STATE_C2:
1112 state->flags |= CPUIDLE_FLAG_BALANCED;
1113 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1114 state->enter = acpi_idle_enter_simple;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -05001115 dev->safe_state = state;
Len Brown4f86d3a2007-10-03 18:58:00 -04001116 break;
1117
1118 case ACPI_STATE_C3:
1119 state->flags |= CPUIDLE_FLAG_DEEP;
1120 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1121 state->flags |= CPUIDLE_FLAG_CHECK_BM;
1122 state->enter = pr->flags.bm_check ?
1123 acpi_idle_enter_bm :
1124 acpi_idle_enter_simple;
1125 break;
1126 }
1127
1128 count++;
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001129 if (count == CPUIDLE_STATE_MAX)
1130 break;
Len Brown4f86d3a2007-10-03 18:58:00 -04001131 }
1132
1133 dev->state_count = count;
1134
1135 if (!count)
1136 return -EINVAL;
1137
Len Brown4f86d3a2007-10-03 18:58:00 -04001138 return 0;
1139}
1140
1141int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1142{
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001143 int ret = 0;
Len Brown4f86d3a2007-10-03 18:58:00 -04001144
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001145 if (boot_option_idle_override)
1146 return 0;
1147
Len Brown4f86d3a2007-10-03 18:58:00 -04001148 if (!pr)
1149 return -EINVAL;
1150
1151 if (nocst) {
1152 return -ENODEV;
1153 }
1154
1155 if (!pr->flags.power_setup_done)
1156 return -ENODEV;
1157
1158 cpuidle_pause_and_lock();
1159 cpuidle_disable_device(&pr->power.dev);
1160 acpi_processor_get_power_info(pr);
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001161 if (pr->flags.power) {
1162 acpi_processor_setup_cpuidle(pr);
1163 ret = cpuidle_enable_device(&pr->power.dev);
1164 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001165 cpuidle_resume_and_unlock();
1166
1167 return ret;
1168}
1169
Pierre Ossman7af8b662006-10-10 14:20:31 -07001170int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
Len Brown4be44fc2005-08-05 00:44:28 -04001171 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Len Brown4be44fc2005-08-05 00:44:28 -04001173 acpi_status status = 0;
Andreas Mohrb6835052006-04-27 05:25:00 -04001174 static int first_run;
Len Brownb188e4c2009-06-24 01:48:32 -04001175#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -04001176 struct proc_dir_entry *entry = NULL;
Len Brownb188e4c2009-06-24 01:48:32 -04001177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001179 if (boot_option_idle_override)
1180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 if (!first_run) {
Zhao Yakuic1e3b372008-06-24 17:58:53 +08001183 if (idle_halt) {
1184 /*
1185 * When the boot option of "idle=halt" is added, halt
1186 * is used for CPU IDLE.
1187 * In such case C2/C3 is meaningless. So the max_cstate
1188 * is set to one.
1189 */
1190 max_cstate = 1;
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 dmi_check_system(processor_power_dmi_table);
Alexey Starikovskiyc1c30632007-11-26 20:42:19 +01001193 max_cstate = acpi_processor_cstate_check(max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001195 printk(KERN_NOTICE
1196 "ACPI: processor limited to max C-state %d\n",
1197 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 first_run++;
1199 }
1200
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001201 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001202 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001203
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001204 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001205 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001206 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001208 ACPI_EXCEPTION((AE_INFO, status,
1209 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211 }
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001214 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /*
1217 * Install the idle handler if processor power management is supported.
1218 * Note that we use previously set idle handler will be used on
1219 * platforms that only support C1.
1220 */
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001221 if (pr->flags.power) {
Len Brown4f86d3a2007-10-03 18:58:00 -04001222 acpi_processor_setup_cpuidle(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001223 if (cpuidle_register_device(&pr->power.dev))
1224 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001226#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* 'power' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001228 entry = proc_create_data(ACPI_PROCESSOR_FILE_POWER,
1229 S_IRUGO, acpi_device_dir(device),
1230 &acpi_processor_power_fops,
1231 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!entry)
Thomas Renningera6fc6722006-06-26 23:58:43 -04001233 return -EIO;
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001234#endif
Patrick Mocheld550d982006-06-27 00:41:40 -04001235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Len Brown4be44fc2005-08-05 00:44:28 -04001238int acpi_processor_power_exit(struct acpi_processor *pr,
1239 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001241 if (boot_option_idle_override)
1242 return 0;
1243
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001244 cpuidle_unregister_device(&pr->power.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 pr->flags.power_setup_done = 0;
1246
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001247#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (acpi_device_dir(device))
Len Brown4be44fc2005-08-05 00:44:28 -04001249 remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
1250 acpi_device_dir(device));
Zhao Yakui74cad4e2009-06-24 11:49:49 +08001251#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Patrick Mocheld550d982006-06-27 00:41:40 -04001253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}