Skip to content

Commit 5b8d6a9

Browse files
shivamklrgregkh
authored andcommitted
ACPI: video: force native backlight on HP OMEN 16 (8A44)
commit 4b506ea upstream. The HP OMEN 16 Gaming Laptop (board name 8A44) has a mux-less hybrid GPU configuration with AMD Rembrandt (Radeon 680M) and NVIDIA GA104 (RTX 3070 Ti). The internal eDP panel is wired to the AMD iGPU. When Nouveau loads without GSP firmware, the ACPI video backlight device (acpi_video0) gets registered alongside the native AMD backlight (amdgpu_bl2). In this state, writes to amdgpu_bl2 update the software brightness value but fail to change the physical panel brightness. Force native backlight to prevent acpi_video0 from registering. Confirmed that booting with acpi_backlight=native resolves the issue. Cc: All applicable <stable@vger.kernel.org> Signed-off-by: Shivam Kalra <shivamkalra98@zohomail.in> Link: https://patch.msgid.link/20260426-omen-16-backlight-fix-v1-1-62364f268ea6@zohomail.in Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 8c18175 commit 5b8d6a9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

drivers/acpi/video_detect.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
907907
DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 15 3535"),
908908
},
909909
},
910+
{
911+
.callback = video_detect_force_native,
912+
/* HP OMEN Gaming Laptop 16-n0xxx */
913+
.matches = {
914+
DMI_MATCH(DMI_SYS_VENDOR, "HP"),
915+
DMI_MATCH(DMI_PRODUCT_NAME, "OMEN by HP Gaming Laptop 16-n0xxx"),
916+
},
917+
},
910918

911919
/*
912920
* x86 android tablets which directly control the backlight through

0 commit comments

Comments
 (0)