Skip to content

Commit d194803

Browse files
superm1jwrdegoede
authored andcommitted
platform/x86/amd: pmc: Apply nvme quirk to HP 15s-eq2xxx
HP 15s-eq2xxx is an older Lucienne laptop that has a problem resuming from s2idle when IOMMU is enabled. The symptoms very closely resemble that of the Lenovo issues with NVME resume. Lucienne was released in a similar timeframe as the Renoir / Cezanne Lenovo laptops and they may have similar BIOS code. Applying the same quirk to this system allows the system to work with IOMMU enabled and s2idle resume to work. Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2684 Signed-off-by: Mario Limonciello <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Hans de Goede <[email protected]> Signed-off-by: Hans de Goede <[email protected]>
1 parent e8ef8dd commit d194803

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/platform/x86/amd/pmc-quirks.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,15 @@ static const struct dmi_system_id fwbug_list[] = {
112112
DMI_MATCH(DMI_PRODUCT_NAME, "21A1"),
113113
}
114114
},
115+
/* https://gitlab.freedesktop.org/drm/amd/-/issues/2684 */
116+
{
117+
.ident = "HP Laptop 15s-eq2xxx",
118+
.driver_data = &quirk_s2idle_bug,
119+
.matches = {
120+
DMI_MATCH(DMI_SYS_VENDOR, "HP"),
121+
DMI_MATCH(DMI_PRODUCT_NAME, "HP Laptop 15s-eq2xxx"),
122+
}
123+
},
115124
{}
116125
};
117126

0 commit comments

Comments
 (0)