public inbox for platform-driver-x86@vger.kernel.org
 help / color / mirror / Atom feed
From: bugzilla-daemon@kernel.org
To: platform-driver-x86@vger.kernel.org
Subject: [Bug 220639] [BUG] hp-wmi: OMEN 16-wf0xxx (board 8BAB) – fans stuck at 0 RPM, Boost/WMI queries rejected (hp_wmi: query 0x4c error 0x6)
Date: Fri, 13 Feb 2026 13:51:22 +0000	[thread overview]
Message-ID: <bug-220639-215701-T7C1ErnjuK@https.bugzilla.kernel.org/> (raw)
In-Reply-To: <bug-220639-215701@https.bugzilla.kernel.org/>

https://bugzilla.kernel.org/show_bug.cgi?id=220639

--- Comment #6 from Krishna Chomal (krishna.chomal108@gmail.com) ---
(In reply to Juan Martin Morales from comment #5)
> Hi, sorry for the delay in responding, here is the output:
> 
> $ sudo xxd /sys/kernel/debug/ec/ec0/io
> 
> 00000000: 0000 0000 0001 4800 0f84 fa71 0ffa 1c01  ......H....q....
> 00000010: 0114 251e 1400 ffff ffff ffff 40fa ac24  ..%.........@..$
> 00000020: 0000 0000 0000 f900 350f 2100 4436 4b59  ........5.!.D6KY
> 00000030: 5844 3049 3831 494f 324c 4500 0100 00ff  XD0I81IO2LE.....
> 00000040: ffff ff01 00ff ffff ff4c 494f 4e00 0000  .........LION...
> 00000050: 0001 ffff 3100 000f 4301 2d41 0000 0000  ....1...C.-A....
> 00000060: 0080 1620 3333 332d 4143 2d31 322d 4100  ... 333-AC-12-A.
> 00000070: 0000 0000 0000 0000 0000 0000 0000 0000  ................
> 00000080: 0000 0000 0b00 0000 0000 0000 0000 0000  ................
> 00000090: 3333 332d 4143 2d31 3257 4b30 3630 3833  333-AC-12WK06083
> 000000a0: 0000 00d8 4100 0037 0000 0008 642a 0078  ....A..7....d*.x
> 000000b0: 3737 2c3c 2900 2423 0028 0800 c342 1110  77,<).$#.(...B..
> 000000c0: 0000 6d1e ab0d c232 3c2d 6c20 6d1e 641c  ..m....2<-l m.d.
> 000000d0: 0000 0000 0000 6d1e 0a03 5b01 0000 e000  ......m...[.....
> 000000e0: 0000 00ed 10eb 10ea 1000 0087 034f 0081  .............O..
> 000000f0: 0052 0000 0000 5433 5000 0049 574f 0000  .R....T3P..IWO..

Thanks. We can clearly see that register 0x59 is holding the thermal profile
state, so HP_VICTUS_S_EC_THERMAL_PROFILE_OFFSET should be used.

Can you please test the following patch (based on pdx86 for-next branch)? 


diff --git a/drivers/platform/x86/hp/hp-wmi.c
b/drivers/platform/x86/hp/hp-wmi.c
index 304d9ac63c8a..6a1b454baaee 100644
--- a/drivers/platform/x86/hp/hp-wmi.c
+++ b/drivers/platform/x86/hp/hp-wmi.c
@@ -173,6 +173,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, "8BAB") },
+               .driver_data = (void *)&omen_v1_thermal_params,
+       },
        {
                .matches = { DMI_MATCH(DMI_BOARD_NAME, "8BBE") },
                .driver_data = (void *)&victus_s_thermal_params,


After loading the patched driver, please verify 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.

3. Verify that on changing platform profile, and it does physically change the
amount of power drawn in the CPU/GPU.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

  parent reply	other threads:[~2026-02-13 13:51 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-08  4:30 [Bug 220639] New: [BUG] hp-wmi: OMEN 16-wf0xxx (board 8BAB) – fans stuck at 0 RPM, Boost/WMI queries rejected (hp_wmi: query 0x4c error 0x6) bugzilla-daemon
2025-10-08  6:29 ` [Bug 220639] " bugzilla-daemon
2025-10-08 20:10 ` bugzilla-daemon
2025-10-20 23:32 ` bugzilla-daemon
2025-11-09 14:00 ` bugzilla-daemon
2026-02-12 13:43 ` bugzilla-daemon
2026-02-12 20:05 ` bugzilla-daemon
2026-02-13 13:51 ` bugzilla-daemon [this message]
2026-02-14  5:00 ` bugzilla-daemon
2026-02-14  5:00 ` bugzilla-daemon
2026-02-14  5:01 ` bugzilla-daemon
2026-02-14  5:09 ` bugzilla-daemon
2026-02-14  5:17 ` bugzilla-daemon
2026-02-14  5:26 ` bugzilla-daemon
2026-02-14  6:28 ` bugzilla-daemon
2026-02-14 10:35 ` bugzilla-daemon
2026-02-16  7:33 ` bugzilla-daemon
2026-02-26  7:23 ` bugzilla-daemon
2026-02-27  7:07 ` bugzilla-daemon
2026-02-27 10:20 ` bugzilla-daemon
2026-02-27 10:45 ` bugzilla-daemon
2026-03-30 15:20 ` bugzilla-daemon
2026-03-30 16:07 ` 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-220639-215701-T7C1ErnjuK@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