Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Brodowski | c5ab81c | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 6 | * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
| 8 | * - Added processor hotplug support |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 9 | * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> |
| 10 | * - Added support for C3 on SMP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or (at |
| 17 | * your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, but |
| 20 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 22 | * General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License along |
| 25 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 26 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 27 | * |
| 28 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 29 | */ |
| 30 | |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/cpufreq.h> |
| 35 | #include <linux/proc_fs.h> |
| 36 | #include <linux/seq_file.h> |
| 37 | #include <linux/acpi.h> |
| 38 | #include <linux/dmi.h> |
| 39 | #include <linux/moduleparam.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 40 | #include <linux/sched.h> /* need_resched() */ |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 41 | #include <linux/pm_qos_params.h> |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 42 | #include <linux/clockchips.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 43 | #include <linux/cpuidle.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Thomas Gleixner | 3434933 | 2007-02-16 01:27:54 -0800 | [diff] [blame] | 45 | /* |
| 46 | * Include the apic definitions for x86 to have the APIC timer related defines |
| 47 | * available also for UP (on SMP it gets magically included via linux/smp.h). |
| 48 | * asm/acpi.h is not an option, as it would require more include magic. Also |
| 49 | * creating an empty asm-ia64/apic.h would just trade pest vs. cholera. |
| 50 | */ |
| 51 | #ifdef CONFIG_X86 |
| 52 | #include <asm/apic.h> |
| 53 | #endif |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <asm/io.h> |
| 56 | #include <asm/uaccess.h> |
| 57 | |
| 58 | #include <acpi/acpi_bus.h> |
| 59 | #include <acpi/processor.h> |
| 60 | |
| 61 | #define ACPI_PROCESSOR_COMPONENT 0x01000000 |
| 62 | #define ACPI_PROCESSOR_CLASS "processor" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define _COMPONENT ACPI_PROCESSOR_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 64 | ACPI_MODULE_NAME("processor_idle"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #define ACPI_PROCESSOR_FILE_POWER "power" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000) |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 67 | #define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY) |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 68 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */ |
| 70 | #define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */ |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 71 | static void (*pm_idle_save) (void) __read_mostly; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 72 | #else |
| 73 | #define C2_OVERHEAD 1 /* 1us */ |
| 74 | #define C3_OVERHEAD 1 /* 1us */ |
| 75 | #endif |
| 76 | #define PM_TIMER_TICKS_TO_US(p) (((p) * 1000)/(PM_TIMER_FREQUENCY/1000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 78 | static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER; |
Venki Pallipadi | 5b3f0e6 | 2008-01-07 17:50:10 -0500 | [diff] [blame] | 79 | #ifdef CONFIG_CPU_IDLE |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 80 | module_param(max_cstate, uint, 0000); |
Venki Pallipadi | 5b3f0e6 | 2008-01-07 17:50:10 -0500 | [diff] [blame] | 81 | #else |
| 82 | module_param(max_cstate, uint, 0644); |
| 83 | #endif |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 84 | static unsigned int nocst __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | module_param(nocst, uint, 0000); |
| 86 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 87 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* |
| 89 | * bm_history -- bit-mask with a bit per jiffy of bus-master activity |
| 90 | * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms |
| 91 | * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms |
| 92 | * 100 HZ: 0x0000000F: 4 jiffies = 40ms |
| 93 | * reduce history for more aggressive entry into C3 |
| 94 | */ |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 95 | static unsigned int bm_history __read_mostly = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 96 | (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | module_param(bm_history, uint, 0644); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 98 | |
| 99 | static int acpi_processor_set_power_policy(struct acpi_processor *pr); |
| 100 | |
Len Brown | 4963f62 | 2007-12-13 23:50:45 -0500 | [diff] [blame] | 101 | #else /* CONFIG_CPU_IDLE */ |
Len Brown | 25de571 | 2007-12-14 00:24:15 -0500 | [diff] [blame] | 102 | static unsigned int latency_factor __read_mostly = 2; |
Len Brown | 4963f62 | 2007-12-13 23:50:45 -0500 | [diff] [blame] | 103 | module_param(latency_factor, uint, 0644); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 104 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3. |
| 108 | * For now disable this. Probably a bug somewhere else. |
| 109 | * |
| 110 | * To skip this limit, boot/load with a large max_cstate limit. |
| 111 | */ |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 112 | static int set_max_cstate(const struct dmi_system_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | if (max_cstate > ACPI_PROCESSOR_MAX_POWER) |
| 115 | return 0; |
| 116 | |
Len Brown | 3d35600 | 2005-08-03 00:22:52 -0400 | [diff] [blame] | 117 | printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate." |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 118 | " Override with \"processor.max_cstate=%d\"\n", id->ident, |
| 119 | (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Len Brown | 3d35600 | 2005-08-03 00:22:52 -0400 | [diff] [blame] | 121 | max_cstate = (long)id->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
Ashok Raj | 7ded568 | 2006-02-03 21:51:23 +0100 | [diff] [blame] | 126 | /* Actually this shouldn't be __cpuinitdata, would be better to fix the |
| 127 | callers to only run once -AK */ |
| 128 | static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = { |
Thomas Rosner | 876c184 | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 129 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 130 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
Bartlomiej Swiercz | f831335 | 2006-05-29 07:16:00 -0400 | [diff] [blame] | 131 | DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1}, |
| 132 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 133 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
Thomas Rosner | 876c184 | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 134 | DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1}, |
| 135 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 136 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 137 | DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1}, |
| 138 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 139 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 140 | DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1}, |
| 141 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 142 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 143 | DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1}, |
| 144 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 145 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 146 | DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1}, |
| 147 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 148 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 149 | DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1}, |
| 150 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 151 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 152 | DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1}, |
| 153 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 154 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 155 | DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1}, |
| 156 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 157 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 158 | DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1}, |
| 159 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 160 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 161 | DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1}, |
| 162 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 163 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 164 | DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1}, |
| 165 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 166 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 167 | DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1}, |
| 168 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 169 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 170 | DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1}, |
| 171 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 172 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 173 | DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1}, |
| 174 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 175 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 176 | DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1}, |
| 177 | { set_max_cstate, "Medion 41700", { |
| 178 | DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"), |
| 179 | DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1}, |
| 180 | { set_max_cstate, "Clevo 5600D", { |
| 181 | DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"), |
| 182 | DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")}, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | (void *)2}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | {}, |
| 185 | }; |
| 186 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 187 | static inline u32 ticks_elapsed(u32 t1, u32 t2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
| 189 | if (t2 >= t1) |
| 190 | return (t2 - t1); |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 191 | else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF); |
| 193 | else |
| 194 | return ((0xFFFFFFFF - t1) + t2); |
| 195 | } |
| 196 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 197 | static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2) |
| 198 | { |
| 199 | if (t2 >= t1) |
| 200 | return PM_TIMER_TICKS_TO_US(t2 - t1); |
| 201 | else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER)) |
| 202 | return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF); |
| 203 | else |
| 204 | return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2); |
| 205 | } |
| 206 | |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 207 | /* |
| 208 | * Callers should disable interrupts before the call and enable |
| 209 | * interrupts after return. |
| 210 | */ |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 211 | static void acpi_safe_halt(void) |
| 212 | { |
| 213 | current_thread_info()->status &= ~TS_POLLING; |
| 214 | /* |
| 215 | * TS_POLLING-cleared state must be visible before we |
| 216 | * test NEED_RESCHED: |
| 217 | */ |
| 218 | smp_mb(); |
| 219 | if (!need_resched()) |
| 220 | safe_halt(); |
| 221 | current_thread_info()->status |= TS_POLLING; |
| 222 | } |
| 223 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 224 | #ifndef CONFIG_CPU_IDLE |
| 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | static void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | acpi_processor_power_activate(struct acpi_processor *pr, |
| 228 | struct acpi_processor_cx *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | struct acpi_processor_cx *old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | if (!pr || !new) |
| 233 | return; |
| 234 | |
| 235 | old = pr->power.state; |
| 236 | |
| 237 | if (old) |
| 238 | old->promotion.count = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 239 | new->demotion.count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
| 241 | /* Cleanup from old state. */ |
| 242 | if (old) { |
| 243 | switch (old->type) { |
| 244 | case ACPI_STATE_C3: |
| 245 | /* Disable bus master reload */ |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 246 | if (new->type != ACPI_STATE_C3 && pr->flags.bm_check) |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 247 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | break; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | /* Prepare to use new state. */ |
| 253 | switch (new->type) { |
| 254 | case ACPI_STATE_C3: |
| 255 | /* Enable bus master reload */ |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 256 | if (old->type != ACPI_STATE_C3 && pr->flags.bm_check) |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 257 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | break; |
| 259 | } |
| 260 | |
| 261 | pr->power.state = new; |
| 262 | |
| 263 | return; |
| 264 | } |
| 265 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | static atomic_t c3_cpu_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 268 | /* Common C-state entry for C2, C3, .. */ |
| 269 | static void acpi_cstate_enter(struct acpi_processor_cx *cstate) |
| 270 | { |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 271 | if (cstate->entry_method == ACPI_CSTATE_FFH) { |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 272 | /* Call into architectural FFH based C-state */ |
| 273 | acpi_processor_ffh_cstate_enter(cstate); |
| 274 | } else { |
| 275 | int unused; |
| 276 | /* IO port based C-state */ |
| 277 | inb(cstate->address); |
| 278 | /* Dummy wait op - must do something useless after P_LVL2 read |
| 279 | because chipsets cannot guarantee that STPCLK# signal |
| 280 | gets asserted in time to freeze execution properly. */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 281 | unused = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 282 | } |
| 283 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 284 | #endif /* !CONFIG_CPU_IDLE */ |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 285 | |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 286 | #ifdef ARCH_APICTIMER_STOPS_ON_C3 |
| 287 | |
| 288 | /* |
| 289 | * Some BIOS implementations switch to C3 in the published C2 state. |
Linus Torvalds | 296d93c | 2007-03-23 08:03:47 -0700 | [diff] [blame] | 290 | * This seems to be a common problem on AMD boxen, but other vendors |
| 291 | * are affected too. We pick the most conservative approach: we assume |
| 292 | * that the local APIC stops in both C2 and C3. |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 293 | */ |
| 294 | static void acpi_timer_check_state(int state, struct acpi_processor *pr, |
| 295 | struct acpi_processor_cx *cx) |
| 296 | { |
| 297 | struct acpi_processor_power *pwr = &pr->power; |
Thomas Gleixner | e585bef | 2007-03-23 16:08:01 +0100 | [diff] [blame] | 298 | u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2; |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 299 | |
| 300 | /* |
| 301 | * Check, if one of the previous states already marked the lapic |
| 302 | * unstable |
| 303 | */ |
| 304 | if (pwr->timer_broadcast_on_state < state) |
| 305 | return; |
| 306 | |
Thomas Gleixner | e585bef | 2007-03-23 16:08:01 +0100 | [diff] [blame] | 307 | if (cx->type >= type) |
Linus Torvalds | 296d93c | 2007-03-23 08:03:47 -0700 | [diff] [blame] | 308 | pr->power.timer_broadcast_on_state = state; |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) |
| 312 | { |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 313 | unsigned long reason; |
| 314 | |
| 315 | reason = pr->power.timer_broadcast_on_state < INT_MAX ? |
| 316 | CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF; |
| 317 | |
| 318 | clockevents_notify(reason, &pr->id); |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | /* Power(C) State timer broadcast control */ |
| 322 | static void acpi_state_timer_broadcast(struct acpi_processor *pr, |
| 323 | struct acpi_processor_cx *cx, |
| 324 | int broadcast) |
| 325 | { |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 326 | int state = cx - pr->power.states; |
| 327 | |
| 328 | if (state >= pr->power.timer_broadcast_on_state) { |
| 329 | unsigned long reason; |
| 330 | |
| 331 | reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER : |
| 332 | CLOCK_EVT_NOTIFY_BROADCAST_EXIT; |
| 333 | clockevents_notify(reason, &pr->id); |
| 334 | } |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | #else |
| 338 | |
| 339 | static void acpi_timer_check_state(int state, struct acpi_processor *pr, |
| 340 | struct acpi_processor_cx *cstate) { } |
| 341 | static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { } |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 342 | static void acpi_state_timer_broadcast(struct acpi_processor *pr, |
| 343 | struct acpi_processor_cx *cx, |
| 344 | int broadcast) |
| 345 | { |
| 346 | } |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 347 | |
| 348 | #endif |
| 349 | |
Thomas Gleixner | b04e7bd | 2007-09-22 22:29:05 +0000 | [diff] [blame] | 350 | /* |
| 351 | * Suspend / resume control |
| 352 | */ |
| 353 | static int acpi_idle_suspend; |
| 354 | |
| 355 | int acpi_processor_suspend(struct acpi_device * device, pm_message_t state) |
| 356 | { |
| 357 | acpi_idle_suspend = 1; |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | int acpi_processor_resume(struct acpi_device * device) |
| 362 | { |
| 363 | acpi_idle_suspend = 0; |
| 364 | return 0; |
| 365 | } |
| 366 | |
Andi Kleen | ddb25f9 | 2008-01-30 13:32:41 +0100 | [diff] [blame] | 367 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) |
| 368 | static int tsc_halts_in_c(int state) |
| 369 | { |
| 370 | switch (boot_cpu_data.x86_vendor) { |
| 371 | case X86_VENDOR_AMD: |
| 372 | /* |
| 373 | * AMD Fam10h TSC will tick in all |
| 374 | * C/P/S0/S1 states when this bit is set. |
| 375 | */ |
| 376 | if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 377 | return 0; |
| 378 | /*FALL THROUGH*/ |
| 379 | case X86_VENDOR_INTEL: |
| 380 | /* Several cases known where TSC halts in C2 too */ |
| 381 | default: |
| 382 | return state > ACPI_STATE_C1; |
| 383 | } |
| 384 | } |
| 385 | #endif |
| 386 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 387 | #ifndef CONFIG_CPU_IDLE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 388 | static void acpi_processor_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 390 | struct acpi_processor *pr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | struct acpi_processor_cx *cx = NULL; |
| 392 | struct acpi_processor_cx *next_state = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 393 | int sleep_ticks = 0; |
| 394 | u32 t1, t2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | /* |
| 397 | * Interrupts must be disabled during bus mastering calculations and |
| 398 | * for C2/C3 transitions. |
| 399 | */ |
| 400 | local_irq_disable(); |
| 401 | |
Venkatesh Pallipadi | d5a3d32 | 2007-06-15 19:36:00 -0400 | [diff] [blame] | 402 | pr = processors[smp_processor_id()]; |
| 403 | if (!pr) { |
| 404 | local_irq_enable(); |
| 405 | return; |
| 406 | } |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /* |
| 409 | * Check whether we truly need to go idle, or should |
| 410 | * reschedule: |
| 411 | */ |
| 412 | if (unlikely(need_resched())) { |
| 413 | local_irq_enable(); |
| 414 | return; |
| 415 | } |
| 416 | |
| 417 | cx = pr->power.state; |
Thomas Gleixner | b04e7bd | 2007-09-22 22:29:05 +0000 | [diff] [blame] | 418 | if (!cx || acpi_idle_suspend) { |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 419 | if (pm_idle_save) |
| 420 | pm_idle_save(); |
| 421 | else |
| 422 | acpi_safe_halt(); |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 423 | |
| 424 | local_irq_enable(); |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 425 | return; |
| 426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 428 | /* |
| 429 | * Check BM Activity |
| 430 | * ----------------- |
| 431 | * Check for bus mastering activity (if required), record, and check |
| 432 | * for demotion. |
| 433 | */ |
| 434 | if (pr->flags.bm_check) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 435 | u32 bm_status = 0; |
| 436 | unsigned long diff = jiffies - pr->power.bm_check_timestamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Dominik Brodowski | c5ab81c | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 438 | if (diff > 31) |
| 439 | diff = 31; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
Dominik Brodowski | c5ab81c | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 441 | pr->power.bm_activity <<= diff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 443 | acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | if (bm_status) { |
Dominik Brodowski | c5ab81c | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 445 | pr->power.bm_activity |= 0x1; |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 446 | acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | /* |
| 449 | * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect |
| 450 | * the true state of bus mastering activity; forcing us to |
| 451 | * manually check the BMIDEA bit of each IDE channel. |
| 452 | */ |
| 453 | else if (errata.piix4.bmisx) { |
| 454 | if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 455 | || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01)) |
Dominik Brodowski | c5ab81c | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 456 | pr->power.bm_activity |= 0x1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | pr->power.bm_check_timestamp = jiffies; |
| 460 | |
| 461 | /* |
Dominik Brodowski | c4a001b | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 462 | * If bus mastering is or was active this jiffy, demote |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | * to avoid a faulty transition. Note that the processor |
| 464 | * won't enter a low-power state during this call (to this |
Dominik Brodowski | c4a001b | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 465 | * function) but should upon the next. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | * |
| 467 | * TBD: A better policy might be to fallback to the demotion |
| 468 | * state (use it for this quantum only) istead of |
| 469 | * demoting -- and rely on duration as our sole demotion |
| 470 | * qualification. This may, however, introduce DMA |
| 471 | * issues (e.g. floppy DMA transfer overrun/underrun). |
| 472 | */ |
Dominik Brodowski | c4a001b | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 473 | if ((pr->power.bm_activity & 0x1) && |
| 474 | cx->demotion.threshold.bm) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | local_irq_enable(); |
| 476 | next_state = cx->demotion.state; |
| 477 | goto end; |
| 478 | } |
| 479 | } |
| 480 | |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 481 | #ifdef CONFIG_HOTPLUG_CPU |
| 482 | /* |
| 483 | * Check for P_LVL2_UP flag before entering C2 and above on |
| 484 | * an SMP system. We do it here instead of doing it at _CST/P_LVL |
| 485 | * detection phase, to work cleanly with logical CPU hotplug. |
| 486 | */ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 487 | if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) && |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 488 | !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 489 | cx = &pr->power.states[ACPI_STATE_C1]; |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 490 | #endif |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | /* |
| 493 | * Sleep: |
| 494 | * ------ |
| 495 | * Invoke the current Cx state to put the processor to sleep. |
| 496 | */ |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 497 | if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 498 | current_thread_info()->status &= ~TS_POLLING; |
Ingo Molnar | 0888f06 | 2006-12-22 01:11:56 -0800 | [diff] [blame] | 499 | /* |
| 500 | * TS_POLLING-cleared state must be visible before we |
| 501 | * test NEED_RESCHED: |
| 502 | */ |
| 503 | smp_mb(); |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 504 | if (need_resched()) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 505 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | af2eb17 | 2005-12-02 23:09:06 -0800 | [diff] [blame] | 506 | local_irq_enable(); |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 507 | return; |
| 508 | } |
| 509 | } |
| 510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | switch (cx->type) { |
| 512 | |
| 513 | case ACPI_STATE_C1: |
| 514 | /* |
| 515 | * Invoke C1. |
| 516 | * Use the appropriate idle routine, the one that would |
| 517 | * be used without acpi C-states. |
| 518 | */ |
| 519 | if (pm_idle_save) |
| 520 | pm_idle_save(); |
| 521 | else |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 522 | acpi_safe_halt(); |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 525 | * TBD: Can't get time duration while in C1, as resumes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | * go to an ISR rather than here. Need to instrument |
| 527 | * base interrupt handler. |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 528 | * |
| 529 | * Note: the TSC better not stop in C1, sched_clock() will |
| 530 | * skew otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | */ |
| 532 | sleep_ticks = 0xFFFFFFFF; |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 533 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | break; |
| 535 | |
| 536 | case ACPI_STATE_C2: |
| 537 | /* Get start time (ticks) */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 538 | t1 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 539 | /* Tell the scheduler that we are going deep-idle: */ |
| 540 | sched_clock_idle_sleep_event(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | /* Invoke C2 */ |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 542 | acpi_state_timer_broadcast(pr, cx, 1); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 543 | acpi_cstate_enter(cx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /* Get end time (ticks) */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 545 | t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 546 | |
Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 547 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 548 | /* TSC halts in C2, so notify users */ |
Andi Kleen | ddb25f9 | 2008-01-30 13:32:41 +0100 | [diff] [blame] | 549 | if (tsc_halts_in_c(ACPI_STATE_C2)) |
| 550 | mark_tsc_unstable("possible TSC halt in C2"); |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 551 | #endif |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 552 | /* Compute time (ticks) that we were actually asleep */ |
| 553 | sleep_ticks = ticks_elapsed(t1, t2); |
| 554 | |
| 555 | /* Tell the scheduler how much we idled: */ |
| 556 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); |
| 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /* Re-enable interrupts */ |
| 559 | local_irq_enable(); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 560 | /* Do not account our idle-switching overhead: */ |
| 561 | sleep_ticks -= cx->latency_ticks + C2_OVERHEAD; |
| 562 | |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 563 | current_thread_info()->status |= TS_POLLING; |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 564 | acpi_state_timer_broadcast(pr, cx, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | break; |
| 566 | |
| 567 | case ACPI_STATE_C3: |
Venki Pallipadi | bde6f5f | 2008-01-30 13:32:01 +0100 | [diff] [blame] | 568 | acpi_unlazy_tlb(smp_processor_id()); |
Venkatesh Pallipadi | 18eab85 | 2007-06-15 19:37:00 -0400 | [diff] [blame] | 569 | /* |
Thomas Gleixner | e17bcb4 | 2007-12-07 19:16:17 +0100 | [diff] [blame] | 570 | * Must be done before busmaster disable as we might |
| 571 | * need to access HPET ! |
| 572 | */ |
| 573 | acpi_state_timer_broadcast(pr, cx, 1); |
| 574 | /* |
Venkatesh Pallipadi | 18eab85 | 2007-06-15 19:37:00 -0400 | [diff] [blame] | 575 | * disable bus master |
| 576 | * bm_check implies we need ARB_DIS |
| 577 | * !bm_check implies we need cache flush |
| 578 | * bm_control implies whether we can do ARB_DIS |
| 579 | * |
| 580 | * That leaves a case where bm_check is set and bm_control is |
| 581 | * not set. In that case we cannot do much, we enter C3 |
| 582 | * without doing anything. |
| 583 | */ |
| 584 | if (pr->flags.bm_check && pr->flags.bm_control) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 585 | if (atomic_inc_return(&c3_cpu_count) == |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 586 | num_online_cpus()) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 587 | /* |
| 588 | * All CPUs are trying to go to C3 |
| 589 | * Disable bus master arbitration |
| 590 | */ |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 591 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 592 | } |
Venkatesh Pallipadi | 18eab85 | 2007-06-15 19:37:00 -0400 | [diff] [blame] | 593 | } else if (!pr->flags.bm_check) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 594 | /* SMP with no shared cache... Invalidate cache */ |
| 595 | ACPI_FLUSH_CPU_CACHE(); |
| 596 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | /* Get start time (ticks) */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 599 | t1 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | /* Invoke C3 */ |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 601 | /* Tell the scheduler that we are going deep-idle: */ |
| 602 | sched_clock_idle_sleep_event(); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 603 | acpi_cstate_enter(cx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | /* Get end time (ticks) */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 605 | t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Venkatesh Pallipadi | 18eab85 | 2007-06-15 19:37:00 -0400 | [diff] [blame] | 606 | if (pr->flags.bm_check && pr->flags.bm_control) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 607 | /* Enable bus master arbitration */ |
| 608 | atomic_dec(&c3_cpu_count); |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 609 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 610 | } |
| 611 | |
Tony Luck | 0aa366f | 2007-07-20 11:22:30 -0700 | [diff] [blame] | 612 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 613 | /* TSC halts in C3, so notify users */ |
Andi Kleen | ddb25f9 | 2008-01-30 13:32:41 +0100 | [diff] [blame] | 614 | if (tsc_halts_in_c(ACPI_STATE_C3)) |
| 615 | mark_tsc_unstable("TSC halts in C3"); |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 616 | #endif |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 617 | /* Compute time (ticks) that we were actually asleep */ |
| 618 | sleep_ticks = ticks_elapsed(t1, t2); |
| 619 | /* Tell the scheduler how much we idled: */ |
| 620 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); |
| 621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | /* Re-enable interrupts */ |
| 623 | local_irq_enable(); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 624 | /* Do not account our idle-switching overhead: */ |
| 625 | sleep_ticks -= cx->latency_ticks + C3_OVERHEAD; |
| 626 | |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 627 | current_thread_info()->status |= TS_POLLING; |
Thomas Gleixner | e9e2cdb | 2007-02-16 01:28:04 -0800 | [diff] [blame] | 628 | acpi_state_timer_broadcast(pr, cx, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | break; |
| 630 | |
| 631 | default: |
| 632 | local_irq_enable(); |
| 633 | return; |
| 634 | } |
Dominik Brodowski | a3c6598 | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 635 | cx->usage++; |
| 636 | if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0)) |
| 637 | cx->time += sleep_ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
| 639 | next_state = pr->power.state; |
| 640 | |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 641 | #ifdef CONFIG_HOTPLUG_CPU |
| 642 | /* Don't do promotion/demotion */ |
| 643 | if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) && |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 644 | !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) { |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 645 | next_state = cx; |
| 646 | goto end; |
| 647 | } |
| 648 | #endif |
| 649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | /* |
| 651 | * Promotion? |
| 652 | * ---------- |
| 653 | * Track the number of longs (time asleep is greater than threshold) |
| 654 | * and promote when the count threshold is reached. Note that bus |
| 655 | * mastering activity may prevent promotions. |
| 656 | * Do not promote above max_cstate. |
| 657 | */ |
| 658 | if (cx->promotion.state && |
| 659 | ((cx->promotion.state - pr->power.states) <= max_cstate)) { |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 660 | if (sleep_ticks > cx->promotion.threshold.ticks && |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 661 | cx->promotion.state->latency <= |
| 662 | pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | cx->promotion.count++; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 664 | cx->demotion.count = 0; |
| 665 | if (cx->promotion.count >= |
| 666 | cx->promotion.threshold.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | if (pr->flags.bm_check) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 668 | if (! |
| 669 | (pr->power.bm_activity & cx-> |
| 670 | promotion.threshold.bm)) { |
| 671 | next_state = |
| 672 | cx->promotion.state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | goto end; |
| 674 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | next_state = cx->promotion.state; |
| 677 | goto end; |
| 678 | } |
| 679 | } |
| 680 | } |
| 681 | } |
| 682 | |
| 683 | /* |
| 684 | * Demotion? |
| 685 | * --------- |
| 686 | * Track the number of shorts (time asleep is less than time threshold) |
| 687 | * and demote when the usage threshold is reached. |
| 688 | */ |
| 689 | if (cx->demotion.state) { |
| 690 | if (sleep_ticks < cx->demotion.threshold.ticks) { |
| 691 | cx->demotion.count++; |
| 692 | cx->promotion.count = 0; |
| 693 | if (cx->demotion.count >= cx->demotion.threshold.count) { |
| 694 | next_state = cx->demotion.state; |
| 695 | goto end; |
| 696 | } |
| 697 | } |
| 698 | } |
| 699 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 700 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | /* |
| 702 | * Demote if current state exceeds max_cstate |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 703 | * or if the latency of the current state is unacceptable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | */ |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 705 | if ((pr->power.state - pr->power.states) > max_cstate || |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 706 | pr->power.state->latency > |
| 707 | pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | if (cx->demotion.state) |
| 709 | next_state = cx->demotion.state; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * New Cx State? |
| 714 | * ------------- |
| 715 | * If we're going to start using a new Cx state we must clean up |
| 716 | * from the previous and prepare to use the new. |
| 717 | */ |
| 718 | if (next_state != pr->power.state) |
| 719 | acpi_processor_power_activate(pr, next_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 722 | static int acpi_processor_set_power_policy(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
| 724 | unsigned int i; |
| 725 | unsigned int state_is_set = 0; |
| 726 | struct acpi_processor_cx *lower = NULL; |
| 727 | struct acpi_processor_cx *higher = NULL; |
| 728 | struct acpi_processor_cx *cx; |
| 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
| 731 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 732 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
| 734 | /* |
| 735 | * This function sets the default Cx state policy (OS idle handler). |
| 736 | * Our scheme is to promote quickly to C2 but more conservatively |
| 737 | * to C3. We're favoring C2 for its characteristics of low latency |
| 738 | * (quick response), good power savings, and ability to allow bus |
| 739 | * mastering activity. Note that the Cx state policy is completely |
| 740 | * customizable and can be altered dynamically. |
| 741 | */ |
| 742 | |
| 743 | /* startup state */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 744 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | cx = &pr->power.states[i]; |
| 746 | if (!cx->valid) |
| 747 | continue; |
| 748 | |
| 749 | if (!state_is_set) |
| 750 | pr->power.state = cx; |
| 751 | state_is_set++; |
| 752 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 753 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
| 755 | if (!state_is_set) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 756 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
| 758 | /* demotion */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 759 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | cx = &pr->power.states[i]; |
| 761 | if (!cx->valid) |
| 762 | continue; |
| 763 | |
| 764 | if (lower) { |
| 765 | cx->demotion.state = lower; |
| 766 | cx->demotion.threshold.ticks = cx->latency_ticks; |
| 767 | cx->demotion.threshold.count = 1; |
| 768 | if (cx->type == ACPI_STATE_C3) |
| 769 | cx->demotion.threshold.bm = bm_history; |
| 770 | } |
| 771 | |
| 772 | lower = cx; |
| 773 | } |
| 774 | |
| 775 | /* promotion */ |
| 776 | for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) { |
| 777 | cx = &pr->power.states[i]; |
| 778 | if (!cx->valid) |
| 779 | continue; |
| 780 | |
| 781 | if (higher) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 782 | cx->promotion.state = higher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | cx->promotion.threshold.ticks = cx->latency_ticks; |
| 784 | if (cx->type >= ACPI_STATE_C2) |
| 785 | cx->promotion.threshold.count = 4; |
| 786 | else |
| 787 | cx->promotion.threshold.count = 10; |
| 788 | if (higher->type == ACPI_STATE_C3) |
| 789 | cx->promotion.threshold.bm = bm_history; |
| 790 | } |
| 791 | |
| 792 | higher = cx; |
| 793 | } |
| 794 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 795 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 797 | #endif /* !CONFIG_CPU_IDLE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 799 | static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 803 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
| 805 | if (!pr->pblk) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 806 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | /* if info is obtained from pblk/fadt, type equals state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2; |
| 810 | pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3; |
| 811 | |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 812 | #ifndef CONFIG_HOTPLUG_CPU |
| 813 | /* |
| 814 | * Check for P_LVL2_UP flag before entering C2 and above on |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 815 | * an SMP system. |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 816 | */ |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 817 | if ((num_online_cpus() > 1) && |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 818 | !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 819 | return -ENODEV; |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 820 | #endif |
| 821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | /* determine C2 and C3 address from pblk */ |
| 823 | pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4; |
| 824 | pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5; |
| 825 | |
| 826 | /* determine latencies from FADT */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 827 | pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency; |
| 828 | pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
| 830 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 831 | "lvl2[0x%08x] lvl3[0x%08x]\n", |
| 832 | pr->power.states[ACPI_STATE_C2].address, |
| 833 | pr->power.states[ACPI_STATE_C3].address)); |
| 834 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 835 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 838 | static int acpi_processor_get_power_info_default(struct acpi_processor *pr) |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 839 | { |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 840 | if (!pr->power.states[ACPI_STATE_C1].valid) { |
| 841 | /* set the first C-State to C1 */ |
| 842 | /* all processors need to support C1 */ |
| 843 | pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1; |
| 844 | pr->power.states[ACPI_STATE_C1].valid = 1; |
| 845 | } |
| 846 | /* the C0 state only exists as a filler in our array */ |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 847 | pr->power.states[ACPI_STATE_C0].valid = 1; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 848 | return 0; |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 849 | } |
| 850 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 851 | static int acpi_processor_get_power_info_cst(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 853 | acpi_status status = 0; |
| 854 | acpi_integer count; |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 855 | int current_count; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 856 | int i; |
| 857 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 858 | union acpi_object *cst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | if (nocst) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 862 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 864 | current_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
| 866 | status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer); |
| 867 | if (ACPI_FAILURE(status)) { |
| 868 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 869 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 870 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 872 | cst = buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | |
| 874 | /* There must be at least 2 elements */ |
| 875 | if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 876 | printk(KERN_ERR PREFIX "not enough elements in _CST\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | status = -EFAULT; |
| 878 | goto end; |
| 879 | } |
| 880 | |
| 881 | count = cst->package.elements[0].integer.value; |
| 882 | |
| 883 | /* Validate number of power states. */ |
| 884 | if (count < 1 || count != cst->package.count - 1) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 885 | printk(KERN_ERR PREFIX "count given by _CST is not valid\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | status = -EFAULT; |
| 887 | goto end; |
| 888 | } |
| 889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | /* Tell driver that at least _CST is supported. */ |
| 891 | pr->flags.has_cst = 1; |
| 892 | |
| 893 | for (i = 1; i <= count; i++) { |
| 894 | union acpi_object *element; |
| 895 | union acpi_object *obj; |
| 896 | struct acpi_power_register *reg; |
| 897 | struct acpi_processor_cx cx; |
| 898 | |
| 899 | memset(&cx, 0, sizeof(cx)); |
| 900 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 901 | element = &(cst->package.elements[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | if (element->type != ACPI_TYPE_PACKAGE) |
| 903 | continue; |
| 904 | |
| 905 | if (element->package.count != 4) |
| 906 | continue; |
| 907 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 908 | obj = &(element->package.elements[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
| 910 | if (obj->type != ACPI_TYPE_BUFFER) |
| 911 | continue; |
| 912 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 913 | reg = (struct acpi_power_register *)obj->buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
| 915 | if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 916 | (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | continue; |
| 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | /* There should be an easy way to extract an integer... */ |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 920 | obj = &(element->package.elements[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | if (obj->type != ACPI_TYPE_INTEGER) |
| 922 | continue; |
| 923 | |
| 924 | cx.type = obj->integer.value; |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 925 | /* |
| 926 | * Some buggy BIOSes won't list C1 in _CST - |
| 927 | * Let acpi_processor_get_power_info_default() handle them later |
| 928 | */ |
| 929 | if (i == 1 && cx.type != ACPI_STATE_C1) |
| 930 | current_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 932 | cx.address = reg->address; |
| 933 | cx.index = current_count + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 935 | cx.entry_method = ACPI_CSTATE_SYSTEMIO; |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 936 | if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) { |
| 937 | if (acpi_processor_ffh_cstate_probe |
| 938 | (pr->id, &cx, reg) == 0) { |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 939 | cx.entry_method = ACPI_CSTATE_FFH; |
| 940 | } else if (cx.type == ACPI_STATE_C1) { |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 941 | /* |
| 942 | * C1 is a special case where FIXED_HARDWARE |
| 943 | * can be handled in non-MWAIT way as well. |
| 944 | * In that case, save this _CST entry info. |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 945 | * Otherwise, ignore this info and continue. |
| 946 | */ |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 947 | cx.entry_method = ACPI_CSTATE_HALT; |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame^] | 948 | snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT"); |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 949 | } else { |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 950 | continue; |
| 951 | } |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame^] | 952 | } else { |
| 953 | snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x", |
| 954 | cx.address); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 955 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame^] | 957 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 958 | obj = &(element->package.elements[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | if (obj->type != ACPI_TYPE_INTEGER) |
| 960 | continue; |
| 961 | |
| 962 | cx.latency = obj->integer.value; |
| 963 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 964 | obj = &(element->package.elements[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | if (obj->type != ACPI_TYPE_INTEGER) |
| 966 | continue; |
| 967 | |
| 968 | cx.power = obj->integer.value; |
| 969 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 970 | current_count++; |
| 971 | memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx)); |
| 972 | |
| 973 | /* |
| 974 | * We support total ACPI_PROCESSOR_MAX_POWER - 1 |
| 975 | * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1) |
| 976 | */ |
| 977 | if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) { |
| 978 | printk(KERN_WARNING |
| 979 | "Limiting number of power states to max (%d)\n", |
| 980 | ACPI_PROCESSOR_MAX_POWER); |
| 981 | printk(KERN_WARNING |
| 982 | "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n"); |
| 983 | break; |
| 984 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 987 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n", |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 988 | current_count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | |
| 990 | /* Validate number of power states discovered */ |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 991 | if (current_count < 2) |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 992 | status = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 994 | end: |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 995 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 997 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx) |
| 1001 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
| 1003 | if (!cx->address) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1004 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
| 1006 | /* |
| 1007 | * C2 latency must be less than or equal to 100 |
| 1008 | * microseconds. |
| 1009 | */ |
| 1010 | else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) { |
| 1011 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1012 | "latency too large [%d]\n", cx->latency)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1013 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | /* |
| 1017 | * Otherwise we've met all of our C2 requirements. |
| 1018 | * Normalize the C2 latency to expidite policy |
| 1019 | */ |
| 1020 | cx->valid = 1; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1021 | |
| 1022 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1024 | #else |
| 1025 | cx->latency_ticks = cx->latency; |
| 1026 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1028 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1031 | static void acpi_processor_power_verify_c3(struct acpi_processor *pr, |
| 1032 | struct acpi_processor_cx *cx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1034 | static int bm_check_flag; |
| 1035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | |
| 1037 | if (!cx->address) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1038 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | /* |
| 1041 | * C3 latency must be less than or equal to 1000 |
| 1042 | * microseconds. |
| 1043 | */ |
| 1044 | else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) { |
| 1045 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1046 | "latency too large [%d]\n", cx->latency)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1047 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | /* |
| 1051 | * PIIX4 Erratum #18: We don't support C3 when Type-F (fast) |
| 1052 | * DMA transfers are used by any ISA device to avoid livelock. |
| 1053 | * Note that we could disable Type-F DMA (as recommended by |
| 1054 | * the erratum), but this is known to disrupt certain ISA |
| 1055 | * devices thus we take the conservative approach. |
| 1056 | */ |
| 1057 | else if (errata.piix4.fdma) { |
| 1058 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1059 | "C3 not supported on PIIX4 with Type-F DMA\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1060 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1063 | /* All the logic here assumes flags.bm_check is same across all CPUs */ |
| 1064 | if (!bm_check_flag) { |
| 1065 | /* Determine whether bm_check is needed based on CPU */ |
| 1066 | acpi_processor_power_init_bm_check(&(pr->flags), pr->id); |
| 1067 | bm_check_flag = pr->flags.bm_check; |
| 1068 | } else { |
| 1069 | pr->flags.bm_check = bm_check_flag; |
| 1070 | } |
| 1071 | |
| 1072 | if (pr->flags.bm_check) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1073 | if (!pr->flags.bm_control) { |
Venki Pallipadi | ed3110e | 2007-07-31 12:04:31 -0700 | [diff] [blame] | 1074 | if (pr->flags.has_cst != 1) { |
| 1075 | /* bus mastering control is necessary */ |
| 1076 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1077 | "C3 support requires BM control\n")); |
| 1078 | return; |
| 1079 | } else { |
| 1080 | /* Here we enter C3 without bus mastering */ |
| 1081 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1082 | "C3 support without BM control\n")); |
| 1083 | } |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1084 | } |
| 1085 | } else { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1086 | /* |
| 1087 | * WBINVD should be set in fadt, for C3 state to be |
| 1088 | * supported on when bm_check is not required. |
| 1089 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1090 | if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1091 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1092 | "Cache invalidation should work properly" |
| 1093 | " for C3 to be enabled on SMP systems\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1094 | return; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1095 | } |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 1096 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1097 | } |
| 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | /* |
| 1100 | * Otherwise we've met all of our C3 requirements. |
| 1101 | * Normalize the C3 latency to expidite policy. Enable |
| 1102 | * checking of bus mastering status (bm_check) so we can |
| 1103 | * use this in our C3 policy |
| 1104 | */ |
| 1105 | cx->valid = 1; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1106 | |
| 1107 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1109 | #else |
| 1110 | cx->latency_ticks = cx->latency; |
| 1111 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1113 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | } |
| 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | static int acpi_processor_power_verify(struct acpi_processor *pr) |
| 1117 | { |
| 1118 | unsigned int i; |
| 1119 | unsigned int working = 0; |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 1120 | |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 1121 | pr->power.timer_broadcast_on_state = INT_MAX; |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 1122 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1123 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | struct acpi_processor_cx *cx = &pr->power.states[i]; |
| 1125 | |
| 1126 | switch (cx->type) { |
| 1127 | case ACPI_STATE_C1: |
| 1128 | cx->valid = 1; |
| 1129 | break; |
| 1130 | |
| 1131 | case ACPI_STATE_C2: |
| 1132 | acpi_processor_power_verify_c2(cx); |
Linus Torvalds | 296d93c | 2007-03-23 08:03:47 -0700 | [diff] [blame] | 1133 | if (cx->valid) |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 1134 | acpi_timer_check_state(i, pr, cx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | break; |
| 1136 | |
| 1137 | case ACPI_STATE_C3: |
| 1138 | acpi_processor_power_verify_c3(pr, cx); |
Linus Torvalds | 296d93c | 2007-03-23 08:03:47 -0700 | [diff] [blame] | 1139 | if (cx->valid) |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 1140 | acpi_timer_check_state(i, pr, cx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | break; |
| 1142 | } |
| 1143 | |
| 1144 | if (cx->valid) |
| 1145 | working++; |
| 1146 | } |
| 1147 | |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 1148 | acpi_propagate_timer_broadcast(pr); |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 1149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | return (working); |
| 1151 | } |
| 1152 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1153 | static int acpi_processor_get_power_info(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | { |
| 1155 | unsigned int i; |
| 1156 | int result; |
| 1157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
| 1159 | /* NOTE: the idle thread may not be running while calling |
| 1160 | * this function */ |
| 1161 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 1162 | /* Zero initialize all the C-states info. */ |
| 1163 | memset(pr->power.states, 0, sizeof(pr->power.states)); |
| 1164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | result = acpi_processor_get_power_info_cst(pr); |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 1166 | if (result == -ENODEV) |
Darrick J. Wong | c5a114f | 2006-10-19 23:28:28 -0700 | [diff] [blame] | 1167 | result = acpi_processor_get_power_info_fadt(pr); |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 1168 | |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 1169 | if (result) |
| 1170 | return result; |
| 1171 | |
| 1172 | acpi_processor_get_power_info_default(pr); |
| 1173 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 1174 | pr->power.count = acpi_processor_power_verify(pr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1176 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | /* |
| 1178 | * Set Default Policy |
| 1179 | * ------------------ |
| 1180 | * Now that we know which states are supported, set the default |
| 1181 | * policy. Note that this policy can be changed dynamically |
| 1182 | * (e.g. encourage deeper sleeps to conserve battery life when |
| 1183 | * not on AC). |
| 1184 | */ |
| 1185 | result = acpi_processor_set_power_policy(pr); |
| 1186 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1187 | return result; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1188 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
| 1190 | /* |
| 1191 | * if one state of type C2 or C3 is available, mark this |
| 1192 | * CPU as being "idle manageable" |
| 1193 | */ |
| 1194 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 1195 | if (pr->power.states[i].valid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | pr->power.count = i; |
Linus Torvalds | 2203d6e | 2005-11-18 07:29:51 -0800 | [diff] [blame] | 1197 | if (pr->power.states[i].type >= ACPI_STATE_C2) |
| 1198 | pr->flags.power = 1; |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 1199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | } |
| 1201 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1202 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset) |
| 1206 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1207 | struct acpi_processor *pr = seq->private; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1208 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | |
| 1211 | if (!pr) |
| 1212 | goto end; |
| 1213 | |
| 1214 | seq_printf(seq, "active state: C%zd\n" |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1215 | "max_cstate: C%d\n" |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 1216 | "bus master activity: %08x\n" |
| 1217 | "maximum allowed latency: %d usec\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1218 | pr->power.state ? pr->power.state - pr->power.states : 0, |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 1219 | max_cstate, (unsigned)pr->power.bm_activity, |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 1220 | pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | |
| 1222 | seq_puts(seq, "states:\n"); |
| 1223 | |
| 1224 | for (i = 1; i <= pr->power.count; i++) { |
| 1225 | seq_printf(seq, " %cC%d: ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1226 | (&pr->power.states[i] == |
| 1227 | pr->power.state ? '*' : ' '), i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | |
| 1229 | if (!pr->power.states[i].valid) { |
| 1230 | seq_puts(seq, "<not supported>\n"); |
| 1231 | continue; |
| 1232 | } |
| 1233 | |
| 1234 | switch (pr->power.states[i].type) { |
| 1235 | case ACPI_STATE_C1: |
| 1236 | seq_printf(seq, "type[C1] "); |
| 1237 | break; |
| 1238 | case ACPI_STATE_C2: |
| 1239 | seq_printf(seq, "type[C2] "); |
| 1240 | break; |
| 1241 | case ACPI_STATE_C3: |
| 1242 | seq_printf(seq, "type[C3] "); |
| 1243 | break; |
| 1244 | default: |
| 1245 | seq_printf(seq, "type[--] "); |
| 1246 | break; |
| 1247 | } |
| 1248 | |
| 1249 | if (pr->power.states[i].promotion.state) |
| 1250 | seq_printf(seq, "promotion[C%zd] ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1251 | (pr->power.states[i].promotion.state - |
| 1252 | pr->power.states)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | else |
| 1254 | seq_puts(seq, "promotion[--] "); |
| 1255 | |
| 1256 | if (pr->power.states[i].demotion.state) |
| 1257 | seq_printf(seq, "demotion[C%zd] ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1258 | (pr->power.states[i].demotion.state - |
| 1259 | pr->power.states)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | else |
| 1261 | seq_puts(seq, "demotion[--] "); |
| 1262 | |
Dominik Brodowski | a3c6598 | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 1263 | seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1264 | pr->power.states[i].latency, |
Dominik Brodowski | a3c6598 | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 1265 | pr->power.states[i].usage, |
Alexey Starikovskiy | b0b7eaa | 2007-01-25 22:39:44 -0500 | [diff] [blame] | 1266 | (unsigned long long)pr->power.states[i].time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } |
| 1268 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1269 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1270 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | static int acpi_processor_power_open_fs(struct inode *inode, struct file *file) |
| 1274 | { |
| 1275 | return single_open(file, acpi_processor_power_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1276 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | } |
| 1278 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 1279 | static const struct file_operations acpi_processor_power_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1280 | .open = acpi_processor_power_open_fs, |
| 1281 | .read = seq_read, |
| 1282 | .llseek = seq_lseek, |
| 1283 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | }; |
| 1285 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1286 | #ifndef CONFIG_CPU_IDLE |
| 1287 | |
| 1288 | int acpi_processor_cst_has_changed(struct acpi_processor *pr) |
| 1289 | { |
| 1290 | int result = 0; |
| 1291 | |
| 1292 | |
| 1293 | if (!pr) |
| 1294 | return -EINVAL; |
| 1295 | |
| 1296 | if (nocst) { |
| 1297 | return -ENODEV; |
| 1298 | } |
| 1299 | |
| 1300 | if (!pr->flags.power_setup_done) |
| 1301 | return -ENODEV; |
| 1302 | |
| 1303 | /* Fall back to the default idle loop */ |
| 1304 | pm_idle = pm_idle_save; |
| 1305 | synchronize_sched(); /* Relies on interrupts forcing exit from idle. */ |
| 1306 | |
| 1307 | pr->flags.power = 0; |
| 1308 | result = acpi_processor_get_power_info(pr); |
| 1309 | if ((pr->flags.power == 1) && (pr->flags.power_setup_done)) |
| 1310 | pm_idle = acpi_processor_idle; |
| 1311 | |
| 1312 | return result; |
| 1313 | } |
| 1314 | |
Andrew Morton | 1fec74a | 2006-10-17 00:09:58 -0700 | [diff] [blame] | 1315 | #ifdef CONFIG_SMP |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 1316 | static void smp_callback(void *v) |
| 1317 | { |
| 1318 | /* we already woke the CPU up, nothing more to do */ |
| 1319 | } |
| 1320 | |
| 1321 | /* |
| 1322 | * This function gets called when a part of the kernel has a new latency |
| 1323 | * requirement. This means we need to get all processors out of their C-state, |
| 1324 | * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that |
| 1325 | * wakes them all right up. |
| 1326 | */ |
| 1327 | static int acpi_processor_latency_notify(struct notifier_block *b, |
| 1328 | unsigned long l, void *v) |
| 1329 | { |
| 1330 | smp_call_function(smp_callback, NULL, 0, 1); |
| 1331 | return NOTIFY_OK; |
| 1332 | } |
| 1333 | |
| 1334 | static struct notifier_block acpi_processor_latency_notifier = { |
| 1335 | .notifier_call = acpi_processor_latency_notify, |
| 1336 | }; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1337 | |
Andrew Morton | 1fec74a | 2006-10-17 00:09:58 -0700 | [diff] [blame] | 1338 | #endif |
Arjan van de Ven | 5c87579 | 2006-09-30 23:27:17 -0700 | [diff] [blame] | 1339 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1340 | #else /* CONFIG_CPU_IDLE */ |
| 1341 | |
| 1342 | /** |
| 1343 | * acpi_idle_bm_check - checks if bus master activity was detected |
| 1344 | */ |
| 1345 | static int acpi_idle_bm_check(void) |
| 1346 | { |
| 1347 | u32 bm_status = 0; |
| 1348 | |
| 1349 | acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status); |
| 1350 | if (bm_status) |
| 1351 | acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1); |
| 1352 | /* |
| 1353 | * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect |
| 1354 | * the true state of bus mastering activity; forcing us to |
| 1355 | * manually check the BMIDEA bit of each IDE channel. |
| 1356 | */ |
| 1357 | else if (errata.piix4.bmisx) { |
| 1358 | if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01) |
| 1359 | || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01)) |
| 1360 | bm_status = 1; |
| 1361 | } |
| 1362 | return bm_status; |
| 1363 | } |
| 1364 | |
| 1365 | /** |
| 1366 | * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state |
| 1367 | * @pr: the processor |
| 1368 | * @target: the new target state |
| 1369 | */ |
| 1370 | static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr, |
| 1371 | struct acpi_processor_cx *target) |
| 1372 | { |
| 1373 | if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) { |
| 1374 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0); |
| 1375 | pr->flags.bm_rld_set = 0; |
| 1376 | } |
| 1377 | |
| 1378 | if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) { |
| 1379 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1); |
| 1380 | pr->flags.bm_rld_set = 1; |
| 1381 | } |
| 1382 | } |
| 1383 | |
| 1384 | /** |
| 1385 | * acpi_idle_do_entry - a helper function that does C2 and C3 type entry |
| 1386 | * @cx: cstate data |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 1387 | * |
| 1388 | * Caller disables interrupt before call and enables interrupt after return. |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1389 | */ |
| 1390 | static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx) |
| 1391 | { |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 1392 | if (cx->entry_method == ACPI_CSTATE_FFH) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1393 | /* Call into architectural FFH based C-state */ |
| 1394 | acpi_processor_ffh_cstate_enter(cx); |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 1395 | } else if (cx->entry_method == ACPI_CSTATE_HALT) { |
| 1396 | acpi_safe_halt(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1397 | } else { |
| 1398 | int unused; |
| 1399 | /* IO port based C-state */ |
| 1400 | inb(cx->address); |
| 1401 | /* Dummy wait op - must do something useless after P_LVL2 read |
| 1402 | because chipsets cannot guarantee that STPCLK# signal |
| 1403 | gets asserted in time to freeze execution properly. */ |
| 1404 | unused = inl(acpi_gbl_FADT.xpm_timer_block.address); |
| 1405 | } |
| 1406 | } |
| 1407 | |
| 1408 | /** |
| 1409 | * acpi_idle_enter_c1 - enters an ACPI C1 state-type |
| 1410 | * @dev: the target CPU |
| 1411 | * @state: the state data |
| 1412 | * |
| 1413 | * This is equivalent to the HALT instruction. |
| 1414 | */ |
| 1415 | static int acpi_idle_enter_c1(struct cpuidle_device *dev, |
| 1416 | struct cpuidle_state *state) |
| 1417 | { |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1418 | u32 t1, t2; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1419 | struct acpi_processor *pr; |
| 1420 | struct acpi_processor_cx *cx = cpuidle_get_statedata(state); |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1421 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1422 | pr = processors[smp_processor_id()]; |
| 1423 | |
| 1424 | if (unlikely(!pr)) |
| 1425 | return 0; |
| 1426 | |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 1427 | local_irq_disable(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1428 | if (pr->flags.bm_check) |
| 1429 | acpi_idle_update_bm_rld(pr, cx); |
| 1430 | |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1431 | t1 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 1432 | acpi_idle_do_entry(cx); |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1433 | t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1434 | |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 1435 | local_irq_enable(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1436 | cx->usage++; |
| 1437 | |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1438 | return ticks_elapsed_in_us(t1, t2); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * acpi_idle_enter_simple - enters an ACPI state without BM handling |
| 1443 | * @dev: the target CPU |
| 1444 | * @state: the state data |
| 1445 | */ |
| 1446 | static int acpi_idle_enter_simple(struct cpuidle_device *dev, |
| 1447 | struct cpuidle_state *state) |
| 1448 | { |
| 1449 | struct acpi_processor *pr; |
| 1450 | struct acpi_processor_cx *cx = cpuidle_get_statedata(state); |
| 1451 | u32 t1, t2; |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1452 | int sleep_ticks = 0; |
| 1453 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1454 | pr = processors[smp_processor_id()]; |
| 1455 | |
| 1456 | if (unlikely(!pr)) |
| 1457 | return 0; |
| 1458 | |
Len Brown | e196441 | 2007-10-04 01:23:47 -0400 | [diff] [blame] | 1459 | if (acpi_idle_suspend) |
| 1460 | return(acpi_idle_enter_c1(dev, state)); |
| 1461 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1462 | local_irq_disable(); |
| 1463 | current_thread_info()->status &= ~TS_POLLING; |
| 1464 | /* |
| 1465 | * TS_POLLING-cleared state must be visible before we test |
| 1466 | * NEED_RESCHED: |
| 1467 | */ |
| 1468 | smp_mb(); |
| 1469 | |
| 1470 | if (unlikely(need_resched())) { |
| 1471 | current_thread_info()->status |= TS_POLLING; |
| 1472 | local_irq_enable(); |
| 1473 | return 0; |
| 1474 | } |
| 1475 | |
Venki Pallipadi | bde6f5f | 2008-01-30 13:32:01 +0100 | [diff] [blame] | 1476 | acpi_unlazy_tlb(smp_processor_id()); |
Thomas Gleixner | e17bcb4 | 2007-12-07 19:16:17 +0100 | [diff] [blame] | 1477 | /* |
| 1478 | * Must be done before busmaster disable as we might need to |
| 1479 | * access HPET ! |
| 1480 | */ |
| 1481 | acpi_state_timer_broadcast(pr, cx, 1); |
| 1482 | |
| 1483 | if (pr->flags.bm_check) |
| 1484 | acpi_idle_update_bm_rld(pr, cx); |
| 1485 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1486 | if (cx->type == ACPI_STATE_C3) |
| 1487 | ACPI_FLUSH_CPU_CACHE(); |
| 1488 | |
| 1489 | t1 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1490 | /* Tell the scheduler that we are going deep-idle: */ |
| 1491 | sched_clock_idle_sleep_event(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1492 | acpi_idle_do_entry(cx); |
| 1493 | t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
| 1494 | |
| 1495 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) |
| 1496 | /* TSC could halt in idle, so notify users */ |
Andi Kleen | ddb25f9 | 2008-01-30 13:32:41 +0100 | [diff] [blame] | 1497 | if (tsc_halts_in_c(cx->type)) |
| 1498 | mark_tsc_unstable("TSC halts in idle");; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1499 | #endif |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1500 | sleep_ticks = ticks_elapsed(t1, t2); |
| 1501 | |
| 1502 | /* Tell the scheduler how much we idled: */ |
| 1503 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1504 | |
| 1505 | local_irq_enable(); |
| 1506 | current_thread_info()->status |= TS_POLLING; |
| 1507 | |
| 1508 | cx->usage++; |
| 1509 | |
| 1510 | acpi_state_timer_broadcast(pr, cx, 0); |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1511 | cx->time += sleep_ticks; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1512 | return ticks_elapsed_in_us(t1, t2); |
| 1513 | } |
| 1514 | |
| 1515 | static int c3_cpu_count; |
| 1516 | static DEFINE_SPINLOCK(c3_lock); |
| 1517 | |
| 1518 | /** |
| 1519 | * acpi_idle_enter_bm - enters C3 with proper BM handling |
| 1520 | * @dev: the target CPU |
| 1521 | * @state: the state data |
| 1522 | * |
| 1523 | * If BM is detected, the deepest non-C3 idle state is entered instead. |
| 1524 | */ |
| 1525 | static int acpi_idle_enter_bm(struct cpuidle_device *dev, |
| 1526 | struct cpuidle_state *state) |
| 1527 | { |
| 1528 | struct acpi_processor *pr; |
| 1529 | struct acpi_processor_cx *cx = cpuidle_get_statedata(state); |
| 1530 | u32 t1, t2; |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1531 | int sleep_ticks = 0; |
| 1532 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1533 | pr = processors[smp_processor_id()]; |
| 1534 | |
| 1535 | if (unlikely(!pr)) |
| 1536 | return 0; |
| 1537 | |
Len Brown | e196441 | 2007-10-04 01:23:47 -0400 | [diff] [blame] | 1538 | if (acpi_idle_suspend) |
| 1539 | return(acpi_idle_enter_c1(dev, state)); |
| 1540 | |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1541 | if (acpi_idle_bm_check()) { |
| 1542 | if (dev->safe_state) { |
| 1543 | return dev->safe_state->enter(dev, dev->safe_state); |
| 1544 | } else { |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 1545 | local_irq_disable(); |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1546 | acpi_safe_halt(); |
venkatesh.pallipadi@intel.com | 2e90665 | 2008-01-31 17:35:03 -0800 | [diff] [blame] | 1547 | local_irq_enable(); |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1548 | return 0; |
| 1549 | } |
| 1550 | } |
| 1551 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1552 | local_irq_disable(); |
| 1553 | current_thread_info()->status &= ~TS_POLLING; |
| 1554 | /* |
| 1555 | * TS_POLLING-cleared state must be visible before we test |
| 1556 | * NEED_RESCHED: |
| 1557 | */ |
| 1558 | smp_mb(); |
| 1559 | |
| 1560 | if (unlikely(need_resched())) { |
| 1561 | current_thread_info()->status |= TS_POLLING; |
| 1562 | local_irq_enable(); |
| 1563 | return 0; |
| 1564 | } |
| 1565 | |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1566 | /* Tell the scheduler that we are going deep-idle: */ |
| 1567 | sched_clock_idle_sleep_event(); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1568 | /* |
| 1569 | * Must be done before busmaster disable as we might need to |
| 1570 | * access HPET ! |
| 1571 | */ |
| 1572 | acpi_state_timer_broadcast(pr, cx, 1); |
| 1573 | |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1574 | acpi_idle_update_bm_rld(pr, cx); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1575 | |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1576 | /* |
| 1577 | * disable bus master |
| 1578 | * bm_check implies we need ARB_DIS |
| 1579 | * !bm_check implies we need cache flush |
| 1580 | * bm_control implies whether we can do ARB_DIS |
| 1581 | * |
| 1582 | * That leaves a case where bm_check is set and bm_control is |
| 1583 | * not set. In that case we cannot do much, we enter C3 |
| 1584 | * without doing anything. |
| 1585 | */ |
| 1586 | if (pr->flags.bm_check && pr->flags.bm_control) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1587 | spin_lock(&c3_lock); |
| 1588 | c3_cpu_count++; |
| 1589 | /* Disable bus master arbitration when all CPUs are in C3 */ |
| 1590 | if (c3_cpu_count == num_online_cpus()) |
| 1591 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1); |
| 1592 | spin_unlock(&c3_lock); |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1593 | } else if (!pr->flags.bm_check) { |
| 1594 | ACPI_FLUSH_CPU_CACHE(); |
| 1595 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1596 | |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1597 | t1 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
| 1598 | acpi_idle_do_entry(cx); |
| 1599 | t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1600 | |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1601 | /* Re-enable bus master arbitration */ |
| 1602 | if (pr->flags.bm_check && pr->flags.bm_control) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1603 | spin_lock(&c3_lock); |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1604 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1605 | c3_cpu_count--; |
| 1606 | spin_unlock(&c3_lock); |
| 1607 | } |
| 1608 | |
| 1609 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) |
| 1610 | /* TSC could halt in idle, so notify users */ |
Andi Kleen | ddb25f9 | 2008-01-30 13:32:41 +0100 | [diff] [blame] | 1611 | if (tsc_halts_in_c(ACPI_STATE_C3)) |
| 1612 | mark_tsc_unstable("TSC halts in idle"); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1613 | #endif |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1614 | sleep_ticks = ticks_elapsed(t1, t2); |
| 1615 | /* Tell the scheduler how much we idled: */ |
| 1616 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1617 | |
| 1618 | local_irq_enable(); |
| 1619 | current_thread_info()->status |= TS_POLLING; |
| 1620 | |
| 1621 | cx->usage++; |
| 1622 | |
| 1623 | acpi_state_timer_broadcast(pr, cx, 0); |
Venkatesh Pallipadi | 5062911 | 2007-11-19 19:49:00 -0500 | [diff] [blame] | 1624 | cx->time += sleep_ticks; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1625 | return ticks_elapsed_in_us(t1, t2); |
| 1626 | } |
| 1627 | |
| 1628 | struct cpuidle_driver acpi_idle_driver = { |
| 1629 | .name = "acpi_idle", |
| 1630 | .owner = THIS_MODULE, |
| 1631 | }; |
| 1632 | |
| 1633 | /** |
| 1634 | * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE |
| 1635 | * @pr: the ACPI processor |
| 1636 | */ |
| 1637 | static int acpi_processor_setup_cpuidle(struct acpi_processor *pr) |
| 1638 | { |
venkatesh.pallipadi@intel.com | 9a0b841 | 2008-01-31 17:35:06 -0800 | [diff] [blame] | 1639 | int i, count = CPUIDLE_DRIVER_STATE_START; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1640 | struct acpi_processor_cx *cx; |
| 1641 | struct cpuidle_state *state; |
| 1642 | struct cpuidle_device *dev = &pr->power.dev; |
| 1643 | |
| 1644 | if (!pr->flags.power_setup_done) |
| 1645 | return -EINVAL; |
| 1646 | |
| 1647 | if (pr->flags.power == 0) { |
| 1648 | return -EINVAL; |
| 1649 | } |
| 1650 | |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame^] | 1651 | for (i = 0; i < CPUIDLE_STATE_MAX; i++) { |
| 1652 | dev->states[i].name[0] = '\0'; |
| 1653 | dev->states[i].desc[0] = '\0'; |
| 1654 | } |
| 1655 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1656 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) { |
| 1657 | cx = &pr->power.states[i]; |
| 1658 | state = &dev->states[count]; |
| 1659 | |
| 1660 | if (!cx->valid) |
| 1661 | continue; |
| 1662 | |
| 1663 | #ifdef CONFIG_HOTPLUG_CPU |
| 1664 | if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) && |
| 1665 | !pr->flags.has_cst && |
| 1666 | !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) |
| 1667 | continue; |
| 1668 | #endif |
| 1669 | cpuidle_set_statedata(state, cx); |
| 1670 | |
| 1671 | snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i); |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame^] | 1672 | strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1673 | state->exit_latency = cx->latency; |
Len Brown | 4963f62 | 2007-12-13 23:50:45 -0500 | [diff] [blame] | 1674 | state->target_residency = cx->latency * latency_factor; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1675 | state->power_usage = cx->power; |
| 1676 | |
| 1677 | state->flags = 0; |
| 1678 | switch (cx->type) { |
| 1679 | case ACPI_STATE_C1: |
| 1680 | state->flags |= CPUIDLE_FLAG_SHALLOW; |
venkatesh.pallipadi@intel.com | 9b12e18 | 2008-01-31 17:35:05 -0800 | [diff] [blame] | 1681 | state->flags |= CPUIDLE_FLAG_TIME_VALID; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1682 | state->enter = acpi_idle_enter_c1; |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1683 | dev->safe_state = state; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1684 | break; |
| 1685 | |
| 1686 | case ACPI_STATE_C2: |
| 1687 | state->flags |= CPUIDLE_FLAG_BALANCED; |
| 1688 | state->flags |= CPUIDLE_FLAG_TIME_VALID; |
| 1689 | state->enter = acpi_idle_enter_simple; |
Venkatesh Pallipadi | ddc081a | 2007-11-19 21:43:22 -0500 | [diff] [blame] | 1690 | dev->safe_state = state; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1691 | break; |
| 1692 | |
| 1693 | case ACPI_STATE_C3: |
| 1694 | state->flags |= CPUIDLE_FLAG_DEEP; |
| 1695 | state->flags |= CPUIDLE_FLAG_TIME_VALID; |
| 1696 | state->flags |= CPUIDLE_FLAG_CHECK_BM; |
| 1697 | state->enter = pr->flags.bm_check ? |
| 1698 | acpi_idle_enter_bm : |
| 1699 | acpi_idle_enter_simple; |
| 1700 | break; |
| 1701 | } |
| 1702 | |
| 1703 | count++; |
venkatesh.pallipadi@intel.com | 9a0b841 | 2008-01-31 17:35:06 -0800 | [diff] [blame] | 1704 | if (count == CPUIDLE_STATE_MAX) |
| 1705 | break; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1706 | } |
| 1707 | |
| 1708 | dev->state_count = count; |
| 1709 | |
| 1710 | if (!count) |
| 1711 | return -EINVAL; |
| 1712 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1713 | return 0; |
| 1714 | } |
| 1715 | |
| 1716 | int acpi_processor_cst_has_changed(struct acpi_processor *pr) |
| 1717 | { |
| 1718 | int ret; |
| 1719 | |
| 1720 | if (!pr) |
| 1721 | return -EINVAL; |
| 1722 | |
| 1723 | if (nocst) { |
| 1724 | return -ENODEV; |
| 1725 | } |
| 1726 | |
| 1727 | if (!pr->flags.power_setup_done) |
| 1728 | return -ENODEV; |
| 1729 | |
| 1730 | cpuidle_pause_and_lock(); |
| 1731 | cpuidle_disable_device(&pr->power.dev); |
| 1732 | acpi_processor_get_power_info(pr); |
| 1733 | acpi_processor_setup_cpuidle(pr); |
| 1734 | ret = cpuidle_enable_device(&pr->power.dev); |
| 1735 | cpuidle_resume_and_unlock(); |
| 1736 | |
| 1737 | return ret; |
| 1738 | } |
| 1739 | |
| 1740 | #endif /* CONFIG_CPU_IDLE */ |
| 1741 | |
Pierre Ossman | 7af8b66 | 2006-10-10 14:20:31 -0700 | [diff] [blame] | 1742 | int __cpuinit acpi_processor_power_init(struct acpi_processor *pr, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1743 | struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1745 | acpi_status status = 0; |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1746 | static int first_run; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1747 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | unsigned int i; |
| 1749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | |
| 1751 | if (!first_run) { |
| 1752 | dmi_check_system(processor_power_dmi_table); |
Alexey Starikovskiy | c1c3063 | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 1753 | max_cstate = acpi_processor_cstate_check(max_cstate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | if (max_cstate < ACPI_C_STATES_MAX) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1755 | printk(KERN_NOTICE |
| 1756 | "ACPI: processor limited to max C-state %d\n", |
| 1757 | max_cstate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | first_run++; |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 1759 | #if !defined(CONFIG_CPU_IDLE) && defined(CONFIG_SMP) |
| 1760 | pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, |
| 1761 | &acpi_processor_latency_notifier); |
Andrew Morton | 1fec74a | 2006-10-17 00:09:58 -0700 | [diff] [blame] | 1762 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | } |
| 1764 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1765 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1766 | return -EINVAL; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1767 | |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1768 | if (acpi_gbl_FADT.cst_control && !nocst) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1769 | status = |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1770 | acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1772 | ACPI_EXCEPTION((AE_INFO, status, |
| 1773 | "Notifying BIOS of _CST ability failed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | } |
| 1775 | } |
| 1776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | acpi_processor_get_power_info(pr); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1778 | pr->flags.power_setup_done = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | |
| 1780 | /* |
| 1781 | * Install the idle handler if processor power management is supported. |
| 1782 | * Note that we use previously set idle handler will be used on |
| 1783 | * platforms that only support C1. |
| 1784 | */ |
| 1785 | if ((pr->flags.power) && (!boot_option_idle_override)) { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1786 | #ifdef CONFIG_CPU_IDLE |
| 1787 | acpi_processor_setup_cpuidle(pr); |
| 1788 | pr->power.dev.cpu = pr->id; |
| 1789 | if (cpuidle_register_device(&pr->power.dev)) |
| 1790 | return -EIO; |
| 1791 | #endif |
| 1792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id); |
| 1794 | for (i = 1; i <= pr->power.count; i++) |
| 1795 | if (pr->power.states[i].valid) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1796 | printk(" C%d[C%d]", i, |
| 1797 | pr->power.states[i].type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | printk(")\n"); |
| 1799 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1800 | #ifndef CONFIG_CPU_IDLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | if (pr->id == 0) { |
| 1802 | pm_idle_save = pm_idle; |
| 1803 | pm_idle = acpi_processor_idle; |
| 1804 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1805 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | /* 'power' [R] */ |
| 1809 | entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1810 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | if (!entry) |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1812 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | else { |
| 1814 | entry->proc_fops = &acpi_processor_power_fops; |
| 1815 | entry->data = acpi_driver_data(device); |
| 1816 | entry->owner = THIS_MODULE; |
| 1817 | } |
| 1818 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1819 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | } |
| 1821 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1822 | int acpi_processor_power_exit(struct acpi_processor *pr, |
| 1823 | struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | { |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1825 | #ifdef CONFIG_CPU_IDLE |
| 1826 | if ((pr->flags.power) && (!boot_option_idle_override)) |
| 1827 | cpuidle_unregister_device(&pr->power.dev); |
| 1828 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | pr->flags.power_setup_done = 0; |
| 1830 | |
| 1831 | if (acpi_device_dir(device)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1832 | remove_proc_entry(ACPI_PROCESSOR_FILE_POWER, |
| 1833 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1835 | #ifndef CONFIG_CPU_IDLE |
| 1836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | /* Unregister the idle handler when processor #0 is removed. */ |
| 1838 | if (pr->id == 0) { |
| 1839 | pm_idle = pm_idle_save; |
| 1840 | |
| 1841 | /* |
| 1842 | * We are about to unload the current idle thread pm callback |
| 1843 | * (pm_idle), Wait for all processors to update cached/local |
| 1844 | * copies of pm_idle before proceeding. |
| 1845 | */ |
| 1846 | cpu_idle_wait(); |
Andrew Morton | 1fec74a | 2006-10-17 00:09:58 -0700 | [diff] [blame] | 1847 | #ifdef CONFIG_SMP |
Mark Gross | f011e2e | 2008-02-04 22:30:09 -0800 | [diff] [blame] | 1848 | pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY, |
| 1849 | &acpi_processor_latency_notifier); |
Andrew Morton | 1fec74a | 2006-10-17 00:09:58 -0700 | [diff] [blame] | 1850 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1852 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1854 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | } |