diff options
| author | Len Brown <len.brown@intel.com> | 2025-08-14 23:29:57 -0400 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2025-10-24 10:41:21 -0300 |
| commit | 4e35847d7b08e62e73b1636207f8c9074b4a4893 (patch) | |
| tree | b613b36043f5e784f1e513b3383e5c303b6566e1 | |
| parent | 92664f2e6ab2228a3330734fc72dabeaf8a49ee1 (diff) | |
tools/power turbostat: Add Wildcat Lake and Nova Lake support
Treat Wildcat Lake and Nova Lake (and Panther Lake)
the same as Lunar Lake, for now.
Signed-off-by: Len Brown <len.brown@intel.com>
| -rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 1b5ca2f4e92f..7c24c2f9a075 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -1210,6 +1210,9 @@ static const struct platform_data turbostat_pdata[] = { { INTEL_ARROWLAKE, &adl_features }, { INTEL_LUNARLAKE_M, &lnl_features }, { INTEL_PANTHERLAKE_L, &lnl_features }, + { INTEL_NOVALAKE, &lnl_features }, + { INTEL_NOVALAKE_L, &lnl_features }, + { INTEL_WILDCATLAKE_L, &lnl_features }, { INTEL_ATOM_SILVERMONT, &slv_features }, { INTEL_ATOM_SILVERMONT_D, &slvd_features }, { INTEL_ATOM_AIRMONT, &amt_features }, @@ -10126,7 +10129,7 @@ int get_and_dump_counters(void) void print_version() { - fprintf(outf, "turbostat version 2025.09.09 - Len Brown <lenb@kernel.org>\n"); + fprintf(outf, "turbostat version 2025.10.18 - Len Brown <lenb@kernel.org>\n"); } #define COMMAND_LINE_SIZE 2048 |
