platform/x86: hp-wmi: Add OMEN board 8D88 thermal profile support

The HP OMEN 16 (board ID: 8D88) supports the existing
OMEN thermal profile handling.

Add the DMI board name to hp_wmi_feature_boards[] so that
the existing thermal profile support is enabled for this board.

This enables the existing fan control and platform profile
handling for 8D88.

The board has been reported as working with this configuration
in OmenCtl.

Link: e3cde3842b
Signed-off-by: Suryansh Singh <technosfan14@gmail.com>
Link: https://patch.msgid.link/20260818090828.27049-1-technosfan14@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
This commit is contained in:
Suryansh Singh 2026-08-18 14:38:28 +05:30 committed by Ilpo Järvinen
parent 2fb7ed607f
commit 5848eb9130
No known key found for this signature in database
GPG Key ID: 59AC4F6153E5CE31

View File

@ -331,6 +331,10 @@ static const struct dmi_system_id hp_wmi_feature_boards[] __initconst = {
.matches = { DMI_MATCH(DMI_BOARD_NAME, "8D87") },
.driver_data = (void *)&omen_v1_no_ec_board_params,
},
{
.matches = { DMI_MATCH(DMI_BOARD_NAME, "8D88") },
.driver_data = (void *)&omen_v1_no_ec_board_params,
},
{
.matches = { DMI_MATCH(DMI_BOARD_NAME, "8DD6") },
.driver_data = (void *)&omen_v1_no_ec_thermal_params,