Skip to content

Commit d528486

Browse files
superm1rafaeljw
authored andcommitted
ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default
ASUS B1400CEAE fails to resume from suspend to idle by default. This was bisected back to commit df4f9bc ("nvme-pci: add support for ACPI StorageD3Enable property") but this is a red herring to the problem. Before this commit the system wasn't getting into deepest sleep state. Presumably this commit is allowing entry into deepest sleep state as advertised by firmware, but there are some other problems related to the wakeup. As it is confirmed the system works properly with S3, set the default for this system to S3. Reported-by: Jian-Hong Pan <jhp@endlessos.org> Link: https://bugzilla.kernel.org/show_bug.cgi?id=215742 Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Tested-by: Jian-Hong Pan <jhp@endlessos.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 6dd4a29 commit d528486

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

drivers/acpi/sleep.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,18 @@ static const struct dmi_system_id acpisleep_dmi_table[] __initconst = {
373373
DMI_MATCH(DMI_PRODUCT_NAME, "20GGA00L00"),
374374
},
375375
},
376+
/*
377+
* ASUS B1400CEAE hangs on resume from suspend (see
378+
* https://bugzilla.kernel.org/show_bug.cgi?id=215742).
379+
*/
380+
{
381+
.callback = init_default_s3,
382+
.ident = "ASUS B1400CEAE",
383+
.matches = {
384+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
385+
DMI_MATCH(DMI_PRODUCT_NAME, "ASUS EXPERTBOOK B1400CEAE"),
386+
},
387+
},
376388
{},
377389
};
378390

0 commit comments

Comments
 (0)