Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/x86: hp-wmi: Add Omen 16-xf0xxx (8BCA) support

The HP Omen 16-xf0xxx board 8BCA uses the same Victus-S fan and
thermal WMI path as other recently supported Omen/Victus boards,
but it requires Omen v1 thermal profile parameters for correct
platform profile behavior.

Add board 8BCA to victus_s_thermal_profile_boards[] and map it
to omen_v1_thermal_params.

Validated on HP Omen 16-xf0xxx (board 8BCA):
- /sys/firmware/acpi/platform_profile exposes
low-power/balanced/performance
- fan RPM reporting works (fan1_input/fan2_input)
- manual fan control works through hp-wmi hwmon (pwm1/pwm1_enable)

Signed-off-by: Raed <thisisraed@outlook.com>
Link: https://patch.msgid.link/20260311131338.965249-1-youaretalkingtoraed@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

authored by

Raed and committed by
Ilpo Järvinen
55b964df d2723918

+4
+4
drivers/platform/x86/hp/hp-wmi.c
··· 184 184 .driver_data = (void *)&victus_s_thermal_params, 185 185 }, 186 186 { 187 + .matches = { DMI_MATCH(DMI_BOARD_NAME, "8BCA") }, 188 + .driver_data = (void *)&omen_v1_thermal_params, 189 + }, 190 + { 187 191 .matches = { DMI_MATCH(DMI_BOARD_NAME, "8BCD") }, 188 192 .driver_data = (void *)&omen_v1_thermal_params, 189 193 },