Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1 | /* |
| 2 | * intel_idle.c - native hardware idle loop for modern Intel processors |
| 3 | * |
| 4 | * Copyright (c) 2010, Intel Corporation. |
| 5 | * Len Brown <len.brown@intel.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms and conditions of the GNU General Public License, |
| 9 | * version 2, as published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 14 | * more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * this program; if not, write to the Free Software Foundation, Inc., |
| 18 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * intel_idle is a cpuidle driver that loads on specific Intel processors |
| 23 | * in lieu of the legacy ACPI processor_idle driver. The intent is to |
| 24 | * make Linux more efficient on these processors, as intel_idle knows |
| 25 | * more than ACPI, as well as make Linux more immune to ACPI BIOS bugs. |
| 26 | */ |
| 27 | |
| 28 | /* |
| 29 | * Design Assumptions |
| 30 | * |
| 31 | * All CPUs have same idle states as boot CPU |
| 32 | * |
| 33 | * Chipset BM_STS (bus master status) bit is a NOP |
| 34 | * for preventing entry into deep C-stats |
| 35 | */ |
| 36 | |
| 37 | /* |
| 38 | * Known limitations |
| 39 | * |
| 40 | * The driver currently initializes for_each_online_cpu() upon modprobe. |
| 41 | * It it unaware of subsequent processors hot-added to the system. |
| 42 | * This means that if you boot with maxcpus=n and later online |
| 43 | * processors above n, those processors will use C1 only. |
| 44 | * |
| 45 | * ACPI has a .suspend hack to turn off deep c-statees during suspend |
| 46 | * to avoid complications with the lapic timer workaround. |
| 47 | * Have not seen issues with suspend, but may need same workaround here. |
| 48 | * |
| 49 | * There is currently no kernel-based automatic probing/loading mechanism |
| 50 | * if the driver is built as a module. |
| 51 | */ |
| 52 | |
| 53 | /* un-comment DEBUG to enable pr_debug() statements */ |
| 54 | #define DEBUG |
| 55 | |
| 56 | #include <linux/kernel.h> |
| 57 | #include <linux/cpuidle.h> |
| 58 | #include <linux/clockchips.h> |
| 59 | #include <linux/hrtimer.h> /* ktime_get_real() */ |
| 60 | #include <trace/events/power.h> |
| 61 | #include <linux/sched.h> |
| 62 | |
| 63 | #define INTEL_IDLE_VERSION "0.4" |
| 64 | #define PREFIX "intel_idle: " |
| 65 | |
| 66 | #define MWAIT_SUBSTATE_MASK (0xf) |
| 67 | #define MWAIT_CSTATE_MASK (0xf) |
| 68 | #define MWAIT_SUBSTATE_SIZE (4) |
| 69 | #define MWAIT_MAX_NUM_CSTATES 8 |
| 70 | #define CPUID_MWAIT_LEAF (5) |
| 71 | #define CPUID5_ECX_EXTENSIONS_SUPPORTED (0x1) |
| 72 | #define CPUID5_ECX_INTERRUPT_BREAK (0x2) |
| 73 | |
| 74 | static struct cpuidle_driver intel_idle_driver = { |
| 75 | .name = "intel_idle", |
| 76 | .owner = THIS_MODULE, |
| 77 | }; |
| 78 | /* intel_idle.max_cstate=0 disables driver */ |
| 79 | static int max_cstate = MWAIT_MAX_NUM_CSTATES - 1; |
| 80 | static int power_policy = 7; /* 0 = max perf; 15 = max powersave */ |
| 81 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 82 | static unsigned int mwait_substates; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 83 | static int (*choose_substate)(int); |
| 84 | |
| 85 | /* Reliable LAPIC Timer States, bit 1 for C1 etc. */ |
| 86 | static unsigned int lapic_timer_reliable_states; |
| 87 | |
| 88 | static struct cpuidle_device *intel_idle_cpuidle_devices; |
| 89 | static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state); |
| 90 | |
| 91 | static struct cpuidle_state *cpuidle_state_table; |
| 92 | |
| 93 | /* |
| 94 | * States are indexed by the cstate number, |
| 95 | * which is also the index into the MWAIT hint array. |
| 96 | * Thus C0 is a dummy. |
| 97 | */ |
| 98 | static struct cpuidle_state nehalem_cstates[MWAIT_MAX_NUM_CSTATES] = { |
| 99 | { /* MWAIT C0 */ }, |
| 100 | { /* MWAIT C1 */ |
| 101 | .name = "NHM-C1", |
| 102 | .desc = "MWAIT 0x00", |
| 103 | .driver_data = (void *) 0x00, |
| 104 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 105 | .exit_latency = 3, |
| 106 | .power_usage = 1000, |
| 107 | .target_residency = 6, |
| 108 | .enter = &intel_idle }, |
| 109 | { /* MWAIT C2 */ |
| 110 | .name = "NHM-C3", |
| 111 | .desc = "MWAIT 0x10", |
| 112 | .driver_data = (void *) 0x10, |
| 113 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 114 | .exit_latency = 20, |
| 115 | .power_usage = 500, |
| 116 | .target_residency = 80, |
| 117 | .enter = &intel_idle }, |
| 118 | { /* MWAIT C3 */ |
| 119 | .name = "NHM-C6", |
| 120 | .desc = "MWAIT 0x20", |
| 121 | .driver_data = (void *) 0x20, |
| 122 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 123 | .exit_latency = 200, |
| 124 | .power_usage = 350, |
| 125 | .target_residency = 800, |
| 126 | .enter = &intel_idle }, |
| 127 | }; |
| 128 | |
| 129 | static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = { |
| 130 | { /* MWAIT C0 */ }, |
| 131 | { /* MWAIT C1 */ |
| 132 | .name = "ATM-C1", |
| 133 | .desc = "MWAIT 0x00", |
| 134 | .driver_data = (void *) 0x00, |
| 135 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 136 | .exit_latency = 1, |
| 137 | .power_usage = 1000, |
| 138 | .target_residency = 4, |
| 139 | .enter = &intel_idle }, |
| 140 | { /* MWAIT C2 */ |
| 141 | .name = "ATM-C2", |
| 142 | .desc = "MWAIT 0x10", |
| 143 | .driver_data = (void *) 0x10, |
| 144 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 145 | .exit_latency = 20, |
| 146 | .power_usage = 500, |
| 147 | .target_residency = 80, |
| 148 | .enter = &intel_idle }, |
| 149 | { /* MWAIT C3 */ }, |
| 150 | { /* MWAIT C4 */ |
| 151 | .name = "ATM-C4", |
| 152 | .desc = "MWAIT 0x30", |
| 153 | .driver_data = (void *) 0x30, |
| 154 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 155 | .exit_latency = 100, |
| 156 | .power_usage = 250, |
| 157 | .target_residency = 400, |
| 158 | .enter = &intel_idle }, |
| 159 | { /* MWAIT C5 */ }, |
| 160 | { /* MWAIT C6 */ |
| 161 | .name = "ATM-C6", |
| 162 | .desc = "MWAIT 0x40", |
| 163 | .driver_data = (void *) 0x40, |
| 164 | .flags = CPUIDLE_FLAG_TIME_VALID, |
| 165 | .exit_latency = 200, |
| 166 | .power_usage = 150, |
| 167 | .target_residency = 800, |
| 168 | .enter = NULL }, /* disabled */ |
| 169 | }; |
| 170 | |
| 171 | /* |
| 172 | * choose_tunable_substate() |
| 173 | * |
| 174 | * Run-time decision on which C-state substate to invoke |
| 175 | * If power_policy = 0, choose shallowest substate (0) |
| 176 | * If power_policy = 15, choose deepest substate |
| 177 | * If power_policy = middle, choose middle substate etc. |
| 178 | */ |
| 179 | static int choose_tunable_substate(int cstate) |
| 180 | { |
| 181 | unsigned int num_substates; |
| 182 | unsigned int substate_choice; |
| 183 | |
| 184 | power_policy &= 0xF; /* valid range: 0-15 */ |
| 185 | cstate &= 7; /* valid range: 0-7 */ |
| 186 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 187 | num_substates = (mwait_substates >> ((cstate) * 4)) |
| 188 | & MWAIT_SUBSTATE_MASK; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 189 | |
| 190 | if (num_substates <= 1) |
| 191 | return 0; |
| 192 | |
| 193 | substate_choice = ((power_policy + (power_policy + 1) * |
| 194 | (num_substates - 1)) / 16); |
| 195 | |
| 196 | return substate_choice; |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * choose_zero_substate() |
| 201 | */ |
| 202 | static int choose_zero_substate(int cstate) |
| 203 | { |
| 204 | return 0; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * intel_idle |
| 209 | * @dev: cpuidle_device |
| 210 | * @state: cpuidle state |
| 211 | * |
| 212 | */ |
| 213 | static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state) |
| 214 | { |
| 215 | unsigned long ecx = 1; /* break on interrupt flag */ |
| 216 | unsigned long eax = (unsigned long)cpuidle_get_statedata(state); |
| 217 | unsigned int cstate; |
| 218 | ktime_t kt_before, kt_after; |
| 219 | s64 usec_delta; |
| 220 | int cpu = smp_processor_id(); |
| 221 | |
| 222 | cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1; |
| 223 | |
| 224 | eax = eax + (choose_substate)(cstate); |
| 225 | |
| 226 | local_irq_disable(); |
| 227 | |
| 228 | if (!(lapic_timer_reliable_states & (1 << (cstate)))) |
| 229 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu); |
| 230 | |
| 231 | kt_before = ktime_get_real(); |
| 232 | |
| 233 | stop_critical_timings(); |
| 234 | #ifndef MODULE |
| 235 | trace_power_start(POWER_CSTATE, (eax >> 4) + 1); |
| 236 | #endif |
| 237 | if (!need_resched()) { |
| 238 | |
| 239 | __monitor((void *)¤t_thread_info()->flags, 0, 0); |
| 240 | smp_mb(); |
| 241 | if (!need_resched()) |
| 242 | __mwait(eax, ecx); |
| 243 | } |
| 244 | |
| 245 | start_critical_timings(); |
| 246 | |
| 247 | kt_after = ktime_get_real(); |
| 248 | usec_delta = ktime_to_us(ktime_sub(kt_after, kt_before)); |
| 249 | |
| 250 | local_irq_enable(); |
| 251 | |
| 252 | if (!(lapic_timer_reliable_states & (1 << (cstate)))) |
| 253 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu); |
| 254 | |
| 255 | return usec_delta; |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * intel_idle_probe() |
| 260 | */ |
| 261 | static int intel_idle_probe(void) |
| 262 | { |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 263 | unsigned int eax, ebx, ecx; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 264 | |
| 265 | if (max_cstate == 0) { |
| 266 | pr_debug(PREFIX "disabled\n"); |
| 267 | return -EPERM; |
| 268 | } |
| 269 | |
| 270 | if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) |
| 271 | return -ENODEV; |
| 272 | |
| 273 | if (!boot_cpu_has(X86_FEATURE_MWAIT)) |
| 274 | return -ENODEV; |
| 275 | |
| 276 | if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) |
| 277 | return -ENODEV; |
| 278 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 279 | cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 280 | |
| 281 | if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || |
| 282 | !(ecx & CPUID5_ECX_INTERRUPT_BREAK)) |
| 283 | return -ENODEV; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 284 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 285 | pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 286 | |
| 287 | if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */ |
| 288 | lapic_timer_reliable_states = 0xFFFFFFFF; |
| 289 | |
| 290 | if (boot_cpu_data.x86 != 6) /* family 6 */ |
| 291 | return -ENODEV; |
| 292 | |
| 293 | switch (boot_cpu_data.x86_model) { |
| 294 | |
| 295 | case 0x1A: /* Core i7, Xeon 5500 series */ |
| 296 | case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */ |
| 297 | case 0x1F: /* Core i7 and i5 Processor - Nehalem */ |
| 298 | case 0x2E: /* Nehalem-EX Xeon */ |
| 299 | lapic_timer_reliable_states = (1 << 1); /* C1 */ |
| 300 | |
| 301 | case 0x25: /* Westmere */ |
| 302 | case 0x2C: /* Westmere */ |
| 303 | cpuidle_state_table = nehalem_cstates; |
| 304 | choose_substate = choose_tunable_substate; |
| 305 | break; |
| 306 | |
| 307 | case 0x1C: /* 28 - Atom Processor */ |
| 308 | lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */ |
| 309 | cpuidle_state_table = atom_cstates; |
| 310 | choose_substate = choose_zero_substate; |
| 311 | break; |
| 312 | #ifdef FUTURE_USE |
| 313 | case 0x17: /* 23 - Core 2 Duo */ |
| 314 | lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */ |
| 315 | #endif |
| 316 | |
| 317 | default: |
| 318 | pr_debug(PREFIX "does not run on family %d model %d\n", |
| 319 | boot_cpu_data.x86, boot_cpu_data.x86_model); |
| 320 | return -ENODEV; |
| 321 | } |
| 322 | |
| 323 | pr_debug(PREFIX "v" INTEL_IDLE_VERSION |
| 324 | " model 0x%X\n", boot_cpu_data.x86_model); |
| 325 | |
| 326 | pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n", |
| 327 | lapic_timer_reliable_states); |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | /* |
| 332 | * intel_idle_cpuidle_devices_uninit() |
| 333 | * unregister, free cpuidle_devices |
| 334 | */ |
| 335 | static void intel_idle_cpuidle_devices_uninit(void) |
| 336 | { |
| 337 | int i; |
| 338 | struct cpuidle_device *dev; |
| 339 | |
| 340 | for_each_online_cpu(i) { |
| 341 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, i); |
| 342 | cpuidle_unregister_device(dev); |
| 343 | } |
| 344 | |
| 345 | free_percpu(intel_idle_cpuidle_devices); |
| 346 | return; |
| 347 | } |
| 348 | /* |
| 349 | * intel_idle_cpuidle_devices_init() |
| 350 | * allocate, initialize, register cpuidle_devices |
| 351 | */ |
| 352 | static int intel_idle_cpuidle_devices_init(void) |
| 353 | { |
| 354 | int i, cstate; |
| 355 | struct cpuidle_device *dev; |
| 356 | |
| 357 | intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device); |
| 358 | if (intel_idle_cpuidle_devices == NULL) |
| 359 | return -ENOMEM; |
| 360 | |
| 361 | for_each_online_cpu(i) { |
| 362 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, i); |
| 363 | |
| 364 | dev->state_count = 1; |
| 365 | |
| 366 | for (cstate = 1; cstate < MWAIT_MAX_NUM_CSTATES; ++cstate) { |
| 367 | int num_substates; |
| 368 | |
| 369 | if (cstate > max_cstate) { |
| 370 | printk(PREFIX "max_cstate %d reached\n", |
| 371 | max_cstate); |
| 372 | break; |
| 373 | } |
| 374 | |
| 375 | /* does the state exist in CPUID.MWAIT? */ |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame^] | 376 | num_substates = (mwait_substates >> ((cstate) * 4)) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 377 | & MWAIT_SUBSTATE_MASK; |
| 378 | if (num_substates == 0) |
| 379 | continue; |
| 380 | /* is the state not enabled? */ |
| 381 | if (cpuidle_state_table[cstate].enter == NULL) { |
| 382 | /* does the driver not know about the state? */ |
| 383 | if (*cpuidle_state_table[cstate].name == '\0') |
| 384 | pr_debug(PREFIX "unaware of model 0x%x" |
| 385 | " MWAIT %d please" |
| 386 | " contact lenb@kernel.org", |
| 387 | boot_cpu_data.x86_model, cstate); |
| 388 | continue; |
| 389 | } |
| 390 | |
| 391 | if ((cstate > 2) && |
| 392 | !boot_cpu_has(X86_FEATURE_NONSTOP_TSC)) |
| 393 | mark_tsc_unstable("TSC halts in idle" |
| 394 | " states deeper than C2"); |
| 395 | |
| 396 | dev->states[dev->state_count] = /* structure copy */ |
| 397 | cpuidle_state_table[cstate]; |
| 398 | |
| 399 | dev->state_count += 1; |
| 400 | } |
| 401 | |
| 402 | dev->cpu = i; |
| 403 | if (cpuidle_register_device(dev)) { |
| 404 | pr_debug(PREFIX "cpuidle_register_device %d failed!\n", |
| 405 | i); |
| 406 | intel_idle_cpuidle_devices_uninit(); |
| 407 | return -EIO; |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | |
| 415 | static int __init intel_idle_init(void) |
| 416 | { |
| 417 | int retval; |
| 418 | |
| 419 | retval = intel_idle_probe(); |
| 420 | if (retval) |
| 421 | return retval; |
| 422 | |
| 423 | retval = cpuidle_register_driver(&intel_idle_driver); |
| 424 | if (retval) { |
| 425 | printk(KERN_DEBUG PREFIX "intel_idle yielding to %s", |
| 426 | cpuidle_get_driver()->name); |
| 427 | return retval; |
| 428 | } |
| 429 | |
| 430 | retval = intel_idle_cpuidle_devices_init(); |
| 431 | if (retval) { |
| 432 | cpuidle_unregister_driver(&intel_idle_driver); |
| 433 | return retval; |
| 434 | } |
| 435 | |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | static void __exit intel_idle_exit(void) |
| 440 | { |
| 441 | intel_idle_cpuidle_devices_uninit(); |
| 442 | cpuidle_unregister_driver(&intel_idle_driver); |
| 443 | |
| 444 | return; |
| 445 | } |
| 446 | |
| 447 | module_init(intel_idle_init); |
| 448 | module_exit(intel_idle_exit); |
| 449 | |
| 450 | module_param(power_policy, int, 0644); |
| 451 | module_param(max_cstate, int, 0444); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 452 | |
| 453 | MODULE_AUTHOR("Len Brown <len.brown@intel.com>"); |
| 454 | MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION); |
| 455 | MODULE_LICENSE("GPL"); |