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> |
| 6 | * Copyright (C) 2004 Dominik Brodowski <linux@brodo.de> |
| 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() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include <asm/io.h> |
| 43 | #include <asm/uaccess.h> |
| 44 | |
| 45 | #include <acpi/acpi_bus.h> |
| 46 | #include <acpi/processor.h> |
| 47 | |
| 48 | #define ACPI_PROCESSOR_COMPONENT 0x01000000 |
| 49 | #define ACPI_PROCESSOR_CLASS "processor" |
| 50 | #define ACPI_PROCESSOR_DRIVER_NAME "ACPI Processor Driver" |
| 51 | #define _COMPONENT ACPI_PROCESSOR_COMPONENT |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | ACPI_MODULE_NAME("acpi_processor") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define ACPI_PROCESSOR_FILE_POWER "power" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000) |
| 55 | #define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */ |
| 56 | #define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */ |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 57 | static void (*pm_idle_save) (void) __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | module_param(max_cstate, uint, 0644); |
| 59 | |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 60 | static unsigned int nocst __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | module_param(nocst, uint, 0000); |
| 62 | |
| 63 | /* |
| 64 | * bm_history -- bit-mask with a bit per jiffy of bus-master activity |
| 65 | * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms |
| 66 | * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms |
| 67 | * 100 HZ: 0x0000000F: 4 jiffies = 40ms |
| 68 | * reduce history for more aggressive entry into C3 |
| 69 | */ |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 70 | static unsigned int bm_history __read_mostly = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 71 | (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | module_param(bm_history, uint, 0644); |
| 73 | /* -------------------------------------------------------------------------- |
| 74 | Power Management |
| 75 | -------------------------------------------------------------------------- */ |
| 76 | |
| 77 | /* |
| 78 | * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3. |
| 79 | * For now disable this. Probably a bug somewhere else. |
| 80 | * |
| 81 | * To skip this limit, boot/load with a large max_cstate limit. |
| 82 | */ |
David Shaohua Li | 335f16b | 2005-06-22 18:37:00 -0400 | [diff] [blame] | 83 | static int set_max_cstate(struct dmi_system_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
| 85 | if (max_cstate > ACPI_PROCESSOR_MAX_POWER) |
| 86 | return 0; |
| 87 | |
Len Brown | 3d35600 | 2005-08-03 00:22:52 -0400 | [diff] [blame] | 88 | printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate." |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 89 | " Override with \"processor.max_cstate=%d\"\n", id->ident, |
| 90 | (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Len Brown | 3d35600 | 2005-08-03 00:22:52 -0400 | [diff] [blame] | 92 | max_cstate = (long)id->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
Ashok Raj | 7ded568 | 2006-02-03 21:51:23 +0100 | [diff] [blame] | 97 | /* Actually this shouldn't be __cpuinitdata, would be better to fix the |
| 98 | callers to only run once -AK */ |
| 99 | static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = { |
Thomas Rosner | 876c184 | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 100 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 101 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
Bartlomiej Swiercz | f831335 | 2006-05-29 07:16:00 -0400 | [diff] [blame^] | 102 | DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1}, |
| 103 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 104 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
Thomas Rosner | 876c184 | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 105 | DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1}, |
| 106 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 107 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 108 | DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1}, |
| 109 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 110 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 111 | DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1}, |
| 112 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 113 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 114 | DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1}, |
| 115 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 116 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 117 | DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1}, |
| 118 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 119 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 120 | DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1}, |
| 121 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 122 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 123 | DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1}, |
| 124 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 125 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 126 | DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1}, |
| 127 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 128 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 129 | DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1}, |
| 130 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 131 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 132 | DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1}, |
| 133 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 134 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 135 | DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1}, |
| 136 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 137 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 138 | DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1}, |
| 139 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 140 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 141 | DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1}, |
| 142 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 143 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 144 | DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1}, |
| 145 | { set_max_cstate, "IBM ThinkPad R40e", { |
| 146 | DMI_MATCH(DMI_BIOS_VENDOR,"IBM"), |
| 147 | DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1}, |
| 148 | { set_max_cstate, "Medion 41700", { |
| 149 | DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"), |
| 150 | DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1}, |
| 151 | { set_max_cstate, "Clevo 5600D", { |
| 152 | DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"), |
| 153 | DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")}, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 154 | (void *)2}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | {}, |
| 156 | }; |
| 157 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | static inline u32 ticks_elapsed(u32 t1, u32 t2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
| 160 | if (t2 >= t1) |
| 161 | return (t2 - t1); |
| 162 | else if (!acpi_fadt.tmr_val_ext) |
| 163 | return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF); |
| 164 | else |
| 165 | return ((0xFFFFFFFF - t1) + t2); |
| 166 | } |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | static void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | acpi_processor_power_activate(struct acpi_processor *pr, |
| 170 | struct acpi_processor_cx *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | struct acpi_processor_cx *old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | if (!pr || !new) |
| 175 | return; |
| 176 | |
| 177 | old = pr->power.state; |
| 178 | |
| 179 | if (old) |
| 180 | old->promotion.count = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 181 | new->demotion.count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | /* Cleanup from old state. */ |
| 184 | if (old) { |
| 185 | switch (old->type) { |
| 186 | case ACPI_STATE_C3: |
| 187 | /* Disable bus master reload */ |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 188 | if (new->type != ACPI_STATE_C3 && pr->flags.bm_check) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0, |
| 190 | ACPI_MTX_DO_NOT_LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | break; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | /* Prepare to use new state. */ |
| 196 | switch (new->type) { |
| 197 | case ACPI_STATE_C3: |
| 198 | /* Enable bus master reload */ |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 199 | if (old->type != ACPI_STATE_C3 && pr->flags.bm_check) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 200 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1, |
| 201 | ACPI_MTX_DO_NOT_LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | break; |
| 203 | } |
| 204 | |
| 205 | pr->power.state = new; |
| 206 | |
| 207 | return; |
| 208 | } |
| 209 | |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 210 | static void acpi_safe_halt(void) |
| 211 | { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 212 | current_thread_info()->status &= ~TS_POLLING; |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 213 | smp_mb__after_clear_bit(); |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 214 | if (!need_resched()) |
| 215 | safe_halt(); |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 216 | current_thread_info()->status |= TS_POLLING; |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 217 | } |
| 218 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | static atomic_t c3_cpu_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | static void acpi_processor_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 223 | struct acpi_processor *pr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | struct acpi_processor_cx *cx = NULL; |
| 225 | struct acpi_processor_cx *next_state = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | int sleep_ticks = 0; |
| 227 | u32 t1, t2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 229 | pr = processors[smp_processor_id()]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (!pr) |
| 231 | return; |
| 232 | |
| 233 | /* |
| 234 | * Interrupts must be disabled during bus mastering calculations and |
| 235 | * for C2/C3 transitions. |
| 236 | */ |
| 237 | local_irq_disable(); |
| 238 | |
| 239 | /* |
| 240 | * Check whether we truly need to go idle, or should |
| 241 | * reschedule: |
| 242 | */ |
| 243 | if (unlikely(need_resched())) { |
| 244 | local_irq_enable(); |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | cx = pr->power.state; |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 249 | if (!cx) { |
| 250 | if (pm_idle_save) |
| 251 | pm_idle_save(); |
| 252 | else |
| 253 | acpi_safe_halt(); |
| 254 | return; |
| 255 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
| 257 | /* |
| 258 | * Check BM Activity |
| 259 | * ----------------- |
| 260 | * Check for bus mastering activity (if required), record, and check |
| 261 | * for demotion. |
| 262 | */ |
| 263 | if (pr->flags.bm_check) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 264 | u32 bm_status = 0; |
| 265 | unsigned long diff = jiffies - pr->power.bm_check_timestamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | if (diff > 32) |
| 268 | diff = 32; |
| 269 | |
| 270 | while (diff) { |
| 271 | /* if we didn't get called, assume there was busmaster activity */ |
| 272 | diff--; |
| 273 | if (diff) |
| 274 | pr->power.bm_activity |= 0x1; |
| 275 | pr->power.bm_activity <<= 1; |
| 276 | } |
| 277 | |
| 278 | acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | &bm_status, ACPI_MTX_DO_NOT_LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | if (bm_status) { |
| 281 | pr->power.bm_activity++; |
| 282 | acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 283 | 1, ACPI_MTX_DO_NOT_LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | /* |
| 286 | * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect |
| 287 | * the true state of bus mastering activity; forcing us to |
| 288 | * manually check the BMIDEA bit of each IDE channel. |
| 289 | */ |
| 290 | else if (errata.piix4.bmisx) { |
| 291 | if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 292 | || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | pr->power.bm_activity++; |
| 294 | } |
| 295 | |
| 296 | pr->power.bm_check_timestamp = jiffies; |
| 297 | |
| 298 | /* |
| 299 | * Apply bus mastering demotion policy. Automatically demote |
| 300 | * to avoid a faulty transition. Note that the processor |
| 301 | * won't enter a low-power state during this call (to this |
| 302 | * funciton) but should upon the next. |
| 303 | * |
| 304 | * TBD: A better policy might be to fallback to the demotion |
| 305 | * state (use it for this quantum only) istead of |
| 306 | * demoting -- and rely on duration as our sole demotion |
| 307 | * qualification. This may, however, introduce DMA |
| 308 | * issues (e.g. floppy DMA transfer overrun/underrun). |
| 309 | */ |
| 310 | if (pr->power.bm_activity & cx->demotion.threshold.bm) { |
| 311 | local_irq_enable(); |
| 312 | next_state = cx->demotion.state; |
| 313 | goto end; |
| 314 | } |
| 315 | } |
| 316 | |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 317 | #ifdef CONFIG_HOTPLUG_CPU |
| 318 | /* |
| 319 | * Check for P_LVL2_UP flag before entering C2 and above on |
| 320 | * an SMP system. We do it here instead of doing it at _CST/P_LVL |
| 321 | * detection phase, to work cleanly with logical CPU hotplug. |
| 322 | */ |
| 323 | if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) && |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 324 | !pr->flags.has_cst && !acpi_fadt.plvl2_up) |
| 325 | cx = &pr->power.states[ACPI_STATE_C1]; |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 326 | #endif |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 327 | |
| 328 | cx->usage++; |
| 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* |
| 331 | * Sleep: |
| 332 | * ------ |
| 333 | * Invoke the current Cx state to put the processor to sleep. |
| 334 | */ |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 335 | if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 336 | current_thread_info()->status &= ~TS_POLLING; |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 337 | smp_mb__after_clear_bit(); |
| 338 | if (need_resched()) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 339 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | af2eb17 | 2005-12-02 23:09:06 -0800 | [diff] [blame] | 340 | local_irq_enable(); |
Nick Piggin | 2a298a3 | 2005-12-02 12:44:19 +1100 | [diff] [blame] | 341 | return; |
| 342 | } |
| 343 | } |
| 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | switch (cx->type) { |
| 346 | |
| 347 | case ACPI_STATE_C1: |
| 348 | /* |
| 349 | * Invoke C1. |
| 350 | * Use the appropriate idle routine, the one that would |
| 351 | * be used without acpi C-states. |
| 352 | */ |
| 353 | if (pm_idle_save) |
| 354 | pm_idle_save(); |
| 355 | else |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 356 | acpi_safe_halt(); |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 359 | * TBD: Can't get time duration while in C1, as resumes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | * go to an ISR rather than here. Need to instrument |
| 361 | * base interrupt handler. |
| 362 | */ |
| 363 | sleep_ticks = 0xFFFFFFFF; |
| 364 | break; |
| 365 | |
| 366 | case ACPI_STATE_C2: |
| 367 | /* Get start time (ticks) */ |
| 368 | t1 = inl(acpi_fadt.xpm_tmr_blk.address); |
| 369 | /* Invoke C2 */ |
| 370 | inb(cx->address); |
Andreas Mohr | b488f02 | 2006-06-26 15:58:00 -0400 | [diff] [blame] | 371 | /* Dummy wait op - must do something useless after P_LVL2 read |
| 372 | because chipsets cannot guarantee that STPCLK# signal |
| 373 | gets asserted in time to freeze execution properly. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | t2 = inl(acpi_fadt.xpm_tmr_blk.address); |
| 375 | /* Get end time (ticks) */ |
| 376 | t2 = inl(acpi_fadt.xpm_tmr_blk.address); |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 377 | |
| 378 | #ifdef CONFIG_GENERIC_TIME |
| 379 | /* TSC halts in C2, so notify users */ |
| 380 | mark_tsc_unstable(); |
| 381 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | /* Re-enable interrupts */ |
| 383 | local_irq_enable(); |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 384 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | /* Compute time (ticks) that we were actually asleep */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 386 | sleep_ticks = |
| 387 | ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | break; |
| 389 | |
| 390 | case ACPI_STATE_C3: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 391 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 392 | if (pr->flags.bm_check) { |
| 393 | if (atomic_inc_return(&c3_cpu_count) == |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 394 | num_online_cpus()) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 395 | /* |
| 396 | * All CPUs are trying to go to C3 |
| 397 | * Disable bus master arbitration |
| 398 | */ |
| 399 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 400 | ACPI_MTX_DO_NOT_LOCK); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 401 | } |
| 402 | } else { |
| 403 | /* SMP with no shared cache... Invalidate cache */ |
| 404 | ACPI_FLUSH_CPU_CACHE(); |
| 405 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | /* Get start time (ticks) */ |
| 408 | t1 = inl(acpi_fadt.xpm_tmr_blk.address); |
| 409 | /* Invoke C3 */ |
| 410 | inb(cx->address); |
Andreas Mohr | b488f02 | 2006-06-26 15:58:00 -0400 | [diff] [blame] | 411 | /* Dummy wait op (see above) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | t2 = inl(acpi_fadt.xpm_tmr_blk.address); |
| 413 | /* Get end time (ticks) */ |
| 414 | t2 = inl(acpi_fadt.xpm_tmr_blk.address); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 415 | if (pr->flags.bm_check) { |
| 416 | /* Enable bus master arbitration */ |
| 417 | atomic_dec(&c3_cpu_count); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 418 | acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0, |
| 419 | ACPI_MTX_DO_NOT_LOCK); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 420 | } |
| 421 | |
john stultz | 539eb11 | 2006-06-26 00:25:10 -0700 | [diff] [blame] | 422 | #ifdef CONFIG_GENERIC_TIME |
| 423 | /* TSC halts in C3, so notify users */ |
| 424 | mark_tsc_unstable(); |
| 425 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* Re-enable interrupts */ |
| 427 | local_irq_enable(); |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 428 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /* Compute time (ticks) that we were actually asleep */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 430 | sleep_ticks = |
| 431 | ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | break; |
| 433 | |
| 434 | default: |
| 435 | local_irq_enable(); |
| 436 | return; |
| 437 | } |
| 438 | |
| 439 | next_state = pr->power.state; |
| 440 | |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 441 | #ifdef CONFIG_HOTPLUG_CPU |
| 442 | /* Don't do promotion/demotion */ |
| 443 | if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) && |
| 444 | !pr->flags.has_cst && !acpi_fadt.plvl2_up) { |
| 445 | next_state = cx; |
| 446 | goto end; |
| 447 | } |
| 448 | #endif |
| 449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | /* |
| 451 | * Promotion? |
| 452 | * ---------- |
| 453 | * Track the number of longs (time asleep is greater than threshold) |
| 454 | * and promote when the count threshold is reached. Note that bus |
| 455 | * mastering activity may prevent promotions. |
| 456 | * Do not promote above max_cstate. |
| 457 | */ |
| 458 | if (cx->promotion.state && |
| 459 | ((cx->promotion.state - pr->power.states) <= max_cstate)) { |
| 460 | if (sleep_ticks > cx->promotion.threshold.ticks) { |
| 461 | cx->promotion.count++; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 462 | cx->demotion.count = 0; |
| 463 | if (cx->promotion.count >= |
| 464 | cx->promotion.threshold.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | if (pr->flags.bm_check) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 466 | if (! |
| 467 | (pr->power.bm_activity & cx-> |
| 468 | promotion.threshold.bm)) { |
| 469 | next_state = |
| 470 | cx->promotion.state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | goto end; |
| 472 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | next_state = cx->promotion.state; |
| 475 | goto end; |
| 476 | } |
| 477 | } |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | /* |
| 482 | * Demotion? |
| 483 | * --------- |
| 484 | * Track the number of shorts (time asleep is less than time threshold) |
| 485 | * and demote when the usage threshold is reached. |
| 486 | */ |
| 487 | if (cx->demotion.state) { |
| 488 | if (sleep_ticks < cx->demotion.threshold.ticks) { |
| 489 | cx->demotion.count++; |
| 490 | cx->promotion.count = 0; |
| 491 | if (cx->demotion.count >= cx->demotion.threshold.count) { |
| 492 | next_state = cx->demotion.state; |
| 493 | goto end; |
| 494 | } |
| 495 | } |
| 496 | } |
| 497 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 498 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | /* |
| 500 | * Demote if current state exceeds max_cstate |
| 501 | */ |
| 502 | if ((pr->power.state - pr->power.states) > max_cstate) { |
| 503 | if (cx->demotion.state) |
| 504 | next_state = cx->demotion.state; |
| 505 | } |
| 506 | |
| 507 | /* |
| 508 | * New Cx State? |
| 509 | * ------------- |
| 510 | * If we're going to start using a new Cx state we must clean up |
| 511 | * from the previous and prepare to use the new. |
| 512 | */ |
| 513 | if (next_state != pr->power.state) |
| 514 | acpi_processor_power_activate(pr, next_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
| 516 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | static int acpi_processor_set_power_policy(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
| 519 | unsigned int i; |
| 520 | unsigned int state_is_set = 0; |
| 521 | struct acpi_processor_cx *lower = NULL; |
| 522 | struct acpi_processor_cx *higher = NULL; |
| 523 | struct acpi_processor_cx *cx; |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 527 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
| 529 | /* |
| 530 | * This function sets the default Cx state policy (OS idle handler). |
| 531 | * Our scheme is to promote quickly to C2 but more conservatively |
| 532 | * to C3. We're favoring C2 for its characteristics of low latency |
| 533 | * (quick response), good power savings, and ability to allow bus |
| 534 | * mastering activity. Note that the Cx state policy is completely |
| 535 | * customizable and can be altered dynamically. |
| 536 | */ |
| 537 | |
| 538 | /* startup state */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 539 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | cx = &pr->power.states[i]; |
| 541 | if (!cx->valid) |
| 542 | continue; |
| 543 | |
| 544 | if (!state_is_set) |
| 545 | pr->power.state = cx; |
| 546 | state_is_set++; |
| 547 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
| 550 | if (!state_is_set) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 551 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | |
| 553 | /* demotion */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 554 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | cx = &pr->power.states[i]; |
| 556 | if (!cx->valid) |
| 557 | continue; |
| 558 | |
| 559 | if (lower) { |
| 560 | cx->demotion.state = lower; |
| 561 | cx->demotion.threshold.ticks = cx->latency_ticks; |
| 562 | cx->demotion.threshold.count = 1; |
| 563 | if (cx->type == ACPI_STATE_C3) |
| 564 | cx->demotion.threshold.bm = bm_history; |
| 565 | } |
| 566 | |
| 567 | lower = cx; |
| 568 | } |
| 569 | |
| 570 | /* promotion */ |
| 571 | for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) { |
| 572 | cx = &pr->power.states[i]; |
| 573 | if (!cx->valid) |
| 574 | continue; |
| 575 | |
| 576 | if (higher) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 577 | cx->promotion.state = higher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | cx->promotion.threshold.ticks = cx->latency_ticks; |
| 579 | if (cx->type >= ACPI_STATE_C2) |
| 580 | cx->promotion.threshold.count = 4; |
| 581 | else |
| 582 | cx->promotion.threshold.count = 10; |
| 583 | if (higher->type == ACPI_STATE_C3) |
| 584 | cx->promotion.threshold.bm = bm_history; |
| 585 | } |
| 586 | |
| 587 | higher = cx; |
| 588 | } |
| 589 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 590 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 593 | static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
| 596 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 597 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
| 599 | if (!pr->pblk) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 600 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* if info is obtained from pblk/fadt, type equals state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2; |
| 604 | pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3; |
| 605 | |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 606 | #ifndef CONFIG_HOTPLUG_CPU |
| 607 | /* |
| 608 | * Check for P_LVL2_UP flag before entering C2 and above on |
| 609 | * an SMP system. |
| 610 | */ |
David Shaohua Li | 1e48396 | 2005-12-01 17:00:00 -0500 | [diff] [blame] | 611 | if ((num_online_cpus() > 1) && !acpi_fadt.plvl2_up) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 612 | return -ENODEV; |
Venkatesh Pallipadi | 4c03355 | 2005-09-15 12:20:00 -0400 | [diff] [blame] | 613 | #endif |
| 614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | /* determine C2 and C3 address from pblk */ |
| 616 | pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4; |
| 617 | pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5; |
| 618 | |
| 619 | /* determine latencies from FADT */ |
| 620 | pr->power.states[ACPI_STATE_C2].latency = acpi_fadt.plvl2_lat; |
| 621 | pr->power.states[ACPI_STATE_C3].latency = acpi_fadt.plvl3_lat; |
| 622 | |
| 623 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 624 | "lvl2[0x%08x] lvl3[0x%08x]\n", |
| 625 | pr->power.states[ACPI_STATE_C2].address, |
| 626 | pr->power.states[ACPI_STATE_C3].address)); |
| 627 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 628 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | static int acpi_processor_get_power_info_default_c1(struct acpi_processor *pr) |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 632 | { |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 633 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 634 | /* Zero initialize all the C-states info. */ |
Linus Torvalds | 2203d6e | 2005-11-18 07:29:51 -0800 | [diff] [blame] | 635 | memset(pr->power.states, 0, sizeof(pr->power.states)); |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 636 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 637 | /* set the first C-State to C1 */ |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 638 | pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1; |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 639 | |
| 640 | /* the C0 state only exists as a filler in our array, |
| 641 | * and all processors need to support C1 */ |
| 642 | pr->power.states[ACPI_STATE_C0].valid = 1; |
| 643 | pr->power.states[ACPI_STATE_C1].valid = 1; |
| 644 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 645 | return 0; |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 646 | } |
| 647 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 648 | static int acpi_processor_get_power_info_cst(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 650 | acpi_status status = 0; |
| 651 | acpi_integer count; |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 652 | int current_count; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 653 | int i; |
| 654 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 655 | union acpi_object *cst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (nocst) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 659 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 661 | current_count = 1; |
| 662 | |
| 663 | /* Zero initialize C2 onwards and prepare for fresh CST lookup */ |
| 664 | for (i = 2; i < ACPI_PROCESSOR_MAX_POWER; i++) |
| 665 | memset(&(pr->power.states[i]), 0, |
| 666 | sizeof(struct acpi_processor_cx)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
| 668 | status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer); |
| 669 | if (ACPI_FAILURE(status)) { |
| 670 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 671 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 672 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 674 | cst = (union acpi_object *)buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
| 676 | /* There must be at least 2 elements */ |
| 677 | if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 678 | printk(KERN_ERR PREFIX "not enough elements in _CST\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | status = -EFAULT; |
| 680 | goto end; |
| 681 | } |
| 682 | |
| 683 | count = cst->package.elements[0].integer.value; |
| 684 | |
| 685 | /* Validate number of power states. */ |
| 686 | if (count < 1 || count != cst->package.count - 1) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 687 | printk(KERN_ERR PREFIX "count given by _CST is not valid\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | status = -EFAULT; |
| 689 | goto end; |
| 690 | } |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | /* Tell driver that at least _CST is supported. */ |
| 693 | pr->flags.has_cst = 1; |
| 694 | |
| 695 | for (i = 1; i <= count; i++) { |
| 696 | union acpi_object *element; |
| 697 | union acpi_object *obj; |
| 698 | struct acpi_power_register *reg; |
| 699 | struct acpi_processor_cx cx; |
| 700 | |
| 701 | memset(&cx, 0, sizeof(cx)); |
| 702 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 703 | element = (union acpi_object *)&(cst->package.elements[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | if (element->type != ACPI_TYPE_PACKAGE) |
| 705 | continue; |
| 706 | |
| 707 | if (element->package.count != 4) |
| 708 | continue; |
| 709 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 710 | obj = (union acpi_object *)&(element->package.elements[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | if (obj->type != ACPI_TYPE_BUFFER) |
| 713 | continue; |
| 714 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | reg = (struct acpi_power_register *)obj->buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 718 | (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | continue; |
| 720 | |
| 721 | cx.address = (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) ? |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 722 | 0 : reg->address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
| 724 | /* There should be an easy way to extract an integer... */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 725 | obj = (union acpi_object *)&(element->package.elements[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (obj->type != ACPI_TYPE_INTEGER) |
| 727 | continue; |
| 728 | |
| 729 | cx.type = obj->integer.value; |
| 730 | |
| 731 | if ((cx.type != ACPI_STATE_C1) && |
| 732 | (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO)) |
| 733 | continue; |
| 734 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 735 | if ((cx.type < ACPI_STATE_C2) || (cx.type > ACPI_STATE_C3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | continue; |
| 737 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 738 | obj = (union acpi_object *)&(element->package.elements[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | if (obj->type != ACPI_TYPE_INTEGER) |
| 740 | continue; |
| 741 | |
| 742 | cx.latency = obj->integer.value; |
| 743 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 744 | obj = (union acpi_object *)&(element->package.elements[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | if (obj->type != ACPI_TYPE_INTEGER) |
| 746 | continue; |
| 747 | |
| 748 | cx.power = obj->integer.value; |
| 749 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 750 | current_count++; |
| 751 | memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx)); |
| 752 | |
| 753 | /* |
| 754 | * We support total ACPI_PROCESSOR_MAX_POWER - 1 |
| 755 | * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1) |
| 756 | */ |
| 757 | if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) { |
| 758 | printk(KERN_WARNING |
| 759 | "Limiting number of power states to max (%d)\n", |
| 760 | ACPI_PROCESSOR_MAX_POWER); |
| 761 | printk(KERN_WARNING |
| 762 | "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n"); |
| 763 | break; |
| 764 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 767 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n", |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 768 | current_count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | /* Validate number of power states discovered */ |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 771 | if (current_count < 2) |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 772 | status = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 774 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | acpi_os_free(buffer.pointer); |
| 776 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 777 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx) |
| 781 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
| 783 | if (!cx->address) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 784 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | |
| 786 | /* |
| 787 | * C2 latency must be less than or equal to 100 |
| 788 | * microseconds. |
| 789 | */ |
| 790 | else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) { |
| 791 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 792 | "latency too large [%d]\n", cx->latency)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 793 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | /* |
| 797 | * Otherwise we've met all of our C2 requirements. |
| 798 | * Normalize the C2 latency to expidite policy |
| 799 | */ |
| 800 | cx->valid = 1; |
| 801 | cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency); |
| 802 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 803 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |
| 805 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 806 | static void acpi_processor_power_verify_c3(struct acpi_processor *pr, |
| 807 | struct acpi_processor_cx *cx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 809 | static int bm_check_flag; |
| 810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | if (!cx->address) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 813 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
| 815 | /* |
| 816 | * C3 latency must be less than or equal to 1000 |
| 817 | * microseconds. |
| 818 | */ |
| 819 | else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) { |
| 820 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 821 | "latency too large [%d]\n", cx->latency)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 822 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* |
| 826 | * PIIX4 Erratum #18: We don't support C3 when Type-F (fast) |
| 827 | * DMA transfers are used by any ISA device to avoid livelock. |
| 828 | * Note that we could disable Type-F DMA (as recommended by |
| 829 | * the erratum), but this is known to disrupt certain ISA |
| 830 | * devices thus we take the conservative approach. |
| 831 | */ |
| 832 | else if (errata.piix4.fdma) { |
| 833 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 834 | "C3 not supported on PIIX4 with Type-F DMA\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 835 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 838 | /* All the logic here assumes flags.bm_check is same across all CPUs */ |
| 839 | if (!bm_check_flag) { |
| 840 | /* Determine whether bm_check is needed based on CPU */ |
| 841 | acpi_processor_power_init_bm_check(&(pr->flags), pr->id); |
| 842 | bm_check_flag = pr->flags.bm_check; |
| 843 | } else { |
| 844 | pr->flags.bm_check = bm_check_flag; |
| 845 | } |
| 846 | |
| 847 | if (pr->flags.bm_check) { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 848 | /* bus mastering control is necessary */ |
| 849 | if (!pr->flags.bm_control) { |
| 850 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 851 | "C3 support requires bus mastering control\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 852 | return; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 853 | } |
| 854 | } else { |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 855 | /* |
| 856 | * WBINVD should be set in fadt, for C3 state to be |
| 857 | * supported on when bm_check is not required. |
| 858 | */ |
| 859 | if (acpi_fadt.wb_invd != 1) { |
| 860 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 861 | "Cache invalidation should work properly" |
| 862 | " for C3 to be enabled on SMP systems\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 863 | return; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 864 | } |
| 865 | acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 866 | 0, ACPI_MTX_DO_NOT_LOCK); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 867 | } |
| 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | /* |
| 870 | * Otherwise we've met all of our C3 requirements. |
| 871 | * Normalize the C3 latency to expidite policy. Enable |
| 872 | * checking of bus mastering status (bm_check) so we can |
| 873 | * use this in our C3 policy |
| 874 | */ |
| 875 | cx->valid = 1; |
| 876 | cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 878 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | static int acpi_processor_power_verify(struct acpi_processor *pr) |
| 882 | { |
| 883 | unsigned int i; |
| 884 | unsigned int working = 0; |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 885 | |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 886 | #ifdef ARCH_APICTIMER_STOPS_ON_C3 |
Andi Kleen | 0b5c59a | 2006-03-26 02:24:07 +0100 | [diff] [blame] | 887 | int timer_broadcast = 0; |
| 888 | cpumask_t mask = cpumask_of_cpu(pr->id); |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 889 | on_each_cpu(switch_ipi_to_APIC_timer, &mask, 1, 1); |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 890 | #endif |
| 891 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 892 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | struct acpi_processor_cx *cx = &pr->power.states[i]; |
| 894 | |
| 895 | switch (cx->type) { |
| 896 | case ACPI_STATE_C1: |
| 897 | cx->valid = 1; |
| 898 | break; |
| 899 | |
| 900 | case ACPI_STATE_C2: |
| 901 | acpi_processor_power_verify_c2(cx); |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 902 | #ifdef ARCH_APICTIMER_STOPS_ON_C3 |
| 903 | /* Some AMD systems fake C3 as C2, but still |
| 904 | have timer troubles */ |
| 905 | if (cx->valid && |
| 906 | boot_cpu_data.x86_vendor == X86_VENDOR_AMD) |
| 907 | timer_broadcast++; |
| 908 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | break; |
| 910 | |
| 911 | case ACPI_STATE_C3: |
| 912 | acpi_processor_power_verify_c3(pr, cx); |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 913 | #ifdef ARCH_APICTIMER_STOPS_ON_C3 |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 914 | if (cx->valid) |
| 915 | timer_broadcast++; |
Venkatesh Pallipadi | 6eb0a0f | 2006-01-11 22:44:21 +0100 | [diff] [blame] | 916 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | break; |
| 918 | } |
| 919 | |
| 920 | if (cx->valid) |
| 921 | working++; |
| 922 | } |
| 923 | |
Andi Kleen | 0b5c59a | 2006-03-26 02:24:07 +0100 | [diff] [blame] | 924 | #ifdef ARCH_APICTIMER_STOPS_ON_C3 |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 925 | if (timer_broadcast) |
| 926 | on_each_cpu(switch_APIC_timer_to_ipi, &mask, 1, 1); |
Andi Kleen | 0b5c59a | 2006-03-26 02:24:07 +0100 | [diff] [blame] | 927 | #endif |
Andi Kleen | bd66334 | 2006-03-25 16:31:07 +0100 | [diff] [blame] | 928 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return (working); |
| 930 | } |
| 931 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 932 | static int acpi_processor_get_power_info(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | { |
| 934 | unsigned int i; |
| 935 | int result; |
| 936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | |
| 938 | /* NOTE: the idle thread may not be running while calling |
| 939 | * this function */ |
| 940 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 941 | /* Adding C1 state */ |
| 942 | acpi_processor_get_power_info_default_c1(pr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | result = acpi_processor_get_power_info_cst(pr); |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 944 | if (result == -ENODEV) |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 945 | acpi_processor_get_power_info_fadt(pr); |
Venkatesh Pallipadi | 6d93c64 | 2005-09-15 12:19:00 -0400 | [diff] [blame] | 946 | |
Janosch Machowinski | cf82478 | 2005-08-20 08:02:00 -0400 | [diff] [blame] | 947 | pr->power.count = acpi_processor_power_verify(pr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
| 949 | /* |
| 950 | * Set Default Policy |
| 951 | * ------------------ |
| 952 | * Now that we know which states are supported, set the default |
| 953 | * policy. Note that this policy can be changed dynamically |
| 954 | * (e.g. encourage deeper sleeps to conserve battery life when |
| 955 | * not on AC). |
| 956 | */ |
| 957 | result = acpi_processor_set_power_policy(pr); |
| 958 | if (result) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 959 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
| 961 | /* |
| 962 | * if one state of type C2 or C3 is available, mark this |
| 963 | * CPU as being "idle manageable" |
| 964 | */ |
| 965 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 966 | if (pr->power.states[i].valid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | pr->power.count = i; |
Linus Torvalds | 2203d6e | 2005-11-18 07:29:51 -0800 | [diff] [blame] | 968 | if (pr->power.states[i].type >= ACPI_STATE_C2) |
| 969 | pr->flags.power = 1; |
Venkatesh Pallipadi | acf05f4 | 2005-03-31 23:23:15 -0500 | [diff] [blame] | 970 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 973 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | } |
| 975 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 976 | int acpi_processor_cst_has_changed(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 978 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
| 981 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 982 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 984 | if (nocst) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 985 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | if (!pr->flags.power_setup_done) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 989 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
| 991 | /* Fall back to the default idle loop */ |
| 992 | pm_idle = pm_idle_save; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 993 | synchronize_sched(); /* Relies on interrupts forcing exit from idle. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | |
| 995 | pr->flags.power = 0; |
| 996 | result = acpi_processor_get_power_info(pr); |
| 997 | if ((pr->flags.power == 1) && (pr->flags.power_setup_done)) |
| 998 | pm_idle = acpi_processor_idle; |
| 999 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1000 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
| 1003 | /* proc interface */ |
| 1004 | |
| 1005 | static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset) |
| 1006 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1007 | struct acpi_processor *pr = (struct acpi_processor *)seq->private; |
| 1008 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | if (!pr) |
| 1012 | goto end; |
| 1013 | |
| 1014 | seq_printf(seq, "active state: C%zd\n" |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1015 | "max_cstate: C%d\n" |
| 1016 | "bus master activity: %08x\n", |
| 1017 | pr->power.state ? pr->power.state - pr->power.states : 0, |
| 1018 | max_cstate, (unsigned)pr->power.bm_activity); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
| 1020 | seq_puts(seq, "states:\n"); |
| 1021 | |
| 1022 | for (i = 1; i <= pr->power.count; i++) { |
| 1023 | seq_printf(seq, " %cC%d: ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1024 | (&pr->power.states[i] == |
| 1025 | pr->power.state ? '*' : ' '), i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
| 1027 | if (!pr->power.states[i].valid) { |
| 1028 | seq_puts(seq, "<not supported>\n"); |
| 1029 | continue; |
| 1030 | } |
| 1031 | |
| 1032 | switch (pr->power.states[i].type) { |
| 1033 | case ACPI_STATE_C1: |
| 1034 | seq_printf(seq, "type[C1] "); |
| 1035 | break; |
| 1036 | case ACPI_STATE_C2: |
| 1037 | seq_printf(seq, "type[C2] "); |
| 1038 | break; |
| 1039 | case ACPI_STATE_C3: |
| 1040 | seq_printf(seq, "type[C3] "); |
| 1041 | break; |
| 1042 | default: |
| 1043 | seq_printf(seq, "type[--] "); |
| 1044 | break; |
| 1045 | } |
| 1046 | |
| 1047 | if (pr->power.states[i].promotion.state) |
| 1048 | seq_printf(seq, "promotion[C%zd] ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1049 | (pr->power.states[i].promotion.state - |
| 1050 | pr->power.states)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | else |
| 1052 | seq_puts(seq, "promotion[--] "); |
| 1053 | |
| 1054 | if (pr->power.states[i].demotion.state) |
| 1055 | seq_printf(seq, "demotion[C%zd] ", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1056 | (pr->power.states[i].demotion.state - |
| 1057 | pr->power.states)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | else |
| 1059 | seq_puts(seq, "demotion[--] "); |
| 1060 | |
| 1061 | seq_printf(seq, "latency[%03d] usage[%08d]\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1062 | pr->power.states[i].latency, |
| 1063 | pr->power.states[i].usage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | } |
| 1065 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1066 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1067 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | static int acpi_processor_power_open_fs(struct inode *inode, struct file *file) |
| 1071 | { |
| 1072 | return single_open(file, acpi_processor_power_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1073 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | static struct file_operations acpi_processor_power_fops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1077 | .open = acpi_processor_power_open_fs, |
| 1078 | .read = seq_read, |
| 1079 | .llseek = seq_lseek, |
| 1080 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | }; |
| 1082 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1083 | int acpi_processor_power_init(struct acpi_processor *pr, |
| 1084 | struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1086 | acpi_status status = 0; |
Andreas Mohr | b683505 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1087 | static int first_run; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1088 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | unsigned int i; |
| 1090 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | |
| 1092 | if (!first_run) { |
| 1093 | dmi_check_system(processor_power_dmi_table); |
| 1094 | if (max_cstate < ACPI_C_STATES_MAX) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1095 | printk(KERN_NOTICE |
| 1096 | "ACPI: processor limited to max C-state %d\n", |
| 1097 | max_cstate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | first_run++; |
| 1099 | } |
| 1100 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1101 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1102 | return -EINVAL; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 1103 | |
| 1104 | if (acpi_fadt.cst_cnt && !nocst) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1105 | status = |
| 1106 | acpi_os_write_port(acpi_fadt.smi_cmd, acpi_fadt.cst_cnt, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1108 | ACPI_EXCEPTION((AE_INFO, status, |
| 1109 | "Notifying BIOS of _CST ability failed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | } |
| 1111 | } |
| 1112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | acpi_processor_get_power_info(pr); |
| 1114 | |
| 1115 | /* |
| 1116 | * Install the idle handler if processor power management is supported. |
| 1117 | * Note that we use previously set idle handler will be used on |
| 1118 | * platforms that only support C1. |
| 1119 | */ |
| 1120 | if ((pr->flags.power) && (!boot_option_idle_override)) { |
| 1121 | printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id); |
| 1122 | for (i = 1; i <= pr->power.count; i++) |
| 1123 | if (pr->power.states[i].valid) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1124 | printk(" C%d[C%d]", i, |
| 1125 | pr->power.states[i].type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | printk(")\n"); |
| 1127 | |
| 1128 | if (pr->id == 0) { |
| 1129 | pm_idle_save = pm_idle; |
| 1130 | pm_idle = acpi_processor_idle; |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | /* 'power' [R] */ |
| 1135 | entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1136 | S_IRUGO, acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | if (!entry) |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1138 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | else { |
| 1140 | entry->proc_fops = &acpi_processor_power_fops; |
| 1141 | entry->data = acpi_driver_data(device); |
| 1142 | entry->owner = THIS_MODULE; |
| 1143 | } |
| 1144 | |
| 1145 | pr->flags.power_setup_done = 1; |
| 1146 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1147 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1150 | int acpi_processor_power_exit(struct acpi_processor *pr, |
| 1151 | struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
| 1154 | pr->flags.power_setup_done = 0; |
| 1155 | |
| 1156 | if (acpi_device_dir(device)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1157 | remove_proc_entry(ACPI_PROCESSOR_FILE_POWER, |
| 1158 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
| 1160 | /* Unregister the idle handler when processor #0 is removed. */ |
| 1161 | if (pr->id == 0) { |
| 1162 | pm_idle = pm_idle_save; |
| 1163 | |
| 1164 | /* |
| 1165 | * We are about to unload the current idle thread pm callback |
| 1166 | * (pm_idle), Wait for all processors to update cached/local |
| 1167 | * copies of pm_idle before proceeding. |
| 1168 | */ |
| 1169 | cpu_idle_wait(); |
| 1170 | } |
| 1171 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1172 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |