2024-04-22 08:05:07

by Werner Sembach

[permalink] [raw]
Subject: [PATCH v2] ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx

From: Christoffer Sandberg <[email protected]>

Listed devices need the override for the keyboard to work.

Signed-off-by: Christoffer Sandberg <[email protected]>
Signed-off-by: Werner Sembach <[email protected]>
Cc: [email protected]
---
drivers/acpi/resource.c | 12 ++++++++++++
1 file changed, 12 insertions(+)

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index 59423fe9d0f29..6cc8572759a3d 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -630,6 +630,18 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = {
DMI_MATCH(DMI_BOARD_NAME, "X565"),
},
},
+ {
+ /* TongFang GXxHRXx/TUXEDO InfinityBook Pro Gen9 AMD */
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "GXxHRXx"),
+ },
+ },
+ {
+ /* TongFang GMxHGxx/TUXEDO Stellaris Slim Gen1 AMD */
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"),
+ },
+ },
{ }
};

--
2.34.1



2024-04-22 16:28:52

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH v2] ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx

On Mon, Apr 22, 2024 at 10:04 AM Werner Sembach <[email protected]> wrote:
>
> From: Christoffer Sandberg <[email protected]>
>
> Listed devices need the override for the keyboard to work.
>
> Signed-off-by: Christoffer Sandberg <[email protected]>
> Signed-off-by: Werner Sembach <[email protected]>
> Cc: [email protected]
> ---
> drivers/acpi/resource.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
> index 59423fe9d0f29..6cc8572759a3d 100644
> --- a/drivers/acpi/resource.c
> +++ b/drivers/acpi/resource.c
> @@ -630,6 +630,18 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = {
> DMI_MATCH(DMI_BOARD_NAME, "X565"),
> },
> },
> + {
> + /* TongFang GXxHRXx/TUXEDO InfinityBook Pro Gen9 AMD */
> + .matches = {
> + DMI_MATCH(DMI_BOARD_NAME, "GXxHRXx"),
> + },
> + },
> + {
> + /* TongFang GMxHGxx/TUXEDO Stellaris Slim Gen1 AMD */
> + .matches = {
> + DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"),
> + },
> + },
> { }
> };
>
> --

Applied as 6.10 material, thanks!