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

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


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

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

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

Lunar Lake RAPL support is the same as previous Sky Lake.
Add Lunar 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-2-rui.zhang@xxxxxxxxx
---
arch/x86/events/rapl.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/x86/events/rapl.c b/arch/x86/events/rapl.c
index 00bb6ea..ca5f687 100644
--- a/arch/x86/events/rapl.c
+++ b/arch/x86/events/rapl.c
@@ -808,6 +808,7 @@ static const struct x86_cpu_id rapl_model_match[] __initconst = {
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),
+ X86_MATCH_INTEL_FAM6_MODEL(LUNARLAKE_M, &model_skl),
{},
};
MODULE_DEVICE_TABLE(x86cpu, rapl_model_match);