From: bugzilla-daemon@kernel.org
To: platform-driver-x86@vger.kernel.org
Subject: [Bug 221150] [BUG] hp-wmi: OMEN 16-k0xxx (board 8A4D) – verification of platform_profile and EC register behavior
Date: Fri, 27 Feb 2026 17:06:24 +0000 [thread overview]
Message-ID: <bug-221150-215701-8EYwxXukEh@https.bugzilla.kernel.org/> (raw)
In-Reply-To: <bug-221150-215701@https.bugzilla.kernel.org/>
https://bugzilla.kernel.org/show_bug.cgi?id=221150
Krishna Chomal (krishna.chomal108@gmail.com) changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |krishna.chomal108@gmail.com
--- Comment #4 from Krishna Chomal (krishna.chomal108@gmail.com) ---
Hi,
Your board, 8A4D is not currently present in any whitelist in the hp-wmi
driver. As a result, it defaults to legacy Omen WMI interface to register the
platform-profile.
From your Omen Gaming Hub logs and EC dump, it is evident that your board
requires the newer Victus S style WMI queries for platform-profile switching
(and fan related activities), instead of the legacy queries.
Can you please apply the below patch and test the following:
1. Check dmesg for successful registration message:
"hp_wmi: Registered as platform profile handler"
2. Verify that fan RPM is readable and controllable via sysfs
(/sys/devices/platform/hp-wmi/hwmon/*).
3. Verify that on changing platform profile, and it does physically change the
amount of power drawn in the CPU/GPU.
diff --git a/drivers/platform/x86/hp/hp-wmi.c
b/drivers/platform/x86/hp/hp-wmi.c
index 304d9ac63c8a..756b94ac4a35 100644
--- a/drivers/platform/x86/hp/hp-wmi.c
+++ b/drivers/platform/x86/hp/hp-wmi.c
@@ -120,6 +120,13 @@ static const struct thermal_profile_params
omen_v1_thermal_params = {
.ec_tp_offset = HP_VICTUS_S_EC_THERMAL_PROFILE_OFFSET,
};
+static const struct thermal_profile_params omen_hybrid_thermal_params = {
+ .performance = HP_OMEN_V1_THERMAL_PROFILE_PERFORMANCE,
+ .balanced = HP_OMEN_V1_THERMAL_PROFILE_DEFAULT,
+ .low_power = HP_OMEN_V1_THERMAL_PROFILE_DEFAULT,
+ .ec_tp_offset = HP_OMEN_EC_THERMAL_PROFILE_OFFSET,
+};
+
/*
* A generic pointer for the currently-active board's thermal profile
* parameters.
@@ -173,6 +180,10 @@ static const char * const victus_thermal_profile_boards[]
= {
/* DMI Board names of Victus 16-r and Victus 16-s laptops */
static const struct dmi_system_id victus_s_thermal_profile_boards[]
__initconst = {
+ {
+ .matches = { DMI_MATCH(DMI_BOARD_NAME, "8A4D") },
+ .driver_data = (void *)&omen_hybrid_thermal_params,
+ },
{
.matches = { DMI_MATCH(DMI_BOARD_NAME, "8BBE") },
.driver_data = (void *)&victus_s_thermal_params,
--
You may reply to this email to add a comment.
You are receiving this mail because:
You are watching the assignee of the bug.
next prev parent reply other threads:[~2026-02-27 17:06 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-27 11:09 [Bug 221150] New: [BUG] hp-wmi: OMEN 16-k0xxx (board 8A4D) – verification of platform_profile and EC register behavior bugzilla-daemon
2026-02-27 11:22 ` [Bug 221150] " bugzilla-daemon
2026-02-27 11:23 ` bugzilla-daemon
2026-02-27 11:34 ` bugzilla-daemon
2026-02-27 17:06 ` bugzilla-daemon [this message]
2026-02-28 14:07 ` bugzilla-daemon
2026-03-01 5:37 ` bugzilla-daemon
2026-03-01 7:09 ` bugzilla-daemon
2026-03-02 7:36 ` bugzilla-daemon
2026-03-30 15:25 ` bugzilla-daemon
2026-03-31 7:31 ` bugzilla-daemon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bug-221150-215701-8EYwxXukEh@https.bugzilla.kernel.org/ \
--to=bugzilla-daemon@kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox