On Mon, May 13, 2024 at 10:53:02PM +0900, dev@xxxxxxxxxxx wrote: > From: Jason Nader <dev@xxxxxxxxxxx> > > Commit b8b8b4e0c052b2c06e1c4820a8001f4e0f77900f ("ata: ahci: Add Intel > Alder Lake-P AHCI controller to low power chipsets list") enabled low > power mode for Alder Lake-P AHCI adaptors in order to reduce idle power > consumption, however this introduced a regression on at least one system. > Revert the patch until a better solution is found. The patch itself looks fine to me, but the commit message needs to be rewritten. Right now, we will enable LPM if the controller supports it (unless the port is hot plug capable or external), so we no longer have the "low power" board type. Thus, it does not make sense to say that LPM is what introduced the regression. If v6.9 does not work, and v6.9 + this patch works, then the proper commit message should be something like: Commit b8b8b4e0c052 ("ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list") added Intel Alder Lake to the ahci_pci_tbl. Because of the way that the Intel PCS quirk was implemented, having an explicit entry in the ahci_pci_tbl caused the Intel PCS quirk to be applied. (The quirk was not being applied if there was no explict entry.) Thus, entries that were added to the ahci_pci_tbl also got the Intel PCS quirk applied. The quirk was cleaned up in commit 7edbb6059274 ("ahci: clean up intel_pcs_quirk"), such that it is clear which entries that actually applies the Intel PCS quirk. Newer Intel AHCI controllers do not need the Intel PCS quirk, and applying it when not needed actually breaks some platforms. Do not apply the Intel PCS quirk for Intel Alder Lake. This is in line with how things worked before commit b8b8b4e0c052 ("ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list"), such that certain platforms using Intel Alder Lake will work once again. Kind regards, Niklas