Merge branch 'x86/cpu' from tip
[deliverable/linux.git] / drivers / idle / intel_idle.c
CommitLineData
26717172
LB
1/*
2 * intel_idle.c - native hardware idle loop for modern Intel processors
3 *
fab04b22 4 * Copyright (c) 2013, Intel Corporation.
26717172
LB
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>
76962caa 58#include <linux/tick.h>
26717172
LB
59#include <trace/events/power.h>
60#include <linux/sched.h>
2a2d31c8
SL
61#include <linux/notifier.h>
62#include <linux/cpu.h>
7c52d551 63#include <linux/module.h>
b66b8b9a 64#include <asm/cpu_device_id.h>
db73c5a8 65#include <asm/intel-family.h>
bc83cccc 66#include <asm/mwait.h>
14796fca 67#include <asm/msr.h>
26717172 68
d70e28f5 69#define INTEL_IDLE_VERSION "0.4.1"
26717172
LB
70#define PREFIX "intel_idle: "
71
26717172
LB
72static struct cpuidle_driver intel_idle_driver = {
73 .name = "intel_idle",
74 .owner = THIS_MODULE,
75};
76/* intel_idle.max_cstate=0 disables driver */
137ecc77 77static int max_cstate = CPUIDLE_STATE_MAX - 1;
26717172 78
c4236282 79static unsigned int mwait_substates;
26717172 80
2a2d31c8 81#define LAPIC_TIMER_ALWAYS_RELIABLE 0xFFFFFFFF
26717172 82/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
d13780d4 83static unsigned int lapic_timer_reliable_states = (1 << 1); /* Default to only C1 */
26717172 84
b66b8b9a
AK
85struct idle_cpu {
86 struct cpuidle_state *state_table;
87
88 /*
89 * Hardware C-state auto-demotion may not always be optimal.
90 * Indicate which enable bits to clear here.
91 */
92 unsigned long auto_demotion_disable_flags;
8c058d53 93 bool byt_auto_demotion_disable_flag;
32e95180 94 bool disable_promotion_to_c1e;
b66b8b9a
AK
95};
96
97static const struct idle_cpu *icpu;
3265eba0 98static struct cpuidle_device __percpu *intel_idle_cpuidle_devices;
46bcfad7
DD
99static int intel_idle(struct cpuidle_device *dev,
100 struct cpuidle_driver *drv, int index);
5fe2e527
RW
101static void intel_idle_freeze(struct cpuidle_device *dev,
102 struct cpuidle_driver *drv, int index);
25ac7761 103static int intel_idle_cpu_init(int cpu);
26717172
LB
104
105static struct cpuidle_state *cpuidle_state_table;
106
956d033f
LB
107/*
108 * Set this flag for states where the HW flushes the TLB for us
109 * and so we don't need cross-calls to keep it consistent.
110 * If this flag is set, SW flushes the TLB, so even if the
111 * HW doesn't do the flushing, this flag is safe to use.
112 */
113#define CPUIDLE_FLAG_TLB_FLUSHED 0x10000
114
b1beab48
LB
115/*
116 * MWAIT takes an 8-bit "hint" in EAX "suggesting"
117 * the C-state (top nibble) and sub-state (bottom nibble)
118 * 0x00 means "MWAIT(C1)", 0x10 means "MWAIT(C2)" etc.
119 *
120 * We store the hint at the top of our "flags" for each state.
121 */
122#define flg2MWAIT(flags) (((flags) >> 24) & 0xFF)
123#define MWAIT2flg(eax) ((eax & 0xFF) << 24)
124
26717172
LB
125/*
126 * States are indexed by the cstate number,
127 * which is also the index into the MWAIT hint array.
128 * Thus C0 is a dummy.
129 */
ba0dc81e 130static struct cpuidle_state nehalem_cstates[] = {
e022e7eb 131 {
15e123e5 132 .name = "C1-NHM",
26717172 133 .desc = "MWAIT 0x00",
b82b6cca 134 .flags = MWAIT2flg(0x00),
26717172 135 .exit_latency = 3,
26717172 136 .target_residency = 6,
5fe2e527
RW
137 .enter = &intel_idle,
138 .enter_freeze = intel_idle_freeze, },
32e95180
LB
139 {
140 .name = "C1E-NHM",
141 .desc = "MWAIT 0x01",
b82b6cca 142 .flags = MWAIT2flg(0x01),
32e95180
LB
143 .exit_latency = 10,
144 .target_residency = 20,
5fe2e527
RW
145 .enter = &intel_idle,
146 .enter_freeze = intel_idle_freeze, },
e022e7eb 147 {
15e123e5 148 .name = "C3-NHM",
26717172 149 .desc = "MWAIT 0x10",
b82b6cca 150 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
26717172 151 .exit_latency = 20,
26717172 152 .target_residency = 80,
5fe2e527
RW
153 .enter = &intel_idle,
154 .enter_freeze = intel_idle_freeze, },
e022e7eb 155 {
15e123e5 156 .name = "C6-NHM",
26717172 157 .desc = "MWAIT 0x20",
b82b6cca 158 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
26717172 159 .exit_latency = 200,
26717172 160 .target_residency = 800,
5fe2e527
RW
161 .enter = &intel_idle,
162 .enter_freeze = intel_idle_freeze, },
e022e7eb
LB
163 {
164 .enter = NULL }
26717172
LB
165};
166
ba0dc81e 167static struct cpuidle_state snb_cstates[] = {
e022e7eb 168 {
15e123e5 169 .name = "C1-SNB",
d13780d4 170 .desc = "MWAIT 0x00",
b82b6cca 171 .flags = MWAIT2flg(0x00),
32e95180
LB
172 .exit_latency = 2,
173 .target_residency = 2,
5fe2e527
RW
174 .enter = &intel_idle,
175 .enter_freeze = intel_idle_freeze, },
32e95180
LB
176 {
177 .name = "C1E-SNB",
178 .desc = "MWAIT 0x01",
b82b6cca 179 .flags = MWAIT2flg(0x01),
32e95180
LB
180 .exit_latency = 10,
181 .target_residency = 20,
5fe2e527
RW
182 .enter = &intel_idle,
183 .enter_freeze = intel_idle_freeze, },
e022e7eb 184 {
15e123e5 185 .name = "C3-SNB",
d13780d4 186 .desc = "MWAIT 0x10",
b82b6cca 187 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
d13780d4 188 .exit_latency = 80,
ddbd550d 189 .target_residency = 211,
5fe2e527
RW
190 .enter = &intel_idle,
191 .enter_freeze = intel_idle_freeze, },
e022e7eb 192 {
15e123e5 193 .name = "C6-SNB",
d13780d4 194 .desc = "MWAIT 0x20",
b82b6cca 195 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
d13780d4 196 .exit_latency = 104,
ddbd550d 197 .target_residency = 345,
5fe2e527
RW
198 .enter = &intel_idle,
199 .enter_freeze = intel_idle_freeze, },
e022e7eb 200 {
15e123e5 201 .name = "C7-SNB",
d13780d4 202 .desc = "MWAIT 0x30",
b82b6cca 203 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED,
d13780d4 204 .exit_latency = 109,
ddbd550d 205 .target_residency = 345,
5fe2e527
RW
206 .enter = &intel_idle,
207 .enter_freeze = intel_idle_freeze, },
e022e7eb
LB
208 {
209 .enter = NULL }
d13780d4
LB
210};
211
718987d6
LB
212static struct cpuidle_state byt_cstates[] = {
213 {
214 .name = "C1-BYT",
215 .desc = "MWAIT 0x00",
b82b6cca 216 .flags = MWAIT2flg(0x00),
718987d6
LB
217 .exit_latency = 1,
218 .target_residency = 1,
5fe2e527
RW
219 .enter = &intel_idle,
220 .enter_freeze = intel_idle_freeze, },
718987d6
LB
221 {
222 .name = "C6N-BYT",
223 .desc = "MWAIT 0x58",
b82b6cca 224 .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED,
d7ef7671 225 .exit_latency = 300,
718987d6 226 .target_residency = 275,
5fe2e527
RW
227 .enter = &intel_idle,
228 .enter_freeze = intel_idle_freeze, },
718987d6
LB
229 {
230 .name = "C6S-BYT",
231 .desc = "MWAIT 0x52",
b82b6cca 232 .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED,
d7ef7671 233 .exit_latency = 500,
718987d6 234 .target_residency = 560,
5fe2e527
RW
235 .enter = &intel_idle,
236 .enter_freeze = intel_idle_freeze, },
718987d6
LB
237 {
238 .name = "C7-BYT",
239 .desc = "MWAIT 0x60",
b82b6cca 240 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
718987d6 241 .exit_latency = 1200,
d7ef7671 242 .target_residency = 4000,
5fe2e527
RW
243 .enter = &intel_idle,
244 .enter_freeze = intel_idle_freeze, },
718987d6
LB
245 {
246 .name = "C7S-BYT",
247 .desc = "MWAIT 0x64",
b82b6cca 248 .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED,
718987d6
LB
249 .exit_latency = 10000,
250 .target_residency = 20000,
5fe2e527
RW
251 .enter = &intel_idle,
252 .enter_freeze = intel_idle_freeze, },
718987d6
LB
253 {
254 .enter = NULL }
255};
256
cab07a56
LB
257static struct cpuidle_state cht_cstates[] = {
258 {
259 .name = "C1-CHT",
260 .desc = "MWAIT 0x00",
261 .flags = MWAIT2flg(0x00),
262 .exit_latency = 1,
263 .target_residency = 1,
264 .enter = &intel_idle,
265 .enter_freeze = intel_idle_freeze, },
266 {
267 .name = "C6N-CHT",
268 .desc = "MWAIT 0x58",
269 .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED,
270 .exit_latency = 80,
271 .target_residency = 275,
272 .enter = &intel_idle,
273 .enter_freeze = intel_idle_freeze, },
274 {
275 .name = "C6S-CHT",
276 .desc = "MWAIT 0x52",
277 .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED,
278 .exit_latency = 200,
279 .target_residency = 560,
280 .enter = &intel_idle,
281 .enter_freeze = intel_idle_freeze, },
282 {
283 .name = "C7-CHT",
284 .desc = "MWAIT 0x60",
285 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
286 .exit_latency = 1200,
287 .target_residency = 4000,
288 .enter = &intel_idle,
289 .enter_freeze = intel_idle_freeze, },
290 {
291 .name = "C7S-CHT",
292 .desc = "MWAIT 0x64",
293 .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED,
294 .exit_latency = 10000,
295 .target_residency = 20000,
296 .enter = &intel_idle,
297 .enter_freeze = intel_idle_freeze, },
298 {
299 .enter = NULL }
300};
301
ba0dc81e 302static struct cpuidle_state ivb_cstates[] = {
e022e7eb 303 {
6edab08c
LB
304 .name = "C1-IVB",
305 .desc = "MWAIT 0x00",
b82b6cca 306 .flags = MWAIT2flg(0x00),
6edab08c
LB
307 .exit_latency = 1,
308 .target_residency = 1,
5fe2e527
RW
309 .enter = &intel_idle,
310 .enter_freeze = intel_idle_freeze, },
32e95180
LB
311 {
312 .name = "C1E-IVB",
313 .desc = "MWAIT 0x01",
b82b6cca 314 .flags = MWAIT2flg(0x01),
32e95180
LB
315 .exit_latency = 10,
316 .target_residency = 20,
5fe2e527
RW
317 .enter = &intel_idle,
318 .enter_freeze = intel_idle_freeze, },
e022e7eb 319 {
6edab08c
LB
320 .name = "C3-IVB",
321 .desc = "MWAIT 0x10",
b82b6cca 322 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
6edab08c
LB
323 .exit_latency = 59,
324 .target_residency = 156,
5fe2e527
RW
325 .enter = &intel_idle,
326 .enter_freeze = intel_idle_freeze, },
e022e7eb 327 {
6edab08c
LB
328 .name = "C6-IVB",
329 .desc = "MWAIT 0x20",
b82b6cca 330 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
6edab08c
LB
331 .exit_latency = 80,
332 .target_residency = 300,
5fe2e527
RW
333 .enter = &intel_idle,
334 .enter_freeze = intel_idle_freeze, },
e022e7eb 335 {
6edab08c
LB
336 .name = "C7-IVB",
337 .desc = "MWAIT 0x30",
b82b6cca 338 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED,
6edab08c
LB
339 .exit_latency = 87,
340 .target_residency = 300,
5fe2e527
RW
341 .enter = &intel_idle,
342 .enter_freeze = intel_idle_freeze, },
e022e7eb
LB
343 {
344 .enter = NULL }
6edab08c
LB
345};
346
0138d8f0
LB
347static struct cpuidle_state ivt_cstates[] = {
348 {
349 .name = "C1-IVT",
350 .desc = "MWAIT 0x00",
b82b6cca 351 .flags = MWAIT2flg(0x00),
0138d8f0
LB
352 .exit_latency = 1,
353 .target_residency = 1,
5fe2e527
RW
354 .enter = &intel_idle,
355 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
356 {
357 .name = "C1E-IVT",
358 .desc = "MWAIT 0x01",
b82b6cca 359 .flags = MWAIT2flg(0x01),
0138d8f0
LB
360 .exit_latency = 10,
361 .target_residency = 80,
5fe2e527
RW
362 .enter = &intel_idle,
363 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
364 {
365 .name = "C3-IVT",
366 .desc = "MWAIT 0x10",
b82b6cca 367 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
368 .exit_latency = 59,
369 .target_residency = 156,
5fe2e527
RW
370 .enter = &intel_idle,
371 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
372 {
373 .name = "C6-IVT",
374 .desc = "MWAIT 0x20",
b82b6cca 375 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
376 .exit_latency = 82,
377 .target_residency = 300,
5fe2e527
RW
378 .enter = &intel_idle,
379 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
380 {
381 .enter = NULL }
382};
383
384static struct cpuidle_state ivt_cstates_4s[] = {
385 {
386 .name = "C1-IVT-4S",
387 .desc = "MWAIT 0x00",
b82b6cca 388 .flags = MWAIT2flg(0x00),
0138d8f0
LB
389 .exit_latency = 1,
390 .target_residency = 1,
5fe2e527
RW
391 .enter = &intel_idle,
392 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
393 {
394 .name = "C1E-IVT-4S",
395 .desc = "MWAIT 0x01",
b82b6cca 396 .flags = MWAIT2flg(0x01),
0138d8f0
LB
397 .exit_latency = 10,
398 .target_residency = 250,
5fe2e527
RW
399 .enter = &intel_idle,
400 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
401 {
402 .name = "C3-IVT-4S",
403 .desc = "MWAIT 0x10",
b82b6cca 404 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
405 .exit_latency = 59,
406 .target_residency = 300,
5fe2e527
RW
407 .enter = &intel_idle,
408 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
409 {
410 .name = "C6-IVT-4S",
411 .desc = "MWAIT 0x20",
b82b6cca 412 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
413 .exit_latency = 84,
414 .target_residency = 400,
5fe2e527
RW
415 .enter = &intel_idle,
416 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
417 {
418 .enter = NULL }
419};
420
421static struct cpuidle_state ivt_cstates_8s[] = {
422 {
423 .name = "C1-IVT-8S",
424 .desc = "MWAIT 0x00",
b82b6cca 425 .flags = MWAIT2flg(0x00),
0138d8f0
LB
426 .exit_latency = 1,
427 .target_residency = 1,
5fe2e527
RW
428 .enter = &intel_idle,
429 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
430 {
431 .name = "C1E-IVT-8S",
432 .desc = "MWAIT 0x01",
b82b6cca 433 .flags = MWAIT2flg(0x01),
0138d8f0
LB
434 .exit_latency = 10,
435 .target_residency = 500,
5fe2e527
RW
436 .enter = &intel_idle,
437 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
438 {
439 .name = "C3-IVT-8S",
440 .desc = "MWAIT 0x10",
b82b6cca 441 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
442 .exit_latency = 59,
443 .target_residency = 600,
5fe2e527
RW
444 .enter = &intel_idle,
445 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
446 {
447 .name = "C6-IVT-8S",
448 .desc = "MWAIT 0x20",
b82b6cca 449 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
0138d8f0
LB
450 .exit_latency = 88,
451 .target_residency = 700,
5fe2e527
RW
452 .enter = &intel_idle,
453 .enter_freeze = intel_idle_freeze, },
0138d8f0
LB
454 {
455 .enter = NULL }
456};
457
ba0dc81e 458static struct cpuidle_state hsw_cstates[] = {
e022e7eb 459 {
85a4d2d4
LB
460 .name = "C1-HSW",
461 .desc = "MWAIT 0x00",
b82b6cca 462 .flags = MWAIT2flg(0x00),
85a4d2d4
LB
463 .exit_latency = 2,
464 .target_residency = 2,
5fe2e527
RW
465 .enter = &intel_idle,
466 .enter_freeze = intel_idle_freeze, },
32e95180
LB
467 {
468 .name = "C1E-HSW",
469 .desc = "MWAIT 0x01",
b82b6cca 470 .flags = MWAIT2flg(0x01),
32e95180
LB
471 .exit_latency = 10,
472 .target_residency = 20,
5fe2e527
RW
473 .enter = &intel_idle,
474 .enter_freeze = intel_idle_freeze, },
e022e7eb 475 {
85a4d2d4
LB
476 .name = "C3-HSW",
477 .desc = "MWAIT 0x10",
b82b6cca 478 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
85a4d2d4
LB
479 .exit_latency = 33,
480 .target_residency = 100,
5fe2e527
RW
481 .enter = &intel_idle,
482 .enter_freeze = intel_idle_freeze, },
e022e7eb 483 {
85a4d2d4
LB
484 .name = "C6-HSW",
485 .desc = "MWAIT 0x20",
b82b6cca 486 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
85a4d2d4
LB
487 .exit_latency = 133,
488 .target_residency = 400,
5fe2e527
RW
489 .enter = &intel_idle,
490 .enter_freeze = intel_idle_freeze, },
e022e7eb 491 {
85a4d2d4
LB
492 .name = "C7s-HSW",
493 .desc = "MWAIT 0x32",
b82b6cca 494 .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED,
85a4d2d4
LB
495 .exit_latency = 166,
496 .target_residency = 500,
5fe2e527
RW
497 .enter = &intel_idle,
498 .enter_freeze = intel_idle_freeze, },
86239ceb
LB
499 {
500 .name = "C8-HSW",
501 .desc = "MWAIT 0x40",
b82b6cca 502 .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED,
86239ceb
LB
503 .exit_latency = 300,
504 .target_residency = 900,
5fe2e527
RW
505 .enter = &intel_idle,
506 .enter_freeze = intel_idle_freeze, },
86239ceb
LB
507 {
508 .name = "C9-HSW",
509 .desc = "MWAIT 0x50",
b82b6cca 510 .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED,
86239ceb
LB
511 .exit_latency = 600,
512 .target_residency = 1800,
5fe2e527
RW
513 .enter = &intel_idle,
514 .enter_freeze = intel_idle_freeze, },
86239ceb
LB
515 {
516 .name = "C10-HSW",
517 .desc = "MWAIT 0x60",
b82b6cca 518 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
86239ceb
LB
519 .exit_latency = 2600,
520 .target_residency = 7700,
5fe2e527
RW
521 .enter = &intel_idle,
522 .enter_freeze = intel_idle_freeze, },
e022e7eb
LB
523 {
524 .enter = NULL }
85a4d2d4 525};
a138b568
LB
526static struct cpuidle_state bdw_cstates[] = {
527 {
528 .name = "C1-BDW",
529 .desc = "MWAIT 0x00",
b82b6cca 530 .flags = MWAIT2flg(0x00),
a138b568
LB
531 .exit_latency = 2,
532 .target_residency = 2,
5fe2e527
RW
533 .enter = &intel_idle,
534 .enter_freeze = intel_idle_freeze, },
a138b568
LB
535 {
536 .name = "C1E-BDW",
537 .desc = "MWAIT 0x01",
b82b6cca 538 .flags = MWAIT2flg(0x01),
a138b568
LB
539 .exit_latency = 10,
540 .target_residency = 20,
5fe2e527
RW
541 .enter = &intel_idle,
542 .enter_freeze = intel_idle_freeze, },
a138b568
LB
543 {
544 .name = "C3-BDW",
545 .desc = "MWAIT 0x10",
b82b6cca 546 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
547 .exit_latency = 40,
548 .target_residency = 100,
5fe2e527
RW
549 .enter = &intel_idle,
550 .enter_freeze = intel_idle_freeze, },
a138b568
LB
551 {
552 .name = "C6-BDW",
553 .desc = "MWAIT 0x20",
b82b6cca 554 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
555 .exit_latency = 133,
556 .target_residency = 400,
5fe2e527
RW
557 .enter = &intel_idle,
558 .enter_freeze = intel_idle_freeze, },
a138b568
LB
559 {
560 .name = "C7s-BDW",
561 .desc = "MWAIT 0x32",
b82b6cca 562 .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
563 .exit_latency = 166,
564 .target_residency = 500,
5fe2e527
RW
565 .enter = &intel_idle,
566 .enter_freeze = intel_idle_freeze, },
a138b568
LB
567 {
568 .name = "C8-BDW",
569 .desc = "MWAIT 0x40",
b82b6cca 570 .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
571 .exit_latency = 300,
572 .target_residency = 900,
5fe2e527
RW
573 .enter = &intel_idle,
574 .enter_freeze = intel_idle_freeze, },
a138b568
LB
575 {
576 .name = "C9-BDW",
577 .desc = "MWAIT 0x50",
b82b6cca 578 .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
579 .exit_latency = 600,
580 .target_residency = 1800,
5fe2e527
RW
581 .enter = &intel_idle,
582 .enter_freeze = intel_idle_freeze, },
a138b568
LB
583 {
584 .name = "C10-BDW",
585 .desc = "MWAIT 0x60",
b82b6cca 586 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
a138b568
LB
587 .exit_latency = 2600,
588 .target_residency = 7700,
5fe2e527
RW
589 .enter = &intel_idle,
590 .enter_freeze = intel_idle_freeze, },
a138b568
LB
591 {
592 .enter = NULL }
593};
85a4d2d4 594
493f133f
LB
595static struct cpuidle_state skl_cstates[] = {
596 {
597 .name = "C1-SKL",
598 .desc = "MWAIT 0x00",
599 .flags = MWAIT2flg(0x00),
600 .exit_latency = 2,
601 .target_residency = 2,
602 .enter = &intel_idle,
603 .enter_freeze = intel_idle_freeze, },
604 {
605 .name = "C1E-SKL",
606 .desc = "MWAIT 0x01",
607 .flags = MWAIT2flg(0x01),
608 .exit_latency = 10,
609 .target_residency = 20,
610 .enter = &intel_idle,
611 .enter_freeze = intel_idle_freeze, },
612 {
613 .name = "C3-SKL",
614 .desc = "MWAIT 0x10",
615 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
616 .exit_latency = 70,
617 .target_residency = 100,
618 .enter = &intel_idle,
619 .enter_freeze = intel_idle_freeze, },
620 {
621 .name = "C6-SKL",
622 .desc = "MWAIT 0x20",
623 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
135919a3 624 .exit_latency = 85,
493f133f
LB
625 .target_residency = 200,
626 .enter = &intel_idle,
627 .enter_freeze = intel_idle_freeze, },
628 {
629 .name = "C7s-SKL",
630 .desc = "MWAIT 0x33",
631 .flags = MWAIT2flg(0x33) | CPUIDLE_FLAG_TLB_FLUSHED,
632 .exit_latency = 124,
633 .target_residency = 800,
634 .enter = &intel_idle,
635 .enter_freeze = intel_idle_freeze, },
636 {
637 .name = "C8-SKL",
638 .desc = "MWAIT 0x40",
639 .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED,
135919a3 640 .exit_latency = 200,
493f133f
LB
641 .target_residency = 800,
642 .enter = &intel_idle,
643 .enter_freeze = intel_idle_freeze, },
135919a3
LB
644 {
645 .name = "C9-SKL",
646 .desc = "MWAIT 0x50",
647 .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED,
648 .exit_latency = 480,
649 .target_residency = 5000,
650 .enter = &intel_idle,
651 .enter_freeze = intel_idle_freeze, },
493f133f
LB
652 {
653 .name = "C10-SKL",
654 .desc = "MWAIT 0x60",
655 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
656 .exit_latency = 890,
657 .target_residency = 5000,
658 .enter = &intel_idle,
659 .enter_freeze = intel_idle_freeze, },
660 {
661 .enter = NULL }
662};
663
f9e71657
LB
664static struct cpuidle_state skx_cstates[] = {
665 {
666 .name = "C1-SKX",
667 .desc = "MWAIT 0x00",
668 .flags = MWAIT2flg(0x00),
669 .exit_latency = 2,
670 .target_residency = 2,
671 .enter = &intel_idle,
672 .enter_freeze = intel_idle_freeze, },
673 {
674 .name = "C1E-SKX",
675 .desc = "MWAIT 0x01",
676 .flags = MWAIT2flg(0x01),
677 .exit_latency = 10,
678 .target_residency = 20,
679 .enter = &intel_idle,
680 .enter_freeze = intel_idle_freeze, },
681 {
682 .name = "C6-SKX",
683 .desc = "MWAIT 0x20",
684 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
685 .exit_latency = 133,
686 .target_residency = 600,
687 .enter = &intel_idle,
688 .enter_freeze = intel_idle_freeze, },
689 {
690 .enter = NULL }
691};
692
ba0dc81e 693static struct cpuidle_state atom_cstates[] = {
e022e7eb 694 {
32e95180 695 .name = "C1E-ATM",
26717172 696 .desc = "MWAIT 0x00",
b82b6cca 697 .flags = MWAIT2flg(0x00),
32e95180
LB
698 .exit_latency = 10,
699 .target_residency = 20,
5fe2e527
RW
700 .enter = &intel_idle,
701 .enter_freeze = intel_idle_freeze, },
e022e7eb 702 {
15e123e5 703 .name = "C2-ATM",
26717172 704 .desc = "MWAIT 0x10",
b82b6cca 705 .flags = MWAIT2flg(0x10),
26717172 706 .exit_latency = 20,
26717172 707 .target_residency = 80,
5fe2e527
RW
708 .enter = &intel_idle,
709 .enter_freeze = intel_idle_freeze, },
e022e7eb 710 {
15e123e5 711 .name = "C4-ATM",
26717172 712 .desc = "MWAIT 0x30",
b82b6cca 713 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED,
26717172 714 .exit_latency = 100,
26717172 715 .target_residency = 400,
5fe2e527
RW
716 .enter = &intel_idle,
717 .enter_freeze = intel_idle_freeze, },
e022e7eb 718 {
15e123e5 719 .name = "C6-ATM",
7fcca7d9 720 .desc = "MWAIT 0x52",
b82b6cca 721 .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED,
7fcca7d9 722 .exit_latency = 140,
7fcca7d9 723 .target_residency = 560,
5fe2e527
RW
724 .enter = &intel_idle,
725 .enter_freeze = intel_idle_freeze, },
e022e7eb
LB
726 {
727 .enter = NULL }
26717172 728};
88390996 729static struct cpuidle_state avn_cstates[] = {
fab04b22
LB
730 {
731 .name = "C1-AVN",
732 .desc = "MWAIT 0x00",
b82b6cca 733 .flags = MWAIT2flg(0x00),
fab04b22
LB
734 .exit_latency = 2,
735 .target_residency = 2,
5fe2e527
RW
736 .enter = &intel_idle,
737 .enter_freeze = intel_idle_freeze, },
fab04b22
LB
738 {
739 .name = "C6-AVN",
740 .desc = "MWAIT 0x51",
b82b6cca 741 .flags = MWAIT2flg(0x51) | CPUIDLE_FLAG_TLB_FLUSHED,
fab04b22
LB
742 .exit_latency = 15,
743 .target_residency = 45,
5fe2e527
RW
744 .enter = &intel_idle,
745 .enter_freeze = intel_idle_freeze, },
88390996
JL
746 {
747 .enter = NULL }
fab04b22 748};
281baf7a
DC
749static struct cpuidle_state knl_cstates[] = {
750 {
751 .name = "C1-KNL",
752 .desc = "MWAIT 0x00",
753 .flags = MWAIT2flg(0x00),
754 .exit_latency = 1,
755 .target_residency = 2,
756 .enter = &intel_idle,
757 .enter_freeze = intel_idle_freeze },
758 {
759 .name = "C6-KNL",
760 .desc = "MWAIT 0x10",
761 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED,
762 .exit_latency = 120,
763 .target_residency = 500,
764 .enter = &intel_idle,
765 .enter_freeze = intel_idle_freeze },
766 {
767 .enter = NULL }
768};
26717172 769
5dcef694
LB
770static struct cpuidle_state bxt_cstates[] = {
771 {
772 .name = "C1-BXT",
773 .desc = "MWAIT 0x00",
774 .flags = MWAIT2flg(0x00),
775 .exit_latency = 2,
776 .target_residency = 2,
777 .enter = &intel_idle,
778 .enter_freeze = intel_idle_freeze, },
779 {
780 .name = "C1E-BXT",
781 .desc = "MWAIT 0x01",
782 .flags = MWAIT2flg(0x01),
783 .exit_latency = 10,
784 .target_residency = 20,
785 .enter = &intel_idle,
786 .enter_freeze = intel_idle_freeze, },
787 {
788 .name = "C6-BXT",
789 .desc = "MWAIT 0x20",
790 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
791 .exit_latency = 133,
792 .target_residency = 133,
793 .enter = &intel_idle,
794 .enter_freeze = intel_idle_freeze, },
795 {
796 .name = "C7s-BXT",
797 .desc = "MWAIT 0x31",
798 .flags = MWAIT2flg(0x31) | CPUIDLE_FLAG_TLB_FLUSHED,
799 .exit_latency = 155,
800 .target_residency = 155,
801 .enter = &intel_idle,
802 .enter_freeze = intel_idle_freeze, },
803 {
804 .name = "C8-BXT",
805 .desc = "MWAIT 0x40",
806 .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED,
807 .exit_latency = 1000,
808 .target_residency = 1000,
809 .enter = &intel_idle,
810 .enter_freeze = intel_idle_freeze, },
811 {
812 .name = "C9-BXT",
813 .desc = "MWAIT 0x50",
814 .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED,
815 .exit_latency = 2000,
816 .target_residency = 2000,
817 .enter = &intel_idle,
818 .enter_freeze = intel_idle_freeze, },
819 {
820 .name = "C10-BXT",
821 .desc = "MWAIT 0x60",
822 .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
823 .exit_latency = 10000,
824 .target_residency = 10000,
825 .enter = &intel_idle,
826 .enter_freeze = intel_idle_freeze, },
827 {
828 .enter = NULL }
829};
830
26717172
LB
831/**
832 * intel_idle
833 * @dev: cpuidle_device
46bcfad7 834 * @drv: cpuidle driver
e978aa7d 835 * @index: index of cpuidle state
26717172 836 *
63ff07be 837 * Must be called under local_irq_disable().
26717172 838 */
46bcfad7
DD
839static int intel_idle(struct cpuidle_device *dev,
840 struct cpuidle_driver *drv, int index)
26717172
LB
841{
842 unsigned long ecx = 1; /* break on interrupt flag */
46bcfad7 843 struct cpuidle_state *state = &drv->states[index];
b1beab48 844 unsigned long eax = flg2MWAIT(state->flags);
26717172 845 unsigned int cstate;
26717172
LB
846 int cpu = smp_processor_id();
847
848 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
849
6110a1f4 850 /*
c8381cc3
LB
851 * leave_mm() to avoid costly and often unnecessary wakeups
852 * for flushing the user TLB's associated with the active mm.
6110a1f4 853 */
c8381cc3 854 if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED)
6110a1f4
SS
855 leave_mm(cpu);
856
26717172 857 if (!(lapic_timer_reliable_states & (1 << (cstate))))
f6cee191 858 tick_broadcast_enter();
26717172 859
16824255 860 mwait_idle_with_hints(eax, ecx);
26717172 861
26717172 862 if (!(lapic_timer_reliable_states & (1 << (cstate))))
f6cee191 863 tick_broadcast_exit();
26717172 864
e978aa7d 865 return index;
26717172
LB
866}
867
5fe2e527
RW
868/**
869 * intel_idle_freeze - simplified "enter" callback routine for suspend-to-idle
870 * @dev: cpuidle_device
871 * @drv: cpuidle driver
872 * @index: state index
873 */
874static void intel_idle_freeze(struct cpuidle_device *dev,
875 struct cpuidle_driver *drv, int index)
876{
877 unsigned long ecx = 1; /* break on interrupt flag */
878 unsigned long eax = flg2MWAIT(drv->states[index].flags);
879
880 mwait_idle_with_hints(eax, ecx);
881}
882
2a2d31c8
SL
883static void __setup_broadcast_timer(void *arg)
884{
76962caa 885 unsigned long on = (unsigned long)arg;
2a2d31c8 886
76962caa
TG
887 if (on)
888 tick_broadcast_enable();
889 else
890 tick_broadcast_disable();
2a2d31c8
SL
891}
892
25ac7761
DL
893static int cpu_hotplug_notify(struct notifier_block *n,
894 unsigned long action, void *hcpu)
2a2d31c8
SL
895{
896 int hotcpu = (unsigned long)hcpu;
25ac7761 897 struct cpuidle_device *dev;
2a2d31c8 898
e2401453 899 switch (action & ~CPU_TASKS_FROZEN) {
2a2d31c8 900 case CPU_ONLINE:
25ac7761
DL
901
902 if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE)
903 smp_call_function_single(hotcpu, __setup_broadcast_timer,
904 (void *)true, 1);
905
906 /*
907 * Some systems can hotplug a cpu at runtime after
908 * the kernel has booted, we have to initialize the
909 * driver in this case
910 */
911 dev = per_cpu_ptr(intel_idle_cpuidle_devices, hotcpu);
08820546
RC
912 if (dev->registered)
913 break;
914
915 if (intel_idle_cpu_init(hotcpu))
916 return NOTIFY_BAD;
25ac7761 917
2a2d31c8 918 break;
2a2d31c8
SL
919 }
920 return NOTIFY_OK;
921}
922
25ac7761
DL
923static struct notifier_block cpu_hotplug_notifier = {
924 .notifier_call = cpu_hotplug_notify,
2a2d31c8
SL
925};
926
14796fca
LB
927static void auto_demotion_disable(void *dummy)
928{
929 unsigned long long msr_bits;
930
931 rdmsrl(MSR_NHM_SNB_PKG_CST_CFG_CTL, msr_bits);
b66b8b9a 932 msr_bits &= ~(icpu->auto_demotion_disable_flags);
14796fca
LB
933 wrmsrl(MSR_NHM_SNB_PKG_CST_CFG_CTL, msr_bits);
934}
32e95180
LB
935static void c1e_promotion_disable(void *dummy)
936{
937 unsigned long long msr_bits;
938
939 rdmsrl(MSR_IA32_POWER_CTL, msr_bits);
940 msr_bits &= ~0x2;
941 wrmsrl(MSR_IA32_POWER_CTL, msr_bits);
942}
14796fca 943
b66b8b9a
AK
944static const struct idle_cpu idle_cpu_nehalem = {
945 .state_table = nehalem_cstates,
b66b8b9a 946 .auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE,
32e95180 947 .disable_promotion_to_c1e = true,
b66b8b9a
AK
948};
949
950static const struct idle_cpu idle_cpu_atom = {
951 .state_table = atom_cstates,
952};
953
954static const struct idle_cpu idle_cpu_lincroft = {
955 .state_table = atom_cstates,
956 .auto_demotion_disable_flags = ATM_LNC_C6_AUTO_DEMOTE,
957};
958
959static const struct idle_cpu idle_cpu_snb = {
960 .state_table = snb_cstates,
32e95180 961 .disable_promotion_to_c1e = true,
b66b8b9a
AK
962};
963
718987d6
LB
964static const struct idle_cpu idle_cpu_byt = {
965 .state_table = byt_cstates,
966 .disable_promotion_to_c1e = true,
8c058d53 967 .byt_auto_demotion_disable_flag = true,
718987d6
LB
968};
969
cab07a56
LB
970static const struct idle_cpu idle_cpu_cht = {
971 .state_table = cht_cstates,
972 .disable_promotion_to_c1e = true,
973 .byt_auto_demotion_disable_flag = true,
974};
975
6edab08c
LB
976static const struct idle_cpu idle_cpu_ivb = {
977 .state_table = ivb_cstates,
32e95180 978 .disable_promotion_to_c1e = true,
6edab08c
LB
979};
980
0138d8f0
LB
981static const struct idle_cpu idle_cpu_ivt = {
982 .state_table = ivt_cstates,
983 .disable_promotion_to_c1e = true,
984};
985
85a4d2d4
LB
986static const struct idle_cpu idle_cpu_hsw = {
987 .state_table = hsw_cstates,
32e95180 988 .disable_promotion_to_c1e = true,
85a4d2d4
LB
989};
990
a138b568
LB
991static const struct idle_cpu idle_cpu_bdw = {
992 .state_table = bdw_cstates,
993 .disable_promotion_to_c1e = true,
994};
995
493f133f
LB
996static const struct idle_cpu idle_cpu_skl = {
997 .state_table = skl_cstates,
998 .disable_promotion_to_c1e = true,
999};
1000
f9e71657
LB
1001static const struct idle_cpu idle_cpu_skx = {
1002 .state_table = skx_cstates,
1003 .disable_promotion_to_c1e = true,
1004};
493f133f 1005
fab04b22
LB
1006static const struct idle_cpu idle_cpu_avn = {
1007 .state_table = avn_cstates,
1008 .disable_promotion_to_c1e = true,
1009};
1010
281baf7a
DC
1011static const struct idle_cpu idle_cpu_knl = {
1012 .state_table = knl_cstates,
1013};
1014
5dcef694
LB
1015static const struct idle_cpu idle_cpu_bxt = {
1016 .state_table = bxt_cstates,
1017 .disable_promotion_to_c1e = true,
1018};
1019
b66b8b9a
AK
1020#define ICPU(model, cpu) \
1021 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_MWAIT, (unsigned long)&cpu }
1022
d5cdc3c4 1023static const struct x86_cpu_id intel_idle_ids[] __initconst = {
db73c5a8
DH
1024 ICPU(INTEL_FAM6_NEHALEM_EP, idle_cpu_nehalem),
1025 ICPU(INTEL_FAM6_NEHALEM, idle_cpu_nehalem),
1026 ICPU(INTEL_FAM6_WESTMERE2, idle_cpu_nehalem),
1027 ICPU(INTEL_FAM6_WESTMERE, idle_cpu_nehalem),
1028 ICPU(INTEL_FAM6_WESTMERE_EP, idle_cpu_nehalem),
1029 ICPU(INTEL_FAM6_NEHALEM_EX, idle_cpu_nehalem),
1030 ICPU(INTEL_FAM6_ATOM_PINEVIEW, idle_cpu_atom),
1031 ICPU(INTEL_FAM6_ATOM_LINCROFT, idle_cpu_lincroft),
1032 ICPU(INTEL_FAM6_WESTMERE_EX, idle_cpu_nehalem),
1033 ICPU(INTEL_FAM6_SANDYBRIDGE, idle_cpu_snb),
1034 ICPU(INTEL_FAM6_SANDYBRIDGE_X, idle_cpu_snb),
1035 ICPU(INTEL_FAM6_ATOM_CEDARVIEW, idle_cpu_atom),
1036 ICPU(INTEL_FAM6_ATOM_SILVERMONT1, idle_cpu_byt),
1037 ICPU(INTEL_FAM6_ATOM_AIRMONT, idle_cpu_cht),
1038 ICPU(INTEL_FAM6_IVYBRIDGE, idle_cpu_ivb),
1039 ICPU(INTEL_FAM6_IVYBRIDGE_X, idle_cpu_ivt),
1040 ICPU(INTEL_FAM6_HASWELL_CORE, idle_cpu_hsw),
1041 ICPU(INTEL_FAM6_HASWELL_X, idle_cpu_hsw),
1042 ICPU(INTEL_FAM6_HASWELL_ULT, idle_cpu_hsw),
1043 ICPU(INTEL_FAM6_HASWELL_GT3E, idle_cpu_hsw),
1044 ICPU(INTEL_FAM6_ATOM_SILVERMONT2, idle_cpu_avn),
1045 ICPU(INTEL_FAM6_BROADWELL_CORE, idle_cpu_bdw),
1046 ICPU(INTEL_FAM6_BROADWELL_GT3E, idle_cpu_bdw),
1047 ICPU(INTEL_FAM6_BROADWELL_X, idle_cpu_bdw),
1048 ICPU(INTEL_FAM6_BROADWELL_XEON_D, idle_cpu_bdw),
1049 ICPU(INTEL_FAM6_SKYLAKE_MOBILE, idle_cpu_skl),
1050 ICPU(INTEL_FAM6_SKYLAKE_DESKTOP, idle_cpu_skl),
1051 ICPU(INTEL_FAM6_KABYLAKE_MOBILE, idle_cpu_skl),
1052 ICPU(INTEL_FAM6_KABYLAKE_DESKTOP, idle_cpu_skl),
1053 ICPU(INTEL_FAM6_SKYLAKE_X, idle_cpu_skx),
1054 ICPU(INTEL_FAM6_XEON_PHI_KNL, idle_cpu_knl),
1055 ICPU(INTEL_FAM6_ATOM_GOLDMONT, idle_cpu_bxt),
b66b8b9a
AK
1056 {}
1057};
1058MODULE_DEVICE_TABLE(x86cpu, intel_idle_ids);
1059
26717172
LB
1060/*
1061 * intel_idle_probe()
1062 */
00f3e755 1063static int __init intel_idle_probe(void)
26717172 1064{
c4236282 1065 unsigned int eax, ebx, ecx;
b66b8b9a 1066 const struct x86_cpu_id *id;
26717172
LB
1067
1068 if (max_cstate == 0) {
1069 pr_debug(PREFIX "disabled\n");
1070 return -EPERM;
1071 }
1072
b66b8b9a
AK
1073 id = x86_match_cpu(intel_idle_ids);
1074 if (!id) {
1075 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
1076 boot_cpu_data.x86 == 6)
1077 pr_debug(PREFIX "does not run on family %d model %d\n",
1078 boot_cpu_data.x86, boot_cpu_data.x86_model);
26717172 1079 return -ENODEV;
b66b8b9a 1080 }
26717172
LB
1081
1082 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
1083 return -ENODEV;
1084
c4236282 1085 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
26717172
LB
1086
1087 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
5c2a9f06
TR
1088 !(ecx & CPUID5_ECX_INTERRUPT_BREAK) ||
1089 !mwait_substates)
26717172 1090 return -ENODEV;
26717172 1091
c4236282 1092 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
26717172 1093
b66b8b9a
AK
1094 icpu = (const struct idle_cpu *)id->driver_data;
1095 cpuidle_state_table = icpu->state_table;
26717172
LB
1096
1097 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
1098 " model 0x%X\n", boot_cpu_data.x86_model);
1099
26717172
LB
1100 return 0;
1101}
1102
1103/*
1104 * intel_idle_cpuidle_devices_uninit()
ca42489d 1105 * Unregisters the cpuidle devices.
26717172
LB
1106 */
1107static void intel_idle_cpuidle_devices_uninit(void)
1108{
1109 int i;
1110 struct cpuidle_device *dev;
1111
1112 for_each_online_cpu(i) {
1113 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
1114 cpuidle_unregister_device(dev);
1115 }
26717172 1116}
0138d8f0
LB
1117
1118/*
d70e28f5 1119 * ivt_idle_state_table_update(void)
0138d8f0 1120 *
d70e28f5 1121 * Tune IVT multi-socket targets
0138d8f0
LB
1122 * Assumption: num_sockets == (max_package_num + 1)
1123 */
d70e28f5 1124static void ivt_idle_state_table_update(void)
0138d8f0
LB
1125{
1126 /* IVT uses a different table for 1-2, 3-4, and > 4 sockets */
d70e28f5
LB
1127 int cpu, package_num, num_sockets = 1;
1128
1129 for_each_online_cpu(cpu) {
1130 package_num = topology_physical_package_id(cpu);
1131 if (package_num + 1 > num_sockets) {
1132 num_sockets = package_num + 1;
1133
1134 if (num_sockets > 4) {
1135 cpuidle_state_table = ivt_cstates_8s;
1136 return;
0138d8f0
LB
1137 }
1138 }
d70e28f5
LB
1139 }
1140
1141 if (num_sockets > 2)
1142 cpuidle_state_table = ivt_cstates_4s;
1143
1144 /* else, 1 and 2 socket systems use default ivt_cstates */
1145}
5dcef694
LB
1146
1147/*
1148 * Translate IRTL (Interrupt Response Time Limit) MSR to usec
1149 */
1150
1151static unsigned int irtl_ns_units[] = {
1152 1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
1153
1154static unsigned long long irtl_2_usec(unsigned long long irtl)
1155{
1156 unsigned long long ns;
1157
1158 ns = irtl_ns_units[(irtl >> 10) & 0x3];
1159
1160 return div64_u64((irtl & 0x3FF) * ns, 1000);
1161}
1162/*
1163 * bxt_idle_state_table_update(void)
1164 *
1165 * On BXT, we trust the IRTL to show the definitive maximum latency
1166 * We use the same value for target_residency.
1167 */
1168static void bxt_idle_state_table_update(void)
1169{
1170 unsigned long long msr;
1171
1172 rdmsrl(MSR_PKGC6_IRTL, msr);
1173 if (msr) {
1174 unsigned int usec = irtl_2_usec(msr);
1175
1176 bxt_cstates[2].exit_latency = usec;
1177 bxt_cstates[2].target_residency = usec;
1178 }
1179
1180 rdmsrl(MSR_PKGC7_IRTL, msr);
1181 if (msr) {
1182 unsigned int usec = irtl_2_usec(msr);
1183
1184 bxt_cstates[3].exit_latency = usec;
1185 bxt_cstates[3].target_residency = usec;
1186 }
1187
1188 rdmsrl(MSR_PKGC8_IRTL, msr);
1189 if (msr) {
1190 unsigned int usec = irtl_2_usec(msr);
1191
1192 bxt_cstates[4].exit_latency = usec;
1193 bxt_cstates[4].target_residency = usec;
1194 }
1195
1196 rdmsrl(MSR_PKGC9_IRTL, msr);
1197 if (msr) {
1198 unsigned int usec = irtl_2_usec(msr);
1199
1200 bxt_cstates[5].exit_latency = usec;
1201 bxt_cstates[5].target_residency = usec;
1202 }
1203
1204 rdmsrl(MSR_PKGC10_IRTL, msr);
1205 if (msr) {
1206 unsigned int usec = irtl_2_usec(msr);
1207
1208 bxt_cstates[6].exit_latency = usec;
1209 bxt_cstates[6].target_residency = usec;
1210 }
1211
1212}
d70e28f5
LB
1213/*
1214 * sklh_idle_state_table_update(void)
1215 *
1216 * On SKL-H (model 0x5e) disable C8 and C9 if:
1217 * C10 is enabled and SGX disabled
1218 */
1219static void sklh_idle_state_table_update(void)
1220{
1221 unsigned long long msr;
1222 unsigned int eax, ebx, ecx, edx;
1223
1224
1225 /* if PC10 disabled via cmdline intel_idle.max_cstate=7 or shallower */
1226 if (max_cstate <= 7)
1227 return;
1228
1229 /* if PC10 not present in CPUID.MWAIT.EDX */
1230 if ((mwait_substates & (0xF << 28)) == 0)
1231 return;
1232
1233 rdmsrl(MSR_NHM_SNB_PKG_CST_CFG_CTL, msr);
1234
1235 /* PC10 is not enabled in PKG C-state limit */
1236 if ((msr & 0xF) != 8)
1237 return;
1238
1239 ecx = 0;
1240 cpuid(7, &eax, &ebx, &ecx, &edx);
1241
1242 /* if SGX is present */
1243 if (ebx & (1 << 2)) {
0138d8f0 1244
d70e28f5
LB
1245 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
1246
1247 /* if SGX is enabled */
1248 if (msr & (1 << 18))
1249 return;
1250 }
1251
1252 skl_cstates[5].disabled = 1; /* C8-SKL */
1253 skl_cstates[6].disabled = 1; /* C9-SKL */
1254}
1255/*
1256 * intel_idle_state_table_update()
1257 *
1258 * Update the default state_table for this CPU-id
1259 */
1260
1261static void intel_idle_state_table_update(void)
1262{
1263 switch (boot_cpu_data.x86_model) {
1264
db73c5a8 1265 case INTEL_FAM6_IVYBRIDGE_X:
d70e28f5
LB
1266 ivt_idle_state_table_update();
1267 break;
db73c5a8 1268 case INTEL_FAM6_ATOM_GOLDMONT:
5dcef694
LB
1269 bxt_idle_state_table_update();
1270 break;
db73c5a8 1271 case INTEL_FAM6_SKYLAKE_DESKTOP:
d70e28f5
LB
1272 sklh_idle_state_table_update();
1273 break;
0138d8f0 1274 }
0138d8f0
LB
1275}
1276
46bcfad7
DD
1277/*
1278 * intel_idle_cpuidle_driver_init()
1279 * allocate, initialize cpuidle_states
1280 */
5469c827 1281static void __init intel_idle_cpuidle_driver_init(void)
46bcfad7
DD
1282{
1283 int cstate;
1284 struct cpuidle_driver *drv = &intel_idle_driver;
1285
0138d8f0
LB
1286 intel_idle_state_table_update();
1287
46bcfad7
DD
1288 drv->state_count = 1;
1289
e022e7eb 1290 for (cstate = 0; cstate < CPUIDLE_STATE_MAX; ++cstate) {
24bfa950 1291 int num_substates, mwait_hint, mwait_cstate;
46bcfad7 1292
7dd0e0af
LB
1293 if ((cpuidle_state_table[cstate].enter == NULL) &&
1294 (cpuidle_state_table[cstate].enter_freeze == NULL))
e022e7eb
LB
1295 break;
1296
1297 if (cstate + 1 > max_cstate) {
46bcfad7
DD
1298 printk(PREFIX "max_cstate %d reached\n",
1299 max_cstate);
1300 break;
1301 }
1302
e022e7eb
LB
1303 mwait_hint = flg2MWAIT(cpuidle_state_table[cstate].flags);
1304 mwait_cstate = MWAIT_HINT2CSTATE(mwait_hint);
e022e7eb 1305
24bfa950 1306 /* number of sub-states for this state in CPUID.MWAIT */
e022e7eb 1307 num_substates = (mwait_substates >> ((mwait_cstate + 1) * 4))
46bcfad7 1308 & MWAIT_SUBSTATE_MASK;
e022e7eb 1309
24bfa950
LB
1310 /* if NO sub-states for this state in CPUID, skip it */
1311 if (num_substates == 0)
46bcfad7 1312 continue;
46bcfad7 1313
d70e28f5
LB
1314 /* if state marked as disabled, skip it */
1315 if (cpuidle_state_table[cstate].disabled != 0) {
1316 pr_debug(PREFIX "state %s is disabled",
1317 cpuidle_state_table[cstate].name);
1318 continue;
1319 }
1320
1321
e022e7eb 1322 if (((mwait_cstate + 1) > 2) &&
46bcfad7
DD
1323 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
1324 mark_tsc_unstable("TSC halts in idle"
1325 " states deeper than C2");
1326
1327 drv->states[drv->state_count] = /* structure copy */
1328 cpuidle_state_table[cstate];
1329
1330 drv->state_count += 1;
1331 }
1332
8c058d53
LB
1333 if (icpu->byt_auto_demotion_disable_flag) {
1334 wrmsrl(MSR_CC6_DEMOTION_POLICY_CONFIG, 0);
1335 wrmsrl(MSR_MC6_DEMOTION_POLICY_CONFIG, 0);
1336 }
46bcfad7
DD
1337}
1338
1339
26717172 1340/*
65b7f839 1341 * intel_idle_cpu_init()
26717172 1342 * allocate, initialize, register cpuidle_devices
65b7f839 1343 * @cpu: cpu/core to initialize
26717172 1344 */
25ac7761 1345static int intel_idle_cpu_init(int cpu)
26717172 1346{
26717172
LB
1347 struct cpuidle_device *dev;
1348
65b7f839 1349 dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu);
26717172 1350
65b7f839 1351 dev->cpu = cpu;
26717172 1352
65b7f839
TR
1353 if (cpuidle_register_device(dev)) {
1354 pr_debug(PREFIX "cpuidle_register_device %d failed!\n", cpu);
65b7f839 1355 return -EIO;
26717172
LB
1356 }
1357
b66b8b9a 1358 if (icpu->auto_demotion_disable_flags)
65b7f839
TR
1359 smp_call_function_single(cpu, auto_demotion_disable, NULL, 1);
1360
dbf87ab8
BZ
1361 if (icpu->disable_promotion_to_c1e)
1362 smp_call_function_single(cpu, c1e_promotion_disable, NULL, 1);
1363
26717172
LB
1364 return 0;
1365}
26717172
LB
1366
1367static int __init intel_idle_init(void)
1368{
65b7f839 1369 int retval, i;
26717172 1370
d1896049
TR
1371 /* Do not load intel_idle at all for now if idle= is passed */
1372 if (boot_option_idle_override != IDLE_NO_OVERRIDE)
1373 return -ENODEV;
1374
26717172
LB
1375 retval = intel_idle_probe();
1376 if (retval)
1377 return retval;
1378
e9df69cc
RC
1379 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
1380 if (intel_idle_cpuidle_devices == NULL)
1381 return -ENOMEM;
1382
46bcfad7 1383 intel_idle_cpuidle_driver_init();
26717172
LB
1384 retval = cpuidle_register_driver(&intel_idle_driver);
1385 if (retval) {
3735d524 1386 struct cpuidle_driver *drv = cpuidle_get_driver();
26717172 1387 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
3735d524 1388 drv ? drv->name : "none");
e9df69cc 1389 free_percpu(intel_idle_cpuidle_devices);
26717172
LB
1390 return retval;
1391 }
1392
07494d54
SB
1393 cpu_notifier_register_begin();
1394
65b7f839
TR
1395 for_each_online_cpu(i) {
1396 retval = intel_idle_cpu_init(i);
1397 if (retval) {
b69ef2c0 1398 intel_idle_cpuidle_devices_uninit();
07494d54 1399 cpu_notifier_register_done();
65b7f839 1400 cpuidle_unregister_driver(&intel_idle_driver);
ca42489d 1401 free_percpu(intel_idle_cpuidle_devices);
65b7f839
TR
1402 return retval;
1403 }
26717172 1404 }
07494d54
SB
1405 __register_cpu_notifier(&cpu_hotplug_notifier);
1406
2259a819
RC
1407 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
1408 lapic_timer_reliable_states = LAPIC_TIMER_ALWAYS_RELIABLE;
1409 else
1410 on_each_cpu(__setup_broadcast_timer, (void *)true, 1);
1411
07494d54 1412 cpu_notifier_register_done();
26717172 1413
2259a819
RC
1414 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
1415 lapic_timer_reliable_states);
1416
26717172
LB
1417 return 0;
1418}
1419
1420static void __exit intel_idle_exit(void)
1421{
3e66a9ab
RC
1422 struct cpuidle_device *dev;
1423 int i;
1424
07494d54 1425 cpu_notifier_register_begin();
25ac7761
DL
1426
1427 if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE)
39a74fde 1428 on_each_cpu(__setup_broadcast_timer, (void *)false, 1);
07494d54 1429 __unregister_cpu_notifier(&cpu_hotplug_notifier);
3e66a9ab
RC
1430
1431 for_each_possible_cpu(i) {
1432 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
1433 cpuidle_unregister_device(dev);
1434 }
07494d54
SB
1435
1436 cpu_notifier_register_done();
51319918
RC
1437
1438 cpuidle_unregister_driver(&intel_idle_driver);
ca42489d 1439 free_percpu(intel_idle_cpuidle_devices);
26717172
LB
1440}
1441
1442module_init(intel_idle_init);
1443module_exit(intel_idle_exit);
1444
26717172 1445module_param(max_cstate, int, 0444);
26717172
LB
1446
1447MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
1448MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
1449MODULE_LICENSE("GPL");
This page took 0.404963 seconds and 5 git commands to generate.