[PATCH] platform/x86/intel/hid: Add HP Dragonfly G2 to DMI quirks

From: Maxim Mikityanskiy
Date: Wed Jul 12 2023 - 13:50:39 EST


SW_TABLET_MODE reports are broken on BIOS versions newer than 1.9.1 on
HP Elite Dragonfly G2. Analysis of SSDT9 shows that the BTNL method has
to be called to start getting 0xcc and 0xcd events. Apparently, the
button_array_present method used to return true on BIOS 1.9.1 and older,
but it returns false on newer BIOSes due to HEBC returning 0x000033f3
(bits 0x60000 and 0x20000 are not set).

Add this laptop to button_array_table to force the BTNL call, and also
add it to dmi_vgbs_allow_list to read the initial state and sync VBDS
with VBPS, because this laptop has a reliable VGBS method.

Tested with BIOS 1.13.1.

Signed-off-by: Maxim Mikityanskiy <maxtram95@xxxxxxxxx>
---
drivers/platform/x86/intel/hid.c | 13 +++++++++++++
1 file changed, 13 insertions(+)

diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c
index 5632bd3c534a..5c78b476ed1e 100644
--- a/drivers/platform/x86/intel/hid.c
+++ b/drivers/platform/x86/intel/hid.c
@@ -128,6 +128,13 @@ static const struct dmi_system_id button_array_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go 3"),
},
},
+ {
+ .ident = "HP Elite Dragonfly G2",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "HP"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "HP Elite Dragonfly G2 Notebook PC"),
+ },
+ },
{ }
};

@@ -150,6 +157,12 @@ static const struct dmi_system_id dmi_vgbs_allow_list[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go"),
},
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "HP"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "HP Elite Dragonfly G2 Notebook PC"),
+ },
+ },
{ }
};

--
2.41.0