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