Skip to content

Commit 6eaf375

Browse files
gschafrarafaeljw
authored andcommitted
ACPI: resource: Do IRQ override on GMxBGxx (XMG APEX 17 M23)
The XM APEX 17 M23 (TongFang?) GMxBGxx (got using `sudo dmidecode -s baseboard-product-name`) needs IRQ overriding for the keyboard to work. Adding an entry for this laptop to the override_table makes the internal keyboard functional [1]. Successfully tested with Arch Linux Kernel v6.8 under Manjaro Linux v23.1.4. Link: https://www.reddit.com/r/XMG_gg/comments/15kd5pg/xmg_apex_17_m23_keyboard_not_working_on_linux/ # [1] Signed-off-by: Guenter Schafranek <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent ed30a4a commit 6eaf375

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/acpi/resource.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,12 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
533533
* to have a working keyboard.
534534
*/
535535
static const struct dmi_system_id irq1_edge_low_force_override[] = {
536+
{
537+
/* XMG APEX 17 (M23) */
538+
.matches = {
539+
DMI_MATCH(DMI_BOARD_NAME, "GMxBGxx"),
540+
},
541+
},
536542
{
537543
/* TongFang GMxRGxx/XMG CORE 15 (M22)/TUXEDO Stellaris 15 Gen4 AMD */
538544
.matches = {

0 commit comments

Comments
 (0)