* [LTP] [PATCH v14] high_freq_hwp_cap_cppc.c: new test
@ 2026-06-09 12:18 Piotr Kubaj
2026-06-09 12:42 ` [LTP] " linuxtestproject.agent
2026-06-09 14:35 ` [LTP] [PATCH v14] " Cyril Hrubis
0 siblings, 2 replies; 11+ messages in thread
From: Piotr Kubaj @ 2026-06-09 12:18 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
expected to reflect the same highest-performance value that firmware
programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
between the two interfaces indicates a kernel regression in how CPPC
values are exposed to userspace, and would break tools (e.g. cpupower,
intel_pstate tuning scripts) that rely on the sysfs interface to make
frequency-scaling decisions.
The test is valid only for Intel platforms.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
The new version checks the CPU vendor and only runs on Intel.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 133 ++++++++++++++++++
3 files changed, 135 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..107b8ceeb
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,133 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ *
+ * On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
+ * expected to reflect the same highest-performance value that firmware
+ * programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
+ * between the two interfaces indicates a kernel regression in how CPPC
+ * values are exposed to userspace, and would break tools (e.g. cpupower,
+ * intel_pstate tuning scripts) that rely on the sysfs interface to make
+ * frequency-scaling decisions.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+#include "lapi/cpuid.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+#define CPUID_VENDOR_EBX 0x756e6547
+#define CPUID_VENDOR_EDX 0x49656e69
+#define CPUID_VENDOR_ECX 0x6c65746e
+
+#define CPUID_LEAF_THERMAL 0x6
+#define CPUID_HWP_BIT (1 << 7)
+
+static int nproc;
+static int fd = -1;
+static int *mismatch;
+
+static void setup(void)
+{
+ unsigned int eax, ebx, ecx, edx;
+
+ __cpuid_count(0, 0, eax, ebx, ecx, edx);
+ if (ebx != CPUID_VENDOR_EBX || edx != CPUID_VENDOR_EDX ||
+ ecx != CPUID_VENDOR_ECX)
+ tst_brk(TCONF, "not a GenuineIntel CPU");
+
+ __cpuid_count(CPUID_LEAF_THERMAL, 0, eax, ebx, ecx, edx);
+ if (!(eax & CPUID_HWP_BIT))
+ tst_brk(TCONF, "HWP not supported (MSR 0x771 unavailable)");
+
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+ mismatch = SAFE_MALLOC(nproc * sizeof(int));
+}
+
+static void cleanup(void)
+{
+ if (fd != -1)
+ SAFE_CLOSE(fd);
+
+ free(mismatch);
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ memset(mismatch, 0, nproc * sizeof(*mismatch));
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ mismatch[i] = 1;
+ status = false;
+ }
+ }
+
+ for (int i = 0; i < nproc; i++)
+ tst_res(TINFO, "cpu%d: %s", i, mismatch[i] ? "MISMATCH" : "OK");
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-06-09 12:18 [LTP] [PATCH v14] high_freq_hwp_cap_cppc.c: new test Piotr Kubaj
@ 2026-06-09 12:42 ` linuxtestproject.agent
2026-06-09 13:55 ` Cyril Hrubis
2026-06-09 14:35 ` [LTP] [PATCH v14] " Cyril Hrubis
1 sibling, 1 reply; 11+ messages in thread
From: linuxtestproject.agent @ 2026-06-09 12:42 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp
Hi Piotr,
On Tue, Jun 9 2026, Piotr Kubaj wrote:
> high_freq_hwp_cap_cppc.c: new test
> +#include "tst_test.h"
> +#include "tst_safe_prw.h"
> +#include "lapi/cpuid.h"
lapi/cpuid.h contains #error on non-x86 architectures and
__cpuid_count uses x86 inline assembly, so this file will not
compile on ARM, s390x, etc.
Ground rule 6 requires architecture-specific tests to still compile
everywhere. The existing ptrace07.c shows the correct pattern:
wrap the entire file body in
#if defined(__i386__) || defined(__x86_64__) with a
TST_TEST_TCONF("test requires x86") in the #else branch.
> + for (int i = 0; i < nproc; i++)
> + tst_res(TINFO, "cpu%d: %s", i, mismatch[i] ? "MISMATCH" : "OK");
Offline CPUs are skipped during the comparison loop but the
summary still prints "OK" for them (mismatch[i] is zero from
memset). This is misleading -- "OK" implies the values matched
when no check was performed. Consider skipping offline CPUs here
too, or printing "OFFLINE" instead.
> +/*\
> + * Verify for all online logical CPUs that their highest performance value are
> + * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
The test sets .needs_root = 1 but the doc comment does not explain
why root is required. Per the LTP guidelines, the reason should be
stated (reading /dev/cpu/N/msr needs CAP_SYS_RAWIO / root).
Verdict: Needs revision
---
Note:
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-06-09 12:42 ` [LTP] " linuxtestproject.agent
@ 2026-06-09 13:55 ` Cyril Hrubis
0 siblings, 0 replies; 11+ messages in thread
From: Cyril Hrubis @ 2026-06-09 13:55 UTC (permalink / raw)
To: linuxtestproject.agent; +Cc: ltp
Hi!
> On Tue, Jun 9 2026, Piotr Kubaj wrote:
> > high_freq_hwp_cap_cppc.c: new test
>
> > +#include "tst_test.h"
> > +#include "tst_safe_prw.h"
> > +#include "lapi/cpuid.h"
>
> lapi/cpuid.h contains #error on non-x86 architectures and
> __cpuid_count uses x86 inline assembly, so this file will not
> compile on ARM, s390x, etc.
I think that more generic solution is to add the functionality into the
test library. Let me draft a patch.
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [LTP] [PATCH v14] high_freq_hwp_cap_cppc.c: new test
2026-06-09 12:18 [LTP] [PATCH v14] high_freq_hwp_cap_cppc.c: new test Piotr Kubaj
2026-06-09 12:42 ` [LTP] " linuxtestproject.agent
@ 2026-06-09 14:35 ` Cyril Hrubis
2026-06-09 14:40 ` Andrea Cervesato via ltp
1 sibling, 1 reply; 11+ messages in thread
From: Cyril Hrubis @ 2026-06-09 14:35 UTC (permalink / raw)
To: Piotr Kubaj
Cc: daniel.niestepski, tomasz.ossowski, helena.anna.dubel,
rafael.j.wysocki, ltp
Hi!
> +static void setup(void)
> +{
> + unsigned int eax, ebx, ecx, edx;
> +
> + __cpuid_count(0, 0, eax, ebx, ecx, edx);
> + if (ebx != CPUID_VENDOR_EBX || edx != CPUID_VENDOR_EDX ||
> + ecx != CPUID_VENDOR_ECX)
> + tst_brk(TCONF, "not a GenuineIntel CPU");
I've send a patch for the tst_test structure that adds .needs_cpu_vendor
field. If that gets merged you can just set it to "GenuineIntel" and the
test should be automatically skipped on anything but Intel CPUs.
> + __cpuid_count(CPUID_LEAF_THERMAL, 0, eax, ebx, ecx, edx);
> + if (!(eax & CPUID_HWP_BIT))
> + tst_brk(TCONF, "HWP not supported (MSR 0x771 unavailable)");
This specific check still needs to be ifdefed around with x86 and x86_64
macros.
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* [LTP] [PATCH v13] high_freq_hwp_cap_cppc.c: new test
@ 2026-05-14 9:35 Piotr Kubaj
2026-05-14 11:58 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-05-14 9:35 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
expected to reflect the same highest-performance value that firmware
programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
between the two interfaces indicates a kernel regression in how CPPC
values are exposed to userspace, and would break tools (e.g. cpupower,
intel_pstate tuning scripts) that rely on the sysfs interface to make
frequency-scaling decisions.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Fix compilation error.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 114 ++++++++++++++++++
3 files changed, 116 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..a4f4d4197
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,114 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ *
+ * On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
+ * expected to reflect the same highest-performance value that firmware
+ * programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
+ * between the two interfaces indicates a kernel regression in how CPPC
+ * values are exposed to userspace, and would break tools (e.g. cpupower,
+ * intel_pstate tuning scripts) that rely on the sysfs interface to make
+ * frequency-scaling decisions.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+static int fd = -1;
+static int *mismatch;
+
+static void setup(void)
+{
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+ mismatch = SAFE_MALLOC(nproc * sizeof(int));
+}
+
+static void cleanup(void)
+{
+ if (fd != -1)
+ SAFE_CLOSE(fd);
+
+ free(mismatch);
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ memset(mismatch, 0, nproc * sizeof(*mismatch));
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ mismatch[i] = 1;
+ status = false;
+ }
+ }
+
+ for (int i = 0; i < nproc; i++)
+ tst_res(TINFO, "cpu%d: %s", i, mismatch[i] ? "MISMATCH" : "OK");
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-05-14 9:35 [LTP] [PATCH v13] " Piotr Kubaj
@ 2026-05-14 11:58 ` linuxtestproject.agent
0 siblings, 0 replies; 11+ messages in thread
From: linuxtestproject.agent @ 2026-05-14 11:58 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp, LTP AI Reviewer
Hi Piotr,
On Thu, 14 May 2026, Piotr Kubaj wrote:
> high_freq_hwp_cap_cppc.c: new test
Reviewed-by: LTP AI Reviewer <ltp-ai@noreply.github.com>
---
Note:
Our agent completed the review of the patch.
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* [LTP] [PATCH v12] high_freq_hwp_cap_cppc.c: new test
@ 2026-05-07 7:22 Piotr Kubaj
2026-05-07 9:38 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-05-07 7:22 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
expected to reflect the same highest-performance value that firmware
programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
between the two interfaces indicates a kernel regression in how CPPC
values are exposed to userspace, and would break tools (e.g. cpupower,
intel_pstate tuning scripts) that rely on the sysfs interface to make
frequency-scaling decisions.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Following review, add memset() at the beginning of run().
This also allows to switch to malloc() for mismatch array.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 114 ++++++++++++++++++
3 files changed, 116 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..bebce943c
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,114 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ *
+ * On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
+ * expected to reflect the same highest-performance value that firmware
+ * programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
+ * between the two interfaces indicates a kernel regression in how CPPC
+ * values are exposed to userspace, and would break tools (e.g. cpupower,
+ * intel_pstate tuning scripts) that rely on the sysfs interface to make
+ * frequency-scaling decisions.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+static int fd = -1;
+static int *mismatch;
+
+static void setup(void)
+{
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+ mismatch = SAFE_MALLOC(nproc, sizeof(int));
+}
+
+static void cleanup(void)
+{
+ if (fd != -1)
+ SAFE_CLOSE(fd);
+
+ free(mismatch);
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ memset(mismatch, 0, nproc * sizeof(*mismatch));
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ mismatch[i] = 1;
+ status = false;
+ }
+ }
+
+ for (int i = 0; i < nproc; i++)
+ tst_res(TINFO, "cpu%d: %s", i, mismatch[i] ? "MISMATCH" : "OK");
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* [LTP] [PATCH v11] high_freq_hwp_cap_cppc.c: new test
@ 2026-05-06 12:56 Piotr Kubaj
2026-05-06 14:15 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-05-06 12:56 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
expected to reflect the same highest-performance value that firmware
programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
between the two interfaces indicates a kernel regression in how CPPC
values are exposed to userspace, and would break tools (e.g. cpupower,
intel_pstate tuning scripts) that rely on the sysfs interface to make
frequency-scaling decisions.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Address review from Andrea:
1. removal of fd = -1.
2. printing pass / fail only once at the end of the test.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 112 ++++++++++++++++++
3 files changed, 114 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..d06d9302f
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,112 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ *
+ * On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
+ * expected to reflect the same highest-performance value that firmware
+ * programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
+ * between the two interfaces indicates a kernel regression in how CPPC
+ * values are exposed to userspace, and would break tools (e.g. cpupower,
+ * intel_pstate tuning scripts) that rely on the sysfs interface to make
+ * frequency-scaling decisions.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+static int fd = -1;
+static int *mismatch;
+
+static void setup(void)
+{
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+ mismatch = SAFE_CALLOC(nproc, sizeof(int));
+}
+
+static void cleanup(void)
+{
+ if (fd != -1)
+ SAFE_CLOSE(fd);
+
+ free(mismatch);
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ mismatch[i] = 1;
+ status = false;
+ }
+ }
+
+ for (int i = 0; i < nproc; i++)
+ tst_res(TINFO, "cpu%d: %s", i, mismatch[i] ? "MISMATCH" : "OK");
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-05-06 12:56 [LTP] [PATCH v11] " Piotr Kubaj
@ 2026-05-06 14:15 ` linuxtestproject.agent
0 siblings, 0 replies; 11+ messages in thread
From: linuxtestproject.agent @ 2026-05-06 14:15 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp
Hi Piotr,
On Wed, 6 May 2026 14:56:51 +0200, Piotr Kubaj wrote:
> [PATCH] high_freq_hwp_cap_cppc.c: new test
> +static int *mismatch;
[...]
> + if (msr_highest_perf != sysfs_highest_perf) {
> + tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
> + i, sysfs_highest_perf, msr_highest_perf);
> + mismatch[i] = 1;
`mismatch[]` is zeroed by SAFE_CALLOC in setup() but never cleared at the
start of run(). With -i N, stale flags from a prior iteration persist and
the per-CPU summary falsely reports "MISMATCH" for CPUs that are now
matching. Add:
memset(mismatch, 0, nproc * sizeof(*mismatch));
at the top of run().
---
Note:
Our agent completed the review of the patch.
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* [LTP] [PATCH v10] high_freq_hwp_cap_cppc.c: new test
@ 2026-05-05 9:54 Piotr Kubaj
2026-05-05 17:54 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-05-05 9:54 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
expected to reflect the same highest-performance value that firmware
programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
between the two interfaces indicates a kernel regression in how CPPC
values are exposed to userspace, and would break tools (e.g. cpupower,
intel_pstate tuning scripts) that rely on the sysfs interface to make
frequency-scaling decisions.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Addressed both points raised in a review:
1. motivation for the test.
2. fd leak.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 105 ++++++++++++++++++
3 files changed, 107 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..d3c697875
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,105 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ *
+ * On HWP-capable x86 platforms the acpi_cppc/highest_perf sysfs attribute is
+ * expected to reflect the same highest-performance value that firmware
+ * programs into the HWP Capabilities MSR (0x771, bits 7:0). A mismatch
+ * between the two interfaces indicates a kernel regression in how CPPC
+ * values are exposed to userspace, and would break tools (e.g. cpupower,
+ * intel_pstate tuning scripts) that rely on the sysfs interface to make
+ * frequency-scaling decisions.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+static int fd = -1;
+
+static void setup(void)
+{
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+}
+
+static void cleanup(void)
+{
+ if (fd != -1)
+ SAFE_CLOSE(fd);
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ fd = -1;
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ status = false;
+ }
+ }
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-05-05 9:54 [LTP] [PATCH v10] " Piotr Kubaj
@ 2026-05-05 17:54 ` linuxtestproject.agent
0 siblings, 0 replies; 11+ messages in thread
From: linuxtestproject.agent @ 2026-05-05 17:54 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp, LTP AI Reviewer
Hi Piotr,
On Tue, 5 May 2026, Piotr Kubaj wrote:
> high_freq_hwp_cap_cppc.c: new test
Reviewed-by: LTP AI Reviewer <ltp-ai@noreply.github.com>
---
Note:
Our agent completed the review of the patch.
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* [LTP] [PATCH v9] high_freq_hwp_cap_cppc.c: new test
@ 2026-05-04 10:17 Piotr Kubaj
2026-05-04 11:55 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-05-04 10:17 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Checks for msr and CPPC are added to setup().
Useless snprintf() for CPU0 is dropped.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 88 +++++++++++++++++++
3 files changed, 90 insertions(+)
create mode 100644 testcases/kernel/power_management/.gitignore
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index b670da6ec..4da57ee72 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests03 runpwtests03.sh
runpwtests04 runpwtests04.sh
runpwtests06 runpwtests06.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
new file mode 100644
index 000000000..03f0c83e4
--- /dev/null
+++ b/testcases/kernel/power_management/.gitignore
@@ -0,0 +1 @@
+high_freq_hwp_cap_cppc
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..0701f0277
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,88 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+
+static void setup(void)
+{
+ if (access("/dev/cpu/0/msr", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "msr driver not loaded");
+
+ if (access("/sys/devices/system/cpu/cpu0/acpi_cppc/highest_perf", F_OK) == -1)
+ tst_brk(TCONF | TERRNO, "CPPC sysfs not available");
+
+ nproc = tst_ncpus_conf();
+}
+
+static void run(void)
+{
+ bool status = true;
+ char path[PATH_MAX];
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ if (i) {
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ SAFE_FILE_SCANF(path, "%d", &online);
+ }
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ int fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ status = false;
+ }
+ }
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-05-04 10:17 [LTP] [PATCH v9] " Piotr Kubaj
@ 2026-05-04 11:55 ` linuxtestproject.agent
0 siblings, 0 replies; 11+ messages in thread
From: linuxtestproject.agent @ 2026-05-04 11:55 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp
Hi Piotr,
On Mon, 4 May 2026 12:17:36 +0200, Piotr Kubaj wrote:
> high_freq_hwp_cap_cppc.c: new test
>
> Verify for all online logical CPUs that their highest performance value are
> the same for HWP Capability MSR 0x771 and CPPC sysfs file.
The body describes what the test does but not why it is needed. Please
add at least one sentence explaining the motivation — e.g. a known
inconsistency, a kernel regression, or a new interface being validated.
[...]
> + snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
> + int fd = SAFE_OPEN(path, O_RDONLY);
> +
> + SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
> + SAFE_CLOSE(fd);
If SAFE_PREAD aborts via tst_brk(), cleanup() is called but fd is never
closed because it is a loop-local variable with no cleanup handler.
Promote fd to a static (initialized to -1) and add a cleanup() that
guards with `if (fd != -1) SAFE_CLOSE(fd);`.
---
Note:
Our agent completed the review of the patch. The full review can be
found at: https://github.com/linux-test-project/ltp-agent/actions/runs/25317225258
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
* [LTP] [PATCH v7] high_freq_hwp_cap_cppc.c: new test
@ 2026-04-20 9:44 Piotr Kubaj
2026-04-20 10:53 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 11+ messages in thread
From: Piotr Kubaj @ 2026-04-20 9:44 UTC (permalink / raw)
To: ltp; +Cc: helena.anna.dubel, tomasz.ossowski, rafael.j.wysocki,
daniel.niestepski
Verify for all online logical CPUs that their highest performance value are
the same for HWP Capability MSR 0x771 and CPPC sysfs file.
Signed-off-by: Piotr Kubaj <piotr.kubaj@intel.com>
---
Addresses Andrea's feedback.
runtest/power_management_tests | 1 +
testcases/kernel/power_management/.gitignore | 1 +
.../power_management/high_freq_hwp_cap_cppc.c | 90 +++++++++++++++++++
3 files changed, 92 insertions(+)
create mode 100644 testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
diff --git a/runtest/power_management_tests b/runtest/power_management_tests
index 884e615cd..6d87dfb7f 100644
--- a/runtest/power_management_tests
+++ b/runtest/power_management_tests
@@ -1,4 +1,5 @@
#POWER_MANAGEMENT
+high_freq_hwp_cap_cppc high_freq_hwp_cap_cppc
runpwtests01 runpwtests01.sh
runpwtests02 runpwtests02.sh
runpwtests03 runpwtests03.sh
diff --git a/testcases/kernel/power_management/.gitignore b/testcases/kernel/power_management/.gitignore
index 0c2a3ed4b..c13bca1c4 100644
--- a/testcases/kernel/power_management/.gitignore
+++ b/testcases/kernel/power_management/.gitignore
@@ -1 +1,2 @@
+high_freq_hwp_cap_cppc
pm_get_sched_values
diff --git a/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
new file mode 100644
index 000000000..3cd7db221
--- /dev/null
+++ b/testcases/kernel/power_management/high_freq_hwp_cap_cppc.c
@@ -0,0 +1,90 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2026 Piotr Kubaj <piotr.kubaj@intel.com>
+ */
+
+/*\
+ * Verify for all online logical CPUs that their highest performance value are
+ * the same for HWP Capability MSR 0x771 and CPPC sysfs file.
+ */
+
+#include "tst_test.h"
+#include "tst_safe_prw.h"
+
+#define MSR_HWP_CAPABILITIES 0x771
+#define HIGHEST_PERF_MASK 0xFF
+
+static int nproc;
+
+static void setup(void)
+{
+ nproc = tst_ncpus_conf();
+}
+
+static void run(void)
+{
+ bool status = true;
+
+ for (int i = 0; i < nproc; i++) {
+ int online = 1;
+ char path[PATH_MAX];
+ unsigned long long msr_highest_perf = 0, sysfs_highest_perf = 0;
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/online", i);
+ if (i)
+ SAFE_FILE_SCANF(path, "%d", &online);
+
+ if (!online) {
+ tst_res(TINFO, "CPU%d offline, skipping", i);
+ continue;
+ }
+
+ snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/acpi_cppc/highest_perf", i);
+ if (access(path, F_OK) == -1) {
+ tst_res(TCONF | TERRNO, "CPPC sysfs not available, skipping");
+ return;
+ }
+
+ SAFE_FILE_SCANF(path, "%llu", &sysfs_highest_perf);
+ tst_res(TDEBUG, "%s: %llu", path, sysfs_highest_perf);
+
+ snprintf(path, sizeof(path), "/dev/cpu/%d/msr", i);
+ int fd = SAFE_OPEN(path, O_RDONLY);
+
+ SAFE_PREAD(1, fd, &msr_highest_perf, sizeof(msr_highest_perf), MSR_HWP_CAPABILITIES);
+ SAFE_CLOSE(fd);
+ msr_highest_perf &= HIGHEST_PERF_MASK;
+ tst_res(TDEBUG, "%s: %llu", path, msr_highest_perf);
+
+ if (msr_highest_perf != sysfs_highest_perf) {
+ tst_res(TINFO, "cpu%d: sysfs=%llu MSR=%llu",
+ i, sysfs_highest_perf, msr_highest_perf);
+ status = false;
+ }
+ }
+
+ if (status)
+ tst_res(TPASS, "Sysfs and MSR values are equal");
+ else
+ tst_res(TFAIL, "Highest performance values differ between sysfs and MSR");
+}
+
+static struct tst_test test = {
+ .needs_drivers = (const char *const []) {
+ "msr",
+ NULL
+ },
+ .needs_kconfigs = (const char *const []) {
+ "CONFIG_ACPI_CPPC_LIB",
+ "CONFIG_X86_MSR",
+ NULL
+ },
+ .needs_root = 1,
+ .setup = setup,
+ .supported_archs = (const char *const []) {
+ "x86",
+ "x86_64",
+ NULL
+ },
+ .test_all = run
+};
--
2.47.3
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [LTP] high_freq_hwp_cap_cppc.c: new test
2026-04-20 9:44 [LTP] [PATCH v7] " Piotr Kubaj
@ 2026-04-20 10:53 ` linuxtestproject.agent
0 siblings, 0 replies; 11+ messages in thread
From: linuxtestproject.agent @ 2026-04-20 10:53 UTC (permalink / raw)
To: Piotr Kubaj; +Cc: ltp, LTP AI Reviewer
Hi Piotr,
On Mon, 20 Apr 2026, Piotr Kubaj wrote:
> high_freq_hwp_cap_cppc.c: new test
Reviewed-by: LTP AI Reviewer <ltp-ai@noreply.github.com>
---
Note:
Our agent completed the review of the patch.
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
Regards,
LTP AI Reviewer
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-06-09 14:40 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-09 12:18 [LTP] [PATCH v14] high_freq_hwp_cap_cppc.c: new test Piotr Kubaj
2026-06-09 12:42 ` [LTP] " linuxtestproject.agent
2026-06-09 13:55 ` Cyril Hrubis
2026-06-09 14:35 ` [LTP] [PATCH v14] " Cyril Hrubis
2026-06-09 14:40 ` Andrea Cervesato via ltp
-- strict thread matches above, loose matches on Subject: below --
2026-05-14 9:35 [LTP] [PATCH v13] " Piotr Kubaj
2026-05-14 11:58 ` [LTP] " linuxtestproject.agent
2026-05-07 7:22 [LTP] [PATCH v12] " Piotr Kubaj
2026-05-07 9:38 ` [LTP] " linuxtestproject.agent
2026-05-06 12:56 [LTP] [PATCH v11] " Piotr Kubaj
2026-05-06 14:15 ` [LTP] " linuxtestproject.agent
2026-05-05 9:54 [LTP] [PATCH v10] " Piotr Kubaj
2026-05-05 17:54 ` [LTP] " linuxtestproject.agent
2026-05-04 10:17 [LTP] [PATCH v9] " Piotr Kubaj
2026-05-04 11:55 ` [LTP] " linuxtestproject.agent
2026-04-20 9:44 [LTP] [PATCH v7] " Piotr Kubaj
2026-04-20 10:53 ` [LTP] " linuxtestproject.agent
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox