drivers/platform/x86/intel/pmc/core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
convert_ltr_scale() emits an unconditional pr_warn() whenever an LTR row
encoded by hardware has a scale-factor field of 6 or 7 (reserved values
per the PCIe LTR ECN). The function is called twice per LTR row (snoop
+ non-snoop) by pmc_core_ltr_show(), which is invoked on every read of
/sys/kernel/debug/pmc_core/ltr_show as well as during certain platform
driver activity.
On a Meteor Lake laptop with an Intel AX210 Wi-Fi card, this produces
4-12 "Invalid LTR scale factor." lines per second in dmesg, with no
context to help identify which PMC IP / row carries the bad value.
Switch to pr_warn_once() so the warning still flags the spec violation
once per boot, and include the offending scale value in the message.
Identifying the originating LTR row would require restructuring the
caller's loop to perform the validity check itself; that is left as a
separate change.
Assisted-by: Claude:claude-opus-4-7
Signed-off-by: Mike Bommarito <michael.bommarito@gmail.com>
---
Tested on Framework Laptop 13 (Intel Core Ultra 5 125H, BIOS 3.06)
running Linux 7.1-rc4 with this patch applied, across multiple boots
over three days.
Excerpt from /var/log/kern.log spanning the kernel switch:
2026-05-21T08:05:07 mobile5 kernel: intel_pmc_core: Invalid LTR scale factor.
2026-05-21T08:07:07 mobile5 kernel: message repeated 9 times: [ intel_pmc_core: Invalid LTR scale factor.]
2026-05-21T10:19:58 mobile5 kernel: intel_pmc_core: Invalid LTR scale factor 7 (only 0-5 are valid per PCIe spec)
The first two lines are stock 7.1-rc4 (10 unrate-limited firings inside
a 2-minute window, no scale value in the message). The third line is
the patched kernel (single firing per boot, scale value present).
drivers/platform/x86/intel/pmc/core.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
index d91e1ab842d6..e5cb70ba5707 100644
--- a/drivers/platform/x86/intel/pmc/core.c
+++ b/drivers/platform/x86/intel/pmc/core.c
@@ -623,7 +623,8 @@ static u32 convert_ltr_scale(u32 val)
* ----------------------------------------------
*/
if (val > 5) {
- pr_warn("Invalid LTR scale factor.\n");
+ pr_warn_once("Invalid LTR scale factor %u (only 0-5 are valid per PCIe spec)\n",
+ val);
return 0;
}
--
2.53.0
© 2016 - 2026 Red Hat, Inc.