blob: ad0fb0182b4c8ea59332aa7484280a42596f5412 [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. */
84static unsigned int lapic_timer_reliable_states;
85
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,
104 .power_usage = 1000,
105 .target_residency = 6,
106 .enter = &intel_idle },
107 { /* MWAIT C2 */
108 .name = "NHM-C3",
109 .desc = "MWAIT 0x10",
110 .driver_data = (void *) 0x10,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400111 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500112 .exit_latency = 20,
113 .power_usage = 500,
114 .target_residency = 80,
115 .enter = &intel_idle },
116 { /* MWAIT C3 */
117 .name = "NHM-C6",
118 .desc = "MWAIT 0x20",
119 .driver_data = (void *) 0x20,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400120 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500121 .exit_latency = 200,
122 .power_usage = 350,
123 .target_residency = 800,
124 .enter = &intel_idle },
125};
126
127static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
128 { /* MWAIT C0 */ },
129 { /* MWAIT C1 */
130 .name = "ATM-C1",
131 .desc = "MWAIT 0x00",
132 .driver_data = (void *) 0x00,
133 .flags = CPUIDLE_FLAG_TIME_VALID,
134 .exit_latency = 1,
135 .power_usage = 1000,
136 .target_residency = 4,
137 .enter = &intel_idle },
138 { /* MWAIT C2 */
139 .name = "ATM-C2",
140 .desc = "MWAIT 0x10",
141 .driver_data = (void *) 0x10,
142 .flags = CPUIDLE_FLAG_TIME_VALID,
143 .exit_latency = 20,
144 .power_usage = 500,
145 .target_residency = 80,
146 .enter = &intel_idle },
147 { /* MWAIT C3 */ },
148 { /* MWAIT C4 */
149 .name = "ATM-C4",
150 .desc = "MWAIT 0x30",
151 .driver_data = (void *) 0x30,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400152 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500153 .exit_latency = 100,
154 .power_usage = 250,
155 .target_residency = 400,
156 .enter = &intel_idle },
157 { /* MWAIT C5 */ },
158 { /* MWAIT C6 */
159 .name = "ATM-C6",
Len Brown7fcca7d2010-10-05 13:43:14 -0400160 .desc = "MWAIT 0x52",
161 .driver_data = (void *) 0x52,
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400162 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown7fcca7d2010-10-05 13:43:14 -0400163 .exit_latency = 140,
Len Brown26717172010-03-08 14:07:30 -0500164 .power_usage = 150,
Len Brown7fcca7d2010-10-05 13:43:14 -0400165 .target_residency = 560,
166 .enter = &intel_idle },
Len Brown26717172010-03-08 14:07:30 -0500167};
168
Len Brown26717172010-03-08 14:07:30 -0500169/**
170 * intel_idle
171 * @dev: cpuidle_device
172 * @state: cpuidle state
173 *
174 */
175static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
176{
177 unsigned long ecx = 1; /* break on interrupt flag */
178 unsigned long eax = (unsigned long)cpuidle_get_statedata(state);
179 unsigned int cstate;
180 ktime_t kt_before, kt_after;
181 s64 usec_delta;
182 int cpu = smp_processor_id();
183
184 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
185
Len Brown26717172010-03-08 14:07:30 -0500186 local_irq_disable();
187
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400188 /*
Len Brownc8381cc2010-10-15 20:43:06 -0400189 * leave_mm() to avoid costly and often unnecessary wakeups
190 * for flushing the user TLB's associated with the active mm.
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400191 */
Len Brownc8381cc2010-10-15 20:43:06 -0400192 if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED)
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400193 leave_mm(cpu);
194
Len Brown26717172010-03-08 14:07:30 -0500195 if (!(lapic_timer_reliable_states & (1 << (cstate))))
196 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
197
198 kt_before = ktime_get_real();
199
200 stop_critical_timings();
201#ifndef MODULE
Linus Torvalds8d915302010-08-04 11:13:36 -0700202 trace_power_start(POWER_CSTATE, (eax >> 4) + 1, cpu);
Len Brown26717172010-03-08 14:07:30 -0500203#endif
204 if (!need_resched()) {
205
206 __monitor((void *)&current_thread_info()->flags, 0, 0);
207 smp_mb();
208 if (!need_resched())
209 __mwait(eax, ecx);
210 }
211
212 start_critical_timings();
213
214 kt_after = ktime_get_real();
215 usec_delta = ktime_to_us(ktime_sub(kt_after, kt_before));
216
217 local_irq_enable();
218
219 if (!(lapic_timer_reliable_states & (1 << (cstate))))
220 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
221
222 return usec_delta;
223}
224
225/*
226 * intel_idle_probe()
227 */
228static int intel_idle_probe(void)
229{
Len Brownc4236282010-05-28 02:22:03 -0400230 unsigned int eax, ebx, ecx;
Len Brown26717172010-03-08 14:07:30 -0500231
232 if (max_cstate == 0) {
233 pr_debug(PREFIX "disabled\n");
234 return -EPERM;
235 }
236
237 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
238 return -ENODEV;
239
240 if (!boot_cpu_has(X86_FEATURE_MWAIT))
241 return -ENODEV;
242
243 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
244 return -ENODEV;
245
Len Brownc4236282010-05-28 02:22:03 -0400246 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500247
248 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
249 !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
250 return -ENODEV;
Len Brown26717172010-03-08 14:07:30 -0500251
Len Brownc4236282010-05-28 02:22:03 -0400252 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500253
254 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
255 lapic_timer_reliable_states = 0xFFFFFFFF;
256
257 if (boot_cpu_data.x86 != 6) /* family 6 */
258 return -ENODEV;
259
260 switch (boot_cpu_data.x86_model) {
261
262 case 0x1A: /* Core i7, Xeon 5500 series */
263 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */
264 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
265 case 0x2E: /* Nehalem-EX Xeon */
Len Brownec67a2b2010-07-26 23:40:19 -0400266 case 0x2F: /* Westmere-EX Xeon */
Len Brown26717172010-03-08 14:07:30 -0500267 lapic_timer_reliable_states = (1 << 1); /* C1 */
268
269 case 0x25: /* Westmere */
270 case 0x2C: /* Westmere */
271 cpuidle_state_table = nehalem_cstates;
Len Brown26717172010-03-08 14:07:30 -0500272 break;
273
274 case 0x1C: /* 28 - Atom Processor */
Arjan van de Ven4725fd32010-07-21 23:42:25 -0400275 case 0x26: /* 38 - Lincroft Atom Processor */
Len Brown26717172010-03-08 14:07:30 -0500276 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
277 cpuidle_state_table = atom_cstates;
Len Brown26717172010-03-08 14:07:30 -0500278 break;
279#ifdef FUTURE_USE
280 case 0x17: /* 23 - Core 2 Duo */
281 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
282#endif
283
284 default:
285 pr_debug(PREFIX "does not run on family %d model %d\n",
286 boot_cpu_data.x86, boot_cpu_data.x86_model);
287 return -ENODEV;
288 }
289
290 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
291 " model 0x%X\n", boot_cpu_data.x86_model);
292
293 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
294 lapic_timer_reliable_states);
295 return 0;
296}
297
298/*
299 * intel_idle_cpuidle_devices_uninit()
300 * unregister, free cpuidle_devices
301 */
302static void intel_idle_cpuidle_devices_uninit(void)
303{
304 int i;
305 struct cpuidle_device *dev;
306
307 for_each_online_cpu(i) {
308 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
309 cpuidle_unregister_device(dev);
310 }
311
312 free_percpu(intel_idle_cpuidle_devices);
313 return;
314}
315/*
316 * intel_idle_cpuidle_devices_init()
317 * allocate, initialize, register cpuidle_devices
318 */
319static int intel_idle_cpuidle_devices_init(void)
320{
321 int i, cstate;
322 struct cpuidle_device *dev;
323
324 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
325 if (intel_idle_cpuidle_devices == NULL)
326 return -ENOMEM;
327
328 for_each_online_cpu(i) {
329 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
330
331 dev->state_count = 1;
332
333 for (cstate = 1; cstate < MWAIT_MAX_NUM_CSTATES; ++cstate) {
334 int num_substates;
335
336 if (cstate > max_cstate) {
337 printk(PREFIX "max_cstate %d reached\n",
338 max_cstate);
339 break;
340 }
341
342 /* does the state exist in CPUID.MWAIT? */
Len Brownc4236282010-05-28 02:22:03 -0400343 num_substates = (mwait_substates >> ((cstate) * 4))
Len Brown26717172010-03-08 14:07:30 -0500344 & MWAIT_SUBSTATE_MASK;
345 if (num_substates == 0)
346 continue;
347 /* is the state not enabled? */
348 if (cpuidle_state_table[cstate].enter == NULL) {
349 /* does the driver not know about the state? */
350 if (*cpuidle_state_table[cstate].name == '\0')
351 pr_debug(PREFIX "unaware of model 0x%x"
352 " MWAIT %d please"
353 " contact lenb@kernel.org",
354 boot_cpu_data.x86_model, cstate);
355 continue;
356 }
357
358 if ((cstate > 2) &&
359 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
360 mark_tsc_unstable("TSC halts in idle"
361 " states deeper than C2");
362
363 dev->states[dev->state_count] = /* structure copy */
364 cpuidle_state_table[cstate];
365
366 dev->state_count += 1;
367 }
368
369 dev->cpu = i;
370 if (cpuidle_register_device(dev)) {
371 pr_debug(PREFIX "cpuidle_register_device %d failed!\n",
372 i);
373 intel_idle_cpuidle_devices_uninit();
374 return -EIO;
375 }
376 }
377
378 return 0;
379}
380
381
382static int __init intel_idle_init(void)
383{
384 int retval;
385
386 retval = intel_idle_probe();
387 if (retval)
388 return retval;
389
390 retval = cpuidle_register_driver(&intel_idle_driver);
391 if (retval) {
392 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
393 cpuidle_get_driver()->name);
394 return retval;
395 }
396
397 retval = intel_idle_cpuidle_devices_init();
398 if (retval) {
399 cpuidle_unregister_driver(&intel_idle_driver);
400 return retval;
401 }
402
403 return 0;
404}
405
406static void __exit intel_idle_exit(void)
407{
408 intel_idle_cpuidle_devices_uninit();
409 cpuidle_unregister_driver(&intel_idle_driver);
410
411 return;
412}
413
414module_init(intel_idle_init);
415module_exit(intel_idle_exit);
416
Len Brown26717172010-03-08 14:07:30 -0500417module_param(max_cstate, int, 0444);
Len Brown26717172010-03-08 14:07:30 -0500418
419MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
420MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
421MODULE_LICENSE("GPL");