blob: 84476be69b38c9097ef8c6f2140f99209673b2d5 [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;
80static int power_policy = 7; /* 0 = max perf; 15 = max powersave */
81
82static unsigned int substates;
83static int (*choose_substate)(int);
84
85/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
Len Brownd13780d2010-07-07 00:12:03 -040086static unsigned int lapic_timer_reliable_states = (1 << 1); /* Default to only C1 */
Len Brown26717172010-03-08 14:07:30 -050087
88static struct cpuidle_device *intel_idle_cpuidle_devices;
89static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state);
90
91static 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 */
98static 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
Len Brownd13780d2010-07-07 00:12:03 -0400129static struct cpuidle_state snb_cstates[MWAIT_MAX_NUM_CSTATES] = {
130 { /* MWAIT C0 */ },
131 { /* MWAIT C1 */
132 .name = "SNB-C1",
133 .desc = "MWAIT 0x00",
134 .driver_data = (void *) 0x00,
135 .flags = CPUIDLE_FLAG_TIME_VALID,
136 .exit_latency = 1,
137 .target_residency = 4,
138 .enter = &intel_idle },
139 { /* MWAIT C2 */
140 .name = "SNB-C3",
141 .desc = "MWAIT 0x10",
142 .driver_data = (void *) 0x10,
143 .flags = CPUIDLE_FLAG_TIME_VALID,
144 .exit_latency = 80,
145 .target_residency = 160,
146 .enter = &intel_idle },
147 { /* MWAIT C3 */
148 .name = "SNB-C6",
149 .desc = "MWAIT 0x20",
150 .driver_data = (void *) 0x20,
151 .flags = CPUIDLE_FLAG_TIME_VALID,
152 .exit_latency = 104,
153 .target_residency = 208,
154 .enter = &intel_idle },
155 { /* MWAIT C4 */
156 .name = "SNB-C7",
157 .desc = "MWAIT 0x30",
158 .driver_data = (void *) 0x30,
159 .flags = CPUIDLE_FLAG_TIME_VALID,
160 .exit_latency = 109,
161 .target_residency = 300,
162 .enter = &intel_idle },
163};
164
Len Brown26717172010-03-08 14:07:30 -0500165static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
166 { /* MWAIT C0 */ },
167 { /* MWAIT C1 */
168 .name = "ATM-C1",
169 .desc = "MWAIT 0x00",
170 .driver_data = (void *) 0x00,
171 .flags = CPUIDLE_FLAG_TIME_VALID,
172 .exit_latency = 1,
173 .power_usage = 1000,
174 .target_residency = 4,
175 .enter = &intel_idle },
176 { /* MWAIT C2 */
177 .name = "ATM-C2",
178 .desc = "MWAIT 0x10",
179 .driver_data = (void *) 0x10,
180 .flags = CPUIDLE_FLAG_TIME_VALID,
181 .exit_latency = 20,
182 .power_usage = 500,
183 .target_residency = 80,
184 .enter = &intel_idle },
185 { /* MWAIT C3 */ },
186 { /* MWAIT C4 */
187 .name = "ATM-C4",
188 .desc = "MWAIT 0x30",
189 .driver_data = (void *) 0x30,
190 .flags = CPUIDLE_FLAG_TIME_VALID,
191 .exit_latency = 100,
192 .power_usage = 250,
193 .target_residency = 400,
194 .enter = &intel_idle },
195 { /* MWAIT C5 */ },
196 { /* MWAIT C6 */
197 .name = "ATM-C6",
198 .desc = "MWAIT 0x40",
199 .driver_data = (void *) 0x40,
200 .flags = CPUIDLE_FLAG_TIME_VALID,
201 .exit_latency = 200,
202 .power_usage = 150,
203 .target_residency = 800,
204 .enter = NULL }, /* disabled */
205};
206
207/*
208 * choose_tunable_substate()
209 *
210 * Run-time decision on which C-state substate to invoke
211 * If power_policy = 0, choose shallowest substate (0)
212 * If power_policy = 15, choose deepest substate
213 * If power_policy = middle, choose middle substate etc.
214 */
215static int choose_tunable_substate(int cstate)
216{
217 unsigned int num_substates;
218 unsigned int substate_choice;
219
220 power_policy &= 0xF; /* valid range: 0-15 */
221 cstate &= 7; /* valid range: 0-7 */
222
223 num_substates = (substates >> ((cstate) * 4)) & MWAIT_SUBSTATE_MASK;
224
225 if (num_substates <= 1)
226 return 0;
227
228 substate_choice = ((power_policy + (power_policy + 1) *
229 (num_substates - 1)) / 16);
230
231 return substate_choice;
232}
233
234/*
235 * choose_zero_substate()
236 */
237static int choose_zero_substate(int cstate)
238{
239 return 0;
240}
241
242/**
243 * intel_idle
244 * @dev: cpuidle_device
245 * @state: cpuidle state
246 *
247 */
248static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
249{
250 unsigned long ecx = 1; /* break on interrupt flag */
251 unsigned long eax = (unsigned long)cpuidle_get_statedata(state);
252 unsigned int cstate;
253 ktime_t kt_before, kt_after;
254 s64 usec_delta;
255 int cpu = smp_processor_id();
256
257 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
258
259 eax = eax + (choose_substate)(cstate);
260
261 local_irq_disable();
262
263 if (!(lapic_timer_reliable_states & (1 << (cstate))))
264 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
265
266 kt_before = ktime_get_real();
267
268 stop_critical_timings();
269#ifndef MODULE
270 trace_power_start(POWER_CSTATE, (eax >> 4) + 1);
271#endif
272 if (!need_resched()) {
273
274 __monitor((void *)&current_thread_info()->flags, 0, 0);
275 smp_mb();
276 if (!need_resched())
277 __mwait(eax, ecx);
278 }
279
280 start_critical_timings();
281
282 kt_after = ktime_get_real();
283 usec_delta = ktime_to_us(ktime_sub(kt_after, kt_before));
284
285 local_irq_enable();
286
287 if (!(lapic_timer_reliable_states & (1 << (cstate))))
288 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
289
290 return usec_delta;
291}
292
293/*
294 * intel_idle_probe()
295 */
296static int intel_idle_probe(void)
297{
298 unsigned int eax, ebx, ecx, edx;
299
300 if (max_cstate == 0) {
301 pr_debug(PREFIX "disabled\n");
302 return -EPERM;
303 }
304
305 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
306 return -ENODEV;
307
308 if (!boot_cpu_has(X86_FEATURE_MWAIT))
309 return -ENODEV;
310
311 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
312 return -ENODEV;
313
314 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &edx);
315
316 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
317 !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
318 return -ENODEV;
319#ifdef DEBUG
320 if (substates == 0) /* can over-ride via modparam */
321#endif
322 substates = edx;
323
324 pr_debug(PREFIX "MWAIT substates: 0x%x\n", substates);
325
326 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
327 lapic_timer_reliable_states = 0xFFFFFFFF;
328
329 if (boot_cpu_data.x86 != 6) /* family 6 */
330 return -ENODEV;
331
332 switch (boot_cpu_data.x86_model) {
333
334 case 0x1A: /* Core i7, Xeon 5500 series */
335 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */
336 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
337 case 0x2E: /* Nehalem-EX Xeon */
338 lapic_timer_reliable_states = (1 << 1); /* C1 */
339
340 case 0x25: /* Westmere */
341 case 0x2C: /* Westmere */
342 cpuidle_state_table = nehalem_cstates;
343 choose_substate = choose_tunable_substate;
344 break;
345
346 case 0x1C: /* 28 - Atom Processor */
347 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
348 cpuidle_state_table = atom_cstates;
349 choose_substate = choose_zero_substate;
350 break;
Len Brownd13780d2010-07-07 00:12:03 -0400351
352 case 0x2A: /* SNB */
353 case 0x2D: /* SNB Xeon */
354 cpuidle_state_table = snb_cstates;
355 choose_substate = choose_zero_substate;
356 break;
Len Brown26717172010-03-08 14:07:30 -0500357#ifdef FUTURE_USE
358 case 0x17: /* 23 - Core 2 Duo */
359 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
360#endif
361
362 default:
363 pr_debug(PREFIX "does not run on family %d model %d\n",
364 boot_cpu_data.x86, boot_cpu_data.x86_model);
365 return -ENODEV;
366 }
367
368 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
369 " model 0x%X\n", boot_cpu_data.x86_model);
370
371 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
372 lapic_timer_reliable_states);
373 return 0;
374}
375
376/*
377 * intel_idle_cpuidle_devices_uninit()
378 * unregister, free cpuidle_devices
379 */
380static void intel_idle_cpuidle_devices_uninit(void)
381{
382 int i;
383 struct cpuidle_device *dev;
384
385 for_each_online_cpu(i) {
386 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
387 cpuidle_unregister_device(dev);
388 }
389
390 free_percpu(intel_idle_cpuidle_devices);
391 return;
392}
393/*
394 * intel_idle_cpuidle_devices_init()
395 * allocate, initialize, register cpuidle_devices
396 */
397static int intel_idle_cpuidle_devices_init(void)
398{
399 int i, cstate;
400 struct cpuidle_device *dev;
401
402 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
403 if (intel_idle_cpuidle_devices == NULL)
404 return -ENOMEM;
405
406 for_each_online_cpu(i) {
407 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
408
409 dev->state_count = 1;
410
411 for (cstate = 1; cstate < MWAIT_MAX_NUM_CSTATES; ++cstate) {
412 int num_substates;
413
414 if (cstate > max_cstate) {
415 printk(PREFIX "max_cstate %d reached\n",
416 max_cstate);
417 break;
418 }
419
420 /* does the state exist in CPUID.MWAIT? */
421 num_substates = (substates >> ((cstate) * 4))
422 & MWAIT_SUBSTATE_MASK;
423 if (num_substates == 0)
424 continue;
425 /* is the state not enabled? */
426 if (cpuidle_state_table[cstate].enter == NULL) {
427 /* does the driver not know about the state? */
428 if (*cpuidle_state_table[cstate].name == '\0')
429 pr_debug(PREFIX "unaware of model 0x%x"
430 " MWAIT %d please"
431 " contact lenb@kernel.org",
432 boot_cpu_data.x86_model, cstate);
433 continue;
434 }
435
436 if ((cstate > 2) &&
437 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
438 mark_tsc_unstable("TSC halts in idle"
439 " states deeper than C2");
440
441 dev->states[dev->state_count] = /* structure copy */
442 cpuidle_state_table[cstate];
443
444 dev->state_count += 1;
445 }
446
447 dev->cpu = i;
448 if (cpuidle_register_device(dev)) {
449 pr_debug(PREFIX "cpuidle_register_device %d failed!\n",
450 i);
451 intel_idle_cpuidle_devices_uninit();
452 return -EIO;
453 }
454 }
455
456 return 0;
457}
458
459
460static int __init intel_idle_init(void)
461{
462 int retval;
463
464 retval = intel_idle_probe();
465 if (retval)
466 return retval;
467
468 retval = cpuidle_register_driver(&intel_idle_driver);
469 if (retval) {
470 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
471 cpuidle_get_driver()->name);
472 return retval;
473 }
474
475 retval = intel_idle_cpuidle_devices_init();
476 if (retval) {
477 cpuidle_unregister_driver(&intel_idle_driver);
478 return retval;
479 }
480
481 return 0;
482}
483
484static void __exit intel_idle_exit(void)
485{
486 intel_idle_cpuidle_devices_uninit();
487 cpuidle_unregister_driver(&intel_idle_driver);
488
489 return;
490}
491
492module_init(intel_idle_init);
493module_exit(intel_idle_exit);
494
495module_param(power_policy, int, 0644);
496module_param(max_cstate, int, 0444);
497#ifdef DEBUG
498module_param(substates, int, 0444);
499#endif
500
501MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
502MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
503MODULE_LICENSE("GPL");