From a40167734ecb3aba4e714e49baa4e6693aec2631 Mon Sep 17 00:00:00 2001 From: Anaƫlle CAZUC Date: Thu, 4 Dec 2025 13:32:39 -0400 Subject: pmc: add alderlake model The commit 601925180df4 added the models 6-B7, 6-BA, 6-BF to libpmc, but they must also be added to the hwpmc module to allow pmc to work on those CPUs. Reviewed by: mhorne MFC after: 1 week Fixes: 601925180df4 ("libpmc: add more alderlake models") Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D49255 (cherry picked from commit 057dae35ffc6b17dacc84fa21921e93a17ce12b0) --- sys/dev/hwpmc/hwpmc_intel.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/hwpmc/hwpmc_intel.c b/sys/dev/hwpmc/hwpmc_intel.c index b195fcb3f362..68693e00c426 100644 --- a/sys/dev/hwpmc/hwpmc_intel.c +++ b/sys/dev/hwpmc/hwpmc_intel.c @@ -211,6 +211,9 @@ pmc_intel_initialize(void) break; case 0x97: case 0x9A: + case 0xB7: + case 0xBA: + case 0xBF: cputype = PMC_CPU_INTEL_ALDERLAKE; nclasses = 3; break; -- cgit v1.3