Thomas Gleixner | a61127c | 2019-05-29 16:57:49 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 2 | /* |
| 3 | * intel_idle.c - native hardware idle loop for modern Intel processors |
| 4 | * |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 5 | * Copyright (c) 2013, Intel Corporation. |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 6 | * Len Brown <len.brown@intel.com> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * intel_idle is a cpuidle driver that loads on specific Intel processors |
| 11 | * in lieu of the legacy ACPI processor_idle driver. The intent is to |
| 12 | * make Linux more efficient on these processors, as intel_idle knows |
| 13 | * more than ACPI, as well as make Linux more immune to ACPI BIOS bugs. |
| 14 | */ |
| 15 | |
| 16 | /* |
| 17 | * Design Assumptions |
| 18 | * |
| 19 | * All CPUs have same idle states as boot CPU |
| 20 | * |
| 21 | * Chipset BM_STS (bus master status) bit is a NOP |
| 22 | * for preventing entry into deep C-stats |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Known limitations |
| 27 | * |
| 28 | * The driver currently initializes for_each_online_cpu() upon modprobe. |
| 29 | * It it unaware of subsequent processors hot-added to the system. |
| 30 | * This means that if you boot with maxcpus=n and later online |
| 31 | * processors above n, those processors will use C1 only. |
| 32 | * |
| 33 | * ACPI has a .suspend hack to turn off deep c-statees during suspend |
| 34 | * to avoid complications with the lapic timer workaround. |
| 35 | * Have not seen issues with suspend, but may need same workaround here. |
| 36 | * |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 37 | */ |
| 38 | |
| 39 | /* un-comment DEBUG to enable pr_debug() statements */ |
| 40 | #define DEBUG |
| 41 | |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 42 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 43 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 44 | #include <linux/kernel.h> |
| 45 | #include <linux/cpuidle.h> |
Thomas Gleixner | 76962ca | 2015-04-03 02:02:34 +0200 | [diff] [blame] | 46 | #include <linux/tick.h> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 47 | #include <trace/events/power.h> |
| 48 | #include <linux/sched.h> |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 49 | #include <linux/notifier.h> |
| 50 | #include <linux/cpu.h> |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 51 | #include <linux/moduleparam.h> |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 52 | #include <asm/cpu_device_id.h> |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 53 | #include <asm/intel-family.h> |
H. Peter Anvin | bc83ccc | 2010-09-17 15:36:40 -0700 | [diff] [blame] | 54 | #include <asm/mwait.h> |
Len Brown | 14796fc | 2011-01-18 20:48:27 -0500 | [diff] [blame] | 55 | #include <asm/msr.h> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 56 | |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 57 | #define INTEL_IDLE_VERSION "0.4.1" |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 58 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 59 | static struct cpuidle_driver intel_idle_driver = { |
| 60 | .name = "intel_idle", |
| 61 | .owner = THIS_MODULE, |
| 62 | }; |
| 63 | /* intel_idle.max_cstate=0 disables driver */ |
Len Brown | 137ecc7 | 2013-02-01 21:35:35 -0500 | [diff] [blame] | 64 | static int max_cstate = CPUIDLE_STATE_MAX - 1; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 65 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame] | 66 | static unsigned int mwait_substates; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 67 | |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 68 | #define LAPIC_TIMER_ALWAYS_RELIABLE 0xFFFFFFFF |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 69 | /* Reliable LAPIC Timer States, bit 1 for C1 etc. */ |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 70 | static unsigned int lapic_timer_reliable_states = (1 << 1); /* Default to only C1 */ |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 71 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 72 | struct idle_cpu { |
| 73 | struct cpuidle_state *state_table; |
| 74 | |
| 75 | /* |
| 76 | * Hardware C-state auto-demotion may not always be optimal. |
| 77 | * Indicate which enable bits to clear here. |
| 78 | */ |
| 79 | unsigned long auto_demotion_disable_flags; |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 80 | bool byt_auto_demotion_disable_flag; |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 81 | bool disable_promotion_to_c1e; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | static const struct idle_cpu *icpu; |
Namhyung Kim | 3265eba | 2010-08-08 03:10:03 +0900 | [diff] [blame] | 85 | static struct cpuidle_device __percpu *intel_idle_cpuidle_devices; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 86 | static int intel_idle(struct cpuidle_device *dev, |
| 87 | struct cpuidle_driver *drv, int index); |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 88 | static void intel_idle_s2idle(struct cpuidle_device *dev, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 89 | struct cpuidle_driver *drv, int index); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 90 | static struct cpuidle_state *cpuidle_state_table; |
| 91 | |
| 92 | /* |
Len Brown | 956d033 | 2011-01-12 02:51:20 -0500 | [diff] [blame] | 93 | * Set this flag for states where the HW flushes the TLB for us |
| 94 | * and so we don't need cross-calls to keep it consistent. |
| 95 | * If this flag is set, SW flushes the TLB, so even if the |
| 96 | * HW doesn't do the flushing, this flag is safe to use. |
| 97 | */ |
| 98 | #define CPUIDLE_FLAG_TLB_FLUSHED 0x10000 |
| 99 | |
| 100 | /* |
Len Brown | b1beab4 | 2013-01-31 19:55:37 -0500 | [diff] [blame] | 101 | * MWAIT takes an 8-bit "hint" in EAX "suggesting" |
| 102 | * the C-state (top nibble) and sub-state (bottom nibble) |
| 103 | * 0x00 means "MWAIT(C1)", 0x10 means "MWAIT(C2)" etc. |
| 104 | * |
| 105 | * We store the hint at the top of our "flags" for each state. |
| 106 | */ |
| 107 | #define flg2MWAIT(flags) (((flags) >> 24) & 0xFF) |
| 108 | #define MWAIT2flg(eax) ((eax & 0xFF) << 24) |
| 109 | |
| 110 | /* |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 111 | * States are indexed by the cstate number, |
| 112 | * which is also the index into the MWAIT hint array. |
| 113 | * Thus C0 is a dummy. |
| 114 | */ |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 115 | static struct cpuidle_state nehalem_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 116 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 117 | .name = "C1", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 118 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 119 | .flags = MWAIT2flg(0x00), |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 120 | .exit_latency = 3, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 121 | .target_residency = 6, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 122 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 123 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 124 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 125 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 126 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 127 | .flags = MWAIT2flg(0x01), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 128 | .exit_latency = 10, |
| 129 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 130 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 131 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 132 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 133 | .name = "C3", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 134 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 135 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 136 | .exit_latency = 20, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 137 | .target_residency = 80, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 138 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 139 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 140 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 141 | .name = "C6", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 142 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 143 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 144 | .exit_latency = 200, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 145 | .target_residency = 800, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 146 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 147 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 148 | { |
| 149 | .enter = NULL } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 150 | }; |
| 151 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 152 | static struct cpuidle_state snb_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 153 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 154 | .name = "C1", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 155 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 156 | .flags = MWAIT2flg(0x00), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 157 | .exit_latency = 2, |
| 158 | .target_residency = 2, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 159 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 160 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 161 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 162 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 163 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 164 | .flags = MWAIT2flg(0x01), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 165 | .exit_latency = 10, |
| 166 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 167 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 168 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 169 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 170 | .name = "C3", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 171 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 172 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 173 | .exit_latency = 80, |
Len Brown | ddbd550 | 2010-12-13 18:28:22 -0500 | [diff] [blame] | 174 | .target_residency = 211, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 175 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 176 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 177 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 178 | .name = "C6", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 179 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 180 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 181 | .exit_latency = 104, |
Len Brown | ddbd550 | 2010-12-13 18:28:22 -0500 | [diff] [blame] | 182 | .target_residency = 345, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 183 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 184 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 185 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 186 | .name = "C7", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 187 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 188 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 189 | .exit_latency = 109, |
Len Brown | ddbd550 | 2010-12-13 18:28:22 -0500 | [diff] [blame] | 190 | .target_residency = 345, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 191 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 192 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 193 | { |
| 194 | .enter = NULL } |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 195 | }; |
| 196 | |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 197 | static struct cpuidle_state byt_cstates[] = { |
| 198 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 199 | .name = "C1", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 200 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 201 | .flags = MWAIT2flg(0x00), |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 202 | .exit_latency = 1, |
| 203 | .target_residency = 1, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 204 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 205 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 206 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 207 | .name = "C6N", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 208 | .desc = "MWAIT 0x58", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 209 | .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 210 | .exit_latency = 300, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 211 | .target_residency = 275, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 212 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 213 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 214 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 215 | .name = "C6S", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 216 | .desc = "MWAIT 0x52", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 217 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 218 | .exit_latency = 500, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 219 | .target_residency = 560, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 220 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 221 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 222 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 223 | .name = "C7", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 224 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 225 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 226 | .exit_latency = 1200, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 227 | .target_residency = 4000, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 228 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 229 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 230 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 231 | .name = "C7S", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 232 | .desc = "MWAIT 0x64", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 233 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 234 | .exit_latency = 10000, |
| 235 | .target_residency = 20000, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 236 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 237 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 238 | { |
| 239 | .enter = NULL } |
| 240 | }; |
| 241 | |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 242 | static struct cpuidle_state cht_cstates[] = { |
| 243 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 244 | .name = "C1", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 245 | .desc = "MWAIT 0x00", |
| 246 | .flags = MWAIT2flg(0x00), |
| 247 | .exit_latency = 1, |
| 248 | .target_residency = 1, |
| 249 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 250 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 251 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 252 | .name = "C6N", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 253 | .desc = "MWAIT 0x58", |
| 254 | .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 255 | .exit_latency = 80, |
| 256 | .target_residency = 275, |
| 257 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 258 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 259 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 260 | .name = "C6S", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 261 | .desc = "MWAIT 0x52", |
| 262 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 263 | .exit_latency = 200, |
| 264 | .target_residency = 560, |
| 265 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 266 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 267 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 268 | .name = "C7", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 269 | .desc = "MWAIT 0x60", |
| 270 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 271 | .exit_latency = 1200, |
| 272 | .target_residency = 4000, |
| 273 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 274 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 275 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 276 | .name = "C7S", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 277 | .desc = "MWAIT 0x64", |
| 278 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 279 | .exit_latency = 10000, |
| 280 | .target_residency = 20000, |
| 281 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 282 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 283 | { |
| 284 | .enter = NULL } |
| 285 | }; |
| 286 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 287 | static struct cpuidle_state ivb_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 288 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 289 | .name = "C1", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 290 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 291 | .flags = MWAIT2flg(0x00), |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 292 | .exit_latency = 1, |
| 293 | .target_residency = 1, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 294 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 295 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 296 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 297 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 298 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 299 | .flags = MWAIT2flg(0x01), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 300 | .exit_latency = 10, |
| 301 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 302 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 303 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 304 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 305 | .name = "C3", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 306 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 307 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 308 | .exit_latency = 59, |
| 309 | .target_residency = 156, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 310 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 311 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 312 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 313 | .name = "C6", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 314 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 315 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 316 | .exit_latency = 80, |
| 317 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 318 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 319 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 320 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 321 | .name = "C7", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 322 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 323 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 324 | .exit_latency = 87, |
| 325 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 326 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 327 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 328 | { |
| 329 | .enter = NULL } |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 330 | }; |
| 331 | |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 332 | static struct cpuidle_state ivt_cstates[] = { |
| 333 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 334 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 335 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 336 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 337 | .exit_latency = 1, |
| 338 | .target_residency = 1, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 339 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 340 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 341 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 342 | .name = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 343 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 344 | .flags = MWAIT2flg(0x01), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 345 | .exit_latency = 10, |
| 346 | .target_residency = 80, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 347 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 348 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 349 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 350 | .name = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 351 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 352 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 353 | .exit_latency = 59, |
| 354 | .target_residency = 156, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 355 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 356 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 357 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 358 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 359 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 360 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 361 | .exit_latency = 82, |
| 362 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 363 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 364 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 365 | { |
| 366 | .enter = NULL } |
| 367 | }; |
| 368 | |
| 369 | static struct cpuidle_state ivt_cstates_4s[] = { |
| 370 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 371 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 372 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 373 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 374 | .exit_latency = 1, |
| 375 | .target_residency = 1, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 376 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 377 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 378 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 379 | .name = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 380 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 381 | .flags = MWAIT2flg(0x01), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 382 | .exit_latency = 10, |
| 383 | .target_residency = 250, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 384 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 385 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 386 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 387 | .name = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 388 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 389 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 390 | .exit_latency = 59, |
| 391 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 392 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 393 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 394 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 395 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 396 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 397 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 398 | .exit_latency = 84, |
| 399 | .target_residency = 400, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 400 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 401 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 402 | { |
| 403 | .enter = NULL } |
| 404 | }; |
| 405 | |
| 406 | static struct cpuidle_state ivt_cstates_8s[] = { |
| 407 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 408 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 409 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 410 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 411 | .exit_latency = 1, |
| 412 | .target_residency = 1, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 413 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 414 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 415 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 416 | .name = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 417 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 418 | .flags = MWAIT2flg(0x01), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 419 | .exit_latency = 10, |
| 420 | .target_residency = 500, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 421 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 422 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 423 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 424 | .name = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 425 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 426 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 427 | .exit_latency = 59, |
| 428 | .target_residency = 600, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 429 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 430 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 431 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 432 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 433 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 434 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 435 | .exit_latency = 88, |
| 436 | .target_residency = 700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 437 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 438 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 439 | { |
| 440 | .enter = NULL } |
| 441 | }; |
| 442 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 443 | static struct cpuidle_state hsw_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 444 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 445 | .name = "C1", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 446 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 447 | .flags = MWAIT2flg(0x00), |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 448 | .exit_latency = 2, |
| 449 | .target_residency = 2, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 450 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 451 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 452 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 453 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 454 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 455 | .flags = MWAIT2flg(0x01), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 456 | .exit_latency = 10, |
| 457 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 458 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 459 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 460 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 461 | .name = "C3", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 462 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 463 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 464 | .exit_latency = 33, |
| 465 | .target_residency = 100, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 466 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 467 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 468 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 469 | .name = "C6", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 470 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 471 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 472 | .exit_latency = 133, |
| 473 | .target_residency = 400, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 474 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 475 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 476 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 477 | .name = "C7s", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 478 | .desc = "MWAIT 0x32", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 479 | .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 480 | .exit_latency = 166, |
| 481 | .target_residency = 500, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 482 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 483 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 484 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 485 | .name = "C8", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 486 | .desc = "MWAIT 0x40", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 487 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 488 | .exit_latency = 300, |
| 489 | .target_residency = 900, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 490 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 491 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 492 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 493 | .name = "C9", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 494 | .desc = "MWAIT 0x50", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 495 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 496 | .exit_latency = 600, |
| 497 | .target_residency = 1800, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 498 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 499 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 500 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 501 | .name = "C10", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 502 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 503 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 504 | .exit_latency = 2600, |
| 505 | .target_residency = 7700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 506 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 507 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 508 | { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 509 | .enter = NULL } |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 510 | }; |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 511 | static struct cpuidle_state bdw_cstates[] = { |
| 512 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 513 | .name = "C1", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 514 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 515 | .flags = MWAIT2flg(0x00), |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 516 | .exit_latency = 2, |
| 517 | .target_residency = 2, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 518 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 519 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 520 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 521 | .name = "C1E", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 522 | .desc = "MWAIT 0x01", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 523 | .flags = MWAIT2flg(0x01), |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 524 | .exit_latency = 10, |
| 525 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 526 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 527 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 528 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 529 | .name = "C3", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 530 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 531 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 532 | .exit_latency = 40, |
| 533 | .target_residency = 100, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 534 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 535 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 536 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 537 | .name = "C6", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 538 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 539 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 540 | .exit_latency = 133, |
| 541 | .target_residency = 400, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 542 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 543 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 544 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 545 | .name = "C7s", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 546 | .desc = "MWAIT 0x32", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 547 | .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 548 | .exit_latency = 166, |
| 549 | .target_residency = 500, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 550 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 551 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 552 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 553 | .name = "C8", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 554 | .desc = "MWAIT 0x40", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 555 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 556 | .exit_latency = 300, |
| 557 | .target_residency = 900, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 558 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 559 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 560 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 561 | .name = "C9", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 562 | .desc = "MWAIT 0x50", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 563 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 564 | .exit_latency = 600, |
| 565 | .target_residency = 1800, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 566 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 567 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 568 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 569 | .name = "C10", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 570 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 571 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 572 | .exit_latency = 2600, |
| 573 | .target_residency = 7700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 574 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 575 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 576 | { |
| 577 | .enter = NULL } |
| 578 | }; |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 579 | |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 580 | static struct cpuidle_state skl_cstates[] = { |
| 581 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 582 | .name = "C1", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 583 | .desc = "MWAIT 0x00", |
| 584 | .flags = MWAIT2flg(0x00), |
| 585 | .exit_latency = 2, |
| 586 | .target_residency = 2, |
| 587 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 588 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 589 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 590 | .name = "C1E", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 591 | .desc = "MWAIT 0x01", |
| 592 | .flags = MWAIT2flg(0x01), |
| 593 | .exit_latency = 10, |
| 594 | .target_residency = 20, |
| 595 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 596 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 597 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 598 | .name = "C3", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 599 | .desc = "MWAIT 0x10", |
| 600 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 601 | .exit_latency = 70, |
| 602 | .target_residency = 100, |
| 603 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 604 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 605 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 606 | .name = "C6", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 607 | .desc = "MWAIT 0x20", |
| 608 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 609 | .exit_latency = 85, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 610 | .target_residency = 200, |
| 611 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 612 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 613 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 614 | .name = "C7s", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 615 | .desc = "MWAIT 0x33", |
| 616 | .flags = MWAIT2flg(0x33) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 617 | .exit_latency = 124, |
| 618 | .target_residency = 800, |
| 619 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 620 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 621 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 622 | .name = "C8", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 623 | .desc = "MWAIT 0x40", |
| 624 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 625 | .exit_latency = 200, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 626 | .target_residency = 800, |
| 627 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 628 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 629 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 630 | .name = "C9", |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 631 | .desc = "MWAIT 0x50", |
| 632 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 633 | .exit_latency = 480, |
| 634 | .target_residency = 5000, |
| 635 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 636 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 637 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 638 | .name = "C10", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 639 | .desc = "MWAIT 0x60", |
| 640 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 641 | .exit_latency = 890, |
| 642 | .target_residency = 5000, |
| 643 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 644 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 645 | { |
| 646 | .enter = NULL } |
| 647 | }; |
| 648 | |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 649 | static struct cpuidle_state skx_cstates[] = { |
| 650 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 651 | .name = "C1", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 652 | .desc = "MWAIT 0x00", |
| 653 | .flags = MWAIT2flg(0x00), |
| 654 | .exit_latency = 2, |
| 655 | .target_residency = 2, |
| 656 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 657 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 658 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 659 | .name = "C1E", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 660 | .desc = "MWAIT 0x01", |
| 661 | .flags = MWAIT2flg(0x01), |
| 662 | .exit_latency = 10, |
| 663 | .target_residency = 20, |
| 664 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 665 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 666 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 667 | .name = "C6", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 668 | .desc = "MWAIT 0x20", |
| 669 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 670 | .exit_latency = 133, |
| 671 | .target_residency = 600, |
| 672 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 673 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 674 | { |
| 675 | .enter = NULL } |
| 676 | }; |
| 677 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 678 | static struct cpuidle_state atom_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 679 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 680 | .name = "C1E", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 681 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 682 | .flags = MWAIT2flg(0x00), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 683 | .exit_latency = 10, |
| 684 | .target_residency = 20, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 685 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 686 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 687 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 688 | .name = "C2", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 689 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 690 | .flags = MWAIT2flg(0x10), |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 691 | .exit_latency = 20, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 692 | .target_residency = 80, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 693 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 694 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 695 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 696 | .name = "C4", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 697 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 698 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 699 | .exit_latency = 100, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 700 | .target_residency = 400, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 701 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 702 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 703 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 704 | .name = "C6", |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 705 | .desc = "MWAIT 0x52", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 706 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 707 | .exit_latency = 140, |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 708 | .target_residency = 560, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 709 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 710 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 711 | { |
| 712 | .enter = NULL } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 713 | }; |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 714 | static struct cpuidle_state tangier_cstates[] = { |
| 715 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 716 | .name = "C1", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 717 | .desc = "MWAIT 0x00", |
| 718 | .flags = MWAIT2flg(0x00), |
| 719 | .exit_latency = 1, |
| 720 | .target_residency = 4, |
| 721 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 722 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 723 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 724 | .name = "C4", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 725 | .desc = "MWAIT 0x30", |
| 726 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 727 | .exit_latency = 100, |
| 728 | .target_residency = 400, |
| 729 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 730 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 731 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 732 | .name = "C6", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 733 | .desc = "MWAIT 0x52", |
| 734 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 735 | .exit_latency = 140, |
| 736 | .target_residency = 560, |
| 737 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 738 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 739 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 740 | .name = "C7", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 741 | .desc = "MWAIT 0x60", |
| 742 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 743 | .exit_latency = 1200, |
| 744 | .target_residency = 4000, |
| 745 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 746 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 747 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 748 | .name = "C9", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 749 | .desc = "MWAIT 0x64", |
| 750 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 751 | .exit_latency = 10000, |
| 752 | .target_residency = 20000, |
| 753 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 754 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 755 | { |
| 756 | .enter = NULL } |
| 757 | }; |
Jiang Liu | 8839099 | 2014-01-09 15:30:27 +0800 | [diff] [blame] | 758 | static struct cpuidle_state avn_cstates[] = { |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 759 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 760 | .name = "C1", |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 761 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 762 | .flags = MWAIT2flg(0x00), |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 763 | .exit_latency = 2, |
| 764 | .target_residency = 2, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 765 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 766 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 767 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 768 | .name = "C6", |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 769 | .desc = "MWAIT 0x51", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 770 | .flags = MWAIT2flg(0x51) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 771 | .exit_latency = 15, |
| 772 | .target_residency = 45, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 773 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 774 | .enter_s2idle = intel_idle_s2idle, }, |
Jiang Liu | 8839099 | 2014-01-09 15:30:27 +0800 | [diff] [blame] | 775 | { |
| 776 | .enter = NULL } |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 777 | }; |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 778 | static struct cpuidle_state knl_cstates[] = { |
| 779 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 780 | .name = "C1", |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 781 | .desc = "MWAIT 0x00", |
| 782 | .flags = MWAIT2flg(0x00), |
| 783 | .exit_latency = 1, |
| 784 | .target_residency = 2, |
| 785 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 786 | .enter_s2idle = intel_idle_s2idle }, |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 787 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 788 | .name = "C6", |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 789 | .desc = "MWAIT 0x10", |
| 790 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 791 | .exit_latency = 120, |
| 792 | .target_residency = 500, |
| 793 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 794 | .enter_s2idle = intel_idle_s2idle }, |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 795 | { |
| 796 | .enter = NULL } |
| 797 | }; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 798 | |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 799 | static struct cpuidle_state bxt_cstates[] = { |
| 800 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 801 | .name = "C1", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 802 | .desc = "MWAIT 0x00", |
| 803 | .flags = MWAIT2flg(0x00), |
| 804 | .exit_latency = 2, |
| 805 | .target_residency = 2, |
| 806 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 807 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 808 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 809 | .name = "C1E", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 810 | .desc = "MWAIT 0x01", |
| 811 | .flags = MWAIT2flg(0x01), |
| 812 | .exit_latency = 10, |
| 813 | .target_residency = 20, |
| 814 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 815 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 816 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 817 | .name = "C6", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 818 | .desc = "MWAIT 0x20", |
| 819 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 820 | .exit_latency = 133, |
| 821 | .target_residency = 133, |
| 822 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 823 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 824 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 825 | .name = "C7s", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 826 | .desc = "MWAIT 0x31", |
| 827 | .flags = MWAIT2flg(0x31) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 828 | .exit_latency = 155, |
| 829 | .target_residency = 155, |
| 830 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 831 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 832 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 833 | .name = "C8", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 834 | .desc = "MWAIT 0x40", |
| 835 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 836 | .exit_latency = 1000, |
| 837 | .target_residency = 1000, |
| 838 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 839 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 840 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 841 | .name = "C9", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 842 | .desc = "MWAIT 0x50", |
| 843 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 844 | .exit_latency = 2000, |
| 845 | .target_residency = 2000, |
| 846 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 847 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 848 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 849 | .name = "C10", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 850 | .desc = "MWAIT 0x60", |
| 851 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 852 | .exit_latency = 10000, |
| 853 | .target_residency = 10000, |
| 854 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 855 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 856 | { |
| 857 | .enter = NULL } |
| 858 | }; |
| 859 | |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 860 | static struct cpuidle_state dnv_cstates[] = { |
| 861 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 862 | .name = "C1", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 863 | .desc = "MWAIT 0x00", |
| 864 | .flags = MWAIT2flg(0x00), |
| 865 | .exit_latency = 2, |
| 866 | .target_residency = 2, |
| 867 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 868 | .enter_s2idle = intel_idle_s2idle, }, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 869 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 870 | .name = "C1E", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 871 | .desc = "MWAIT 0x01", |
| 872 | .flags = MWAIT2flg(0x01), |
| 873 | .exit_latency = 10, |
| 874 | .target_residency = 20, |
| 875 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 876 | .enter_s2idle = intel_idle_s2idle, }, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 877 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 878 | .name = "C6", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 879 | .desc = "MWAIT 0x20", |
| 880 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 881 | .exit_latency = 50, |
| 882 | .target_residency = 500, |
| 883 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 884 | .enter_s2idle = intel_idle_s2idle, }, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 885 | { |
| 886 | .enter = NULL } |
| 887 | }; |
| 888 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 889 | /** |
| 890 | * intel_idle |
| 891 | * @dev: cpuidle_device |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 892 | * @drv: cpuidle driver |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 893 | * @index: index of cpuidle state |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 894 | * |
Yanmin Zhang | 63ff07b | 2012-01-10 15:48:21 -0800 | [diff] [blame] | 895 | * Must be called under local_irq_disable(). |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 896 | */ |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 897 | static __cpuidle int intel_idle(struct cpuidle_device *dev, |
| 898 | struct cpuidle_driver *drv, int index) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 899 | { |
| 900 | unsigned long ecx = 1; /* break on interrupt flag */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 901 | struct cpuidle_state *state = &drv->states[index]; |
Len Brown | b1beab4 | 2013-01-31 19:55:37 -0500 | [diff] [blame] | 902 | unsigned long eax = flg2MWAIT(state->flags); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 903 | unsigned int cstate; |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 904 | bool uninitialized_var(tick); |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 905 | int cpu = smp_processor_id(); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 906 | |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 907 | /* |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 908 | * leave_mm() to avoid costly and often unnecessary wakeups |
| 909 | * for flushing the user TLB's associated with the active mm. |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 910 | */ |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 911 | if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED) |
| 912 | leave_mm(cpu); |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 913 | |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 914 | if (!static_cpu_has(X86_FEATURE_ARAT)) { |
| 915 | cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & |
| 916 | MWAIT_CSTATE_MASK) + 1; |
| 917 | tick = false; |
| 918 | if (!(lapic_timer_reliable_states & (1 << (cstate)))) { |
| 919 | tick = true; |
| 920 | tick_broadcast_enter(); |
| 921 | } |
| 922 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 923 | |
Peter Zijlstra | 1682425 | 2013-12-12 15:08:36 +0100 | [diff] [blame] | 924 | mwait_idle_with_hints(eax, ecx); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 925 | |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 926 | if (!static_cpu_has(X86_FEATURE_ARAT) && tick) |
Thomas Gleixner | f6cee19 | 2015-04-03 02:14:23 +0200 | [diff] [blame] | 927 | tick_broadcast_exit(); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 928 | |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 929 | return index; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 930 | } |
| 931 | |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 932 | /** |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 933 | * intel_idle_s2idle - simplified "enter" callback routine for suspend-to-idle |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 934 | * @dev: cpuidle_device |
| 935 | * @drv: cpuidle driver |
| 936 | * @index: state index |
| 937 | */ |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 938 | static void intel_idle_s2idle(struct cpuidle_device *dev, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 939 | struct cpuidle_driver *drv, int index) |
| 940 | { |
| 941 | unsigned long ecx = 1; /* break on interrupt flag */ |
| 942 | unsigned long eax = flg2MWAIT(drv->states[index].flags); |
| 943 | |
| 944 | mwait_idle_with_hints(eax, ecx); |
| 945 | } |
| 946 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 947 | static bool intel_idle_verify_cstate(unsigned int mwait_hint) |
| 948 | { |
| 949 | unsigned int mwait_cstate = MWAIT_HINT2CSTATE(mwait_hint) + 1; |
| 950 | unsigned int num_substates = (mwait_substates >> mwait_cstate * 4) & |
| 951 | MWAIT_SUBSTATE_MASK; |
| 952 | |
| 953 | /* Ignore the C-state if there are NO sub-states in CPUID for it. */ |
| 954 | if (num_substates == 0) |
| 955 | return false; |
| 956 | |
| 957 | if (mwait_cstate > 2 && !boot_cpu_has(X86_FEATURE_NONSTOP_TSC)) |
| 958 | mark_tsc_unstable("TSC halts in idle states deeper than C2"); |
| 959 | |
| 960 | return true; |
| 961 | } |
| 962 | |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 963 | static void __setup_broadcast_timer(bool on) |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 964 | { |
Thomas Gleixner | 76962ca | 2015-04-03 02:02:34 +0200 | [diff] [blame] | 965 | if (on) |
| 966 | tick_broadcast_enable(); |
| 967 | else |
| 968 | tick_broadcast_disable(); |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 969 | } |
| 970 | |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 971 | static void auto_demotion_disable(void) |
Len Brown | 14796fc | 2011-01-18 20:48:27 -0500 | [diff] [blame] | 972 | { |
| 973 | unsigned long long msr_bits; |
| 974 | |
Len Brown | 6cfb237 | 2017-01-07 23:23:25 -0500 | [diff] [blame] | 975 | rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 976 | msr_bits &= ~(icpu->auto_demotion_disable_flags); |
Len Brown | 6cfb237 | 2017-01-07 23:23:25 -0500 | [diff] [blame] | 977 | wrmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); |
Len Brown | 14796fc | 2011-01-18 20:48:27 -0500 | [diff] [blame] | 978 | } |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 979 | static void c1e_promotion_disable(void) |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 980 | { |
| 981 | unsigned long long msr_bits; |
| 982 | |
| 983 | rdmsrl(MSR_IA32_POWER_CTL, msr_bits); |
| 984 | msr_bits &= ~0x2; |
| 985 | wrmsrl(MSR_IA32_POWER_CTL, msr_bits); |
| 986 | } |
Len Brown | 14796fc | 2011-01-18 20:48:27 -0500 | [diff] [blame] | 987 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 988 | static const struct idle_cpu idle_cpu_nehalem = { |
| 989 | .state_table = nehalem_cstates, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 990 | .auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 991 | .disable_promotion_to_c1e = true, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 992 | }; |
| 993 | |
| 994 | static const struct idle_cpu idle_cpu_atom = { |
| 995 | .state_table = atom_cstates, |
| 996 | }; |
| 997 | |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 998 | static const struct idle_cpu idle_cpu_tangier = { |
| 999 | .state_table = tangier_cstates, |
| 1000 | }; |
| 1001 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1002 | static const struct idle_cpu idle_cpu_lincroft = { |
| 1003 | .state_table = atom_cstates, |
| 1004 | .auto_demotion_disable_flags = ATM_LNC_C6_AUTO_DEMOTE, |
| 1005 | }; |
| 1006 | |
| 1007 | static const struct idle_cpu idle_cpu_snb = { |
| 1008 | .state_table = snb_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 1009 | .disable_promotion_to_c1e = true, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1010 | }; |
| 1011 | |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 1012 | static const struct idle_cpu idle_cpu_byt = { |
| 1013 | .state_table = byt_cstates, |
| 1014 | .disable_promotion_to_c1e = true, |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 1015 | .byt_auto_demotion_disable_flag = true, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 1016 | }; |
| 1017 | |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 1018 | static const struct idle_cpu idle_cpu_cht = { |
| 1019 | .state_table = cht_cstates, |
| 1020 | .disable_promotion_to_c1e = true, |
| 1021 | .byt_auto_demotion_disable_flag = true, |
| 1022 | }; |
| 1023 | |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 1024 | static const struct idle_cpu idle_cpu_ivb = { |
| 1025 | .state_table = ivb_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 1026 | .disable_promotion_to_c1e = true, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 1027 | }; |
| 1028 | |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1029 | static const struct idle_cpu idle_cpu_ivt = { |
| 1030 | .state_table = ivt_cstates, |
| 1031 | .disable_promotion_to_c1e = true, |
| 1032 | }; |
| 1033 | |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 1034 | static const struct idle_cpu idle_cpu_hsw = { |
| 1035 | .state_table = hsw_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 1036 | .disable_promotion_to_c1e = true, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 1037 | }; |
| 1038 | |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 1039 | static const struct idle_cpu idle_cpu_bdw = { |
| 1040 | .state_table = bdw_cstates, |
| 1041 | .disable_promotion_to_c1e = true, |
| 1042 | }; |
| 1043 | |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 1044 | static const struct idle_cpu idle_cpu_skl = { |
| 1045 | .state_table = skl_cstates, |
| 1046 | .disable_promotion_to_c1e = true, |
| 1047 | }; |
| 1048 | |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 1049 | static const struct idle_cpu idle_cpu_skx = { |
| 1050 | .state_table = skx_cstates, |
| 1051 | .disable_promotion_to_c1e = true, |
| 1052 | }; |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 1053 | |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 1054 | static const struct idle_cpu idle_cpu_avn = { |
| 1055 | .state_table = avn_cstates, |
| 1056 | .disable_promotion_to_c1e = true, |
| 1057 | }; |
| 1058 | |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 1059 | static const struct idle_cpu idle_cpu_knl = { |
| 1060 | .state_table = knl_cstates, |
| 1061 | }; |
| 1062 | |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1063 | static const struct idle_cpu idle_cpu_bxt = { |
| 1064 | .state_table = bxt_cstates, |
| 1065 | .disable_promotion_to_c1e = true, |
| 1066 | }; |
| 1067 | |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 1068 | static const struct idle_cpu idle_cpu_dnv = { |
| 1069 | .state_table = dnv_cstates, |
| 1070 | .disable_promotion_to_c1e = true, |
| 1071 | }; |
| 1072 | |
Mathias Krause | d5cdc3c | 2015-03-25 22:15:14 +0100 | [diff] [blame] | 1073 | static const struct x86_cpu_id intel_idle_ids[] __initconst = { |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1074 | INTEL_CPU_FAM6(NEHALEM_EP, idle_cpu_nehalem), |
| 1075 | INTEL_CPU_FAM6(NEHALEM, idle_cpu_nehalem), |
| 1076 | INTEL_CPU_FAM6(NEHALEM_G, idle_cpu_nehalem), |
| 1077 | INTEL_CPU_FAM6(WESTMERE, idle_cpu_nehalem), |
| 1078 | INTEL_CPU_FAM6(WESTMERE_EP, idle_cpu_nehalem), |
| 1079 | INTEL_CPU_FAM6(NEHALEM_EX, idle_cpu_nehalem), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1080 | INTEL_CPU_FAM6(ATOM_BONNELL, idle_cpu_atom), |
| 1081 | INTEL_CPU_FAM6(ATOM_BONNELL_MID, idle_cpu_lincroft), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1082 | INTEL_CPU_FAM6(WESTMERE_EX, idle_cpu_nehalem), |
| 1083 | INTEL_CPU_FAM6(SANDYBRIDGE, idle_cpu_snb), |
| 1084 | INTEL_CPU_FAM6(SANDYBRIDGE_X, idle_cpu_snb), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1085 | INTEL_CPU_FAM6(ATOM_SALTWELL, idle_cpu_atom), |
| 1086 | INTEL_CPU_FAM6(ATOM_SILVERMONT, idle_cpu_byt), |
| 1087 | INTEL_CPU_FAM6(ATOM_SILVERMONT_MID, idle_cpu_tangier), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1088 | INTEL_CPU_FAM6(ATOM_AIRMONT, idle_cpu_cht), |
| 1089 | INTEL_CPU_FAM6(IVYBRIDGE, idle_cpu_ivb), |
| 1090 | INTEL_CPU_FAM6(IVYBRIDGE_X, idle_cpu_ivt), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1091 | INTEL_CPU_FAM6(HASWELL, idle_cpu_hsw), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1092 | INTEL_CPU_FAM6(HASWELL_X, idle_cpu_hsw), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1093 | INTEL_CPU_FAM6(HASWELL_L, idle_cpu_hsw), |
Peter Zijlstra | 5e74140 | 2019-08-27 21:48:23 +0200 | [diff] [blame] | 1094 | INTEL_CPU_FAM6(HASWELL_G, idle_cpu_hsw), |
Peter Zijlstra | 5ebb34e | 2019-08-27 21:48:24 +0200 | [diff] [blame] | 1095 | INTEL_CPU_FAM6(ATOM_SILVERMONT_D, idle_cpu_avn), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1096 | INTEL_CPU_FAM6(BROADWELL, idle_cpu_bdw), |
Peter Zijlstra | 5e74140 | 2019-08-27 21:48:23 +0200 | [diff] [blame] | 1097 | INTEL_CPU_FAM6(BROADWELL_G, idle_cpu_bdw), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1098 | INTEL_CPU_FAM6(BROADWELL_X, idle_cpu_bdw), |
Peter Zijlstra | 5ebb34e | 2019-08-27 21:48:24 +0200 | [diff] [blame] | 1099 | INTEL_CPU_FAM6(BROADWELL_D, idle_cpu_bdw), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1100 | INTEL_CPU_FAM6(SKYLAKE_L, idle_cpu_skl), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1101 | INTEL_CPU_FAM6(SKYLAKE, idle_cpu_skl), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1102 | INTEL_CPU_FAM6(KABYLAKE_L, idle_cpu_skl), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1103 | INTEL_CPU_FAM6(KABYLAKE, idle_cpu_skl), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1104 | INTEL_CPU_FAM6(SKYLAKE_X, idle_cpu_skx), |
| 1105 | INTEL_CPU_FAM6(XEON_PHI_KNL, idle_cpu_knl), |
| 1106 | INTEL_CPU_FAM6(XEON_PHI_KNM, idle_cpu_knl), |
| 1107 | INTEL_CPU_FAM6(ATOM_GOLDMONT, idle_cpu_bxt), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1108 | INTEL_CPU_FAM6(ATOM_GOLDMONT_PLUS, idle_cpu_bxt), |
Peter Zijlstra | 5ebb34e | 2019-08-27 21:48:24 +0200 | [diff] [blame] | 1109 | INTEL_CPU_FAM6(ATOM_GOLDMONT_D, idle_cpu_dnv), |
| 1110 | INTEL_CPU_FAM6(ATOM_TREMONT_D, idle_cpu_dnv), |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1111 | {} |
| 1112 | }; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1113 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1114 | /* |
| 1115 | * intel_idle_probe() |
| 1116 | */ |
Bartlomiej Zolnierkiewicz | 00f3e75 | 2013-08-30 12:27:45 +0200 | [diff] [blame] | 1117 | static int __init intel_idle_probe(void) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1118 | { |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame] | 1119 | unsigned int eax, ebx, ecx; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1120 | const struct x86_cpu_id *id; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1121 | |
| 1122 | if (max_cstate == 0) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1123 | pr_debug("disabled\n"); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1124 | return -EPERM; |
| 1125 | } |
| 1126 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1127 | id = x86_match_cpu(intel_idle_ids); |
| 1128 | if (!id) { |
| 1129 | if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL && |
| 1130 | boot_cpu_data.x86 == 6) |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1131 | pr_debug("does not run on family %d model %d\n", |
| 1132 | boot_cpu_data.x86, boot_cpu_data.x86_model); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1133 | return -ENODEV; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1134 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1135 | |
Len Brown | a4c4475 | 2017-11-09 02:19:39 -0500 | [diff] [blame] | 1136 | if (!boot_cpu_has(X86_FEATURE_MWAIT)) { |
| 1137 | pr_debug("Please enable MWAIT in BIOS SETUP\n"); |
| 1138 | return -ENODEV; |
| 1139 | } |
| 1140 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1141 | if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) |
| 1142 | return -ENODEV; |
| 1143 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame] | 1144 | cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1145 | |
| 1146 | if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || |
Thomas Renninger | 5c2a9f0 | 2011-12-04 22:17:29 +0100 | [diff] [blame] | 1147 | !(ecx & CPUID5_ECX_INTERRUPT_BREAK) || |
| 1148 | !mwait_substates) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1149 | return -ENODEV; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1150 | |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1151 | pr_debug("MWAIT substates: 0x%x\n", mwait_substates); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1152 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1153 | icpu = (const struct idle_cpu *)id->driver_data; |
| 1154 | cpuidle_state_table = icpu->state_table; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1155 | |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1156 | pr_debug("v" INTEL_IDLE_VERSION " model 0x%X\n", |
| 1157 | boot_cpu_data.x86_model); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1158 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1159 | return 0; |
| 1160 | } |
| 1161 | |
| 1162 | /* |
| 1163 | * intel_idle_cpuidle_devices_uninit() |
Richard Cochran | ca42489 | 2016-04-06 17:00:53 -0400 | [diff] [blame] | 1164 | * Unregisters the cpuidle devices. |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1165 | */ |
| 1166 | static void intel_idle_cpuidle_devices_uninit(void) |
| 1167 | { |
| 1168 | int i; |
| 1169 | struct cpuidle_device *dev; |
| 1170 | |
| 1171 | for_each_online_cpu(i) { |
| 1172 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, i); |
| 1173 | cpuidle_unregister_device(dev); |
| 1174 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1175 | } |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1176 | |
| 1177 | /* |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1178 | * ivt_idle_state_table_update(void) |
| 1179 | * |
| 1180 | * Tune IVT multi-socket targets |
| 1181 | * Assumption: num_sockets == (max_package_num + 1) |
| 1182 | */ |
| 1183 | static void ivt_idle_state_table_update(void) |
| 1184 | { |
| 1185 | /* IVT uses a different table for 1-2, 3-4, and > 4 sockets */ |
| 1186 | int cpu, package_num, num_sockets = 1; |
| 1187 | |
| 1188 | for_each_online_cpu(cpu) { |
| 1189 | package_num = topology_physical_package_id(cpu); |
| 1190 | if (package_num + 1 > num_sockets) { |
| 1191 | num_sockets = package_num + 1; |
| 1192 | |
| 1193 | if (num_sockets > 4) { |
| 1194 | cpuidle_state_table = ivt_cstates_8s; |
| 1195 | return; |
| 1196 | } |
| 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | if (num_sockets > 2) |
| 1201 | cpuidle_state_table = ivt_cstates_4s; |
| 1202 | |
| 1203 | /* else, 1 and 2 socket systems use default ivt_cstates */ |
| 1204 | } |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1205 | |
| 1206 | /* |
| 1207 | * Translate IRTL (Interrupt Response Time Limit) MSR to usec |
| 1208 | */ |
| 1209 | |
| 1210 | static unsigned int irtl_ns_units[] = { |
| 1211 | 1, 32, 1024, 32768, 1048576, 33554432, 0, 0 }; |
| 1212 | |
| 1213 | static unsigned long long irtl_2_usec(unsigned long long irtl) |
| 1214 | { |
| 1215 | unsigned long long ns; |
| 1216 | |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1217 | if (!irtl) |
| 1218 | return 0; |
| 1219 | |
Jan Beulich | bef4509 | 2016-06-27 00:35:48 -0600 | [diff] [blame] | 1220 | ns = irtl_ns_units[(irtl >> 10) & 0x7]; |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1221 | |
| 1222 | return div64_u64((irtl & 0x3FF) * ns, 1000); |
| 1223 | } |
| 1224 | /* |
| 1225 | * bxt_idle_state_table_update(void) |
| 1226 | * |
| 1227 | * On BXT, we trust the IRTL to show the definitive maximum latency |
| 1228 | * We use the same value for target_residency. |
| 1229 | */ |
| 1230 | static void bxt_idle_state_table_update(void) |
| 1231 | { |
| 1232 | unsigned long long msr; |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1233 | unsigned int usec; |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1234 | |
| 1235 | rdmsrl(MSR_PKGC6_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1236 | usec = irtl_2_usec(msr); |
| 1237 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1238 | bxt_cstates[2].exit_latency = usec; |
| 1239 | bxt_cstates[2].target_residency = usec; |
| 1240 | } |
| 1241 | |
| 1242 | rdmsrl(MSR_PKGC7_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1243 | usec = irtl_2_usec(msr); |
| 1244 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1245 | bxt_cstates[3].exit_latency = usec; |
| 1246 | bxt_cstates[3].target_residency = usec; |
| 1247 | } |
| 1248 | |
| 1249 | rdmsrl(MSR_PKGC8_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1250 | usec = irtl_2_usec(msr); |
| 1251 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1252 | bxt_cstates[4].exit_latency = usec; |
| 1253 | bxt_cstates[4].target_residency = usec; |
| 1254 | } |
| 1255 | |
| 1256 | rdmsrl(MSR_PKGC9_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1257 | usec = irtl_2_usec(msr); |
| 1258 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1259 | bxt_cstates[5].exit_latency = usec; |
| 1260 | bxt_cstates[5].target_residency = usec; |
| 1261 | } |
| 1262 | |
| 1263 | rdmsrl(MSR_PKGC10_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1264 | usec = irtl_2_usec(msr); |
| 1265 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1266 | bxt_cstates[6].exit_latency = usec; |
| 1267 | bxt_cstates[6].target_residency = usec; |
| 1268 | } |
| 1269 | |
| 1270 | } |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1271 | /* |
| 1272 | * sklh_idle_state_table_update(void) |
| 1273 | * |
| 1274 | * On SKL-H (model 0x5e) disable C8 and C9 if: |
| 1275 | * C10 is enabled and SGX disabled |
| 1276 | */ |
| 1277 | static void sklh_idle_state_table_update(void) |
| 1278 | { |
| 1279 | unsigned long long msr; |
| 1280 | unsigned int eax, ebx, ecx, edx; |
| 1281 | |
| 1282 | |
| 1283 | /* if PC10 disabled via cmdline intel_idle.max_cstate=7 or shallower */ |
| 1284 | if (max_cstate <= 7) |
| 1285 | return; |
| 1286 | |
| 1287 | /* if PC10 not present in CPUID.MWAIT.EDX */ |
| 1288 | if ((mwait_substates & (0xF << 28)) == 0) |
| 1289 | return; |
| 1290 | |
Len Brown | 6cfb237 | 2017-01-07 23:23:25 -0500 | [diff] [blame] | 1291 | rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr); |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1292 | |
| 1293 | /* PC10 is not enabled in PKG C-state limit */ |
| 1294 | if ((msr & 0xF) != 8) |
| 1295 | return; |
| 1296 | |
| 1297 | ecx = 0; |
| 1298 | cpuid(7, &eax, &ebx, &ecx, &edx); |
| 1299 | |
| 1300 | /* if SGX is present */ |
| 1301 | if (ebx & (1 << 2)) { |
| 1302 | |
| 1303 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
| 1304 | |
| 1305 | /* if SGX is enabled */ |
| 1306 | if (msr & (1 << 18)) |
| 1307 | return; |
| 1308 | } |
| 1309 | |
Rafael J. Wysocki | ba1e78a | 2019-11-21 19:41:51 +0100 | [diff] [blame] | 1310 | skl_cstates[5].flags |= CPUIDLE_FLAG_UNUSABLE; /* C8-SKL */ |
| 1311 | skl_cstates[6].flags |= CPUIDLE_FLAG_UNUSABLE; /* C9-SKL */ |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1312 | } |
| 1313 | /* |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1314 | * intel_idle_state_table_update() |
| 1315 | * |
| 1316 | * Update the default state_table for this CPU-id |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1317 | */ |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1318 | |
| 1319 | static void intel_idle_state_table_update(void) |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1320 | { |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1321 | switch (boot_cpu_data.x86_model) { |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1322 | |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 1323 | case INTEL_FAM6_IVYBRIDGE_X: |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1324 | ivt_idle_state_table_update(); |
| 1325 | break; |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 1326 | case INTEL_FAM6_ATOM_GOLDMONT: |
Peter Zijlstra | f2c4db1 | 2018-08-07 10:17:27 -0700 | [diff] [blame] | 1327 | case INTEL_FAM6_ATOM_GOLDMONT_PLUS: |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1328 | bxt_idle_state_table_update(); |
| 1329 | break; |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1330 | case INTEL_FAM6_SKYLAKE: |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1331 | sklh_idle_state_table_update(); |
| 1332 | break; |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1333 | } |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1334 | } |
| 1335 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1336 | /* |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1337 | * intel_idle_cpuidle_driver_init() |
| 1338 | * allocate, initialize cpuidle_states |
| 1339 | */ |
Richard Cochran | 5469c82 | 2016-04-06 17:00:49 -0400 | [diff] [blame] | 1340 | static void __init intel_idle_cpuidle_driver_init(void) |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1341 | { |
| 1342 | int cstate; |
| 1343 | struct cpuidle_driver *drv = &intel_idle_driver; |
| 1344 | |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1345 | intel_idle_state_table_update(); |
| 1346 | |
Rafael J. Wysocki | 1b39e3f | 2017-08-29 03:14:37 +0200 | [diff] [blame] | 1347 | cpuidle_poll_state_init(drv); |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1348 | drv->state_count = 1; |
| 1349 | |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 1350 | for (cstate = 0; cstate < CPUIDLE_STATE_MAX; ++cstate) { |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 1351 | unsigned int mwait_hint; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1352 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 1353 | if (!cpuidle_state_table[cstate].enter && |
| 1354 | !cpuidle_state_table[cstate].enter_s2idle) |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 1355 | break; |
| 1356 | |
| 1357 | if (cstate + 1 > max_cstate) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1358 | pr_info("max_cstate %d reached\n", max_cstate); |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1359 | break; |
| 1360 | } |
| 1361 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 1362 | /* If marked as unusable, skip this state. */ |
Rafael J. Wysocki | ba1e78a | 2019-11-21 19:41:51 +0100 | [diff] [blame] | 1363 | if (cpuidle_state_table[cstate].flags & CPUIDLE_FLAG_UNUSABLE) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1364 | pr_debug("state %s is disabled\n", |
| 1365 | cpuidle_state_table[cstate].name); |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1366 | continue; |
| 1367 | } |
| 1368 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 1369 | mwait_hint = flg2MWAIT(cpuidle_state_table[cstate].flags); |
| 1370 | if (!intel_idle_verify_cstate(mwait_hint)) |
| 1371 | continue; |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1372 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame^] | 1373 | /* Structure copy. */ |
| 1374 | drv->states[drv->state_count++] = cpuidle_state_table[cstate]; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1375 | } |
| 1376 | |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 1377 | if (icpu->byt_auto_demotion_disable_flag) { |
| 1378 | wrmsrl(MSR_CC6_DEMOTION_POLICY_CONFIG, 0); |
| 1379 | wrmsrl(MSR_MC6_DEMOTION_POLICY_CONFIG, 0); |
| 1380 | } |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | |
| 1384 | /* |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1385 | * intel_idle_cpu_init() |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1386 | * allocate, initialize, register cpuidle_devices |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1387 | * @cpu: cpu/core to initialize |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1388 | */ |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1389 | static int intel_idle_cpu_init(unsigned int cpu) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1390 | { |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1391 | struct cpuidle_device *dev; |
| 1392 | |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1393 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1394 | dev->cpu = cpu; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1395 | |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1396 | if (cpuidle_register_device(dev)) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1397 | pr_debug("cpuidle_register_device %d failed!\n", cpu); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1398 | return -EIO; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1399 | } |
| 1400 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1401 | if (icpu->auto_demotion_disable_flags) |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1402 | auto_demotion_disable(); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1403 | |
Bartlomiej Zolnierkiewicz | dbf87ab | 2013-12-20 19:47:28 +0100 | [diff] [blame] | 1404 | if (icpu->disable_promotion_to_c1e) |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1405 | c1e_promotion_disable(); |
| 1406 | |
| 1407 | return 0; |
| 1408 | } |
| 1409 | |
| 1410 | static int intel_idle_cpu_online(unsigned int cpu) |
| 1411 | { |
| 1412 | struct cpuidle_device *dev; |
| 1413 | |
| 1414 | if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE) |
| 1415 | __setup_broadcast_timer(true); |
| 1416 | |
| 1417 | /* |
| 1418 | * Some systems can hotplug a cpu at runtime after |
| 1419 | * the kernel has booted, we have to initialize the |
| 1420 | * driver in this case |
| 1421 | */ |
| 1422 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu); |
| 1423 | if (!dev->registered) |
| 1424 | return intel_idle_cpu_init(cpu); |
Bartlomiej Zolnierkiewicz | dbf87ab | 2013-12-20 19:47:28 +0100 | [diff] [blame] | 1425 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1426 | return 0; |
| 1427 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1428 | |
| 1429 | static int __init intel_idle_init(void) |
| 1430 | { |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1431 | int retval; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1432 | |
Thomas Renninger | d189604 | 2010-11-03 17:06:14 +0100 | [diff] [blame] | 1433 | /* Do not load intel_idle at all for now if idle= is passed */ |
| 1434 | if (boot_option_idle_override != IDLE_NO_OVERRIDE) |
| 1435 | return -ENODEV; |
| 1436 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1437 | retval = intel_idle_probe(); |
| 1438 | if (retval) |
| 1439 | return retval; |
| 1440 | |
Richard Cochran | e9df69c | 2016-04-06 17:00:52 -0400 | [diff] [blame] | 1441 | intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device); |
| 1442 | if (intel_idle_cpuidle_devices == NULL) |
| 1443 | return -ENOMEM; |
| 1444 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1445 | intel_idle_cpuidle_driver_init(); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1446 | retval = cpuidle_register_driver(&intel_idle_driver); |
| 1447 | if (retval) { |
Konrad Rzeszutek Wilk | 3735d52 | 2012-08-16 22:06:55 +0200 | [diff] [blame] | 1448 | struct cpuidle_driver *drv = cpuidle_get_driver(); |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1449 | printk(KERN_DEBUG pr_fmt("intel_idle yielding to %s\n"), |
| 1450 | drv ? drv->name : "none"); |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1451 | goto init_driver_fail; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1452 | } |
| 1453 | |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1454 | if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */ |
| 1455 | lapic_timer_reliable_states = LAPIC_TIMER_ALWAYS_RELIABLE; |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1456 | |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1457 | retval = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "idle/intel:online", |
| 1458 | intel_idle_cpu_online, NULL); |
| 1459 | if (retval < 0) |
| 1460 | goto hp_setup_fail; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1461 | |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1462 | pr_debug("lapic_timer_reliable_states 0x%x\n", |
| 1463 | lapic_timer_reliable_states); |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1464 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1465 | return 0; |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1466 | |
| 1467 | hp_setup_fail: |
| 1468 | intel_idle_cpuidle_devices_uninit(); |
| 1469 | cpuidle_unregister_driver(&intel_idle_driver); |
| 1470 | init_driver_fail: |
| 1471 | free_percpu(intel_idle_cpuidle_devices); |
| 1472 | return retval; |
| 1473 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1474 | } |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 1475 | device_initcall(intel_idle_init); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1476 | |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 1477 | /* |
| 1478 | * We are not really modular, but we used to support that. Meaning we also |
| 1479 | * support "intel_idle.max_cstate=..." at boot and also a read-only export of |
| 1480 | * it at /sys/module/intel_idle/parameters/max_cstate -- so using module_param |
| 1481 | * is the easiest way (currently) to continue doing that. |
| 1482 | */ |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1483 | module_param(max_cstate, int, 0444); |