blob: 065c8041c911f22b43b474a8b907484891796d91 [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>
H. Peter Anvinbc83ccc2010-09-17 15:36:40 -070062#include <asm/mwait.h>
Len Brown26717172010-03-08 14:07:30 -050063
64#define INTEL_IDLE_VERSION "0.4"
65#define PREFIX "intel_idle: "
66
Len Brown26717172010-03-08 14:07:30 -050067static struct cpuidle_driver intel_idle_driver = {
68 .name = "intel_idle",
69 .owner = THIS_MODULE,
70};
71/* intel_idle.max_cstate=0 disables driver */
72static int max_cstate = MWAIT_MAX_NUM_CSTATES - 1;
Len Brown26717172010-03-08 14:07:30 -050073
Len Brownc4236282010-05-28 02:22:03 -040074static unsigned int mwait_substates;
Len Brown26717172010-03-08 14:07:30 -050075
76/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
77static unsigned int lapic_timer_reliable_states;
78
79static struct cpuidle_device *intel_idle_cpuidle_devices;
80static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state);
81
82static struct cpuidle_state *cpuidle_state_table;
83
84/*
85 * States are indexed by the cstate number,
86 * which is also the index into the MWAIT hint array.
87 * Thus C0 is a dummy.
88 */
89static struct cpuidle_state nehalem_cstates[MWAIT_MAX_NUM_CSTATES] = {
90 { /* MWAIT C0 */ },
91 { /* MWAIT C1 */
92 .name = "NHM-C1",
93 .desc = "MWAIT 0x00",
94 .driver_data = (void *) 0x00,
95 .flags = CPUIDLE_FLAG_TIME_VALID,
96 .exit_latency = 3,
97 .power_usage = 1000,
98 .target_residency = 6,
99 .enter = &intel_idle },
100 { /* MWAIT C2 */
101 .name = "NHM-C3",
102 .desc = "MWAIT 0x10",
103 .driver_data = (void *) 0x10,
104 .flags = CPUIDLE_FLAG_TIME_VALID,
105 .exit_latency = 20,
106 .power_usage = 500,
107 .target_residency = 80,
108 .enter = &intel_idle },
109 { /* MWAIT C3 */
110 .name = "NHM-C6",
111 .desc = "MWAIT 0x20",
112 .driver_data = (void *) 0x20,
113 .flags = CPUIDLE_FLAG_TIME_VALID,
114 .exit_latency = 200,
115 .power_usage = 350,
116 .target_residency = 800,
117 .enter = &intel_idle },
118};
119
120static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
121 { /* MWAIT C0 */ },
122 { /* MWAIT C1 */
123 .name = "ATM-C1",
124 .desc = "MWAIT 0x00",
125 .driver_data = (void *) 0x00,
126 .flags = CPUIDLE_FLAG_TIME_VALID,
127 .exit_latency = 1,
128 .power_usage = 1000,
129 .target_residency = 4,
130 .enter = &intel_idle },
131 { /* MWAIT C2 */
132 .name = "ATM-C2",
133 .desc = "MWAIT 0x10",
134 .driver_data = (void *) 0x10,
135 .flags = CPUIDLE_FLAG_TIME_VALID,
136 .exit_latency = 20,
137 .power_usage = 500,
138 .target_residency = 80,
139 .enter = &intel_idle },
140 { /* MWAIT C3 */ },
141 { /* MWAIT C4 */
142 .name = "ATM-C4",
143 .desc = "MWAIT 0x30",
144 .driver_data = (void *) 0x30,
145 .flags = CPUIDLE_FLAG_TIME_VALID,
146 .exit_latency = 100,
147 .power_usage = 250,
148 .target_residency = 400,
149 .enter = &intel_idle },
150 { /* MWAIT C5 */ },
151 { /* MWAIT C6 */
152 .name = "ATM-C6",
153 .desc = "MWAIT 0x40",
154 .driver_data = (void *) 0x40,
155 .flags = CPUIDLE_FLAG_TIME_VALID,
156 .exit_latency = 200,
157 .power_usage = 150,
158 .target_residency = 800,
159 .enter = NULL }, /* disabled */
160};
161
Len Brown26717172010-03-08 14:07:30 -0500162/**
163 * intel_idle
164 * @dev: cpuidle_device
165 * @state: cpuidle state
166 *
167 */
168static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state)
169{
170 unsigned long ecx = 1; /* break on interrupt flag */
171 unsigned long eax = (unsigned long)cpuidle_get_statedata(state);
172 unsigned int cstate;
173 ktime_t kt_before, kt_after;
174 s64 usec_delta;
175 int cpu = smp_processor_id();
176
177 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
178
Len Brown26717172010-03-08 14:07:30 -0500179 local_irq_disable();
180
181 if (!(lapic_timer_reliable_states & (1 << (cstate))))
182 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
183
184 kt_before = ktime_get_real();
185
186 stop_critical_timings();
187#ifndef MODULE
Linus Torvalds8d915302010-08-04 11:13:36 -0700188 trace_power_start(POWER_CSTATE, (eax >> 4) + 1, cpu);
Len Brown26717172010-03-08 14:07:30 -0500189#endif
190 if (!need_resched()) {
191
192 __monitor((void *)&current_thread_info()->flags, 0, 0);
193 smp_mb();
194 if (!need_resched())
195 __mwait(eax, ecx);
196 }
197
198 start_critical_timings();
199
200 kt_after = ktime_get_real();
201 usec_delta = ktime_to_us(ktime_sub(kt_after, kt_before));
202
203 local_irq_enable();
204
205 if (!(lapic_timer_reliable_states & (1 << (cstate))))
206 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
207
208 return usec_delta;
209}
210
211/*
212 * intel_idle_probe()
213 */
214static int intel_idle_probe(void)
215{
Len Brownc4236282010-05-28 02:22:03 -0400216 unsigned int eax, ebx, ecx;
Len Brown26717172010-03-08 14:07:30 -0500217
218 if (max_cstate == 0) {
219 pr_debug(PREFIX "disabled\n");
220 return -EPERM;
221 }
222
223 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
224 return -ENODEV;
225
226 if (!boot_cpu_has(X86_FEATURE_MWAIT))
227 return -ENODEV;
228
229 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
230 return -ENODEV;
231
Len Brownc4236282010-05-28 02:22:03 -0400232 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500233
234 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
235 !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
236 return -ENODEV;
Len Brown26717172010-03-08 14:07:30 -0500237
Len Brownc4236282010-05-28 02:22:03 -0400238 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500239
240 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
241 lapic_timer_reliable_states = 0xFFFFFFFF;
242
243 if (boot_cpu_data.x86 != 6) /* family 6 */
244 return -ENODEV;
245
246 switch (boot_cpu_data.x86_model) {
247
248 case 0x1A: /* Core i7, Xeon 5500 series */
249 case 0x1E: /* Core i7 and i5 Processor - Lynnfield Jasper Forest */
250 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
251 case 0x2E: /* Nehalem-EX Xeon */
Len Brownec67a2b2010-07-26 23:40:19 -0400252 case 0x2F: /* Westmere-EX Xeon */
Len Brown26717172010-03-08 14:07:30 -0500253 lapic_timer_reliable_states = (1 << 1); /* C1 */
254
255 case 0x25: /* Westmere */
256 case 0x2C: /* Westmere */
257 cpuidle_state_table = nehalem_cstates;
Len Brown26717172010-03-08 14:07:30 -0500258 break;
259
260 case 0x1C: /* 28 - Atom Processor */
Arjan van de Ven4725fd32010-07-21 23:42:25 -0400261 case 0x26: /* 38 - Lincroft Atom Processor */
Len Brown26717172010-03-08 14:07:30 -0500262 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
263 cpuidle_state_table = atom_cstates;
Len Brown26717172010-03-08 14:07:30 -0500264 break;
265#ifdef FUTURE_USE
266 case 0x17: /* 23 - Core 2 Duo */
267 lapic_timer_reliable_states = (1 << 2) | (1 << 1); /* C2, C1 */
268#endif
269
270 default:
271 pr_debug(PREFIX "does not run on family %d model %d\n",
272 boot_cpu_data.x86, boot_cpu_data.x86_model);
273 return -ENODEV;
274 }
275
276 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
277 " model 0x%X\n", boot_cpu_data.x86_model);
278
279 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
280 lapic_timer_reliable_states);
281 return 0;
282}
283
284/*
285 * intel_idle_cpuidle_devices_uninit()
286 * unregister, free cpuidle_devices
287 */
288static void intel_idle_cpuidle_devices_uninit(void)
289{
290 int i;
291 struct cpuidle_device *dev;
292
293 for_each_online_cpu(i) {
294 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
295 cpuidle_unregister_device(dev);
296 }
297
298 free_percpu(intel_idle_cpuidle_devices);
299 return;
300}
301/*
302 * intel_idle_cpuidle_devices_init()
303 * allocate, initialize, register cpuidle_devices
304 */
305static int intel_idle_cpuidle_devices_init(void)
306{
307 int i, cstate;
308 struct cpuidle_device *dev;
309
310 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
311 if (intel_idle_cpuidle_devices == NULL)
312 return -ENOMEM;
313
314 for_each_online_cpu(i) {
315 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
316
317 dev->state_count = 1;
318
319 for (cstate = 1; cstate < MWAIT_MAX_NUM_CSTATES; ++cstate) {
320 int num_substates;
321
322 if (cstate > max_cstate) {
323 printk(PREFIX "max_cstate %d reached\n",
324 max_cstate);
325 break;
326 }
327
328 /* does the state exist in CPUID.MWAIT? */
Len Brownc4236282010-05-28 02:22:03 -0400329 num_substates = (mwait_substates >> ((cstate) * 4))
Len Brown26717172010-03-08 14:07:30 -0500330 & MWAIT_SUBSTATE_MASK;
331 if (num_substates == 0)
332 continue;
333 /* is the state not enabled? */
334 if (cpuidle_state_table[cstate].enter == NULL) {
335 /* does the driver not know about the state? */
336 if (*cpuidle_state_table[cstate].name == '\0')
337 pr_debug(PREFIX "unaware of model 0x%x"
338 " MWAIT %d please"
339 " contact lenb@kernel.org",
340 boot_cpu_data.x86_model, cstate);
341 continue;
342 }
343
344 if ((cstate > 2) &&
345 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
346 mark_tsc_unstable("TSC halts in idle"
347 " states deeper than C2");
348
349 dev->states[dev->state_count] = /* structure copy */
350 cpuidle_state_table[cstate];
351
352 dev->state_count += 1;
353 }
354
355 dev->cpu = i;
356 if (cpuidle_register_device(dev)) {
357 pr_debug(PREFIX "cpuidle_register_device %d failed!\n",
358 i);
359 intel_idle_cpuidle_devices_uninit();
360 return -EIO;
361 }
362 }
363
364 return 0;
365}
366
367
368static int __init intel_idle_init(void)
369{
370 int retval;
371
372 retval = intel_idle_probe();
373 if (retval)
374 return retval;
375
376 retval = cpuidle_register_driver(&intel_idle_driver);
377 if (retval) {
378 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
379 cpuidle_get_driver()->name);
380 return retval;
381 }
382
383 retval = intel_idle_cpuidle_devices_init();
384 if (retval) {
385 cpuidle_unregister_driver(&intel_idle_driver);
386 return retval;
387 }
388
389 return 0;
390}
391
392static void __exit intel_idle_exit(void)
393{
394 intel_idle_cpuidle_devices_uninit();
395 cpuidle_unregister_driver(&intel_idle_driver);
396
397 return;
398}
399
400module_init(intel_idle_init);
401module_exit(intel_idle_exit);
402
Len Brown26717172010-03-08 14:07:30 -0500403module_param(max_cstate, int, 0444);
Len Brown26717172010-03-08 14:07:30 -0500404
405MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
406MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
407MODULE_LICENSE("GPL");