From: Zhang Rui Date: Thu, 14 Nov 2024 07:59:40 +0000 (+0800) Subject: tools/power turbostat: Remove PC3 support on Lunarlake X-Git-Tag: nvme-6.13-2024-12-31~27^2~10 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=26c57a152bb4ab21757cb0cf439c4e8e0b5f61a9;p=nvme.git 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 Signed-off-by: Len Brown --- 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,