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