* [PATCH] ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk
@ 2025-06-23 16:27 Niklas Cassel
2025-06-23 18:23 ` Hans de Goede
0 siblings, 1 reply; 2+ messages in thread
From: Niklas Cassel @ 2025-06-23 16:27 UTC (permalink / raw)
To: Damien Le Moal, Niklas Cassel, Hans de Goede; +Cc: stable, Andy Yang, linux-ide
While most entries in ahci_broken_lpm(), for Lenovo based boards, match on
DMI_PRODUCT_VERSION, ASUS apparently store the board name in
DMI_PRODUCT_NAME rather than DMI_PRODUCT_VERSION.
Use the correct DMI identifier (DMI_PRODUCT_NAME) to match the
ASUSPRO-D840SA board, such that the quirk will actually get applied.
Cc: stable@vger.kernel.org
Reported-by: Andy Yang <andyybtc79@gmail.com>
Closes: https://lore.kernel.org/linux-ide/aFb3wXAwJSSJUB7o@ryzen/
Fixes: b5acc3628898 ("ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard")
Signed-off-by: Niklas Cassel <cassel@kernel.org>
---
drivers/ata/ahci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index e5e5c2e81d09..aa93b0ecbbc6 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1450,7 +1450,7 @@ static bool ahci_broken_lpm(struct pci_dev *pdev)
{
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
- DMI_MATCH(DMI_PRODUCT_VERSION, "ASUSPRO D840MB_M840SA"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "ASUSPRO D840MB_M840SA"),
},
/* 320 is broken, there is no known good version. */
},
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk
2025-06-23 16:27 [PATCH] ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk Niklas Cassel
@ 2025-06-23 18:23 ` Hans de Goede
0 siblings, 0 replies; 2+ messages in thread
From: Hans de Goede @ 2025-06-23 18:23 UTC (permalink / raw)
To: Niklas Cassel, Damien Le Moal; +Cc: stable, Andy Yang, linux-ide
Hi,
On 23-Jun-25 6:27 PM, Niklas Cassel wrote:
> While most entries in ahci_broken_lpm(), for Lenovo based boards,
Note the Lenovo matching is done on Lenovo laptop model / product
names not on the (mother/main)board names.
> match on
> DMI_PRODUCT_VERSION, ASUS apparently store the board name in
> DMI_PRODUCT_NAME rather than DMI_PRODUCT_VERSION.
Actually Lenovo is the weird one here, all other vendors store
the laptop model-name in PRODUCT_NAME rather then in PRODUCT_VERSION.
For motherboards the motherboard modelnr is typically stored
in BOARD_NAME and what is in PRODUCT_NAME varies.
E.g. my MSI B550M PRO-VDH desktop motherboard has:
DMI_BOARD_NAME "B550M PRO-VDH WIFI (MS-7C95)"
DMI_PRODUCT_NAME "MS-7C95"
So you may want to reword the commit message a bit.
Either way the patch contents looks good to me:
Reviewed-by: Hans de Goede <hansg@kernel.org>
Regards,
Hans
>
> Use the correct DMI identifier (DMI_PRODUCT_NAME) to match the
> ASUSPRO-D840SA board, such that the quirk will actually get applied.
>
> Cc: stable@vger.kernel.org
> Reported-by: Andy Yang <andyybtc79@gmail.com>
> Closes: https://lore.kernel.org/linux-ide/aFb3wXAwJSSJUB7o@ryzen/
> Fixes: b5acc3628898 ("ata: ahci: Disallow LPM for ASUSPRO-D840SA motherboard")
> Signed-off-by: Niklas Cassel <cassel@kernel.org>
> ---
> drivers/ata/ahci.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> index e5e5c2e81d09..aa93b0ecbbc6 100644
> --- a/drivers/ata/ahci.c
> +++ b/drivers/ata/ahci.c
> @@ -1450,7 +1450,7 @@ static bool ahci_broken_lpm(struct pci_dev *pdev)
> {
> .matches = {
> DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> - DMI_MATCH(DMI_PRODUCT_VERSION, "ASUSPRO D840MB_M840SA"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "ASUSPRO D840MB_M840SA"),
> },
> /* 320 is broken, there is no known good version. */
> },
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-06-23 18:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-23 16:27 [PATCH] ata: ahci: Use correct DMI identifier for ASUSPRO-D840SA LPM quirk Niklas Cassel
2025-06-23 18:23 ` Hans de Goede
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).