blob: c949a6f25a83cc750d7a8ff0a68d9010787140f0 [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>
Len Brown26717172010-03-08 14:07:30 -050059#include <trace/events/power.h>
60#include <linux/sched.h>
Shaohua Li2a2d31c2011-01-10 09:38:12 +080061#include <linux/notifier.h>
62#include <linux/cpu.h>
Paul Gortmaker7c52d552011-05-27 12:33:10 -040063#include <linux/module.h>
Andi Kleenb66b8b92012-01-26 00:09:07 +010064#include <asm/cpu_device_id.h>
H. Peter Anvinbc83ccc2010-09-17 15:36:40 -070065#include <asm/mwait.h>
Len Brown14796fc2011-01-18 20:48:27 -050066#include <asm/msr.h>
Len Brown26717172010-03-08 14:07:30 -050067
68#define INTEL_IDLE_VERSION "0.4"
69#define PREFIX "intel_idle: "
70
Len Brown26717172010-03-08 14:07:30 -050071static struct cpuidle_driver intel_idle_driver = {
72 .name = "intel_idle",
73 .owner = THIS_MODULE,
Julius Wernera474a512012-11-27 14:17:58 +010074 .en_core_tk_irqen = 1,
Len Brown26717172010-03-08 14:07:30 -050075};
76/* intel_idle.max_cstate=0 disables driver */
Len Brown137ecc72013-02-01 21:35:35 -050077static int max_cstate = CPUIDLE_STATE_MAX - 1;
Len Brown26717172010-03-08 14:07:30 -050078
Len Brownc4236282010-05-28 02:22:03 -040079static unsigned int mwait_substates;
Len Brown26717172010-03-08 14:07:30 -050080
Shaohua Li2a2d31c2011-01-10 09:38:12 +080081#define LAPIC_TIMER_ALWAYS_RELIABLE 0xFFFFFFFF
Len Brown26717172010-03-08 14:07:30 -050082/* Reliable LAPIC Timer States, bit 1 for C1 etc. */
Len Brownd13780d2010-07-07 00:12:03 -040083static unsigned int lapic_timer_reliable_states = (1 << 1); /* Default to only C1 */
Len Brown26717172010-03-08 14:07:30 -050084
Andi Kleenb66b8b92012-01-26 00:09:07 +010085struct 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;
93};
94
95static const struct idle_cpu *icpu;
Namhyung Kim3265eba2010-08-08 03:10:03 +090096static struct cpuidle_device __percpu *intel_idle_cpuidle_devices;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053097static int intel_idle(struct cpuidle_device *dev,
98 struct cpuidle_driver *drv, int index);
Daniel Lezcano25ac7762012-07-05 15:23:25 +020099static int intel_idle_cpu_init(int cpu);
Len Brown26717172010-03-08 14:07:30 -0500100
101static struct cpuidle_state *cpuidle_state_table;
102
103/*
Len Brown956d0332011-01-12 02:51:20 -0500104 * Set this flag for states where the HW flushes the TLB for us
105 * and so we don't need cross-calls to keep it consistent.
106 * If this flag is set, SW flushes the TLB, so even if the
107 * HW doesn't do the flushing, this flag is safe to use.
108 */
109#define CPUIDLE_FLAG_TLB_FLUSHED 0x10000
110
111/*
Len Brownb1beab42013-01-31 19:55:37 -0500112 * MWAIT takes an 8-bit "hint" in EAX "suggesting"
113 * the C-state (top nibble) and sub-state (bottom nibble)
114 * 0x00 means "MWAIT(C1)", 0x10 means "MWAIT(C2)" etc.
115 *
116 * We store the hint at the top of our "flags" for each state.
117 */
118#define flg2MWAIT(flags) (((flags) >> 24) & 0xFF)
119#define MWAIT2flg(eax) ((eax & 0xFF) << 24)
120
121/*
Len Brown26717172010-03-08 14:07:30 -0500122 * States are indexed by the cstate number,
123 * which is also the index into the MWAIT hint array.
124 * Thus C0 is a dummy.
125 */
Len Brown137ecc72013-02-01 21:35:35 -0500126static struct cpuidle_state nehalem_cstates[CPUIDLE_STATE_MAX] = {
Len Brown26717172010-03-08 14:07:30 -0500127 { /* MWAIT C0 */ },
128 { /* MWAIT C1 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100129 .name = "C1-NHM",
Len Brown26717172010-03-08 14:07:30 -0500130 .desc = "MWAIT 0x00",
Len Brownb1beab42013-01-31 19:55:37 -0500131 .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_TIME_VALID,
Len Brown26717172010-03-08 14:07:30 -0500132 .exit_latency = 3,
Len Brown26717172010-03-08 14:07:30 -0500133 .target_residency = 6,
134 .enter = &intel_idle },
135 { /* MWAIT C2 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100136 .name = "C3-NHM",
Len Brown26717172010-03-08 14:07:30 -0500137 .desc = "MWAIT 0x10",
Len Brownb1beab42013-01-31 19:55:37 -0500138 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500139 .exit_latency = 20,
Len Brown26717172010-03-08 14:07:30 -0500140 .target_residency = 80,
141 .enter = &intel_idle },
142 { /* MWAIT C3 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100143 .name = "C6-NHM",
Len Brown26717172010-03-08 14:07:30 -0500144 .desc = "MWAIT 0x20",
Len Brownb1beab42013-01-31 19:55:37 -0500145 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500146 .exit_latency = 200,
Len Brown26717172010-03-08 14:07:30 -0500147 .target_residency = 800,
148 .enter = &intel_idle },
149};
150
Len Brown137ecc72013-02-01 21:35:35 -0500151static struct cpuidle_state snb_cstates[CPUIDLE_STATE_MAX] = {
Len Brownd13780d2010-07-07 00:12:03 -0400152 { /* MWAIT C0 */ },
153 { /* MWAIT C1 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100154 .name = "C1-SNB",
Len Brownd13780d2010-07-07 00:12:03 -0400155 .desc = "MWAIT 0x00",
Len Brownb1beab42013-01-31 19:55:37 -0500156 .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_TIME_VALID,
Len Brownd13780d2010-07-07 00:12:03 -0400157 .exit_latency = 1,
Len Brownddbd5502010-12-13 18:28:22 -0500158 .target_residency = 1,
Len Brownd13780d2010-07-07 00:12:03 -0400159 .enter = &intel_idle },
160 { /* MWAIT C2 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100161 .name = "C3-SNB",
Len Brownd13780d2010-07-07 00:12:03 -0400162 .desc = "MWAIT 0x10",
Len Brownb1beab42013-01-31 19:55:37 -0500163 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400164 .exit_latency = 80,
Len Brownddbd5502010-12-13 18:28:22 -0500165 .target_residency = 211,
Len Brownd13780d2010-07-07 00:12:03 -0400166 .enter = &intel_idle },
167 { /* MWAIT C3 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100168 .name = "C6-SNB",
Len Brownd13780d2010-07-07 00:12:03 -0400169 .desc = "MWAIT 0x20",
Len Brownb1beab42013-01-31 19:55:37 -0500170 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400171 .exit_latency = 104,
Len Brownddbd5502010-12-13 18:28:22 -0500172 .target_residency = 345,
Len Brownd13780d2010-07-07 00:12:03 -0400173 .enter = &intel_idle },
174 { /* MWAIT C4 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100175 .name = "C7-SNB",
Len Brownd13780d2010-07-07 00:12:03 -0400176 .desc = "MWAIT 0x30",
Len Brownb1beab42013-01-31 19:55:37 -0500177 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brownd13780d2010-07-07 00:12:03 -0400178 .exit_latency = 109,
Len Brownddbd5502010-12-13 18:28:22 -0500179 .target_residency = 345,
Len Brownd13780d2010-07-07 00:12:03 -0400180 .enter = &intel_idle },
181};
182
Len Brown137ecc72013-02-01 21:35:35 -0500183static struct cpuidle_state ivb_cstates[CPUIDLE_STATE_MAX] = {
Len Brown6edab082012-06-01 19:45:32 -0400184 { /* MWAIT C0 */ },
185 { /* MWAIT C1 */
186 .name = "C1-IVB",
187 .desc = "MWAIT 0x00",
Len Brownb1beab42013-01-31 19:55:37 -0500188 .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_TIME_VALID,
Len Brown6edab082012-06-01 19:45:32 -0400189 .exit_latency = 1,
190 .target_residency = 1,
191 .enter = &intel_idle },
192 { /* MWAIT C2 */
193 .name = "C3-IVB",
194 .desc = "MWAIT 0x10",
Len Brownb1beab42013-01-31 19:55:37 -0500195 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown6edab082012-06-01 19:45:32 -0400196 .exit_latency = 59,
197 .target_residency = 156,
198 .enter = &intel_idle },
199 { /* MWAIT C3 */
200 .name = "C6-IVB",
201 .desc = "MWAIT 0x20",
Len Brownb1beab42013-01-31 19:55:37 -0500202 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown6edab082012-06-01 19:45:32 -0400203 .exit_latency = 80,
204 .target_residency = 300,
205 .enter = &intel_idle },
206 { /* MWAIT C4 */
207 .name = "C7-IVB",
208 .desc = "MWAIT 0x30",
Len Brownb1beab42013-01-31 19:55:37 -0500209 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown6edab082012-06-01 19:45:32 -0400210 .exit_latency = 87,
211 .target_residency = 300,
212 .enter = &intel_idle },
213};
214
Len Brown137ecc72013-02-01 21:35:35 -0500215static struct cpuidle_state hsw_cstates[CPUIDLE_STATE_MAX] = {
Len Brown85a4d2d2013-01-31 14:40:49 -0500216 { /* MWAIT C0 */ },
217 { /* MWAIT C1 */
218 .name = "C1-HSW",
219 .desc = "MWAIT 0x00",
220 .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_TIME_VALID,
221 .exit_latency = 2,
222 .target_residency = 2,
223 .enter = &intel_idle },
224 { /* MWAIT C2 */
225 .name = "C3-HSW",
226 .desc = "MWAIT 0x10",
227 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
228 .exit_latency = 33,
229 .target_residency = 100,
230 .enter = &intel_idle },
231 { /* MWAIT C3 */
232 .name = "C6-HSW",
233 .desc = "MWAIT 0x20",
234 .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
235 .exit_latency = 133,
236 .target_residency = 400,
237 .enter = &intel_idle },
238 { /* MWAIT C4 */
239 .name = "C7s-HSW",
240 .desc = "MWAIT 0x32",
241 .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
242 .exit_latency = 166,
243 .target_residency = 500,
244 .enter = &intel_idle },
245};
246
Len Brown137ecc72013-02-01 21:35:35 -0500247static struct cpuidle_state atom_cstates[CPUIDLE_STATE_MAX] = {
Len Brown26717172010-03-08 14:07:30 -0500248 { /* MWAIT C0 */ },
249 { /* MWAIT C1 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100250 .name = "C1-ATM",
Len Brown26717172010-03-08 14:07:30 -0500251 .desc = "MWAIT 0x00",
Len Brownb1beab42013-01-31 19:55:37 -0500252 .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_TIME_VALID,
Len Brown26717172010-03-08 14:07:30 -0500253 .exit_latency = 1,
Len Brown26717172010-03-08 14:07:30 -0500254 .target_residency = 4,
255 .enter = &intel_idle },
256 { /* MWAIT C2 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100257 .name = "C2-ATM",
Len Brown26717172010-03-08 14:07:30 -0500258 .desc = "MWAIT 0x10",
Len Brownb1beab42013-01-31 19:55:37 -0500259 .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TIME_VALID,
Len Brown26717172010-03-08 14:07:30 -0500260 .exit_latency = 20,
Len Brown26717172010-03-08 14:07:30 -0500261 .target_residency = 80,
262 .enter = &intel_idle },
263 { /* MWAIT C3 */ },
264 { /* MWAIT C4 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100265 .name = "C4-ATM",
Len Brown26717172010-03-08 14:07:30 -0500266 .desc = "MWAIT 0x30",
Len Brownb1beab42013-01-31 19:55:37 -0500267 .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown26717172010-03-08 14:07:30 -0500268 .exit_latency = 100,
Len Brown26717172010-03-08 14:07:30 -0500269 .target_residency = 400,
270 .enter = &intel_idle },
271 { /* MWAIT C5 */ },
272 { /* MWAIT C6 */
Thomas Renninger15e123e2011-02-27 22:36:43 +0100273 .name = "C6-ATM",
Len Brown7fcca7d2010-10-05 13:43:14 -0400274 .desc = "MWAIT 0x52",
Len Brownb1beab42013-01-31 19:55:37 -0500275 .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
Len Brown7fcca7d2010-10-05 13:43:14 -0400276 .exit_latency = 140,
Len Brown7fcca7d2010-10-05 13:43:14 -0400277 .target_residency = 560,
278 .enter = &intel_idle },
Len Brown26717172010-03-08 14:07:30 -0500279};
280
Len Brown26717172010-03-08 14:07:30 -0500281/**
282 * intel_idle
283 * @dev: cpuidle_device
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530284 * @drv: cpuidle driver
Deepthi Dharware978aa72011-10-28 16:20:09 +0530285 * @index: index of cpuidle state
Len Brown26717172010-03-08 14:07:30 -0500286 *
Yanmin Zhang63ff07b2012-01-10 15:48:21 -0800287 * Must be called under local_irq_disable().
Len Brown26717172010-03-08 14:07:30 -0500288 */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530289static int intel_idle(struct cpuidle_device *dev,
290 struct cpuidle_driver *drv, int index)
Len Brown26717172010-03-08 14:07:30 -0500291{
292 unsigned long ecx = 1; /* break on interrupt flag */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530293 struct cpuidle_state *state = &drv->states[index];
Len Brownb1beab42013-01-31 19:55:37 -0500294 unsigned long eax = flg2MWAIT(state->flags);
Len Brown26717172010-03-08 14:07:30 -0500295 unsigned int cstate;
Len Brown26717172010-03-08 14:07:30 -0500296 int cpu = smp_processor_id();
297
298 cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & MWAIT_CSTATE_MASK) + 1;
299
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400300 /*
Len Brownc8381cc2010-10-15 20:43:06 -0400301 * leave_mm() to avoid costly and often unnecessary wakeups
302 * for flushing the user TLB's associated with the active mm.
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400303 */
Len Brownc8381cc2010-10-15 20:43:06 -0400304 if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED)
Suresh Siddha6110a1f2010-09-30 21:19:07 -0400305 leave_mm(cpu);
306
Len Brown26717172010-03-08 14:07:30 -0500307 if (!(lapic_timer_reliable_states & (1 << (cstate))))
308 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu);
309
Len Brown26717172010-03-08 14:07:30 -0500310 stop_critical_timings();
Len Brown26717172010-03-08 14:07:30 -0500311 if (!need_resched()) {
312
313 __monitor((void *)&current_thread_info()->flags, 0, 0);
314 smp_mb();
315 if (!need_resched())
316 __mwait(eax, ecx);
317 }
318
319 start_critical_timings();
320
Len Brown26717172010-03-08 14:07:30 -0500321 if (!(lapic_timer_reliable_states & (1 << (cstate))))
322 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu);
323
Deepthi Dharware978aa72011-10-28 16:20:09 +0530324 return index;
Len Brown26717172010-03-08 14:07:30 -0500325}
326
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800327static void __setup_broadcast_timer(void *arg)
328{
329 unsigned long reason = (unsigned long)arg;
330 int cpu = smp_processor_id();
331
332 reason = reason ?
333 CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
334
335 clockevents_notify(reason, &cpu);
336}
337
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200338static int cpu_hotplug_notify(struct notifier_block *n,
339 unsigned long action, void *hcpu)
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800340{
341 int hotcpu = (unsigned long)hcpu;
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200342 struct cpuidle_device *dev;
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800343
344 switch (action & 0xf) {
345 case CPU_ONLINE:
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200346
347 if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE)
348 smp_call_function_single(hotcpu, __setup_broadcast_timer,
349 (void *)true, 1);
350
351 /*
352 * Some systems can hotplug a cpu at runtime after
353 * the kernel has booted, we have to initialize the
354 * driver in this case
355 */
356 dev = per_cpu_ptr(intel_idle_cpuidle_devices, hotcpu);
357 if (!dev->registered)
358 intel_idle_cpu_init(hotcpu);
359
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800360 break;
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800361 }
362 return NOTIFY_OK;
363}
364
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200365static struct notifier_block cpu_hotplug_notifier = {
366 .notifier_call = cpu_hotplug_notify,
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800367};
368
Len Brown14796fc2011-01-18 20:48:27 -0500369static void auto_demotion_disable(void *dummy)
370{
371 unsigned long long msr_bits;
372
373 rdmsrl(MSR_NHM_SNB_PKG_CST_CFG_CTL, msr_bits);
Andi Kleenb66b8b92012-01-26 00:09:07 +0100374 msr_bits &= ~(icpu->auto_demotion_disable_flags);
Len Brown14796fc2011-01-18 20:48:27 -0500375 wrmsrl(MSR_NHM_SNB_PKG_CST_CFG_CTL, msr_bits);
376}
377
Andi Kleenb66b8b92012-01-26 00:09:07 +0100378static const struct idle_cpu idle_cpu_nehalem = {
379 .state_table = nehalem_cstates,
Andi Kleenb66b8b92012-01-26 00:09:07 +0100380 .auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE,
381};
382
383static const struct idle_cpu idle_cpu_atom = {
384 .state_table = atom_cstates,
385};
386
387static const struct idle_cpu idle_cpu_lincroft = {
388 .state_table = atom_cstates,
389 .auto_demotion_disable_flags = ATM_LNC_C6_AUTO_DEMOTE,
390};
391
392static const struct idle_cpu idle_cpu_snb = {
393 .state_table = snb_cstates,
394};
395
Len Brown6edab082012-06-01 19:45:32 -0400396static const struct idle_cpu idle_cpu_ivb = {
397 .state_table = ivb_cstates,
398};
399
Len Brown85a4d2d2013-01-31 14:40:49 -0500400static const struct idle_cpu idle_cpu_hsw = {
401 .state_table = hsw_cstates,
402};
403
Andi Kleenb66b8b92012-01-26 00:09:07 +0100404#define ICPU(model, cpu) \
405 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_MWAIT, (unsigned long)&cpu }
406
407static const struct x86_cpu_id intel_idle_ids[] = {
408 ICPU(0x1a, idle_cpu_nehalem),
409 ICPU(0x1e, idle_cpu_nehalem),
410 ICPU(0x1f, idle_cpu_nehalem),
Ben Hutchings8bf11932012-02-16 04:13:14 +0000411 ICPU(0x25, idle_cpu_nehalem),
412 ICPU(0x2c, idle_cpu_nehalem),
413 ICPU(0x2e, idle_cpu_nehalem),
Andi Kleenb66b8b92012-01-26 00:09:07 +0100414 ICPU(0x1c, idle_cpu_atom),
415 ICPU(0x26, idle_cpu_lincroft),
Ben Hutchings8bf11932012-02-16 04:13:14 +0000416 ICPU(0x2f, idle_cpu_nehalem),
Andi Kleenb66b8b92012-01-26 00:09:07 +0100417 ICPU(0x2a, idle_cpu_snb),
418 ICPU(0x2d, idle_cpu_snb),
Len Brown6edab082012-06-01 19:45:32 -0400419 ICPU(0x3a, idle_cpu_ivb),
Len Brown23795e52012-09-26 22:28:21 -0400420 ICPU(0x3e, idle_cpu_ivb),
Len Brown85a4d2d2013-01-31 14:40:49 -0500421 ICPU(0x3c, idle_cpu_hsw),
422 ICPU(0x3f, idle_cpu_hsw),
423 ICPU(0x45, idle_cpu_hsw),
Andi Kleenb66b8b92012-01-26 00:09:07 +0100424 {}
425};
426MODULE_DEVICE_TABLE(x86cpu, intel_idle_ids);
427
Len Brown26717172010-03-08 14:07:30 -0500428/*
429 * intel_idle_probe()
430 */
431static int intel_idle_probe(void)
432{
Len Brownc4236282010-05-28 02:22:03 -0400433 unsigned int eax, ebx, ecx;
Andi Kleenb66b8b92012-01-26 00:09:07 +0100434 const struct x86_cpu_id *id;
Len Brown26717172010-03-08 14:07:30 -0500435
436 if (max_cstate == 0) {
437 pr_debug(PREFIX "disabled\n");
438 return -EPERM;
439 }
440
Andi Kleenb66b8b92012-01-26 00:09:07 +0100441 id = x86_match_cpu(intel_idle_ids);
442 if (!id) {
443 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
444 boot_cpu_data.x86 == 6)
445 pr_debug(PREFIX "does not run on family %d model %d\n",
446 boot_cpu_data.x86, boot_cpu_data.x86_model);
Len Brown26717172010-03-08 14:07:30 -0500447 return -ENODEV;
Andi Kleenb66b8b92012-01-26 00:09:07 +0100448 }
Len Brown26717172010-03-08 14:07:30 -0500449
450 if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
451 return -ENODEV;
452
Len Brownc4236282010-05-28 02:22:03 -0400453 cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500454
455 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
Thomas Renninger5c2a9f02011-12-04 22:17:29 +0100456 !(ecx & CPUID5_ECX_INTERRUPT_BREAK) ||
457 !mwait_substates)
Len Brown26717172010-03-08 14:07:30 -0500458 return -ENODEV;
Len Brown26717172010-03-08 14:07:30 -0500459
Len Brownc4236282010-05-28 02:22:03 -0400460 pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates);
Len Brown26717172010-03-08 14:07:30 -0500461
Andi Kleenb66b8b92012-01-26 00:09:07 +0100462 icpu = (const struct idle_cpu *)id->driver_data;
463 cpuidle_state_table = icpu->state_table;
Len Brown26717172010-03-08 14:07:30 -0500464
Len Brown56b9aea2010-12-02 01:19:32 -0500465 if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800466 lapic_timer_reliable_states = LAPIC_TIMER_ALWAYS_RELIABLE;
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200467 else
Shaohua Li39a74fd2012-01-10 15:48:19 -0800468 on_each_cpu(__setup_broadcast_timer, (void *)true, 1);
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200469
Len Brown26717172010-03-08 14:07:30 -0500470 pr_debug(PREFIX "v" INTEL_IDLE_VERSION
471 " model 0x%X\n", boot_cpu_data.x86_model);
472
473 pr_debug(PREFIX "lapic_timer_reliable_states 0x%x\n",
474 lapic_timer_reliable_states);
475 return 0;
476}
477
478/*
479 * intel_idle_cpuidle_devices_uninit()
480 * unregister, free cpuidle_devices
481 */
482static void intel_idle_cpuidle_devices_uninit(void)
483{
484 int i;
485 struct cpuidle_device *dev;
486
487 for_each_online_cpu(i) {
488 dev = per_cpu_ptr(intel_idle_cpuidle_devices, i);
489 cpuidle_unregister_device(dev);
490 }
491
492 free_percpu(intel_idle_cpuidle_devices);
493 return;
494}
495/*
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530496 * intel_idle_cpuidle_driver_init()
497 * allocate, initialize cpuidle_states
498 */
499static int intel_idle_cpuidle_driver_init(void)
500{
501 int cstate;
502 struct cpuidle_driver *drv = &intel_idle_driver;
503
504 drv->state_count = 1;
505
Len Brown137ecc72013-02-01 21:35:35 -0500506 for (cstate = 1; cstate < CPUIDLE_STATE_MAX; ++cstate) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530507 int num_substates;
508
509 if (cstate > max_cstate) {
510 printk(PREFIX "max_cstate %d reached\n",
511 max_cstate);
512 break;
513 }
514
515 /* does the state exist in CPUID.MWAIT? */
516 num_substates = (mwait_substates >> ((cstate) * 4))
517 & MWAIT_SUBSTATE_MASK;
518 if (num_substates == 0)
519 continue;
520 /* is the state not enabled? */
521 if (cpuidle_state_table[cstate].enter == NULL) {
522 /* does the driver not know about the state? */
523 if (*cpuidle_state_table[cstate].name == '\0')
524 pr_debug(PREFIX "unaware of model 0x%x"
525 " MWAIT %d please"
Youquan Song17915d52012-12-18 13:54:22 +0100526 " contact lenb@kernel.org\n",
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530527 boot_cpu_data.x86_model, cstate);
528 continue;
529 }
530
531 if ((cstate > 2) &&
532 !boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
533 mark_tsc_unstable("TSC halts in idle"
534 " states deeper than C2");
535
536 drv->states[drv->state_count] = /* structure copy */
537 cpuidle_state_table[cstate];
538
539 drv->state_count += 1;
540 }
541
Andi Kleenb66b8b92012-01-26 00:09:07 +0100542 if (icpu->auto_demotion_disable_flags)
Shaohua Li39a74fd2012-01-10 15:48:19 -0800543 on_each_cpu(auto_demotion_disable, NULL, 1);
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530544
545 return 0;
546}
547
548
549/*
Thomas Renninger65b7f832012-01-17 22:40:08 +0100550 * intel_idle_cpu_init()
Len Brown26717172010-03-08 14:07:30 -0500551 * allocate, initialize, register cpuidle_devices
Thomas Renninger65b7f832012-01-17 22:40:08 +0100552 * @cpu: cpu/core to initialize
Len Brown26717172010-03-08 14:07:30 -0500553 */
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200554static int intel_idle_cpu_init(int cpu)
Len Brown26717172010-03-08 14:07:30 -0500555{
Thomas Renninger65b7f832012-01-17 22:40:08 +0100556 int cstate;
Len Brown26717172010-03-08 14:07:30 -0500557 struct cpuidle_device *dev;
558
Thomas Renninger65b7f832012-01-17 22:40:08 +0100559 dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu);
Len Brown26717172010-03-08 14:07:30 -0500560
Thomas Renninger65b7f832012-01-17 22:40:08 +0100561 dev->state_count = 1;
Len Brown26717172010-03-08 14:07:30 -0500562
Len Brown137ecc72013-02-01 21:35:35 -0500563 for (cstate = 1; cstate < CPUIDLE_STATE_MAX; ++cstate) {
Thomas Renninger65b7f832012-01-17 22:40:08 +0100564 int num_substates;
Len Brown26717172010-03-08 14:07:30 -0500565
Thomas Renninger65b7f832012-01-17 22:40:08 +0100566 if (cstate > max_cstate) {
Marcos Paulo de Souzadc716e92012-03-21 16:33:43 -0700567 printk(PREFIX "max_cstate %d reached\n", max_cstate);
Thomas Renninger65b7f832012-01-17 22:40:08 +0100568 break;
569 }
Len Brown26717172010-03-08 14:07:30 -0500570
Thomas Renninger65b7f832012-01-17 22:40:08 +0100571 /* does the state exist in CPUID.MWAIT? */
572 num_substates = (mwait_substates >> ((cstate) * 4))
573 & MWAIT_SUBSTATE_MASK;
574 if (num_substates == 0)
575 continue;
576 /* is the state not enabled? */
577 if (cpuidle_state_table[cstate].enter == NULL)
578 continue;
Len Brown26717172010-03-08 14:07:30 -0500579
Marcos Paulo de Souzadc716e92012-03-21 16:33:43 -0700580 dev->state_count += 1;
581 }
582
Thomas Renninger65b7f832012-01-17 22:40:08 +0100583 dev->cpu = cpu;
Len Brown26717172010-03-08 14:07:30 -0500584
Thomas Renninger65b7f832012-01-17 22:40:08 +0100585 if (cpuidle_register_device(dev)) {
586 pr_debug(PREFIX "cpuidle_register_device %d failed!\n", cpu);
587 intel_idle_cpuidle_devices_uninit();
588 return -EIO;
Len Brown26717172010-03-08 14:07:30 -0500589 }
590
Andi Kleenb66b8b92012-01-26 00:09:07 +0100591 if (icpu->auto_demotion_disable_flags)
Thomas Renninger65b7f832012-01-17 22:40:08 +0100592 smp_call_function_single(cpu, auto_demotion_disable, NULL, 1);
593
Len Brown26717172010-03-08 14:07:30 -0500594 return 0;
595}
Len Brown26717172010-03-08 14:07:30 -0500596
597static int __init intel_idle_init(void)
598{
Thomas Renninger65b7f832012-01-17 22:40:08 +0100599 int retval, i;
Len Brown26717172010-03-08 14:07:30 -0500600
Thomas Renningerd1896042010-11-03 17:06:14 +0100601 /* Do not load intel_idle at all for now if idle= is passed */
602 if (boot_option_idle_override != IDLE_NO_OVERRIDE)
603 return -ENODEV;
604
Len Brown26717172010-03-08 14:07:30 -0500605 retval = intel_idle_probe();
606 if (retval)
607 return retval;
608
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530609 intel_idle_cpuidle_driver_init();
Len Brown26717172010-03-08 14:07:30 -0500610 retval = cpuidle_register_driver(&intel_idle_driver);
611 if (retval) {
Konrad Rzeszutek Wilk3735d522012-08-16 22:06:55 +0200612 struct cpuidle_driver *drv = cpuidle_get_driver();
Len Brown26717172010-03-08 14:07:30 -0500613 printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
Konrad Rzeszutek Wilk3735d522012-08-16 22:06:55 +0200614 drv ? drv->name : "none");
Len Brown26717172010-03-08 14:07:30 -0500615 return retval;
616 }
617
Thomas Renninger65b7f832012-01-17 22:40:08 +0100618 intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device);
619 if (intel_idle_cpuidle_devices == NULL)
620 return -ENOMEM;
621
622 for_each_online_cpu(i) {
623 retval = intel_idle_cpu_init(i);
624 if (retval) {
625 cpuidle_unregister_driver(&intel_idle_driver);
626 return retval;
627 }
Len Brown26717172010-03-08 14:07:30 -0500628 }
Konrad Rzeszutek Wilk6f8c2e72013-01-16 23:40:01 +0100629 register_cpu_notifier(&cpu_hotplug_notifier);
Len Brown26717172010-03-08 14:07:30 -0500630
631 return 0;
632}
633
634static void __exit intel_idle_exit(void)
635{
636 intel_idle_cpuidle_devices_uninit();
637 cpuidle_unregister_driver(&intel_idle_driver);
638
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200639
640 if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE)
Shaohua Li39a74fd2012-01-10 15:48:19 -0800641 on_each_cpu(__setup_broadcast_timer, (void *)false, 1);
Daniel Lezcano25ac7762012-07-05 15:23:25 +0200642 unregister_cpu_notifier(&cpu_hotplug_notifier);
Shaohua Li2a2d31c2011-01-10 09:38:12 +0800643
Len Brown26717172010-03-08 14:07:30 -0500644 return;
645}
646
647module_init(intel_idle_init);
648module_exit(intel_idle_exit);
649
Len Brown26717172010-03-08 14:07:30 -0500650module_param(max_cstate, int, 0444);
Len Brown26717172010-03-08 14:07:30 -0500651
652MODULE_AUTHOR("Len Brown <len.brown@intel.com>");
653MODULE_DESCRIPTION("Cpuidle driver for Intel Hardware v" INTEL_IDLE_VERSION);
654MODULE_LICENSE("GPL");