blob: 68370659df689b1dda04925b4ddb4abef1c97cd9 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/acpi.h>
33#include <linux/dmi.h>
Daniel Lezcanoe2668fb2013-02-04 22:44:41 +000034#include <linux/sched.h> /* need_resched() */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080035#include <linux/clockchips.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040036#include <linux/cpuidle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Thomas Gleixner34349332007-02-16 01:27:54 -080038/*
39 * Include the apic definitions for x86 to have the APIC timer related defines
40 * available also for UP (on SMP it gets magically included via linux/smp.h).
41 * asm/acpi.h is not an option, as it would require more include magic. Also
42 * creating an empty asm-ia64/apic.h would just trade pest vs. cholera.
43 */
44#ifdef CONFIG_X86
45#include <asm/apic.h>
46#endif
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <acpi/acpi_bus.h>
49#include <acpi/processor.h>
50
Len Browna192a952009-07-28 16:45:54 -040051#define PREFIX "ACPI: "
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_PROCESSOR_CLASS "processor"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define _COMPONENT ACPI_PROCESSOR_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050055ACPI_MODULE_NAME("processor_idle");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Len Brown4f86d3a2007-10-03 18:58:00 -040057static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
58module_param(max_cstate, uint, 0000);
Andreas Mohrb6835052006-04-27 05:25:00 -040059static unsigned int nocst __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060module_param(nocst, uint, 0000);
Len Brownd3e7e992010-07-22 17:23:10 -040061static int bm_check_disable __read_mostly;
62module_param(bm_check_disable, uint, 0000);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Len Brown25de5712007-12-14 00:24:15 -050064static unsigned int latency_factor __read_mostly = 2;
Len Brown4963f622007-12-13 23:50:45 -050065module_param(latency_factor, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Daniel Lezcano3d339dc2012-09-17 23:01:56 +020067static DEFINE_PER_CPU(struct cpuidle_device *, acpi_cpuidle_device);
68
Thomas Renningerd1896042010-11-03 17:06:14 +010069static int disabled_by_idle_boot_param(void)
70{
71 return boot_option_idle_override == IDLE_POLL ||
72 boot_option_idle_override == IDLE_FORCE_MWAIT ||
73 boot_option_idle_override == IDLE_HALT;
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/*
77 * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
78 * For now disable this. Probably a bug somewhere else.
79 *
80 * To skip this limit, boot/load with a large max_cstate limit.
81 */
Jeff Garzik18552562007-10-03 15:15:40 -040082static int set_max_cstate(const struct dmi_system_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
85 return 0;
86
Len Brown3d356002005-08-03 00:22:52 -040087 printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
Len Brown4be44fc2005-08-05 00:44:28 -040088 " Override with \"processor.max_cstate=%d\"\n", id->ident,
89 (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Len Brown3d356002005-08-03 00:22:52 -040091 max_cstate = (long)id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return 0;
94}
95
Ashok Raj7ded5682006-02-03 21:51:23 +010096/* Actually this shouldn't be __cpuinitdata, would be better to fix the
97 callers to only run once -AK */
98static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
Thomas Rosner876c1842006-01-06 01:31:00 -050099 { set_max_cstate, "Clevo 5600D", {
100 DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
101 DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
Len Brown4be44fc2005-08-05 00:44:28 -0400102 (void *)2},
Arjan van de Ven370d5cd2010-01-27 15:25:39 -0800103 { set_max_cstate, "Pavilion zv5000", {
104 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
105 DMI_MATCH(DMI_PRODUCT_NAME,"Pavilion zv5000 (DS502A#ABA)")},
106 (void *)1},
107 { set_max_cstate, "Asus L8400B", {
108 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
109 DMI_MATCH(DMI_PRODUCT_NAME,"L8400B series Notebook PC")},
110 (void *)1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 {},
112};
113
Len Brown4f86d3a2007-10-03 18:58:00 -0400114
venkatesh.pallipadi@intel.com2e906652008-01-31 17:35:03 -0800115/*
116 * Callers should disable interrupts before the call and enable
117 * interrupts after return.
118 */
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500119static void acpi_safe_halt(void)
120{
121 current_thread_info()->status &= ~TS_POLLING;
122 /*
123 * TS_POLLING-cleared state must be visible before we
124 * test NEED_RESCHED:
125 */
126 smp_mb();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700127 if (!need_resched()) {
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500128 safe_halt();
Venki Pallipadi71e93d12008-03-13 17:18:19 -0700129 local_irq_disable();
130 }
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500131 current_thread_info()->status |= TS_POLLING;
132}
133
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800134#ifdef ARCH_APICTIMER_STOPS_ON_C3
135
136/*
137 * Some BIOS implementations switch to C3 in the published C2 state.
Linus Torvalds296d93c2007-03-23 08:03:47 -0700138 * This seems to be a common problem on AMD boxen, but other vendors
139 * are affected too. We pick the most conservative approach: we assume
140 * that the local APIC stops in both C2 and C3.
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800141 */
Len Brown7e275cc2009-05-15 02:08:44 -0400142static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800143 struct acpi_processor_cx *cx)
144{
145 struct acpi_processor_power *pwr = &pr->power;
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100146 u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800147
Venkatesh Pallipadidb954b52009-04-06 18:51:29 -0700148 if (cpu_has(&cpu_data(pr->id), X86_FEATURE_ARAT))
149 return;
150
Len Brown02c68a02011-04-01 16:59:53 -0400151 if (amd_e400_c1e_detected)
Shaohua Li87ad57ba2009-05-19 16:09:42 +0800152 type = ACPI_STATE_C1;
153
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800154 /*
155 * Check, if one of the previous states already marked the lapic
156 * unstable
157 */
158 if (pwr->timer_broadcast_on_state < state)
159 return;
160
Thomas Gleixnere585bef2007-03-23 16:08:01 +0100161 if (cx->type >= type)
Linus Torvalds296d93c2007-03-23 08:03:47 -0700162 pr->power.timer_broadcast_on_state = state;
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800163}
164
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900165static void __lapic_timer_propagate_broadcast(void *arg)
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800166{
Suresh Siddhaf833bab2009-08-17 14:34:59 -0700167 struct acpi_processor *pr = (struct acpi_processor *) arg;
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800168 unsigned long reason;
169
170 reason = pr->power.timer_broadcast_on_state < INT_MAX ?
171 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
172
173 clockevents_notify(reason, &pr->id);
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800174}
175
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900176static void lapic_timer_propagate_broadcast(struct acpi_processor *pr)
177{
178 smp_call_function_single(pr->id, __lapic_timer_propagate_broadcast,
179 (void *)pr, 1);
180}
181
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800182/* Power(C) State timer broadcast control */
Len Brown7e275cc2009-05-15 02:08:44 -0400183static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800184 struct acpi_processor_cx *cx,
185 int broadcast)
186{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800187 int state = cx - pr->power.states;
188
189 if (state >= pr->power.timer_broadcast_on_state) {
190 unsigned long reason;
191
192 reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
193 CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
194 clockevents_notify(reason, &pr->id);
195 }
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800196}
197
198#else
199
Len Brown7e275cc2009-05-15 02:08:44 -0400200static void lapic_timer_check_state(int state, struct acpi_processor *pr,
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800201 struct acpi_processor_cx *cstate) { }
Len Brown7e275cc2009-05-15 02:08:44 -0400202static void lapic_timer_propagate_broadcast(struct acpi_processor *pr) { }
203static void lapic_timer_state_broadcast(struct acpi_processor *pr,
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800204 struct acpi_processor_cx *cx,
205 int broadcast)
206{
207}
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800208
209#endif
210
Len Brown815ab0f2009-05-07 22:19:45 -0400211static u32 saved_bm_rld;
212
213static void acpi_idle_bm_rld_save(void)
214{
215 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &saved_bm_rld);
216}
217static void acpi_idle_bm_rld_restore(void)
218{
219 u32 resumed_bm_rld;
220
221 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &resumed_bm_rld);
222
223 if (resumed_bm_rld != saved_bm_rld)
224 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, saved_bm_rld);
225}
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000226
Rafael J. Wysockie8110b62012-06-27 23:26:26 +0200227int acpi_processor_suspend(struct device *dev)
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000228{
Len Brown815ab0f2009-05-07 22:19:45 -0400229 acpi_idle_bm_rld_save();
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000230 return 0;
231}
232
Rafael J. Wysockie8110b62012-06-27 23:26:26 +0200233int acpi_processor_resume(struct device *dev)
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000234{
Len Brown815ab0f2009-05-07 22:19:45 -0400235 acpi_idle_bm_rld_restore();
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000236 return 0;
237}
238
John Stultz592913e2010-07-13 17:56:20 -0700239#if defined(CONFIG_X86)
Len Brown520daf72009-05-14 17:27:38 -0400240static void tsc_check_state(int state)
Andi Kleenddb25f92008-01-30 13:32:41 +0100241{
242 switch (boot_cpu_data.x86_vendor) {
243 case X86_VENDOR_AMD:
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800244 case X86_VENDOR_INTEL:
Andi Kleenddb25f92008-01-30 13:32:41 +0100245 /*
246 * AMD Fam10h TSC will tick in all
247 * C/P/S0/S1 states when this bit is set.
248 */
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800249 if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
Len Brown520daf72009-05-14 17:27:38 -0400250 return;
Venki Pallipadi40fb1712008-11-17 16:11:37 -0800251
Andi Kleenddb25f92008-01-30 13:32:41 +0100252 /*FALL THROUGH*/
Andi Kleenddb25f92008-01-30 13:32:41 +0100253 default:
Len Brown520daf72009-05-14 17:27:38 -0400254 /* TSC could halt in idle, so notify users */
255 if (state > ACPI_STATE_C1)
256 mark_tsc_unstable("TSC halts in idle");
Andi Kleenddb25f92008-01-30 13:32:41 +0100257 }
258}
Len Brown520daf72009-05-14 17:27:38 -0400259#else
260static void tsc_check_state(int state) { return; }
Andi Kleenddb25f92008-01-30 13:32:41 +0100261#endif
262
Len Brown4be44fc2005-08-05 00:44:28 -0400263static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (!pr->pblk)
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* if info is obtained from pblk/fadt, type equals state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
274 pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
275
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400276#ifndef CONFIG_HOTPLUG_CPU
277 /*
278 * Check for P_LVL2_UP flag before entering C2 and above on
Len Brown4f86d3a2007-10-03 18:58:00 -0400279 * an SMP system.
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400280 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300281 if ((num_online_cpus() > 1) &&
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300282 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
Patrick Mocheld550d982006-06-27 00:41:40 -0400283 return -ENODEV;
Venkatesh Pallipadi4c033552005-09-15 12:20:00 -0400284#endif
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* determine C2 and C3 address from pblk */
287 pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
288 pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
289
290 /* determine latencies from FADT */
Bob Mooreba494be2012-07-12 09:40:10 +0800291 pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.c2_latency;
292 pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.c3_latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Len Brown5d76b6f2010-01-19 22:41:14 -0500294 /*
295 * FADT specified C2 latency must be less than or equal to
296 * 100 microseconds.
297 */
Bob Mooreba494be2012-07-12 09:40:10 +0800298 if (acpi_gbl_FADT.c2_latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
Len Brown5d76b6f2010-01-19 22:41:14 -0500299 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreba494be2012-07-12 09:40:10 +0800300 "C2 latency too large [%d]\n", acpi_gbl_FADT.c2_latency));
Len Brown5d76b6f2010-01-19 22:41:14 -0500301 /* invalidate C2 */
302 pr->power.states[ACPI_STATE_C2].address = 0;
303 }
304
Len Browna6d72c12010-01-19 23:10:04 -0500305 /*
306 * FADT supplied C3 latency must be less than or equal to
307 * 1000 microseconds.
308 */
Bob Mooreba494be2012-07-12 09:40:10 +0800309 if (acpi_gbl_FADT.c3_latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
Len Browna6d72c12010-01-19 23:10:04 -0500310 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreba494be2012-07-12 09:40:10 +0800311 "C3 latency too large [%d]\n", acpi_gbl_FADT.c3_latency));
Len Browna6d72c12010-01-19 23:10:04 -0500312 /* invalidate C3 */
313 pr->power.states[ACPI_STATE_C3].address = 0;
314 }
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
317 "lvl2[0x%08x] lvl3[0x%08x]\n",
318 pr->power.states[ACPI_STATE_C2].address,
319 pr->power.states[ACPI_STATE_C3].address));
320
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700324static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500325{
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700326 if (!pr->power.states[ACPI_STATE_C1].valid) {
327 /* set the first C-State to C1 */
328 /* all processors need to support C1 */
329 pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
330 pr->power.states[ACPI_STATE_C1].valid = 1;
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400331 pr->power.states[ACPI_STATE_C1].entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700332 }
333 /* the C0 state only exists as a filler in our array */
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500334 pr->power.states[ACPI_STATE_C0].valid = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return 0;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500336}
337
Len Brown4be44fc2005-08-05 00:44:28 -0400338static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Len Brown4be44fc2005-08-05 00:44:28 -0400340 acpi_status status = 0;
Lin Ming439913f2010-01-28 10:53:19 +0800341 u64 count;
Janosch Machowinskicf824782005-08-20 08:02:00 -0400342 int current_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400343 int i;
344 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
345 union acpi_object *cst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (nocst)
Patrick Mocheld550d982006-06-27 00:41:40 -0400349 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700351 current_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
354 if (ACPI_FAILURE(status)) {
355 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400356 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200359 cst = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* There must be at least 2 elements */
362 if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
Len Brown64684632006-06-26 23:41:38 -0400363 printk(KERN_ERR PREFIX "not enough elements in _CST\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 status = -EFAULT;
365 goto end;
366 }
367
368 count = cst->package.elements[0].integer.value;
369
370 /* Validate number of power states. */
371 if (count < 1 || count != cst->package.count - 1) {
Len Brown64684632006-06-26 23:41:38 -0400372 printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 status = -EFAULT;
374 goto end;
375 }
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* Tell driver that at least _CST is supported. */
378 pr->flags.has_cst = 1;
379
380 for (i = 1; i <= count; i++) {
381 union acpi_object *element;
382 union acpi_object *obj;
383 struct acpi_power_register *reg;
384 struct acpi_processor_cx cx;
385
386 memset(&cx, 0, sizeof(cx));
387
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200388 element = &(cst->package.elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (element->type != ACPI_TYPE_PACKAGE)
390 continue;
391
392 if (element->package.count != 4)
393 continue;
394
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200395 obj = &(element->package.elements[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (obj->type != ACPI_TYPE_BUFFER)
398 continue;
399
Len Brown4be44fc2005-08-05 00:44:28 -0400400 reg = (struct acpi_power_register *)obj->buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
Len Brown4be44fc2005-08-05 00:44:28 -0400403 (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 continue;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* There should be an easy way to extract an integer... */
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200407 obj = &(element->package.elements[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (obj->type != ACPI_TYPE_INTEGER)
409 continue;
410
411 cx.type = obj->integer.value;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700412 /*
413 * Some buggy BIOSes won't list C1 in _CST -
414 * Let acpi_processor_get_power_info_default() handle them later
415 */
416 if (i == 1 && cx.type != ACPI_STATE_C1)
417 current_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700419 cx.address = reg->address;
420 cx.index = current_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800422 cx.entry_method = ACPI_CSTATE_SYSTEMIO;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700423 if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
424 if (acpi_processor_ffh_cstate_probe
425 (pr->id, &cx, reg) == 0) {
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800426 cx.entry_method = ACPI_CSTATE_FFH;
427 } else if (cx.type == ACPI_STATE_C1) {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700428 /*
429 * C1 is a special case where FIXED_HARDWARE
430 * can be handled in non-MWAIT way as well.
431 * In that case, save this _CST entry info.
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700432 * Otherwise, ignore this info and continue.
433 */
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800434 cx.entry_method = ACPI_CSTATE_HALT;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800435 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800436 } else {
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700437 continue;
438 }
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800439 if (cx.type == ACPI_STATE_C1 &&
Thomas Renningerd1896042010-11-03 17:06:14 +0100440 (boot_option_idle_override == IDLE_NOMWAIT)) {
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800441 /*
442 * In most cases the C1 space_id obtained from
443 * _CST object is FIXED_HARDWARE access mode.
444 * But when the option of idle=halt is added,
445 * the entry_method type should be changed from
446 * CSTATE_FFH to CSTATE_HALT.
Zhao Yakuida5e09a2008-06-24 18:01:09 +0800447 * When the option of idle=nomwait is added,
448 * the C1 entry_method type should be
449 * CSTATE_HALT.
Zhao Yakuic1e3b372008-06-24 17:58:53 +0800450 */
451 cx.entry_method = ACPI_CSTATE_HALT;
452 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT");
453 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800454 } else {
455 snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x",
456 cx.address);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Venkatesh Pallipadi0fda6b42008-04-09 21:31:46 -0400459 if (cx.type == ACPI_STATE_C1) {
460 cx.valid = 1;
461 }
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800462
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200463 obj = &(element->package.elements[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (obj->type != ACPI_TYPE_INTEGER)
465 continue;
466
467 cx.latency = obj->integer.value;
468
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200469 obj = &(element->package.elements[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (obj->type != ACPI_TYPE_INTEGER)
471 continue;
472
Janosch Machowinskicf824782005-08-20 08:02:00 -0400473 current_count++;
474 memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
475
476 /*
477 * We support total ACPI_PROCESSOR_MAX_POWER - 1
478 * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
479 */
480 if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
481 printk(KERN_WARNING
482 "Limiting number of power states to max (%d)\n",
483 ACPI_PROCESSOR_MAX_POWER);
484 printk(KERN_WARNING
485 "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
486 break;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
Len Brown4be44fc2005-08-05 00:44:28 -0400490 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
Janosch Machowinskicf824782005-08-20 08:02:00 -0400491 current_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* Validate number of power states discovered */
Janosch Machowinskicf824782005-08-20 08:02:00 -0400494 if (current_count < 2)
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400495 status = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Len Brown4be44fc2005-08-05 00:44:28 -0400497 end:
Len Brown02438d82006-06-30 03:19:10 -0400498 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Patrick Mocheld550d982006-06-27 00:41:40 -0400500 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Len Brown4be44fc2005-08-05 00:44:28 -0400503static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
504 struct acpi_processor_cx *cx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700506 static int bm_check_flag = -1;
507 static int bm_control_flag = -1;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 if (!cx->address)
Patrick Mocheld550d982006-06-27 00:41:40 -0400511 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
515 * DMA transfers are used by any ISA device to avoid livelock.
516 * Note that we could disable Type-F DMA (as recommended by
517 * the erratum), but this is known to disrupt certain ISA
518 * devices thus we take the conservative approach.
519 */
520 else if (errata.piix4.fdma) {
521 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400522 "C3 not supported on PIIX4 with Type-F DMA\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400526 /* All the logic here assumes flags.bm_check is same across all CPUs */
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700527 if (bm_check_flag == -1) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400528 /* Determine whether bm_check is needed based on CPU */
529 acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
530 bm_check_flag = pr->flags.bm_check;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700531 bm_control_flag = pr->flags.bm_control;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400532 } else {
533 pr->flags.bm_check = bm_check_flag;
Pallipadi, Venkateshee1ca482009-05-21 17:09:10 -0700534 pr->flags.bm_control = bm_control_flag;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400535 }
536
537 if (pr->flags.bm_check) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400538 if (!pr->flags.bm_control) {
Venki Pallipadied3110e2007-07-31 12:04:31 -0700539 if (pr->flags.has_cst != 1) {
540 /* bus mastering control is necessary */
541 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
542 "C3 support requires BM control\n"));
543 return;
544 } else {
545 /* Here we enter C3 without bus mastering */
546 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
547 "C3 support without BM control\n"));
548 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400549 }
550 } else {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400551 /*
552 * WBINVD should be set in fadt, for C3 state to be
553 * supported on when bm_check is not required.
554 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300555 if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400556 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400557 "Cache invalidation should work properly"
558 " for C3 to be enabled on SMP systems\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400559 return;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400560 }
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400561 }
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /*
564 * Otherwise we've met all of our C3 requirements.
565 * Normalize the C3 latency to expidite policy. Enable
566 * checking of bus mastering status (bm_check) so we can
567 * use this in our C3 policy
568 */
569 cx->valid = 1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400570
Len Brown31878dd2009-01-28 18:28:09 -0500571 /*
572 * On older chipsets, BM_RLD needs to be set
573 * in order for Bus Master activity to wake the
574 * system from C3. Newer chipsets handle DMA
575 * during C3 automatically and BM_RLD is a NOP.
576 * In either case, the proper way to
577 * handle BM_RLD is to set it and leave it set.
578 */
Bob Moore50ffba12009-02-23 15:02:07 +0800579 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Patrick Mocheld550d982006-06-27 00:41:40 -0400581 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static int acpi_processor_power_verify(struct acpi_processor *pr)
585{
586 unsigned int i;
587 unsigned int working = 0;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100588
Thomas Gleixner169a0ab2007-02-16 01:27:55 -0800589 pr->power.timer_broadcast_on_state = INT_MAX;
Venkatesh Pallipadi6eb0a0f2006-01-11 22:44:21 +0100590
Len Browna0bf2842009-05-15 01:29:31 -0400591 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct acpi_processor_cx *cx = &pr->power.states[i];
593
594 switch (cx->type) {
595 case ACPI_STATE_C1:
596 cx->valid = 1;
597 break;
598
599 case ACPI_STATE_C2:
Len Brownd22edd22010-01-19 23:29:09 -0500600 if (!cx->address)
601 break;
602 cx->valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 break;
604
605 case ACPI_STATE_C3:
606 acpi_processor_power_verify_c3(pr, cx);
607 break;
608 }
Len Brown7e275cc2009-05-15 02:08:44 -0400609 if (!cx->valid)
610 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Len Brown7e275cc2009-05-15 02:08:44 -0400612 lapic_timer_check_state(i, pr, cx);
613 tsc_check_state(cx->type);
614 working++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Hidetoshi Seto918aae42009-12-14 17:10:06 +0900617 lapic_timer_propagate_broadcast(pr);
Andi Kleenbd663342006-03-25 16:31:07 +0100618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return (working);
620}
621
Len Brown4be44fc2005-08-05 00:44:28 -0400622static int acpi_processor_get_power_info(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 unsigned int i;
625 int result;
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 /* NOTE: the idle thread may not be running while calling
629 * this function */
630
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700631 /* Zero initialize all the C-states info. */
632 memset(pr->power.states, 0, sizeof(pr->power.states));
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 result = acpi_processor_get_power_info_cst(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400635 if (result == -ENODEV)
Darrick J. Wongc5a114f2006-10-19 23:28:28 -0700636 result = acpi_processor_get_power_info_fadt(pr);
Venkatesh Pallipadi6d93c642005-09-15 12:19:00 -0400637
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700638 if (result)
639 return result;
640
641 acpi_processor_get_power_info_default(pr);
642
Janosch Machowinskicf824782005-08-20 08:02:00 -0400643 pr->power.count = acpi_processor_power_verify(pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /*
646 * if one state of type C2 or C3 is available, mark this
647 * CPU as being "idle manageable"
648 */
649 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500650 if (pr->power.states[i].valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 pr->power.count = i;
Linus Torvalds2203d6e2005-11-18 07:29:51 -0800652 if (pr->power.states[i].type >= ACPI_STATE_C2)
653 pr->flags.power = 1;
Venkatesh Pallipadiacf05f42005-03-31 23:23:15 -0500654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Patrick Mocheld550d982006-06-27 00:41:40 -0400657 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Len Brown4f86d3a2007-10-03 18:58:00 -0400660/**
661 * acpi_idle_bm_check - checks if bus master activity was detected
662 */
663static int acpi_idle_bm_check(void)
664{
665 u32 bm_status = 0;
666
Len Brownd3e7e992010-07-22 17:23:10 -0400667 if (bm_check_disable)
668 return 0;
669
Bob Moore50ffba12009-02-23 15:02:07 +0800670 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
Len Brown4f86d3a2007-10-03 18:58:00 -0400671 if (bm_status)
Bob Moore50ffba12009-02-23 15:02:07 +0800672 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400673 /*
674 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
675 * the true state of bus mastering activity; forcing us to
676 * manually check the BMIDEA bit of each IDE channel.
677 */
678 else if (errata.piix4.bmisx) {
679 if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
680 || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
681 bm_status = 1;
682 }
683 return bm_status;
684}
685
686/**
Len Brown4f86d3a2007-10-03 18:58:00 -0400687 * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
688 * @cx: cstate data
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800689 *
690 * Caller disables interrupt before call and enables interrupt after return.
Len Brown4f86d3a2007-10-03 18:58:00 -0400691 */
692static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
693{
Steven Rostedtdcf30992008-07-25 18:00:42 -0400694 /* Don't trace irqs off for idle */
695 stop_critical_timings();
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800696 if (cx->entry_method == ACPI_CSTATE_FFH) {
Len Brown4f86d3a2007-10-03 18:58:00 -0400697 /* Call into architectural FFH based C-state */
698 acpi_processor_ffh_cstate_enter(cx);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800699 } else if (cx->entry_method == ACPI_CSTATE_HALT) {
700 acpi_safe_halt();
Len Brown4f86d3a2007-10-03 18:58:00 -0400701 } else {
Len Brown4f86d3a2007-10-03 18:58:00 -0400702 /* IO port based C-state */
703 inb(cx->address);
704 /* Dummy wait op - must do something useless after P_LVL2 read
705 because chipsets cannot guarantee that STPCLK# signal
706 gets asserted in time to freeze execution properly. */
Andi Kleencfa806f2010-07-20 15:18:36 -0700707 inl(acpi_gbl_FADT.xpm_timer_block.address);
Len Brown4f86d3a2007-10-03 18:58:00 -0400708 }
Steven Rostedtdcf30992008-07-25 18:00:42 -0400709 start_critical_timings();
Len Brown4f86d3a2007-10-03 18:58:00 -0400710}
711
712/**
713 * acpi_idle_enter_c1 - enters an ACPI C1 state-type
714 * @dev: the target CPU
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530715 * @drv: cpuidle driver containing cpuidle state info
Deepthi Dharware978aa72011-10-28 16:20:09 +0530716 * @index: index of target state
Len Brown4f86d3a2007-10-03 18:58:00 -0400717 *
718 * This is equivalent to the HALT instruction.
719 */
720static int acpi_idle_enter_c1(struct cpuidle_device *dev,
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530721 struct cpuidle_driver *drv, int index)
Len Brown4f86d3a2007-10-03 18:58:00 -0400722{
723 struct acpi_processor *pr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530724 struct cpuidle_state_usage *state_usage = &dev->states_usage[index];
725 struct acpi_processor_cx *cx = cpuidle_get_statedata(state_usage);
venkatesh.pallipadi@intel.com9b12e182008-01-31 17:35:05 -0800726
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600727 pr = __this_cpu_read(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400728
729 if (unlikely(!pr))
Deepthi Dharware978aa72011-10-28 16:20:09 +0530730 return -EINVAL;
Len Brown4f86d3a2007-10-03 18:58:00 -0400731
Len Brown7e275cc2009-05-15 02:08:44 -0400732 lapic_timer_state_broadcast(pr, cx, 1);
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -0800733 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -0400734
Len Brown7e275cc2009-05-15 02:08:44 -0400735 lapic_timer_state_broadcast(pr, cx, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -0400736
Deepthi Dharware978aa72011-10-28 16:20:09 +0530737 return index;
Len Brown4f86d3a2007-10-03 18:58:00 -0400738}
739
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100740
741/**
742 * acpi_idle_play_dead - enters an ACPI state for long-term idle (i.e. off-lining)
743 * @dev: the target CPU
744 * @index: the index of suggested state
745 */
746static int acpi_idle_play_dead(struct cpuidle_device *dev, int index)
747{
748 struct cpuidle_state_usage *state_usage = &dev->states_usage[index];
749 struct acpi_processor_cx *cx = cpuidle_get_statedata(state_usage);
750
751 ACPI_FLUSH_CPU_CACHE();
752
753 while (1) {
754
755 if (cx->entry_method == ACPI_CSTATE_HALT)
Luck, Tony54f70072012-04-03 09:37:28 -0700756 safe_halt();
Boris Ostrovsky1a022e32012-03-13 19:55:09 +0100757 else if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) {
758 inb(cx->address);
759 /* See comment in acpi_idle_do_entry() */
760 inl(acpi_gbl_FADT.xpm_timer_block.address);
761 } else
762 return -ENODEV;
763 }
764
765 /* Never reached */
766 return 0;
767}
768
Len Brown4f86d3a2007-10-03 18:58:00 -0400769/**
770 * acpi_idle_enter_simple - enters an ACPI state without BM handling
771 * @dev: the target CPU
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530772 * @drv: cpuidle driver with cpuidle state information
Deepthi Dharware978aa72011-10-28 16:20:09 +0530773 * @index: the index of suggested state
Len Brown4f86d3a2007-10-03 18:58:00 -0400774 */
775static int acpi_idle_enter_simple(struct cpuidle_device *dev,
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530776 struct cpuidle_driver *drv, int index)
Len Brown4f86d3a2007-10-03 18:58:00 -0400777{
778 struct acpi_processor *pr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530779 struct cpuidle_state_usage *state_usage = &dev->states_usage[index];
780 struct acpi_processor_cx *cx = cpuidle_get_statedata(state_usage);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500781
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600782 pr = __this_cpu_read(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400783
784 if (unlikely(!pr))
Deepthi Dharware978aa72011-10-28 16:20:09 +0530785 return -EINVAL;
Len Browne1964412007-10-04 01:23:47 -0400786
Pallipadi, Venkateshd306ebc2010-02-10 10:35:31 -0800787 if (cx->entry_method != ACPI_CSTATE_FFH) {
788 current_thread_info()->status &= ~TS_POLLING;
789 /*
790 * TS_POLLING-cleared state must be visible before we test
791 * NEED_RESCHED:
792 */
793 smp_mb();
Len Brown4f86d3a2007-10-03 18:58:00 -0400794
Len Brown02cf4f92010-05-24 14:27:44 -0400795 if (unlikely(need_resched())) {
796 current_thread_info()->status |= TS_POLLING;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530797 return -EINVAL;
Len Brown02cf4f92010-05-24 14:27:44 -0400798 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400799 }
800
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100801 /*
802 * Must be done before busmaster disable as we might need to
803 * access HPET !
804 */
Len Brown7e275cc2009-05-15 02:08:44 -0400805 lapic_timer_state_broadcast(pr, cx, 1);
Thomas Gleixnere17bcb42007-12-07 19:16:17 +0100806
Len Brown4f86d3a2007-10-03 18:58:00 -0400807 if (cx->type == ACPI_STATE_C3)
808 ACPI_FLUSH_CPU_CACHE();
809
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500810 /* Tell the scheduler that we are going deep-idle: */
811 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -0400812 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -0400813
Julius Wernera474a512012-11-27 14:17:58 +0100814 sched_clock_idle_wakeup_event(0);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530815
Len Brown02cf4f92010-05-24 14:27:44 -0400816 if (cx->entry_method != ACPI_CSTATE_FFH)
817 current_thread_info()->status |= TS_POLLING;
Len Brown4f86d3a2007-10-03 18:58:00 -0400818
Len Brown7e275cc2009-05-15 02:08:44 -0400819 lapic_timer_state_broadcast(pr, cx, 0);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530820 return index;
Len Brown4f86d3a2007-10-03 18:58:00 -0400821}
822
823static int c3_cpu_count;
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200824static DEFINE_RAW_SPINLOCK(c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400825
826/**
827 * acpi_idle_enter_bm - enters C3 with proper BM handling
828 * @dev: the target CPU
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530829 * @drv: cpuidle driver containing state data
Deepthi Dharware978aa72011-10-28 16:20:09 +0530830 * @index: the index of suggested state
Len Brown4f86d3a2007-10-03 18:58:00 -0400831 *
832 * If BM is detected, the deepest non-C3 idle state is entered instead.
833 */
834static int acpi_idle_enter_bm(struct cpuidle_device *dev,
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530835 struct cpuidle_driver *drv, int index)
Len Brown4f86d3a2007-10-03 18:58:00 -0400836{
837 struct acpi_processor *pr;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530838 struct cpuidle_state_usage *state_usage = &dev->states_usage[index];
839 struct acpi_processor_cx *cx = cpuidle_get_statedata(state_usage);
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500840
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600841 pr = __this_cpu_read(processors);
Len Brown4f86d3a2007-10-03 18:58:00 -0400842
843 if (unlikely(!pr))
Deepthi Dharware978aa72011-10-28 16:20:09 +0530844 return -EINVAL;
Len Brown4f86d3a2007-10-03 18:58:00 -0400845
Len Brown718be4a2010-07-22 16:54:27 -0400846 if (!cx->bm_sts_skip && acpi_idle_bm_check()) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530847 if (drv->safe_state_index >= 0) {
848 return drv->states[drv->safe_state_index].enter(dev,
849 drv, drv->safe_state_index);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500850 } else {
Preeti U Murthy8651f972012-07-09 10:12:56 +0200851 acpi_safe_halt();
Deepthi Dharwar75cc5232012-06-25 23:59:54 +0200852 return -EBUSY;
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500853 }
854 }
855
Pallipadi, Venkateshd306ebc2010-02-10 10:35:31 -0800856 if (cx->entry_method != ACPI_CSTATE_FFH) {
857 current_thread_info()->status &= ~TS_POLLING;
858 /*
859 * TS_POLLING-cleared state must be visible before we test
860 * NEED_RESCHED:
861 */
862 smp_mb();
Len Brown4f86d3a2007-10-03 18:58:00 -0400863
Len Brown02cf4f92010-05-24 14:27:44 -0400864 if (unlikely(need_resched())) {
865 current_thread_info()->status |= TS_POLLING;
Deepthi Dharware978aa72011-10-28 16:20:09 +0530866 return -EINVAL;
Len Brown02cf4f92010-05-24 14:27:44 -0400867 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400868 }
869
Venki Pallipadi996520c2008-03-24 14:24:10 -0700870 acpi_unlazy_tlb(smp_processor_id());
871
Venkatesh Pallipadi50629112007-11-19 19:49:00 -0500872 /* Tell the scheduler that we are going deep-idle: */
873 sched_clock_idle_sleep_event();
Len Brown4f86d3a2007-10-03 18:58:00 -0400874 /*
875 * Must be done before busmaster disable as we might need to
876 * access HPET !
877 */
Len Brown7e275cc2009-05-15 02:08:44 -0400878 lapic_timer_state_broadcast(pr, cx, 1);
Len Brown4f86d3a2007-10-03 18:58:00 -0400879
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500880 /*
881 * disable bus master
882 * bm_check implies we need ARB_DIS
883 * !bm_check implies we need cache flush
884 * bm_control implies whether we can do ARB_DIS
885 *
886 * That leaves a case where bm_check is set and bm_control is
887 * not set. In that case we cannot do much, we enter C3
888 * without doing anything.
889 */
890 if (pr->flags.bm_check && pr->flags.bm_control) {
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200891 raw_spin_lock(&c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400892 c3_cpu_count++;
893 /* Disable bus master arbitration when all CPUs are in C3 */
894 if (c3_cpu_count == num_online_cpus())
Bob Moore50ffba12009-02-23 15:02:07 +0800895 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 1);
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200896 raw_spin_unlock(&c3_lock);
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500897 } else if (!pr->flags.bm_check) {
898 ACPI_FLUSH_CPU_CACHE();
899 }
Len Brown4f86d3a2007-10-03 18:58:00 -0400900
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500901 acpi_idle_do_entry(cx);
Len Brown4f86d3a2007-10-03 18:58:00 -0400902
Venkatesh Pallipadiddc081a2007-11-19 21:43:22 -0500903 /* Re-enable bus master arbitration */
904 if (pr->flags.bm_check && pr->flags.bm_control) {
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200905 raw_spin_lock(&c3_lock);
Bob Moore50ffba12009-02-23 15:02:07 +0800906 acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 0);
Len Brown4f86d3a2007-10-03 18:58:00 -0400907 c3_cpu_count--;
Thomas Gleixnere12f65f2009-07-25 18:14:37 +0200908 raw_spin_unlock(&c3_lock);
Len Brown4f86d3a2007-10-03 18:58:00 -0400909 }
910
Julius Wernera474a512012-11-27 14:17:58 +0100911 sched_clock_idle_wakeup_event(0);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530912
Len Brown02cf4f92010-05-24 14:27:44 -0400913 if (cx->entry_method != ACPI_CSTATE_FFH)
914 current_thread_info()->status |= TS_POLLING;
Len Brown4f86d3a2007-10-03 18:58:00 -0400915
Len Brown7e275cc2009-05-15 02:08:44 -0400916 lapic_timer_state_broadcast(pr, cx, 0);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530917 return index;
Len Brown4f86d3a2007-10-03 18:58:00 -0400918}
919
920struct cpuidle_driver acpi_idle_driver = {
921 .name = "acpi_idle",
922 .owner = THIS_MODULE,
Julius Wernera474a512012-11-27 14:17:58 +0100923 .en_core_tk_irqen = 1,
Len Brown4f86d3a2007-10-03 18:58:00 -0400924};
925
926/**
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530927 * acpi_processor_setup_cpuidle_cx - prepares and configures CPUIDLE
928 * device i.e. per-cpu data
929 *
Len Brown4f86d3a2007-10-03 18:58:00 -0400930 * @pr: the ACPI processor
Daniel Lezcano6ef0f082013-02-04 22:44:42 +0000931 * @dev : the cpuidle device
Len Brown4f86d3a2007-10-03 18:58:00 -0400932 */
Daniel Lezcano6ef0f082013-02-04 22:44:42 +0000933static int acpi_processor_setup_cpuidle_cx(struct acpi_processor *pr,
934 struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400935{
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -0800936 int i, count = CPUIDLE_DRIVER_STATE_START;
Len Brown4f86d3a2007-10-03 18:58:00 -0400937 struct acpi_processor_cx *cx;
Deepthi Dharwar42027352011-10-28 16:20:33 +0530938 struct cpuidle_state_usage *state_usage;
Len Brown4f86d3a2007-10-03 18:58:00 -0400939
940 if (!pr->flags.power_setup_done)
941 return -EINVAL;
942
943 if (pr->flags.power == 0) {
944 return -EINVAL;
945 }
946
Konrad Rzeszutek Wilkb88a6342013-01-16 23:40:07 +0100947 if (!dev)
948 return -EINVAL;
949
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -0400950 dev->cpu = pr->id;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -0800951
Len Brown615dfd92009-04-23 23:21:29 -0400952 if (max_cstate == 0)
953 max_cstate = 1;
954
Len Brown4f86d3a2007-10-03 18:58:00 -0400955 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
956 cx = &pr->power.states[i];
Deepthi Dharwar42027352011-10-28 16:20:33 +0530957 state_usage = &dev->states_usage[count];
Len Brown4f86d3a2007-10-03 18:58:00 -0400958
959 if (!cx->valid)
960 continue;
961
962#ifdef CONFIG_HOTPLUG_CPU
963 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
964 !pr->flags.has_cst &&
965 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
966 continue;
967#endif
Len Brown4f86d3a2007-10-03 18:58:00 -0400968
Deepthi Dharwar42027352011-10-28 16:20:33 +0530969 cpuidle_set_statedata(state_usage, cx);
Len Brown4f86d3a2007-10-03 18:58:00 -0400970
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530971 count++;
972 if (count == CPUIDLE_STATE_MAX)
973 break;
974 }
975
976 dev->state_count = count;
977
978 if (!count)
979 return -EINVAL;
980
981 return 0;
982}
983
984/**
985 * acpi_processor_setup_cpuidle states- prepares and configures cpuidle
986 * global state data i.e. idle routines
987 *
988 * @pr: the ACPI processor
989 */
990static int acpi_processor_setup_cpuidle_states(struct acpi_processor *pr)
991{
992 int i, count = CPUIDLE_DRIVER_STATE_START;
993 struct acpi_processor_cx *cx;
994 struct cpuidle_state *state;
995 struct cpuidle_driver *drv = &acpi_idle_driver;
996
997 if (!pr->flags.power_setup_done)
998 return -EINVAL;
999
1000 if (pr->flags.power == 0)
1001 return -EINVAL;
1002
1003 drv->safe_state_index = -1;
1004 for (i = 0; i < CPUIDLE_STATE_MAX; i++) {
1005 drv->states[i].name[0] = '\0';
1006 drv->states[i].desc[0] = '\0';
1007 }
1008
1009 if (max_cstate == 0)
1010 max_cstate = 1;
1011
1012 for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
1013 cx = &pr->power.states[i];
1014
1015 if (!cx->valid)
1016 continue;
1017
1018#ifdef CONFIG_HOTPLUG_CPU
1019 if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
1020 !pr->flags.has_cst &&
1021 !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
1022 continue;
1023#endif
1024
1025 state = &drv->states[count];
Len Brown4f86d3a2007-10-03 18:58:00 -04001026 snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -08001027 strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
Len Brown4f86d3a2007-10-03 18:58:00 -04001028 state->exit_latency = cx->latency;
Len Brown4963f622007-12-13 23:50:45 -05001029 state->target_residency = cx->latency * latency_factor;
Len Brown4f86d3a2007-10-03 18:58:00 -04001030
1031 state->flags = 0;
1032 switch (cx->type) {
1033 case ACPI_STATE_C1:
Venki Pallipadi8e92b662008-02-29 10:24:32 -08001034 if (cx->entry_method == ACPI_CSTATE_FFH)
1035 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1036
Len Brown4f86d3a2007-10-03 18:58:00 -04001037 state->enter = acpi_idle_enter_c1;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +01001038 state->enter_dead = acpi_idle_play_dead;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301039 drv->safe_state_index = count;
Len Brown4f86d3a2007-10-03 18:58:00 -04001040 break;
1041
1042 case ACPI_STATE_C2:
Len Brown4f86d3a2007-10-03 18:58:00 -04001043 state->flags |= CPUIDLE_FLAG_TIME_VALID;
1044 state->enter = acpi_idle_enter_simple;
Boris Ostrovsky1a022e32012-03-13 19:55:09 +01001045 state->enter_dead = acpi_idle_play_dead;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301046 drv->safe_state_index = count;
Len Brown4f86d3a2007-10-03 18:58:00 -04001047 break;
1048
1049 case ACPI_STATE_C3:
Len Brown4f86d3a2007-10-03 18:58:00 -04001050 state->flags |= CPUIDLE_FLAG_TIME_VALID;
Len Brown4f86d3a2007-10-03 18:58:00 -04001051 state->enter = pr->flags.bm_check ?
1052 acpi_idle_enter_bm :
1053 acpi_idle_enter_simple;
1054 break;
1055 }
1056
1057 count++;
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -08001058 if (count == CPUIDLE_STATE_MAX)
1059 break;
Len Brown4f86d3a2007-10-03 18:58:00 -04001060 }
1061
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301062 drv->state_count = count;
Len Brown4f86d3a2007-10-03 18:58:00 -04001063
1064 if (!count)
1065 return -EINVAL;
1066
Len Brown4f86d3a2007-10-03 18:58:00 -04001067 return 0;
1068}
1069
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301070int acpi_processor_hotplug(struct acpi_processor *pr)
Len Brown4f86d3a2007-10-03 18:58:00 -04001071{
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001072 int ret = 0;
Wei Yongjune8b1b592012-10-08 08:40:42 +08001073 struct cpuidle_device *dev;
Len Brown4f86d3a2007-10-03 18:58:00 -04001074
Thomas Renningerd1896042010-11-03 17:06:14 +01001075 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001076 return 0;
1077
Len Brown4f86d3a2007-10-03 18:58:00 -04001078 if (!pr)
1079 return -EINVAL;
1080
1081 if (nocst) {
1082 return -ENODEV;
1083 }
1084
1085 if (!pr->flags.power_setup_done)
1086 return -ENODEV;
1087
Wei Yongjune8b1b592012-10-08 08:40:42 +08001088 dev = per_cpu(acpi_cpuidle_device, pr->id);
Len Brown4f86d3a2007-10-03 18:58:00 -04001089 cpuidle_pause_and_lock();
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001090 cpuidle_disable_device(dev);
Len Brown4f86d3a2007-10-03 18:58:00 -04001091 acpi_processor_get_power_info(pr);
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001092 if (pr->flags.power) {
Daniel Lezcano6ef0f082013-02-04 22:44:42 +00001093 acpi_processor_setup_cpuidle_cx(pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001094 ret = cpuidle_enable_device(dev);
Venkatesh Pallipadidcb84f32008-05-19 19:09:27 -04001095 }
Len Brown4f86d3a2007-10-03 18:58:00 -04001096 cpuidle_resume_and_unlock();
1097
1098 return ret;
1099}
1100
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301101int acpi_processor_cst_has_changed(struct acpi_processor *pr)
1102{
1103 int cpu;
1104 struct acpi_processor *_pr;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001105 struct cpuidle_device *dev;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301106
1107 if (disabled_by_idle_boot_param())
1108 return 0;
1109
1110 if (!pr)
1111 return -EINVAL;
1112
1113 if (nocst)
1114 return -ENODEV;
1115
1116 if (!pr->flags.power_setup_done)
1117 return -ENODEV;
1118
1119 /*
1120 * FIXME: Design the ACPI notification to make it once per
1121 * system instead of once per-cpu. This condition is a hack
1122 * to make the code that updates C-States be called once.
1123 */
1124
Paul E. McKenney95056262012-02-28 13:27:44 -08001125 if (pr->id == 0 && cpuidle_get_driver() == &acpi_idle_driver) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301126
1127 cpuidle_pause_and_lock();
1128 /* Protect against cpu-hotplug */
1129 get_online_cpus();
1130
1131 /* Disable all cpuidle devices */
1132 for_each_online_cpu(cpu) {
1133 _pr = per_cpu(processors, cpu);
1134 if (!_pr || !_pr->flags.power_setup_done)
1135 continue;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001136 dev = per_cpu(acpi_cpuidle_device, cpu);
1137 cpuidle_disable_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301138 }
1139
1140 /* Populate Updated C-state information */
Thomas Schlichterf427e5f2013-01-19 00:28:22 +01001141 acpi_processor_get_power_info(pr);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301142 acpi_processor_setup_cpuidle_states(pr);
1143
1144 /* Enable all cpuidle devices */
1145 for_each_online_cpu(cpu) {
1146 _pr = per_cpu(processors, cpu);
1147 if (!_pr || !_pr->flags.power_setup_done)
1148 continue;
1149 acpi_processor_get_power_info(_pr);
1150 if (_pr->flags.power) {
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001151 dev = per_cpu(acpi_cpuidle_device, cpu);
Daniel Lezcano6ef0f082013-02-04 22:44:42 +00001152 acpi_processor_setup_cpuidle_cx(_pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001153 cpuidle_enable_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301154 }
1155 }
1156 put_online_cpus();
1157 cpuidle_resume_and_unlock();
1158 }
1159
1160 return 0;
1161}
1162
1163static int acpi_processor_registered;
1164
Daniel Lezcano38a991b2012-09-15 22:42:54 +02001165int __cpuinit acpi_processor_power_init(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Len Brown4be44fc2005-08-05 00:44:28 -04001167 acpi_status status = 0;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301168 int retval;
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001169 struct cpuidle_device *dev;
Andreas Mohrb6835052006-04-27 05:25:00 -04001170 static int first_run;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Thomas Renningerd1896042010-11-03 17:06:14 +01001172 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 if (!first_run) {
1176 dmi_check_system(processor_power_dmi_table);
Alexey Starikovskiyc1c30632007-11-26 20:42:19 +01001177 max_cstate = acpi_processor_cstate_check(max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (max_cstate < ACPI_C_STATES_MAX)
Len Brown4be44fc2005-08-05 00:44:28 -04001179 printk(KERN_NOTICE
1180 "ACPI: processor limited to max C-state %d\n",
1181 max_cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 first_run++;
1183 }
1184
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001185 if (!pr)
Patrick Mocheld550d982006-06-27 00:41:40 -04001186 return -EINVAL;
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04001187
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001188 if (acpi_gbl_FADT.cst_control && !nocst) {
Len Brown4be44fc2005-08-05 00:44:28 -04001189 status =
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001190 acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001192 ACPI_EXCEPTION((AE_INFO, status,
1193 "Notifying BIOS of _CST ability failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195 }
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 acpi_processor_get_power_info(pr);
Len Brown4f86d3a2007-10-03 18:58:00 -04001198 pr->flags.power_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 /*
1201 * Install the idle handler if processor power management is supported.
1202 * Note that we use previously set idle handler will be used on
1203 * platforms that only support C1.
1204 */
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001205 if (pr->flags.power) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301206 /* Register acpi_idle_driver if not already registered */
1207 if (!acpi_processor_registered) {
1208 acpi_processor_setup_cpuidle_states(pr);
1209 retval = cpuidle_register_driver(&acpi_idle_driver);
1210 if (retval)
1211 return retval;
1212 printk(KERN_DEBUG "ACPI: %s registered with cpuidle\n",
1213 acpi_idle_driver.name);
1214 }
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001215
1216 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1217 if (!dev)
1218 return -ENOMEM;
1219 per_cpu(acpi_cpuidle_device, pr->id) = dev;
1220
Daniel Lezcano6ef0f082013-02-04 22:44:42 +00001221 acpi_processor_setup_cpuidle_cx(pr, dev);
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001222
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301223 /* Register per-cpu cpuidle_device. Cpuidle driver
1224 * must already be registered before registering device
1225 */
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001226 retval = cpuidle_register_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301227 if (retval) {
1228 if (acpi_processor_registered == 0)
1229 cpuidle_unregister_driver(&acpi_idle_driver);
1230 return retval;
1231 }
1232 acpi_processor_registered++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Daniel Lezcano38a991b2012-09-15 22:42:54 +02001237int acpi_processor_power_exit(struct acpi_processor *pr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001239 struct cpuidle_device *dev = per_cpu(acpi_cpuidle_device, pr->id);
1240
Thomas Renningerd1896042010-11-03 17:06:14 +01001241 if (disabled_by_idle_boot_param())
Venkatesh Pallipadi36a91352008-04-30 13:57:15 -04001242 return 0;
1243
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301244 if (pr->flags.power) {
Daniel Lezcano3d339dc2012-09-17 23:01:56 +02001245 cpuidle_unregister_device(dev);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301246 acpi_processor_registered--;
1247 if (acpi_processor_registered == 0)
1248 cpuidle_unregister_driver(&acpi_idle_driver);
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +05301251 pr->flags.power_setup_done = 0;
Patrick Mocheld550d982006-06-27 00:41:40 -04001252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}