diff options
author | Zhang Rui <rui.zhang@intel.com> | 2024-11-14 15:59:40 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2024-11-30 16:42:06 -0500 |
commit | 26c57a152bb4ab21757cb0cf439c4e8e0b5f61a9 (patch) | |
tree | 0d4d369fbdc04a2eaa07e09566413a32a78b7c3d | |
parent | 3ae5f34384176a4a8742dd11ab0e1e062dcc6ce2 (diff) |
tools/power turbostat: Remove PC3 support on Lunarlake
Lunarlake supports CC1/CC6/CC7/PC2/PC6/PC10.
Remove PC3 support on Lunarlake.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index dd2a90b1d12d..b0ed8e0f65c2 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -758,7 +758,7 @@ static const struct platform_features lnl_features = { .has_nhm_msrs = 1, .has_config_tdp = 1, .bclk_freq = BCLK_100MHZ, - .supported_cstates = CC1 | CC6 | CC7 | PC2 | PC3 | PC6 | PC10, + .supported_cstates = CC1 | CC6 | CC7 | PC2 | PC6 | PC10, .cst_limit = CST_LIMIT_HSW, .has_irtl_msrs = 1, .has_msr_core_c1_res = 1, |