[tip: perf/core] perf/x86/rapl: Add support for Intel Arrow Lake

From: tip-bot2 for Zhang Rui
Date: Wed Apr 10 2024 - 08:58:09 EST


The following commit has been merged into the perf/core branch of tip:

Commit-ID: fb70fe74beaa809e13e7f469b116d54ef7cd19e9
Gitweb: https://git.kernel.org/tip/fb70fe74beaa809e13e7f469b116d54ef7cd19e9
Author: Zhang Rui <rui.zhang@xxxxxxxxx>
AuthorDate: Wed, 10 Apr 2024 20:45:53 +08:00
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitterDate: Wed, 10 Apr 2024 14:48:18 +02:00

perf/x86/rapl: Add support for Intel Arrow Lake

Arrow Lake RAPL support is the same as previous Sky Lake.
Add Arrow Lake model for RAPL.

Signed-off-by: Zhang Rui <rui.zhang@xxxxxxxxx>
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
Link: https://lore.kernel.org/r/20240410124554.448987-1-rui.zhang@xxxxxxxxx
---
arch/x86/events/rapl.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/x86/events/rapl.c b/arch/x86/events/rapl.c
index 8ef08b5..00bb6ea 100644
--- a/arch/x86/events/rapl.c
+++ b/arch/x86/events/rapl.c
@@ -806,6 +806,8 @@ static const struct x86_cpu_id rapl_model_match[] __initconst = {
X86_MATCH_INTEL_FAM6_MODEL(RAPTORLAKE_S, &model_skl),
X86_MATCH_INTEL_FAM6_MODEL(METEORLAKE, &model_skl),
X86_MATCH_INTEL_FAM6_MODEL(METEORLAKE_L, &model_skl),
+ X86_MATCH_INTEL_FAM6_MODEL(ARROWLAKE_H, &model_skl),
+ X86_MATCH_INTEL_FAM6_MODEL(ARROWLAKE, &model_skl),
{},
};
MODULE_DEVICE_TABLE(x86cpu, rapl_model_match);