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 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 44 | #include <linux/acpi.h> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 45 | #include <linux/kernel.h> |
| 46 | #include <linux/cpuidle.h> |
Thomas Gleixner | 76962ca | 2015-04-03 02:02:34 +0200 | [diff] [blame] | 47 | #include <linux/tick.h> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 48 | #include <trace/events/power.h> |
| 49 | #include <linux/sched.h> |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 50 | #include <linux/notifier.h> |
| 51 | #include <linux/cpu.h> |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 52 | #include <linux/moduleparam.h> |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 53 | #include <asm/cpu_device_id.h> |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 54 | #include <asm/intel-family.h> |
H. Peter Anvin | bc83ccc | 2010-09-17 15:36:40 -0700 | [diff] [blame] | 55 | #include <asm/mwait.h> |
Len Brown | 14796fc | 2011-01-18 20:48:27 -0500 | [diff] [blame] | 56 | #include <asm/msr.h> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 57 | |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 58 | #define INTEL_IDLE_VERSION "0.4.1" |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 59 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 60 | static struct cpuidle_driver intel_idle_driver = { |
| 61 | .name = "intel_idle", |
| 62 | .owner = THIS_MODULE, |
| 63 | }; |
| 64 | /* intel_idle.max_cstate=0 disables driver */ |
Len Brown | 137ecc7 | 2013-02-01 21:35:35 -0500 | [diff] [blame] | 65 | static int max_cstate = CPUIDLE_STATE_MAX - 1; |
Rafael J. Wysocki | 4dcb78e | 2020-02-03 11:57:18 +0100 | [diff] [blame] | 66 | static unsigned int disabled_states_mask; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 67 | |
Len Brown | c423628 | 2010-05-28 02:22:03 -0400 | [diff] [blame] | 68 | static unsigned int mwait_substates; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 69 | |
Shaohua Li | 2a2d31c | 2011-01-10 09:38:12 +0800 | [diff] [blame] | 70 | #define LAPIC_TIMER_ALWAYS_RELIABLE 0xFFFFFFFF |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 71 | /* Reliable LAPIC Timer States, bit 1 for C1 etc. */ |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 72 | 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] | 73 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 74 | struct idle_cpu { |
| 75 | struct cpuidle_state *state_table; |
| 76 | |
| 77 | /* |
| 78 | * Hardware C-state auto-demotion may not always be optimal. |
| 79 | * Indicate which enable bits to clear here. |
| 80 | */ |
| 81 | unsigned long auto_demotion_disable_flags; |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 82 | bool byt_auto_demotion_disable_flag; |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 83 | bool disable_promotion_to_c1e; |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 84 | bool use_acpi; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | static const struct idle_cpu *icpu; |
Namhyung Kim | 3265eba | 2010-08-08 03:10:03 +0900 | [diff] [blame] | 88 | static struct cpuidle_device __percpu *intel_idle_cpuidle_devices; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 89 | static int intel_idle(struct cpuidle_device *dev, |
| 90 | struct cpuidle_driver *drv, int index); |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 91 | static void intel_idle_s2idle(struct cpuidle_device *dev, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 92 | struct cpuidle_driver *drv, int index); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 93 | static struct cpuidle_state *cpuidle_state_table; |
| 94 | |
| 95 | /* |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 96 | * Enable this state by default even if the ACPI _CST does not list it. |
| 97 | */ |
| 98 | #define CPUIDLE_FLAG_ALWAYS_ENABLE BIT(15) |
| 99 | |
| 100 | /* |
Len Brown | 956d033 | 2011-01-12 02:51:20 -0500 | [diff] [blame] | 101 | * Set this flag for states where the HW flushes the TLB for us |
| 102 | * and so we don't need cross-calls to keep it consistent. |
| 103 | * If this flag is set, SW flushes the TLB, so even if the |
| 104 | * HW doesn't do the flushing, this flag is safe to use. |
| 105 | */ |
| 106 | #define CPUIDLE_FLAG_TLB_FLUSHED 0x10000 |
| 107 | |
| 108 | /* |
Len Brown | b1beab4 | 2013-01-31 19:55:37 -0500 | [diff] [blame] | 109 | * MWAIT takes an 8-bit "hint" in EAX "suggesting" |
| 110 | * the C-state (top nibble) and sub-state (bottom nibble) |
| 111 | * 0x00 means "MWAIT(C1)", 0x10 means "MWAIT(C2)" etc. |
| 112 | * |
| 113 | * We store the hint at the top of our "flags" for each state. |
| 114 | */ |
| 115 | #define flg2MWAIT(flags) (((flags) >> 24) & 0xFF) |
| 116 | #define MWAIT2flg(eax) ((eax & 0xFF) << 24) |
| 117 | |
| 118 | /* |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 119 | * States are indexed by the cstate number, |
| 120 | * which is also the index into the MWAIT hint array. |
| 121 | * Thus C0 is a dummy. |
| 122 | */ |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 123 | static struct cpuidle_state nehalem_cstates[] = { |
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 = "C1", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 126 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 127 | .flags = MWAIT2flg(0x00), |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 128 | .exit_latency = 3, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 129 | .target_residency = 6, |
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 | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 132 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 133 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 134 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 135 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 136 | .exit_latency = 10, |
| 137 | .target_residency = 20, |
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 | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 140 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 141 | .name = "C3", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 142 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 143 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 144 | .exit_latency = 20, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 145 | .target_residency = 80, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 149 | .name = "C6", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 150 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 151 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 152 | .exit_latency = 200, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 153 | .target_residency = 800, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 154 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 155 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 156 | { |
| 157 | .enter = NULL } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 158 | }; |
| 159 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 160 | static struct cpuidle_state snb_cstates[] = { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 161 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 162 | .name = "C1", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 163 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 164 | .flags = MWAIT2flg(0x00), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 165 | .exit_latency = 2, |
| 166 | .target_residency = 2, |
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 | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 169 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 170 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 171 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 172 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 173 | .exit_latency = 10, |
| 174 | .target_residency = 20, |
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 = "C3", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 179 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 180 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 181 | .exit_latency = 80, |
Len Brown | ddbd550 | 2010-12-13 18:28:22 -0500 | [diff] [blame] | 182 | .target_residency = 211, |
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 = "C6", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 187 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 188 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 189 | .exit_latency = 104, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 194 | .name = "C7", |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 195 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 196 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 197 | .exit_latency = 109, |
Len Brown | ddbd550 | 2010-12-13 18:28:22 -0500 | [diff] [blame] | 198 | .target_residency = 345, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 199 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 200 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 201 | { |
| 202 | .enter = NULL } |
Len Brown | d13780d | 2010-07-07 00:12:03 -0400 | [diff] [blame] | 203 | }; |
| 204 | |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 205 | static struct cpuidle_state byt_cstates[] = { |
| 206 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 207 | .name = "C1", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 208 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 209 | .flags = MWAIT2flg(0x00), |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 210 | .exit_latency = 1, |
| 211 | .target_residency = 1, |
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 = "C6N", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 216 | .desc = "MWAIT 0x58", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 217 | .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 218 | .exit_latency = 300, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 219 | .target_residency = 275, |
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 = "C6S", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 224 | .desc = "MWAIT 0x52", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 225 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 226 | .exit_latency = 500, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 227 | .target_residency = 560, |
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 = "C7", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 232 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 233 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 234 | .exit_latency = 1200, |
Len Brown | d7ef767 | 2015-03-24 23:23:20 -0400 | [diff] [blame] | 235 | .target_residency = 4000, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 239 | .name = "C7S", |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 240 | .desc = "MWAIT 0x64", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 241 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 242 | .exit_latency = 10000, |
| 243 | .target_residency = 20000, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 244 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 245 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 246 | { |
| 247 | .enter = NULL } |
| 248 | }; |
| 249 | |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 250 | static struct cpuidle_state cht_cstates[] = { |
| 251 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 252 | .name = "C1", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 253 | .desc = "MWAIT 0x00", |
| 254 | .flags = MWAIT2flg(0x00), |
| 255 | .exit_latency = 1, |
| 256 | .target_residency = 1, |
| 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 = "C6N", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 261 | .desc = "MWAIT 0x58", |
| 262 | .flags = MWAIT2flg(0x58) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 263 | .exit_latency = 80, |
| 264 | .target_residency = 275, |
| 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 = "C6S", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 269 | .desc = "MWAIT 0x52", |
| 270 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 271 | .exit_latency = 200, |
| 272 | .target_residency = 560, |
| 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 = "C7", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 277 | .desc = "MWAIT 0x60", |
| 278 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 279 | .exit_latency = 1200, |
| 280 | .target_residency = 4000, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 284 | .name = "C7S", |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 285 | .desc = "MWAIT 0x64", |
| 286 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 287 | .exit_latency = 10000, |
| 288 | .target_residency = 20000, |
| 289 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 290 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 291 | { |
| 292 | .enter = NULL } |
| 293 | }; |
| 294 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 295 | static struct cpuidle_state ivb_cstates[] = { |
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 = "C1", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 298 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 299 | .flags = MWAIT2flg(0x00), |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 300 | .exit_latency = 1, |
| 301 | .target_residency = 1, |
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 | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 304 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 305 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 306 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 307 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 308 | .exit_latency = 10, |
| 309 | .target_residency = 20, |
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 | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 312 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 313 | .name = "C3", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 314 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 315 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 316 | .exit_latency = 59, |
| 317 | .target_residency = 156, |
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 = "C6", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 322 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 323 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 324 | .exit_latency = 80, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 329 | .name = "C7", |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 330 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 331 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 332 | .exit_latency = 87, |
| 333 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 334 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 335 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 336 | { |
| 337 | .enter = NULL } |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 338 | }; |
| 339 | |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 340 | static struct cpuidle_state ivt_cstates[] = { |
| 341 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 342 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 343 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 344 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 345 | .exit_latency = 1, |
| 346 | .target_residency = 1, |
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 = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 351 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 352 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 353 | .exit_latency = 10, |
| 354 | .target_residency = 80, |
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 = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 359 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 360 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 361 | .exit_latency = 59, |
| 362 | .target_residency = 156, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 366 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 367 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 368 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 369 | .exit_latency = 82, |
| 370 | .target_residency = 300, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 371 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 372 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 373 | { |
| 374 | .enter = NULL } |
| 375 | }; |
| 376 | |
| 377 | static struct cpuidle_state ivt_cstates_4s[] = { |
| 378 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 379 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 380 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 381 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 382 | .exit_latency = 1, |
| 383 | .target_residency = 1, |
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 = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 388 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 389 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 390 | .exit_latency = 10, |
| 391 | .target_residency = 250, |
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 = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 396 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 397 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 398 | .exit_latency = 59, |
| 399 | .target_residency = 300, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 403 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 404 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 405 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 406 | .exit_latency = 84, |
| 407 | .target_residency = 400, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 408 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 409 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 410 | { |
| 411 | .enter = NULL } |
| 412 | }; |
| 413 | |
| 414 | static struct cpuidle_state ivt_cstates_8s[] = { |
| 415 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 416 | .name = "C1", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 417 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 418 | .flags = MWAIT2flg(0x00), |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 419 | .exit_latency = 1, |
| 420 | .target_residency = 1, |
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 = "C1E", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 425 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 426 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 427 | .exit_latency = 10, |
| 428 | .target_residency = 500, |
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 = "C3", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 433 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 434 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 435 | .exit_latency = 59, |
| 436 | .target_residency = 600, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 440 | .name = "C6", |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 441 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 442 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 443 | .exit_latency = 88, |
| 444 | .target_residency = 700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 445 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 446 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 447 | { |
| 448 | .enter = NULL } |
| 449 | }; |
| 450 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 451 | static struct cpuidle_state hsw_cstates[] = { |
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 = "C1", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 454 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 455 | .flags = MWAIT2flg(0x00), |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 456 | .exit_latency = 2, |
| 457 | .target_residency = 2, |
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 | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 460 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 461 | .name = "C1E", |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 462 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 463 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 464 | .exit_latency = 10, |
| 465 | .target_residency = 20, |
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 | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 468 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 469 | .name = "C3", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 470 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 471 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 472 | .exit_latency = 33, |
| 473 | .target_residency = 100, |
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 = "C6", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 478 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 479 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 480 | .exit_latency = 133, |
| 481 | .target_residency = 400, |
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 = "C7s", |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 486 | .desc = "MWAIT 0x32", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 487 | .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 488 | .exit_latency = 166, |
| 489 | .target_residency = 500, |
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 | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 492 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 493 | .name = "C8", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 494 | .desc = "MWAIT 0x40", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 495 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 496 | .exit_latency = 300, |
| 497 | .target_residency = 900, |
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 = "C9", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 502 | .desc = "MWAIT 0x50", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 503 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 504 | .exit_latency = 600, |
| 505 | .target_residency = 1800, |
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 | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 509 | .name = "C10", |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 510 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 511 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 512 | .exit_latency = 2600, |
| 513 | .target_residency = 7700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 514 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 515 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 516 | { |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 517 | .enter = NULL } |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 518 | }; |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 519 | static struct cpuidle_state bdw_cstates[] = { |
| 520 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 521 | .name = "C1", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 522 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 523 | .flags = MWAIT2flg(0x00), |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 524 | .exit_latency = 2, |
| 525 | .target_residency = 2, |
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 = "C1E", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 530 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 531 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 532 | .exit_latency = 10, |
| 533 | .target_residency = 20, |
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 = "C3", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 538 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 539 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 540 | .exit_latency = 40, |
| 541 | .target_residency = 100, |
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 = "C6", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 546 | .desc = "MWAIT 0x20", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 547 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 548 | .exit_latency = 133, |
| 549 | .target_residency = 400, |
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 = "C7s", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 554 | .desc = "MWAIT 0x32", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 555 | .flags = MWAIT2flg(0x32) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 556 | .exit_latency = 166, |
| 557 | .target_residency = 500, |
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 = "C8", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 562 | .desc = "MWAIT 0x40", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 563 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 564 | .exit_latency = 300, |
| 565 | .target_residency = 900, |
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 = "C9", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 570 | .desc = "MWAIT 0x50", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 571 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 572 | .exit_latency = 600, |
| 573 | .target_residency = 1800, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 577 | .name = "C10", |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 578 | .desc = "MWAIT 0x60", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 579 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 580 | .exit_latency = 2600, |
| 581 | .target_residency = 7700, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 582 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 583 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 584 | { |
| 585 | .enter = NULL } |
| 586 | }; |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 587 | |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 588 | static struct cpuidle_state skl_cstates[] = { |
| 589 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 590 | .name = "C1", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 591 | .desc = "MWAIT 0x00", |
| 592 | .flags = MWAIT2flg(0x00), |
| 593 | .exit_latency = 2, |
| 594 | .target_residency = 2, |
| 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 = "C1E", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 599 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 600 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 601 | .exit_latency = 10, |
| 602 | .target_residency = 20, |
| 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 = "C3", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 607 | .desc = "MWAIT 0x10", |
| 608 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 609 | .exit_latency = 70, |
| 610 | .target_residency = 100, |
| 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 = "C6", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 615 | .desc = "MWAIT 0x20", |
| 616 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 617 | .exit_latency = 85, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 618 | .target_residency = 200, |
| 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 = "C7s", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 623 | .desc = "MWAIT 0x33", |
| 624 | .flags = MWAIT2flg(0x33) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 625 | .exit_latency = 124, |
| 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 = "C8", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 631 | .desc = "MWAIT 0x40", |
| 632 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 633 | .exit_latency = 200, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 634 | .target_residency = 800, |
| 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 | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 637 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 638 | .name = "C9", |
Len Brown | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 639 | .desc = "MWAIT 0x50", |
| 640 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 641 | .exit_latency = 480, |
| 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 | 135919a | 2015-09-09 13:35:05 -0400 | [diff] [blame] | 645 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 646 | .name = "C10", |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 647 | .desc = "MWAIT 0x60", |
| 648 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 649 | .exit_latency = 890, |
| 650 | .target_residency = 5000, |
| 651 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 652 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 653 | { |
| 654 | .enter = NULL } |
| 655 | }; |
| 656 | |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 657 | static struct cpuidle_state skx_cstates[] = { |
| 658 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 659 | .name = "C1", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 660 | .desc = "MWAIT 0x00", |
| 661 | .flags = MWAIT2flg(0x00), |
| 662 | .exit_latency = 2, |
| 663 | .target_residency = 2, |
| 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 = "C1E", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 668 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 669 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 670 | .exit_latency = 10, |
| 671 | .target_residency = 20, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 675 | .name = "C6", |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 676 | .desc = "MWAIT 0x20", |
| 677 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 678 | .exit_latency = 133, |
| 679 | .target_residency = 600, |
| 680 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 681 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 682 | { |
| 683 | .enter = NULL } |
| 684 | }; |
| 685 | |
Jiang Liu | ba0dc81 | 2014-01-09 15:30:26 +0800 | [diff] [blame] | 686 | static struct cpuidle_state atom_cstates[] = { |
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 = "C1E", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 689 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 690 | .flags = MWAIT2flg(0x00), |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 691 | .exit_latency = 10, |
| 692 | .target_residency = 20, |
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 = "C2", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 697 | .desc = "MWAIT 0x10", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 698 | .flags = MWAIT2flg(0x10), |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 699 | .exit_latency = 20, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 700 | .target_residency = 80, |
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 = "C4", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 705 | .desc = "MWAIT 0x30", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 706 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 707 | .exit_latency = 100, |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 708 | .target_residency = 400, |
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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 712 | .name = "C6", |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 713 | .desc = "MWAIT 0x52", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 714 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 715 | .exit_latency = 140, |
Len Brown | 7fcca7d | 2010-10-05 13:43:14 -0400 | [diff] [blame] | 716 | .target_residency = 560, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 717 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 718 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 719 | { |
| 720 | .enter = NULL } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 721 | }; |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 722 | static struct cpuidle_state tangier_cstates[] = { |
| 723 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 724 | .name = "C1", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 725 | .desc = "MWAIT 0x00", |
| 726 | .flags = MWAIT2flg(0x00), |
| 727 | .exit_latency = 1, |
| 728 | .target_residency = 4, |
| 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 = "C4", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 733 | .desc = "MWAIT 0x30", |
| 734 | .flags = MWAIT2flg(0x30) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 735 | .exit_latency = 100, |
| 736 | .target_residency = 400, |
| 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 = "C6", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 741 | .desc = "MWAIT 0x52", |
| 742 | .flags = MWAIT2flg(0x52) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 743 | .exit_latency = 140, |
| 744 | .target_residency = 560, |
| 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 = "C7", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 749 | .desc = "MWAIT 0x60", |
| 750 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 751 | .exit_latency = 1200, |
| 752 | .target_residency = 4000, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 756 | .name = "C9", |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 757 | .desc = "MWAIT 0x64", |
| 758 | .flags = MWAIT2flg(0x64) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 759 | .exit_latency = 10000, |
| 760 | .target_residency = 20000, |
| 761 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 762 | .enter_s2idle = intel_idle_s2idle, }, |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 763 | { |
| 764 | .enter = NULL } |
| 765 | }; |
Jiang Liu | 8839099 | 2014-01-09 15:30:27 +0800 | [diff] [blame] | 766 | static struct cpuidle_state avn_cstates[] = { |
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 = "C1", |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 769 | .desc = "MWAIT 0x00", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 770 | .flags = MWAIT2flg(0x00), |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 771 | .exit_latency = 2, |
| 772 | .target_residency = 2, |
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, }, |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 775 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 776 | .name = "C6", |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 777 | .desc = "MWAIT 0x51", |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 778 | .flags = MWAIT2flg(0x51) | CPUIDLE_FLAG_TLB_FLUSHED, |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 779 | .exit_latency = 15, |
| 780 | .target_residency = 45, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 781 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 782 | .enter_s2idle = intel_idle_s2idle, }, |
Jiang Liu | 8839099 | 2014-01-09 15:30:27 +0800 | [diff] [blame] | 783 | { |
| 784 | .enter = NULL } |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 785 | }; |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 786 | static struct cpuidle_state knl_cstates[] = { |
| 787 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 788 | .name = "C1", |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 789 | .desc = "MWAIT 0x00", |
| 790 | .flags = MWAIT2flg(0x00), |
| 791 | .exit_latency = 1, |
| 792 | .target_residency = 2, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 796 | .name = "C6", |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 797 | .desc = "MWAIT 0x10", |
| 798 | .flags = MWAIT2flg(0x10) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 799 | .exit_latency = 120, |
| 800 | .target_residency = 500, |
| 801 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 802 | .enter_s2idle = intel_idle_s2idle }, |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 803 | { |
| 804 | .enter = NULL } |
| 805 | }; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 806 | |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 807 | static struct cpuidle_state bxt_cstates[] = { |
| 808 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 809 | .name = "C1", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 810 | .desc = "MWAIT 0x00", |
| 811 | .flags = MWAIT2flg(0x00), |
| 812 | .exit_latency = 2, |
| 813 | .target_residency = 2, |
| 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 = "C1E", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 818 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 819 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 820 | .exit_latency = 10, |
| 821 | .target_residency = 20, |
| 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 = "C6", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 826 | .desc = "MWAIT 0x20", |
| 827 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 828 | .exit_latency = 133, |
| 829 | .target_residency = 133, |
| 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 = "C7s", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 834 | .desc = "MWAIT 0x31", |
| 835 | .flags = MWAIT2flg(0x31) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 836 | .exit_latency = 155, |
| 837 | .target_residency = 155, |
| 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 = "C8", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 842 | .desc = "MWAIT 0x40", |
| 843 | .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 844 | .exit_latency = 1000, |
| 845 | .target_residency = 1000, |
| 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 = "C9", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 850 | .desc = "MWAIT 0x50", |
| 851 | .flags = MWAIT2flg(0x50) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 852 | .exit_latency = 2000, |
| 853 | .target_residency = 2000, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 857 | .name = "C10", |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 858 | .desc = "MWAIT 0x60", |
| 859 | .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 860 | .exit_latency = 10000, |
| 861 | .target_residency = 10000, |
| 862 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 863 | .enter_s2idle = intel_idle_s2idle, }, |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 864 | { |
| 865 | .enter = NULL } |
| 866 | }; |
| 867 | |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 868 | static struct cpuidle_state dnv_cstates[] = { |
| 869 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 870 | .name = "C1", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 871 | .desc = "MWAIT 0x00", |
| 872 | .flags = MWAIT2flg(0x00), |
| 873 | .exit_latency = 2, |
| 874 | .target_residency = 2, |
| 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 = "C1E", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 879 | .desc = "MWAIT 0x01", |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 880 | .flags = MWAIT2flg(0x01) | CPUIDLE_FLAG_ALWAYS_ENABLE, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 881 | .exit_latency = 10, |
| 882 | .target_residency = 20, |
| 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 | { |
Len Brown | de09cdd | 2017-02-28 16:32:44 -0500 | [diff] [blame] | 886 | .name = "C6", |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 887 | .desc = "MWAIT 0x20", |
| 888 | .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED, |
| 889 | .exit_latency = 50, |
| 890 | .target_residency = 500, |
| 891 | .enter = &intel_idle, |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 892 | .enter_s2idle = intel_idle_s2idle, }, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 893 | { |
| 894 | .enter = NULL } |
| 895 | }; |
| 896 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 897 | /** |
| 898 | * intel_idle |
| 899 | * @dev: cpuidle_device |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 900 | * @drv: cpuidle driver |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 901 | * @index: index of cpuidle state |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 902 | * |
Yanmin Zhang | 63ff07b | 2012-01-10 15:48:21 -0800 | [diff] [blame] | 903 | * Must be called under local_irq_disable(). |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 904 | */ |
Chris Metcalf | 6727ad9 | 2016-10-07 17:02:55 -0700 | [diff] [blame] | 905 | static __cpuidle int intel_idle(struct cpuidle_device *dev, |
| 906 | struct cpuidle_driver *drv, int index) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 907 | { |
| 908 | unsigned long ecx = 1; /* break on interrupt flag */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 909 | struct cpuidle_state *state = &drv->states[index]; |
Len Brown | b1beab4 | 2013-01-31 19:55:37 -0500 | [diff] [blame] | 910 | unsigned long eax = flg2MWAIT(state->flags); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 911 | unsigned int cstate; |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 912 | bool uninitialized_var(tick); |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 913 | int cpu = smp_processor_id(); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 914 | |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 915 | /* |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 916 | * leave_mm() to avoid costly and often unnecessary wakeups |
| 917 | * for flushing the user TLB's associated with the active mm. |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 918 | */ |
Andy Lutomirski | 6753573 | 2017-11-04 04:16:12 -0700 | [diff] [blame] | 919 | if (state->flags & CPUIDLE_FLAG_TLB_FLUSHED) |
| 920 | leave_mm(cpu); |
Suresh Siddha | 6110a1f | 2010-09-30 21:19:07 -0400 | [diff] [blame] | 921 | |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 922 | if (!static_cpu_has(X86_FEATURE_ARAT)) { |
| 923 | cstate = (((eax) >> MWAIT_SUBSTATE_SIZE) & |
| 924 | MWAIT_CSTATE_MASK) + 1; |
| 925 | tick = false; |
| 926 | if (!(lapic_timer_reliable_states & (1 << (cstate)))) { |
| 927 | tick = true; |
| 928 | tick_broadcast_enter(); |
| 929 | } |
| 930 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 931 | |
Peter Zijlstra | 1682425 | 2013-12-12 15:08:36 +0100 | [diff] [blame] | 932 | mwait_idle_with_hints(eax, ecx); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 933 | |
Jason Baron | 0563bb7 | 2017-10-06 13:19:45 -0400 | [diff] [blame] | 934 | if (!static_cpu_has(X86_FEATURE_ARAT) && tick) |
Thomas Gleixner | f6cee19 | 2015-04-03 02:14:23 +0200 | [diff] [blame] | 935 | tick_broadcast_exit(); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 936 | |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 937 | return index; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 938 | } |
| 939 | |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 940 | /** |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 941 | * intel_idle_s2idle - simplified "enter" callback routine for suspend-to-idle |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 942 | * @dev: cpuidle_device |
| 943 | * @drv: cpuidle driver |
| 944 | * @index: state index |
| 945 | */ |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 946 | static void intel_idle_s2idle(struct cpuidle_device *dev, |
Rafael J. Wysocki | 5fe2e52 | 2015-02-11 05:04:17 +0100 | [diff] [blame] | 947 | struct cpuidle_driver *drv, int index) |
| 948 | { |
| 949 | unsigned long ecx = 1; /* break on interrupt flag */ |
| 950 | unsigned long eax = flg2MWAIT(drv->states[index].flags); |
| 951 | |
| 952 | mwait_idle_with_hints(eax, ecx); |
| 953 | } |
| 954 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 955 | static const struct idle_cpu idle_cpu_nehalem = { |
| 956 | .state_table = nehalem_cstates, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 957 | .auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 958 | .disable_promotion_to_c1e = true, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 959 | }; |
| 960 | |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 961 | static const struct idle_cpu idle_cpu_nhx = { |
| 962 | .state_table = nehalem_cstates, |
| 963 | .auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE, |
| 964 | .disable_promotion_to_c1e = true, |
| 965 | .use_acpi = true, |
| 966 | }; |
| 967 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 968 | static const struct idle_cpu idle_cpu_atom = { |
| 969 | .state_table = atom_cstates, |
| 970 | }; |
| 971 | |
Andy Shevchenko | 5e7ec26 | 2016-10-25 17:11:39 +0300 | [diff] [blame] | 972 | static const struct idle_cpu idle_cpu_tangier = { |
| 973 | .state_table = tangier_cstates, |
| 974 | }; |
| 975 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 976 | static const struct idle_cpu idle_cpu_lincroft = { |
| 977 | .state_table = atom_cstates, |
| 978 | .auto_demotion_disable_flags = ATM_LNC_C6_AUTO_DEMOTE, |
| 979 | }; |
| 980 | |
| 981 | static const struct idle_cpu idle_cpu_snb = { |
| 982 | .state_table = snb_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 983 | .disable_promotion_to_c1e = true, |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 984 | }; |
| 985 | |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 986 | static const struct idle_cpu idle_cpu_snx = { |
| 987 | .state_table = snb_cstates, |
| 988 | .disable_promotion_to_c1e = true, |
| 989 | .use_acpi = true, |
| 990 | }; |
| 991 | |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 992 | static const struct idle_cpu idle_cpu_byt = { |
| 993 | .state_table = byt_cstates, |
| 994 | .disable_promotion_to_c1e = true, |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 995 | .byt_auto_demotion_disable_flag = true, |
Len Brown | 718987d | 2014-02-14 02:30:00 -0500 | [diff] [blame] | 996 | }; |
| 997 | |
Len Brown | cab07a5 | 2015-03-27 20:54:01 -0400 | [diff] [blame] | 998 | static const struct idle_cpu idle_cpu_cht = { |
| 999 | .state_table = cht_cstates, |
| 1000 | .disable_promotion_to_c1e = true, |
| 1001 | .byt_auto_demotion_disable_flag = true, |
| 1002 | }; |
| 1003 | |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 1004 | static const struct idle_cpu idle_cpu_ivb = { |
| 1005 | .state_table = ivb_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 1006 | .disable_promotion_to_c1e = true, |
Len Brown | 6edab08 | 2012-06-01 19:45:32 -0400 | [diff] [blame] | 1007 | }; |
| 1008 | |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1009 | static const struct idle_cpu idle_cpu_ivt = { |
| 1010 | .state_table = ivt_cstates, |
| 1011 | .disable_promotion_to_c1e = true, |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1012 | .use_acpi = true, |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1013 | }; |
| 1014 | |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 1015 | static const struct idle_cpu idle_cpu_hsw = { |
| 1016 | .state_table = hsw_cstates, |
Len Brown | 32e9518 | 2013-02-02 01:31:56 -0500 | [diff] [blame] | 1017 | .disable_promotion_to_c1e = true, |
Len Brown | 85a4d2d | 2013-01-31 14:40:49 -0500 | [diff] [blame] | 1018 | }; |
| 1019 | |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1020 | static const struct idle_cpu idle_cpu_hsx = { |
| 1021 | .state_table = hsw_cstates, |
| 1022 | .disable_promotion_to_c1e = true, |
| 1023 | .use_acpi = true, |
| 1024 | }; |
| 1025 | |
Len Brown | a138b56 | 2014-02-04 23:56:40 -0500 | [diff] [blame] | 1026 | static const struct idle_cpu idle_cpu_bdw = { |
| 1027 | .state_table = bdw_cstates, |
| 1028 | .disable_promotion_to_c1e = true, |
| 1029 | }; |
| 1030 | |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1031 | static const struct idle_cpu idle_cpu_bdx = { |
| 1032 | .state_table = bdw_cstates, |
| 1033 | .disable_promotion_to_c1e = true, |
| 1034 | .use_acpi = true, |
| 1035 | }; |
| 1036 | |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 1037 | static const struct idle_cpu idle_cpu_skl = { |
| 1038 | .state_table = skl_cstates, |
| 1039 | .disable_promotion_to_c1e = true, |
| 1040 | }; |
| 1041 | |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 1042 | static const struct idle_cpu idle_cpu_skx = { |
| 1043 | .state_table = skx_cstates, |
| 1044 | .disable_promotion_to_c1e = true, |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1045 | .use_acpi = true, |
Len Brown | f9e7165 | 2016-04-06 17:00:58 -0400 | [diff] [blame] | 1046 | }; |
Len Brown | 493f133 | 2015-03-25 23:20:37 -0400 | [diff] [blame] | 1047 | |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 1048 | static const struct idle_cpu idle_cpu_avn = { |
| 1049 | .state_table = avn_cstates, |
| 1050 | .disable_promotion_to_c1e = true, |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1051 | .use_acpi = true, |
Len Brown | fab04b2 | 2013-11-09 00:30:17 -0500 | [diff] [blame] | 1052 | }; |
| 1053 | |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 1054 | static const struct idle_cpu idle_cpu_knl = { |
| 1055 | .state_table = knl_cstates, |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1056 | .use_acpi = true, |
Dasaratharaman Chandramouli | 281baf7 | 2014-09-04 17:22:54 -0700 | [diff] [blame] | 1057 | }; |
| 1058 | |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1059 | static const struct idle_cpu idle_cpu_bxt = { |
| 1060 | .state_table = bxt_cstates, |
| 1061 | .disable_promotion_to_c1e = true, |
| 1062 | }; |
| 1063 | |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 1064 | static const struct idle_cpu idle_cpu_dnv = { |
| 1065 | .state_table = dnv_cstates, |
| 1066 | .disable_promotion_to_c1e = true, |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1067 | .use_acpi = true, |
Jacob Pan | 0080d65 | 2016-06-17 01:28:34 -0400 | [diff] [blame] | 1068 | }; |
| 1069 | |
Mathias Krause | d5cdc3c | 2015-03-25 22:15:14 +0100 | [diff] [blame] | 1070 | static const struct x86_cpu_id intel_idle_ids[] __initconst = { |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1071 | INTEL_CPU_FAM6(NEHALEM_EP, idle_cpu_nhx), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1072 | INTEL_CPU_FAM6(NEHALEM, idle_cpu_nehalem), |
| 1073 | INTEL_CPU_FAM6(NEHALEM_G, idle_cpu_nehalem), |
| 1074 | INTEL_CPU_FAM6(WESTMERE, idle_cpu_nehalem), |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1075 | INTEL_CPU_FAM6(WESTMERE_EP, idle_cpu_nhx), |
| 1076 | INTEL_CPU_FAM6(NEHALEM_EX, idle_cpu_nhx), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1077 | INTEL_CPU_FAM6(ATOM_BONNELL, idle_cpu_atom), |
| 1078 | INTEL_CPU_FAM6(ATOM_BONNELL_MID, idle_cpu_lincroft), |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1079 | INTEL_CPU_FAM6(WESTMERE_EX, idle_cpu_nhx), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1080 | INTEL_CPU_FAM6(SANDYBRIDGE, idle_cpu_snb), |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1081 | INTEL_CPU_FAM6(SANDYBRIDGE_X, idle_cpu_snx), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1082 | INTEL_CPU_FAM6(ATOM_SALTWELL, idle_cpu_atom), |
| 1083 | INTEL_CPU_FAM6(ATOM_SILVERMONT, idle_cpu_byt), |
| 1084 | INTEL_CPU_FAM6(ATOM_SILVERMONT_MID, idle_cpu_tangier), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1085 | INTEL_CPU_FAM6(ATOM_AIRMONT, idle_cpu_cht), |
| 1086 | INTEL_CPU_FAM6(IVYBRIDGE, idle_cpu_ivb), |
| 1087 | INTEL_CPU_FAM6(IVYBRIDGE_X, idle_cpu_ivt), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1088 | INTEL_CPU_FAM6(HASWELL, idle_cpu_hsw), |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1089 | INTEL_CPU_FAM6(HASWELL_X, idle_cpu_hsx), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1090 | INTEL_CPU_FAM6(HASWELL_L, idle_cpu_hsw), |
Peter Zijlstra | 5e74140 | 2019-08-27 21:48:23 +0200 | [diff] [blame] | 1091 | INTEL_CPU_FAM6(HASWELL_G, idle_cpu_hsw), |
Peter Zijlstra | 5ebb34e | 2019-08-27 21:48:24 +0200 | [diff] [blame] | 1092 | INTEL_CPU_FAM6(ATOM_SILVERMONT_D, idle_cpu_avn), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1093 | INTEL_CPU_FAM6(BROADWELL, idle_cpu_bdw), |
Peter Zijlstra | 5e74140 | 2019-08-27 21:48:23 +0200 | [diff] [blame] | 1094 | INTEL_CPU_FAM6(BROADWELL_G, idle_cpu_bdw), |
Rafael J. Wysocki | e6d4f08 | 2019-12-13 09:56:38 +0100 | [diff] [blame] | 1095 | INTEL_CPU_FAM6(BROADWELL_X, idle_cpu_bdx), |
| 1096 | INTEL_CPU_FAM6(BROADWELL_D, idle_cpu_bdx), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1097 | INTEL_CPU_FAM6(SKYLAKE_L, idle_cpu_skl), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1098 | INTEL_CPU_FAM6(SKYLAKE, idle_cpu_skl), |
Peter Zijlstra | af239c4 | 2019-08-27 21:48:22 +0200 | [diff] [blame] | 1099 | INTEL_CPU_FAM6(KABYLAKE_L, idle_cpu_skl), |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1100 | INTEL_CPU_FAM6(KABYLAKE, idle_cpu_skl), |
Andy Shevchenko | a4a008e | 2018-08-31 11:22:29 +0300 | [diff] [blame] | 1101 | INTEL_CPU_FAM6(SKYLAKE_X, idle_cpu_skx), |
| 1102 | INTEL_CPU_FAM6(XEON_PHI_KNL, idle_cpu_knl), |
| 1103 | INTEL_CPU_FAM6(XEON_PHI_KNM, idle_cpu_knl), |
| 1104 | INTEL_CPU_FAM6(ATOM_GOLDMONT, idle_cpu_bxt), |
Linus Torvalds | c05f364 | 2018-10-23 13:32:18 +0100 | [diff] [blame] | 1105 | INTEL_CPU_FAM6(ATOM_GOLDMONT_PLUS, idle_cpu_bxt), |
Peter Zijlstra | 5ebb34e | 2019-08-27 21:48:24 +0200 | [diff] [blame] | 1106 | INTEL_CPU_FAM6(ATOM_GOLDMONT_D, idle_cpu_dnv), |
| 1107 | INTEL_CPU_FAM6(ATOM_TREMONT_D, idle_cpu_dnv), |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1108 | {} |
| 1109 | }; |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1110 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1111 | #define INTEL_CPU_FAM6_MWAIT \ |
| 1112 | { X86_VENDOR_INTEL, 6, X86_MODEL_ANY, X86_FEATURE_MWAIT, 0 } |
| 1113 | |
| 1114 | static const struct x86_cpu_id intel_mwait_ids[] __initconst = { |
| 1115 | INTEL_CPU_FAM6_MWAIT, |
| 1116 | {} |
| 1117 | }; |
| 1118 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1119 | static bool __init intel_idle_max_cstate_reached(int cstate) |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1120 | { |
| 1121 | if (cstate + 1 > max_cstate) { |
| 1122 | pr_info("max_cstate %d reached\n", max_cstate); |
| 1123 | return true; |
| 1124 | } |
| 1125 | return false; |
| 1126 | } |
| 1127 | |
| 1128 | #ifdef CONFIG_ACPI_PROCESSOR_CSTATE |
| 1129 | #include <acpi/processor.h> |
| 1130 | |
Rafael J. Wysocki | 4ec32d9 | 2019-12-13 09:56:29 +0100 | [diff] [blame] | 1131 | static bool no_acpi __read_mostly; |
| 1132 | module_param(no_acpi, bool, 0444); |
| 1133 | MODULE_PARM_DESC(no_acpi, "Do not use ACPI _CST for building the idle states list"); |
| 1134 | |
Rafael J. Wysocki | 3a5be9b | 2020-02-03 11:57:08 +0100 | [diff] [blame] | 1135 | static bool force_use_acpi __read_mostly; /* No effect if no_acpi is set. */ |
| 1136 | module_param_named(use_acpi, force_use_acpi, bool, 0444); |
| 1137 | MODULE_PARM_DESC(use_acpi, "Use ACPI _CST for building the idle states list"); |
| 1138 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1139 | static struct acpi_processor_power acpi_state_table __initdata; |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1140 | |
| 1141 | /** |
| 1142 | * intel_idle_cst_usable - Check if the _CST information can be used. |
| 1143 | * |
| 1144 | * Check if all of the C-states listed by _CST in the max_cstate range are |
| 1145 | * ACPI_CSTATE_FFH, which means that they should be entered via MWAIT. |
| 1146 | */ |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1147 | static bool __init intel_idle_cst_usable(void) |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1148 | { |
| 1149 | int cstate, limit; |
| 1150 | |
| 1151 | limit = min_t(int, min_t(int, CPUIDLE_STATE_MAX, max_cstate + 1), |
| 1152 | acpi_state_table.count); |
| 1153 | |
| 1154 | for (cstate = 1; cstate < limit; cstate++) { |
| 1155 | struct acpi_processor_cx *cx = &acpi_state_table.states[cstate]; |
| 1156 | |
| 1157 | if (cx->entry_method != ACPI_CSTATE_FFH) |
| 1158 | return false; |
| 1159 | } |
| 1160 | |
| 1161 | return true; |
| 1162 | } |
| 1163 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1164 | static bool __init intel_idle_acpi_cst_extract(void) |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1165 | { |
| 1166 | unsigned int cpu; |
| 1167 | |
Rafael J. Wysocki | 4ec32d9 | 2019-12-13 09:56:29 +0100 | [diff] [blame] | 1168 | if (no_acpi) { |
| 1169 | pr_debug("Not allowed to use ACPI _CST\n"); |
| 1170 | return false; |
| 1171 | } |
| 1172 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1173 | for_each_possible_cpu(cpu) { |
| 1174 | struct acpi_processor *pr = per_cpu(processors, cpu); |
| 1175 | |
| 1176 | if (!pr) |
| 1177 | continue; |
| 1178 | |
| 1179 | if (acpi_processor_evaluate_cst(pr->handle, cpu, &acpi_state_table)) |
| 1180 | continue; |
| 1181 | |
| 1182 | acpi_state_table.count++; |
| 1183 | |
| 1184 | if (!intel_idle_cst_usable()) |
| 1185 | continue; |
| 1186 | |
| 1187 | if (!acpi_processor_claim_cst_control()) { |
| 1188 | acpi_state_table.count = 0; |
| 1189 | return false; |
| 1190 | } |
| 1191 | |
| 1192 | return true; |
| 1193 | } |
| 1194 | |
| 1195 | pr_debug("ACPI _CST not found or not usable\n"); |
| 1196 | return false; |
| 1197 | } |
| 1198 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1199 | static void __init intel_idle_init_cstates_acpi(struct cpuidle_driver *drv) |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1200 | { |
| 1201 | int cstate, limit = min_t(int, CPUIDLE_STATE_MAX, acpi_state_table.count); |
| 1202 | |
| 1203 | /* |
| 1204 | * If limit > 0, intel_idle_cst_usable() has returned 'true', so all of |
| 1205 | * the interesting states are ACPI_CSTATE_FFH. |
| 1206 | */ |
| 1207 | for (cstate = 1; cstate < limit; cstate++) { |
| 1208 | struct acpi_processor_cx *cx; |
| 1209 | struct cpuidle_state *state; |
| 1210 | |
| 1211 | if (intel_idle_max_cstate_reached(cstate)) |
| 1212 | break; |
| 1213 | |
| 1214 | cx = &acpi_state_table.states[cstate]; |
| 1215 | |
| 1216 | state = &drv->states[drv->state_count++]; |
| 1217 | |
| 1218 | snprintf(state->name, CPUIDLE_NAME_LEN, "C%d_ACPI", cstate); |
| 1219 | strlcpy(state->desc, cx->desc, CPUIDLE_DESC_LEN); |
| 1220 | state->exit_latency = cx->latency; |
| 1221 | /* |
| 1222 | * For C1-type C-states use the same number for both the exit |
| 1223 | * latency and target residency, because that is the case for |
| 1224 | * C1 in the majority of the static C-states tables above. |
| 1225 | * For the other types of C-states, however, set the target |
| 1226 | * residency to 3 times the exit latency which should lead to |
| 1227 | * a reasonable balance between energy-efficiency and |
| 1228 | * performance in the majority of interesting cases. |
| 1229 | */ |
| 1230 | state->target_residency = cx->latency; |
| 1231 | if (cx->type > ACPI_STATE_C1) |
| 1232 | state->target_residency *= 3; |
| 1233 | |
| 1234 | state->flags = MWAIT2flg(cx->address); |
| 1235 | if (cx->type > ACPI_STATE_C2) |
| 1236 | state->flags |= CPUIDLE_FLAG_TLB_FLUSHED; |
| 1237 | |
Rafael J. Wysocki | 4dcb78e | 2020-02-03 11:57:18 +0100 | [diff] [blame] | 1238 | if (disabled_states_mask & BIT(cstate)) |
| 1239 | state->flags |= CPUIDLE_FLAG_OFF; |
| 1240 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1241 | state->enter = intel_idle; |
| 1242 | state->enter_s2idle = intel_idle_s2idle; |
| 1243 | } |
| 1244 | } |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 1245 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1246 | static bool __init intel_idle_off_by_default(u32 mwait_hint) |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 1247 | { |
| 1248 | int cstate, limit; |
| 1249 | |
| 1250 | /* |
| 1251 | * If there are no _CST C-states, do not disable any C-states by |
| 1252 | * default. |
| 1253 | */ |
| 1254 | if (!acpi_state_table.count) |
| 1255 | return false; |
| 1256 | |
| 1257 | limit = min_t(int, CPUIDLE_STATE_MAX, acpi_state_table.count); |
| 1258 | /* |
| 1259 | * If limit > 0, intel_idle_cst_usable() has returned 'true', so all of |
| 1260 | * the interesting states are ACPI_CSTATE_FFH. |
| 1261 | */ |
| 1262 | for (cstate = 1; cstate < limit; cstate++) { |
| 1263 | if (acpi_state_table.states[cstate].address == mwait_hint) |
| 1264 | return false; |
| 1265 | } |
| 1266 | return true; |
| 1267 | } |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1268 | #else /* !CONFIG_ACPI_PROCESSOR_CSTATE */ |
Rafael J. Wysocki | 3a5be9b | 2020-02-03 11:57:08 +0100 | [diff] [blame] | 1269 | #define force_use_acpi (false) |
| 1270 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1271 | static inline bool intel_idle_acpi_cst_extract(void) { return false; } |
| 1272 | static inline void intel_idle_init_cstates_acpi(struct cpuidle_driver *drv) { } |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 1273 | static inline bool intel_idle_off_by_default(u32 mwait_hint) { return false; } |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1274 | #endif /* !CONFIG_ACPI_PROCESSOR_CSTATE */ |
| 1275 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1276 | /* |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1277 | * ivt_idle_state_table_update(void) |
| 1278 | * |
| 1279 | * Tune IVT multi-socket targets |
| 1280 | * Assumption: num_sockets == (max_package_num + 1) |
| 1281 | */ |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1282 | static void __init ivt_idle_state_table_update(void) |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1283 | { |
| 1284 | /* IVT uses a different table for 1-2, 3-4, and > 4 sockets */ |
| 1285 | int cpu, package_num, num_sockets = 1; |
| 1286 | |
| 1287 | for_each_online_cpu(cpu) { |
| 1288 | package_num = topology_physical_package_id(cpu); |
| 1289 | if (package_num + 1 > num_sockets) { |
| 1290 | num_sockets = package_num + 1; |
| 1291 | |
| 1292 | if (num_sockets > 4) { |
| 1293 | cpuidle_state_table = ivt_cstates_8s; |
| 1294 | return; |
| 1295 | } |
| 1296 | } |
| 1297 | } |
| 1298 | |
| 1299 | if (num_sockets > 2) |
| 1300 | cpuidle_state_table = ivt_cstates_4s; |
| 1301 | |
| 1302 | /* else, 1 and 2 socket systems use default ivt_cstates */ |
| 1303 | } |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1304 | |
Rafael J. Wysocki | 86e9466 | 2020-01-17 11:46:24 +0100 | [diff] [blame] | 1305 | /** |
| 1306 | * irtl_2_usec - IRTL to microseconds conversion. |
| 1307 | * @irtl: IRTL MSR value. |
| 1308 | * |
| 1309 | * Translate the IRTL (Interrupt Response Time Limit) MSR value to microseconds. |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1310 | */ |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1311 | static unsigned long long __init irtl_2_usec(unsigned long long irtl) |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1312 | { |
Rafael J. Wysocki | 86e9466 | 2020-01-17 11:46:24 +0100 | [diff] [blame] | 1313 | static const unsigned int irtl_ns_units[] __initconst = { |
| 1314 | 1, 32, 1024, 32768, 1048576, 33554432, 0, 0 |
| 1315 | }; |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1316 | unsigned long long ns; |
| 1317 | |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1318 | if (!irtl) |
| 1319 | return 0; |
| 1320 | |
Jan Beulich | bef4509 | 2016-06-27 00:35:48 -0600 | [diff] [blame] | 1321 | ns = irtl_ns_units[(irtl >> 10) & 0x7]; |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1322 | |
Rafael J. Wysocki | 86e9466 | 2020-01-17 11:46:24 +0100 | [diff] [blame] | 1323 | return div_u64((irtl & 0x3FF) * ns, NSEC_PER_USEC); |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1324 | } |
Rafael J. Wysocki | 86e9466 | 2020-01-17 11:46:24 +0100 | [diff] [blame] | 1325 | |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1326 | /* |
| 1327 | * bxt_idle_state_table_update(void) |
| 1328 | * |
| 1329 | * On BXT, we trust the IRTL to show the definitive maximum latency |
| 1330 | * We use the same value for target_residency. |
| 1331 | */ |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1332 | static void __init bxt_idle_state_table_update(void) |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1333 | { |
| 1334 | unsigned long long msr; |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1335 | unsigned int usec; |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1336 | |
| 1337 | rdmsrl(MSR_PKGC6_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1338 | usec = irtl_2_usec(msr); |
| 1339 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1340 | bxt_cstates[2].exit_latency = usec; |
| 1341 | bxt_cstates[2].target_residency = usec; |
| 1342 | } |
| 1343 | |
| 1344 | rdmsrl(MSR_PKGC7_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1345 | usec = irtl_2_usec(msr); |
| 1346 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1347 | bxt_cstates[3].exit_latency = usec; |
| 1348 | bxt_cstates[3].target_residency = usec; |
| 1349 | } |
| 1350 | |
| 1351 | rdmsrl(MSR_PKGC8_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1352 | usec = irtl_2_usec(msr); |
| 1353 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1354 | bxt_cstates[4].exit_latency = usec; |
| 1355 | bxt_cstates[4].target_residency = usec; |
| 1356 | } |
| 1357 | |
| 1358 | rdmsrl(MSR_PKGC9_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1359 | usec = irtl_2_usec(msr); |
| 1360 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1361 | bxt_cstates[5].exit_latency = usec; |
| 1362 | bxt_cstates[5].target_residency = usec; |
| 1363 | } |
| 1364 | |
| 1365 | rdmsrl(MSR_PKGC10_IRTL, msr); |
Jan Beulich | 3451ab3 | 2016-06-27 00:35:12 -0600 | [diff] [blame] | 1366 | usec = irtl_2_usec(msr); |
| 1367 | if (usec) { |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1368 | bxt_cstates[6].exit_latency = usec; |
| 1369 | bxt_cstates[6].target_residency = usec; |
| 1370 | } |
| 1371 | |
| 1372 | } |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1373 | /* |
| 1374 | * sklh_idle_state_table_update(void) |
| 1375 | * |
| 1376 | * On SKL-H (model 0x5e) disable C8 and C9 if: |
| 1377 | * C10 is enabled and SGX disabled |
| 1378 | */ |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1379 | static void __init sklh_idle_state_table_update(void) |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1380 | { |
| 1381 | unsigned long long msr; |
| 1382 | unsigned int eax, ebx, ecx, edx; |
| 1383 | |
| 1384 | |
| 1385 | /* if PC10 disabled via cmdline intel_idle.max_cstate=7 or shallower */ |
| 1386 | if (max_cstate <= 7) |
| 1387 | return; |
| 1388 | |
| 1389 | /* if PC10 not present in CPUID.MWAIT.EDX */ |
| 1390 | if ((mwait_substates & (0xF << 28)) == 0) |
| 1391 | return; |
| 1392 | |
Len Brown | 6cfb237 | 2017-01-07 23:23:25 -0500 | [diff] [blame] | 1393 | rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr); |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1394 | |
| 1395 | /* PC10 is not enabled in PKG C-state limit */ |
| 1396 | if ((msr & 0xF) != 8) |
| 1397 | return; |
| 1398 | |
| 1399 | ecx = 0; |
| 1400 | cpuid(7, &eax, &ebx, &ecx, &edx); |
| 1401 | |
| 1402 | /* if SGX is present */ |
| 1403 | if (ebx & (1 << 2)) { |
| 1404 | |
Sean Christopherson | 32ad73d | 2019-12-20 20:44:55 -0800 | [diff] [blame] | 1405 | rdmsrl(MSR_IA32_FEAT_CTL, msr); |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1406 | |
| 1407 | /* if SGX is enabled */ |
| 1408 | if (msr & (1 << 18)) |
| 1409 | return; |
| 1410 | } |
| 1411 | |
Rafael J. Wysocki | ba1e78a | 2019-11-21 19:41:51 +0100 | [diff] [blame] | 1412 | skl_cstates[5].flags |= CPUIDLE_FLAG_UNUSABLE; /* C8-SKL */ |
| 1413 | skl_cstates[6].flags |= CPUIDLE_FLAG_UNUSABLE; /* C9-SKL */ |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1414 | } |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1415 | |
Rafael J. Wysocki | 1aefbd7 | 2020-01-10 11:52:32 +0100 | [diff] [blame] | 1416 | static bool __init intel_idle_verify_cstate(unsigned int mwait_hint) |
| 1417 | { |
| 1418 | unsigned int mwait_cstate = MWAIT_HINT2CSTATE(mwait_hint) + 1; |
| 1419 | unsigned int num_substates = (mwait_substates >> mwait_cstate * 4) & |
| 1420 | MWAIT_SUBSTATE_MASK; |
| 1421 | |
| 1422 | /* Ignore the C-state if there are NO sub-states in CPUID for it. */ |
| 1423 | if (num_substates == 0) |
| 1424 | return false; |
| 1425 | |
| 1426 | if (mwait_cstate > 2 && !boot_cpu_has(X86_FEATURE_NONSTOP_TSC)) |
| 1427 | mark_tsc_unstable("TSC halts in idle states deeper than C2"); |
| 1428 | |
| 1429 | return true; |
| 1430 | } |
| 1431 | |
Rafael J. Wysocki | 095928a | 2020-01-10 11:51:22 +0100 | [diff] [blame] | 1432 | static void __init intel_idle_init_cstates_icpu(struct cpuidle_driver *drv) |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1433 | { |
Rafael J. Wysocki | 3d3a1ae | 2020-01-10 11:48:25 +0100 | [diff] [blame] | 1434 | int cstate; |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1435 | |
Rafael J. Wysocki | 3d3a1ae | 2020-01-10 11:48:25 +0100 | [diff] [blame] | 1436 | switch (boot_cpu_data.x86_model) { |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 1437 | case INTEL_FAM6_IVYBRIDGE_X: |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1438 | ivt_idle_state_table_update(); |
| 1439 | break; |
Dave Hansen | db73c5a | 2016-06-02 17:19:32 -0700 | [diff] [blame] | 1440 | case INTEL_FAM6_ATOM_GOLDMONT: |
Peter Zijlstra | f2c4db1 | 2018-08-07 10:17:27 -0700 | [diff] [blame] | 1441 | case INTEL_FAM6_ATOM_GOLDMONT_PLUS: |
Len Brown | 5dcef69 | 2016-04-06 17:00:47 -0400 | [diff] [blame] | 1442 | bxt_idle_state_table_update(); |
| 1443 | break; |
Peter Zijlstra | c66f78a | 2019-08-27 21:48:21 +0200 | [diff] [blame] | 1444 | case INTEL_FAM6_SKYLAKE: |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1445 | sklh_idle_state_table_update(); |
| 1446 | break; |
Len Brown | 0138d8f | 2014-04-04 01:21:07 -0400 | [diff] [blame] | 1447 | } |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1448 | |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 1449 | for (cstate = 0; cstate < CPUIDLE_STATE_MAX; ++cstate) { |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame] | 1450 | unsigned int mwait_hint; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1451 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1452 | if (intel_idle_max_cstate_reached(cstate)) |
| 1453 | break; |
| 1454 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame] | 1455 | if (!cpuidle_state_table[cstate].enter && |
| 1456 | !cpuidle_state_table[cstate].enter_s2idle) |
Len Brown | e022e7e | 2013-02-01 23:37:30 -0500 | [diff] [blame] | 1457 | break; |
| 1458 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame] | 1459 | /* If marked as unusable, skip this state. */ |
Rafael J. Wysocki | ba1e78a | 2019-11-21 19:41:51 +0100 | [diff] [blame] | 1460 | if (cpuidle_state_table[cstate].flags & CPUIDLE_FLAG_UNUSABLE) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1461 | pr_debug("state %s is disabled\n", |
| 1462 | cpuidle_state_table[cstate].name); |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1463 | continue; |
| 1464 | } |
| 1465 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame] | 1466 | mwait_hint = flg2MWAIT(cpuidle_state_table[cstate].flags); |
| 1467 | if (!intel_idle_verify_cstate(mwait_hint)) |
| 1468 | continue; |
Len Brown | d70e28f | 2016-03-13 00:33:48 -0500 | [diff] [blame] | 1469 | |
Rafael J. Wysocki | 9f3d6da | 2019-12-13 09:55:52 +0100 | [diff] [blame] | 1470 | /* Structure copy. */ |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 1471 | drv->states[drv->state_count] = cpuidle_state_table[cstate]; |
| 1472 | |
Rafael J. Wysocki | 4dcb78e | 2020-02-03 11:57:18 +0100 | [diff] [blame] | 1473 | if ((disabled_states_mask & BIT(drv->state_count)) || |
| 1474 | ((icpu->use_acpi || force_use_acpi) && |
| 1475 | intel_idle_off_by_default(mwait_hint) && |
| 1476 | !(cpuidle_state_table[cstate].flags & CPUIDLE_FLAG_ALWAYS_ENABLE))) |
Rafael J. Wysocki | bff8e60 | 2019-12-13 09:56:21 +0100 | [diff] [blame] | 1477 | drv->states[drv->state_count].flags |= CPUIDLE_FLAG_OFF; |
| 1478 | |
| 1479 | drv->state_count++; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1480 | } |
| 1481 | |
Len Brown | 8c058d53 | 2014-07-31 15:21:24 -0400 | [diff] [blame] | 1482 | if (icpu->byt_auto_demotion_disable_flag) { |
| 1483 | wrmsrl(MSR_CC6_DEMOTION_POLICY_CONFIG, 0); |
| 1484 | wrmsrl(MSR_MC6_DEMOTION_POLICY_CONFIG, 0); |
| 1485 | } |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1486 | } |
| 1487 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1488 | /* |
| 1489 | * intel_idle_cpuidle_driver_init() |
| 1490 | * allocate, initialize cpuidle_states |
| 1491 | */ |
Rafael J. Wysocki | 3d3a1ae | 2020-01-10 11:48:25 +0100 | [diff] [blame] | 1492 | static void __init intel_idle_cpuidle_driver_init(struct cpuidle_driver *drv) |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1493 | { |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1494 | cpuidle_poll_state_init(drv); |
Rafael J. Wysocki | 4dcb78e | 2020-02-03 11:57:18 +0100 | [diff] [blame] | 1495 | |
| 1496 | if (disabled_states_mask & BIT(0)) |
| 1497 | drv->states[0].flags |= CPUIDLE_FLAG_OFF; |
| 1498 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1499 | drv->state_count = 1; |
| 1500 | |
| 1501 | if (icpu) |
| 1502 | intel_idle_init_cstates_icpu(drv); |
| 1503 | else |
| 1504 | intel_idle_init_cstates_acpi(drv); |
| 1505 | } |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1506 | |
Rafael J. Wysocki | 1aefbd7 | 2020-01-10 11:52:32 +0100 | [diff] [blame] | 1507 | static void auto_demotion_disable(void) |
| 1508 | { |
| 1509 | unsigned long long msr_bits; |
| 1510 | |
| 1511 | rdmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); |
| 1512 | msr_bits &= ~(icpu->auto_demotion_disable_flags); |
| 1513 | wrmsrl(MSR_PKG_CST_CONFIG_CONTROL, msr_bits); |
| 1514 | } |
| 1515 | |
| 1516 | static void c1e_promotion_disable(void) |
| 1517 | { |
| 1518 | unsigned long long msr_bits; |
| 1519 | |
| 1520 | rdmsrl(MSR_IA32_POWER_CTL, msr_bits); |
| 1521 | msr_bits &= ~0x2; |
| 1522 | wrmsrl(MSR_IA32_POWER_CTL, msr_bits); |
| 1523 | } |
| 1524 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 1525 | /* |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1526 | * intel_idle_cpu_init() |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1527 | * allocate, initialize, register cpuidle_devices |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1528 | * @cpu: cpu/core to initialize |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1529 | */ |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1530 | static int intel_idle_cpu_init(unsigned int cpu) |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1531 | { |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1532 | struct cpuidle_device *dev; |
| 1533 | |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1534 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1535 | dev->cpu = cpu; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1536 | |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1537 | if (cpuidle_register_device(dev)) { |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1538 | pr_debug("cpuidle_register_device %d failed!\n", cpu); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1539 | return -EIO; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1540 | } |
| 1541 | |
Rafael J. Wysocki | 1873495 | 2019-12-13 09:56:01 +0100 | [diff] [blame] | 1542 | if (!icpu) |
| 1543 | return 0; |
| 1544 | |
Andi Kleen | b66b8b9 | 2012-01-26 00:09:07 +0100 | [diff] [blame] | 1545 | if (icpu->auto_demotion_disable_flags) |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1546 | auto_demotion_disable(); |
Thomas Renninger | 65b7f83 | 2012-01-17 22:40:08 +0100 | [diff] [blame] | 1547 | |
Bartlomiej Zolnierkiewicz | dbf87ab | 2013-12-20 19:47:28 +0100 | [diff] [blame] | 1548 | if (icpu->disable_promotion_to_c1e) |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1549 | c1e_promotion_disable(); |
| 1550 | |
| 1551 | return 0; |
| 1552 | } |
| 1553 | |
| 1554 | static int intel_idle_cpu_online(unsigned int cpu) |
| 1555 | { |
| 1556 | struct cpuidle_device *dev; |
| 1557 | |
| 1558 | if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE) |
Rafael J. Wysocki | cbd2c4c | 2020-01-10 11:43:23 +0100 | [diff] [blame] | 1559 | tick_broadcast_enable(); |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1560 | |
| 1561 | /* |
| 1562 | * Some systems can hotplug a cpu at runtime after |
| 1563 | * the kernel has booted, we have to initialize the |
| 1564 | * driver in this case |
| 1565 | */ |
| 1566 | dev = per_cpu_ptr(intel_idle_cpuidle_devices, cpu); |
| 1567 | if (!dev->registered) |
| 1568 | return intel_idle_cpu_init(cpu); |
Bartlomiej Zolnierkiewicz | dbf87ab | 2013-12-20 19:47:28 +0100 | [diff] [blame] | 1569 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1570 | return 0; |
| 1571 | } |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1572 | |
Rafael J. Wysocki | 0755a9b | 2020-01-10 11:49:58 +0100 | [diff] [blame] | 1573 | /** |
| 1574 | * intel_idle_cpuidle_devices_uninit - Unregister all cpuidle devices. |
| 1575 | */ |
| 1576 | static void __init intel_idle_cpuidle_devices_uninit(void) |
| 1577 | { |
| 1578 | int i; |
| 1579 | |
| 1580 | for_each_online_cpu(i) |
| 1581 | cpuidle_unregister_device(per_cpu_ptr(intel_idle_cpuidle_devices, i)); |
| 1582 | } |
| 1583 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1584 | static int __init intel_idle_init(void) |
| 1585 | { |
Rafael J. Wysocki | a6c86e3 | 2020-01-10 11:44:58 +0100 | [diff] [blame] | 1586 | const struct x86_cpu_id *id; |
| 1587 | unsigned int eax, ebx, ecx; |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1588 | int retval; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1589 | |
Thomas Renninger | d189604 | 2010-11-03 17:06:14 +0100 | [diff] [blame] | 1590 | /* Do not load intel_idle at all for now if idle= is passed */ |
| 1591 | if (boot_option_idle_override != IDLE_NO_OVERRIDE) |
| 1592 | return -ENODEV; |
| 1593 | |
Rafael J. Wysocki | a6c86e3 | 2020-01-10 11:44:58 +0100 | [diff] [blame] | 1594 | if (max_cstate == 0) { |
| 1595 | pr_debug("disabled\n"); |
| 1596 | return -EPERM; |
| 1597 | } |
| 1598 | |
| 1599 | id = x86_match_cpu(intel_idle_ids); |
| 1600 | if (id) { |
| 1601 | if (!boot_cpu_has(X86_FEATURE_MWAIT)) { |
| 1602 | pr_debug("Please enable MWAIT in BIOS SETUP\n"); |
| 1603 | return -ENODEV; |
| 1604 | } |
| 1605 | } else { |
| 1606 | id = x86_match_cpu(intel_mwait_ids); |
| 1607 | if (!id) |
| 1608 | return -ENODEV; |
| 1609 | } |
| 1610 | |
| 1611 | if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) |
| 1612 | return -ENODEV; |
| 1613 | |
| 1614 | cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates); |
| 1615 | |
| 1616 | if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || |
| 1617 | !(ecx & CPUID5_ECX_INTERRUPT_BREAK) || |
| 1618 | !mwait_substates) |
| 1619 | return -ENODEV; |
| 1620 | |
| 1621 | pr_debug("MWAIT substates: 0x%x\n", mwait_substates); |
| 1622 | |
| 1623 | icpu = (const struct idle_cpu *)id->driver_data; |
| 1624 | if (icpu) { |
| 1625 | cpuidle_state_table = icpu->state_table; |
Rafael J. Wysocki | 3a5be9b | 2020-02-03 11:57:08 +0100 | [diff] [blame] | 1626 | if (icpu->use_acpi || force_use_acpi) |
Rafael J. Wysocki | a6c86e3 | 2020-01-10 11:44:58 +0100 | [diff] [blame] | 1627 | intel_idle_acpi_cst_extract(); |
| 1628 | } else if (!intel_idle_acpi_cst_extract()) { |
| 1629 | return -ENODEV; |
| 1630 | } |
| 1631 | |
| 1632 | pr_debug("v" INTEL_IDLE_VERSION " model 0x%X\n", |
| 1633 | boot_cpu_data.x86_model); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1634 | |
Richard Cochran | e9df69c | 2016-04-06 17:00:52 -0400 | [diff] [blame] | 1635 | intel_idle_cpuidle_devices = alloc_percpu(struct cpuidle_device); |
Rafael J. Wysocki | 533da74 | 2020-01-10 11:45:49 +0100 | [diff] [blame] | 1636 | if (!intel_idle_cpuidle_devices) |
Richard Cochran | e9df69c | 2016-04-06 17:00:52 -0400 | [diff] [blame] | 1637 | return -ENOMEM; |
| 1638 | |
Rafael J. Wysocki | 3d3a1ae | 2020-01-10 11:48:25 +0100 | [diff] [blame] | 1639 | intel_idle_cpuidle_driver_init(&intel_idle_driver); |
| 1640 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1641 | retval = cpuidle_register_driver(&intel_idle_driver); |
| 1642 | if (retval) { |
Konrad Rzeszutek Wilk | 3735d52 | 2012-08-16 22:06:55 +0200 | [diff] [blame] | 1643 | struct cpuidle_driver *drv = cpuidle_get_driver(); |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1644 | printk(KERN_DEBUG pr_fmt("intel_idle yielding to %s\n"), |
| 1645 | drv ? drv->name : "none"); |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1646 | goto init_driver_fail; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1647 | } |
| 1648 | |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1649 | if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */ |
| 1650 | lapic_timer_reliable_states = LAPIC_TIMER_ALWAYS_RELIABLE; |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1651 | |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1652 | retval = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "idle/intel:online", |
| 1653 | intel_idle_cpu_online, NULL); |
| 1654 | if (retval < 0) |
| 1655 | goto hp_setup_fail; |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1656 | |
Joe Perches | 654d08a | 2017-06-09 12:29:20 -0700 | [diff] [blame] | 1657 | pr_debug("lapic_timer_reliable_states 0x%x\n", |
| 1658 | lapic_timer_reliable_states); |
Richard Cochran | 2259a81 | 2016-04-06 17:00:54 -0400 | [diff] [blame] | 1659 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1660 | return 0; |
Sebastian Andrzej Siewior | fb1013a | 2016-11-29 10:51:43 +0100 | [diff] [blame] | 1661 | |
| 1662 | hp_setup_fail: |
| 1663 | intel_idle_cpuidle_devices_uninit(); |
| 1664 | cpuidle_unregister_driver(&intel_idle_driver); |
| 1665 | init_driver_fail: |
| 1666 | free_percpu(intel_idle_cpuidle_devices); |
| 1667 | return retval; |
| 1668 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1669 | } |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 1670 | device_initcall(intel_idle_init); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1671 | |
Paul Gortmaker | 02c4fae | 2016-06-17 01:28:33 -0400 | [diff] [blame] | 1672 | /* |
| 1673 | * We are not really modular, but we used to support that. Meaning we also |
| 1674 | * support "intel_idle.max_cstate=..." at boot and also a read-only export of |
| 1675 | * it at /sys/module/intel_idle/parameters/max_cstate -- so using module_param |
| 1676 | * is the easiest way (currently) to continue doing that. |
| 1677 | */ |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 1678 | module_param(max_cstate, int, 0444); |
Rafael J. Wysocki | 4dcb78e | 2020-02-03 11:57:18 +0100 | [diff] [blame] | 1679 | /* |
| 1680 | * The positions of the bits that are set in this number are the indices of the |
| 1681 | * idle states to be disabled by default (as reflected by the names of the |
| 1682 | * corresponding idle state directories in sysfs, "state0", "state1" ... |
| 1683 | * "state<i>" ..., where <i> is the index of the given state). |
| 1684 | */ |
| 1685 | module_param_named(states_off, disabled_states_mask, uint, 0444); |
| 1686 | MODULE_PARM_DESC(states_off, "Mask of disabled idle states"); |