lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <b84edc24-0a3a-a4d2-6481-fb3d4cee6dda@amd.com>
Date:   Thu, 30 Jun 2022 15:12:07 -0500
From:   "Limonciello, Mario" <mario.limonciello@....com>
To:     Chuanhong Guo <gch981213@...il.com>, linux-acpi@...r.kernel.org
Cc:     stable@...r.kernel.org,
        Tighe Donnelly <tighe.donnelly@...tonmail.com>,
        Kent Hou Man <knthmn0@...il.com>,
        "Rafael J. Wysocki" <rafael@...nel.org>,
        Len Brown <lenb@...nel.org>,
        open list <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v5] ACPI: skip IRQ1 override on 3 Ryzen 6000 laptops

On 6/29/2022 21:23, Chuanhong Guo wrote:
> The IRQ1 of these laptops with Ryzen 6000 and Insyde UEFI are active
> low and defined in legacy format in ACPI DSDT. The kernel override
> makes the keyboard interrupt polarity inverted, resulting in
> non-functional keyboard.
> 
> Skip legacy IRQ override for:
> Lenovo ThinkBook 14G4+ ARA
> Redmi Book Pro 15 2022 Ryzen
> Asus Zenbook S 13 OLED UM5302

It's really unfortunate that these laptops have the bug.  This was found 
and fixed in the reference BIOS for Ryzen 6000 too (via an MADT override 
service) very early in development.  It seems these manufacturers didn't 
pick up (or ignored) the solution.

However I do want to point out that Windows doesn't care about legacy 
format or not.  This bug where keyboard doesn't work only popped up on 
Linux.

Given the number of systems with the bug is appearing to grow I wonder 
if the right answer is actually a new heuristic that doesn't apply the 
kernel override for polarity inversion anymore.  Maybe if the system is 
2022 or newer?  Or on the ACPI version?

> 
> Cc: <stable@...r.kernel.org>
> Signed-off-by: Tighe Donnelly <tighe.donnelly@...tonmail.com>
> Signed-off-by: Kent Hou Man <knthmn0@...il.com>
> Signed-off-by: Chuanhong Guo <gch981213@...il.com>
> ---
> Changes since v1:
>   Match DMI_PRODUCT_NAME for ThinkBook because the board name
>   is used for other completely different Lenovo laptops.
>   Add a patch for RedmiBook
> 
> Changes since v2:
>   Fix alphabetical order in skip_override_table
>   Add a patch for Asus Zenbook
> 
> Changes since v3:
>   Merge patches as requested
>   Fix another alphabetical ordering between two structs
> 
> Changes since v4:
>   rename the ident in RedmiBook entry.
>    There's also an Intel version of this series, so
>    rename it to make it specific.
>   reword commit title
> 
>   drivers/acpi/resource.c | 26 ++++++++++++++++++++++++++
>   1 file changed, 26 insertions(+) >
> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
> index c2d494784425..0491da180fc5 100644
> --- a/drivers/acpi/resource.c
> +++ b/drivers/acpi/resource.c
> @@ -381,6 +381,31 @@ unsigned int acpi_dev_get_irq_type(int triggering, int polarity)
>   }
>   EXPORT_SYMBOL_GPL(acpi_dev_get_irq_type);
>   
> +static const struct dmi_system_id irq1_edge_low_shared[] = {
> +	{
> +		.ident = "Asus Zenbook S 13 OLED UM5302",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> +			DMI_MATCH(DMI_BOARD_NAME, "UM5302TA"),
> +		},
> +	},
> +	{
> +		.ident = "Lenovo ThinkBook 14 G4+ ARA",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "21D0"),
> +		},
> +	},
> +	{
> +		.ident = "Redmi Book Pro 15 2022 Ryzen",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "TIMI"),
> +			DMI_MATCH(DMI_BOARD_NAME, "TM2113"),
> +		},
> +	},
> +	{ }
> +};
> +
>   static const struct dmi_system_id medion_laptop[] = {
>   	{
>   		.ident = "MEDION P15651",
> @@ -408,6 +433,7 @@ struct irq_override_cmp {
>   };
>   
>   static const struct irq_override_cmp skip_override_table[] = {
> +	{ irq1_edge_low_shared, 1, ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_LOW, 1 },
>   	{ medion_laptop, 1, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0 },
>   };
>   

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ