blob: d310590598f9d646f9c54d85338a4933246591ec [file] [log] [blame]
Len Brown26717172010-03-08 14:07:30 -05001/*
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
74static struct cpuidle_driver intel_idle_driver = {
75 .name = "intel_idle",
76 .owner = THIS_MODULE,
77};
78/* intel_idle.max_cstate=0 disables driver */
79static int max_cstate = MWAIT_MAX_NUM_CSTATES - 1;
Len Brown26717172010-03-08 14:07:30 -050080
Len Brownc4236282010-05-28 02:22:03 -040081static unsigned int mwait_substates;
Len Brown26717172010-03-08 14:07:30 -050082
83/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
Len Brownd13780d2010-07-07 00:12:03 -040084static unsigned int lapic_timer_reliable_states = (1 << 1); /* Default to only C1 */
Len Brown26717172010-03-08 14:07:30 -050085
Namhyung Kim3265eba2010-08-08 03:10:03 +090086static struct cpuidle_device __percpu *intel_idle_cpuidle_devices;
Len Brown26717172010-03-08 14:07:30 -050087static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state);
88
89static struct cpuidle_state *cpuidle_state_table;
90
91/*
92 * States are indexed by the cstate number,
93 * which is also the index into the MWAIT hint array.
94 * Thus C0 is a dummy.
95 */
96static struct cpuidle_state nehalem_cstates[MWAIT_MAX_NUM_CSTATES] = {
97 { /* MWAIT C0 */ },
98 { /* MWAIT C1 */
99 .name = "NHM-C1",
100 .desc = "MWAIT 0x00",
101 .driver_data = (void *) 0x00,
102 .flags = CPUIDLE_FLAG_TIME_VALID,
103 .exit_latency = 3,
Len Brown26717172010-03-08 14:07:30 -0500104 .target_residency = 6,
105 .enter = &intel_idle },
106 { /* MWAIT C2 */
107 .name = "NHM-C3",
108 .desc = "MWAIT 0x10",
109 .driver_data = (void *) 0x10,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400110 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500111 .exit_latency = 20,
Len Brown26717172010-03-08 14:07:30 -0500112 .target_residency = 80,
113 .enter = &intel_idle },
114 { /* MWAIT C3 */
115 .name = "NHM-C6",
116 .desc = "MWAIT 0x20",
117 .driver_data = (void *) 0x20,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400118 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500119 .exit_latency = 200,
Len Brown26717172010-03-08 14:07:30 -0500120 .target_residency = 800,
121 .enter = &intel_idle },
122};
123
Len Brownd13780d2010-07-07 00:12:03 -0400124static struct cpuidle_state snb_cstates[MWAIT_MAX_NUM_CSTATES] = {
125 { /* MWAIT C0 */ },
126 { /* MWAIT C1 */
127 .name = "SNB-C1",
128 .desc = "MWAIT 0x00",
129 .driver_data = (void *) 0x00,
130 .flags = CPUIDLE_FLAG_TIME_VALID,
131 .exit_latency = 1,
132 .target_residency = 4,
133 .enter = &intel_idle },
134 { /* MWAIT C2 */
135 .name = "SNB-C3",
136 .desc = "MWAIT 0x10",
137 .driver_data = (void *) 0x10,
Len Brown00527cc2010-10-23 02:33:50 -0400138 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400139 .exit_latency = 80,
140 .target_residency = 160,
141 .enter = &intel_idle },
142 { /* MWAIT C3 */
143 .name = "SNB-C6",
144 .desc = "MWAIT 0x20",
145 .driver_data = (void *) 0x20,
Len Brown00527cc2010-10-23 02:33:50 -0400146 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400147 .exit_latency = 104,
148 .target_residency = 208,
149 .enter = &intel_idle },
150 { /* MWAIT C4 */
151 .name = "SNB-C7",
152 .desc = "MWAIT 0x30",
153 .driver_data = (void *) 0x30,
Len Brown00527cc2010-10-23 02:33:50 -0400154 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400155 .exit_latency = 109,
156 .target_residency = 300,
157 .enter = &intel_idle },
158};
159
Len Brown26717172010-03-08 14:07:30 -0500160static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
161 { /* MWAIT C0 */ },
162 { /* MWAIT C1 */
163 .name = "ATM-C1",
164 .desc = "MWAIT 0x00",
165 .driver_data = (void *) 0x00,
166 .flags = CPUIDLE_FLAG_TIME_VALID,
167 .exit_latency = 1,
Len Brown26717172010-03-08 14:07:30 -0500168 .target_residency = 4,
169 .enter = &intel_idle },
170 { /* MWAIT C2 */
171 .name = "ATM-C2",
172 .desc = "MWAIT 0x10",
173 .driver_data = (void *) 0x10,
174 .flags = CPUIDLE_FLAG_TIME_VALID,
175 .exit_latency = 20,
Len Brown26717172010-03-08 14:07:30 -0500176 .target_residency = 80,
177 .enter = &intel_idle },
178 { /* MWAIT C3 */ },
179 { /* MWAIT C4 */
180 .name = "ATM-C4",
181 .desc = "MWAIT 0x30",
182 .driver_data = (void *) 0x30,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400183 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500184 .exit_latency = 100,
Len Brown26717172010-03-08 14:07:30 -0500185 .target_residency = 400,
186 .enter = &intel_idle },
187 { /* MWAIT C5 */ },
188 { /* MWAIT C6 */
189 .name = "ATM-C6",
Len Brown7fcca7d2010-10-05 13:43:14 -0400190 .desc = "MWAIT 0x52",
191 .driver_data = (void *) 0x52,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400192 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown7fcca7d2010-10-05 13:43:14 -0400193 .exit_latency = 140,
Len Brown7fcca7d2010-10-05 13:43:14 -0400194 .target_residency = 560,
195 .enter = &intel_idle },
Len Brown26717172010-03-08 14:07:30 -0500196};
197
Len Brown26717172010-03-08 14:07:30 -0500198/**
199 * intel_idle
200 * @dev: cpuidle_device
201 * @state: cpuidle state
202 *
203 */
204static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
205{
206 unsigned long ecx = 1; /* break on interrupt flag */
207 unsigned long eax = (unsigned long)cpuidle_get_statedata(state);
208 unsigned int cstate;
209 ktime_t kt_before, kt_after;
210 s64 usec_delta;
211 int cpu = smp_processor_id();
212
213 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
214
Len Brown26717172010-03-08 14:07:30 -0500215 local_irq_disable();
216
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400217 /*
Len Brownc8381cc2010-10-15 20:43:06 -0400218 * leave_mm() to avoid costly and often unnecessary wakeups
219 * for flushing the user TLB's associated with the active mm.
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400220 */
Len Brownc8381cc2010-10-15 20:43:06 -0400221 if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED)
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400222 leave_mm(cpu);
223
Len Brown26717172010-03-08 14:07:30 -0500224 if (!(lapic_timer_reliable_states & (1 << (cstate))))
225 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
226
227 kt_before = ktime_get_real();
228
229 stop_critical_timings();
230#ifndef MODULE
Linus Torvalds8d915302010-08-04 11:13:36 -0700231 trace_power_start(POWER_CSTATE, (eax >> 4) + 1, cpu);
Len Brown26717172010-03-08 14:07:30 -0500232#endif
233 if (!need_resched()) {
234
235 __monitor((void *)&current_thread_info()->flags, 0, 0);
236 smp_mb();
237 if (!need_resched())
238 __mwait(eax, ecx);
239 }
240
241 start_critical_timings();
242
243 kt_after = ktime_get_real();
244 usec_delta = ktime_to_us(ktime_sub(kt_after, kt_before));
245
246 local_irq_enable();
247
248 if (!(lapic_timer_reliable_states & (1 << (cstate))))
249 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
250
251 return usec_delta;
252}
253
254/*
255 * intel_idle_probe()
256 */
257static int intel_idle_probe(void)
258{
Len Brownc4236282010-05-28 02:22:03 -0400259 unsigned int eax, ebx, ecx;
Len Brown26717172010-03-08 14:07:30 -0500260
261 if (max_cstate == 0) {
262 pr_debug(PREFIX "disabled\n");
263 return -EPERM;
264 }
265
266 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
267 return -ENODEV;
268
269 if (!boot_cpu_has(X86_FEATURE_MWAIT))
270 return -ENODEV;
271
272 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
273 return -ENODEV;
274
Len Brownc4236282010-05-28 02:22:03 -0400275 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500276
277 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
278 !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
279 return -ENODEV;
Len Brown26717172010-03-08 14:07:30 -0500280
Len Brownc4236282010-05-28 02:22:03 -0400281 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500282
283 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
284 lapic_timer_reliable_states = 0xFFFFFFFF;
285
286 if (boot_cpu_data.x86 != 6) /* family 6 */
287 return -ENODEV;
288
289 switch (boot_cpu_data.x86_model) {
290
291 case 0x1A: /* Core i7, Xeon 5500 series */
292 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */
293 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
294 case 0x2E: /* Nehalem-EX Xeon */
Len Brownec67a2b2010-07-26 23:40:19 -0400295 case 0x2F: /* Westmere-EX Xeon */
Len Brown26717172010-03-08 14:07:30 -0500296 lapic_timer_reliable_states = (1 << 1); /* C1 */
297
298 case 0x25: /* Westmere */
299 case 0x2C: /* Westmere */
300 cpuidle_state_table = nehalem_cstates;
Len Brown26717172010-03-08 14:07:30 -0500301 break;
302
303 case 0x1C: /* 28 - Atom Processor */
Arjan van de Ven4725fd32010-07-21 23:42:25 -0400304 case 0x26: /* 38 - Lincroft Atom Processor */
Len Brown26717172010-03-08 14:07:30 -0500305 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
306 cpuidle_state_table = atom_cstates;
Len Brown26717172010-03-08 14:07:30 -0500307 break;
Len Brownd13780d2010-07-07 00:12:03 -0400308
309 case 0x2A: /* SNB */
310 case 0x2D: /* SNB Xeon */
311 cpuidle_state_table = snb_cstates;
Len Brownd13780d2010-07-07 00:12:03 -0400312 break;
Len Brown26717172010-03-08 14:07:30 -0500313#ifdef FUTURE_USE
314 case 0x17: /* 23 - Core 2 Duo */
315 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
316#endif
317
318 default:
319 pr_debug(PREFIX "does not run on family %d model %d\n",
320 boot_cpu_data.x86, boot_cpu_data.x86_model);
321 return -ENODEV;
322 }
323
324 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
325 " model 0x%X\n", boot_cpu_data.x86_model);
326
327 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
328 lapic_timer_reliable_states);
329 return 0;
330}
331
332/*
333 * intel_idle_cpuidle_devices_uninit()
334 * unregister, free cpuidle_devices
335 */
336static void intel_idle_cpuidle_devices_uninit(void)
337{
338 int i;
339 struct cpuidle_device *dev;
340
341 for_each_online_cpu(i) {
342 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
343 cpuidle_unregister_device(dev);
344 }
345
346 free_percpu(intel_idle_cpuidle_devices);
347 return;
348}
349/*
350 * intel_idle_cpuidle_devices_init()
351 * allocate, initialize, register cpuidle_devices
352 */
353static int intel_idle_cpuidle_devices_init(void)
354{
355 int i, cstate;
356 struct cpuidle_device *dev;
357
358 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
359 if (intel_idle_cpuidle_devices == NULL)
360 return -ENOMEM;
361
362 for_each_online_cpu(i) {
363 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
364
365 dev->state_count = 1;
366
367 for (cstate = 1; cstate < MWAIT_MAX_NUM_CSTATES; ++cstate) {
368 int num_substates;
369
370 if (cstate > max_cstate) {
371 printk(PREFIX "max_cstate %d reached\n",
372 max_cstate);
373 break;
374 }
375
376 /* does the state exist in CPUID.MWAIT? */
Len Brownc4236282010-05-28 02:22:03 -0400377 num_substates = (mwait_substates >> ((cstate) * 4))
Len Brown26717172010-03-08 14:07:30 -0500378 & MWAIT_SUBSTATE_MASK;
379 if (num_substates == 0)
380 continue;
381 /* is the state not enabled? */
382 if (cpuidle_state_table[cstate].enter == NULL) {
383 /* does the driver not know about the state? */
384 if (*cpuidle_state_table[cstate].name == '\0')
385 pr_debug(PREFIX "unaware of model 0x%x"
386 " MWAIT %d please"
387 " contact lenb@kernel.org",
388 boot_cpu_data.x86_model, cstate);
389 continue;
390 }
391
392 if ((cstate > 2) &&
393 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
394 mark_tsc_unstable("TSC halts in idle"
395 " states deeper than C2");
396
397 dev->states[dev->state_count] = /* structure copy */
398 cpuidle_state_table[cstate];
399
400 dev->state_count += 1;
401 }
402
403 dev->cpu = i;
404 if (cpuidle_register_device(dev)) {
405 pr_debug(PREFIX "cpuidle_register_device %d failed!\n",
406 i);
407 intel_idle_cpuidle_devices_uninit();
408 return -EIO;
409 }
410 }
411
412 return 0;
413}
414
415
416static int __init intel_idle_init(void)
417{
418 int retval;
419
420 retval = intel_idle_probe();
421 if (retval)
422 return retval;
423
424 retval = cpuidle_register_driver(&intel_idle_driver);
425 if (retval) {
426 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
427 cpuidle_get_driver()->name);
428 return retval;
429 }
430
431 retval = intel_idle_cpuidle_devices_init();
432 if (retval) {
433 cpuidle_unregister_driver(&intel_idle_driver);
434 return retval;
435 }
436
437 return 0;
438}
439
440static void __exit intel_idle_exit(void)
441{
442 intel_idle_cpuidle_devices_uninit();
443 cpuidle_unregister_driver(&intel_idle_driver);
444
445 return;
446}
447
448module_init(intel_idle_init);
449module_exit(intel_idle_exit);
450
Len Brown26717172010-03-08 14:07:30 -0500451module_param(max_cstate, int, 0444);
Len Brown26717172010-03-08 14:07:30 -0500452
453MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
454MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
455MODULE_LICENSE("GPL");