Commit ddeea2c3 authored by Mario Limonciello's avatar Mario Limonciello Committed by Rafael J. Wysocki
Browse files

ACPI: x86: s2idle: Add a quirk for ASUS ROG Zephyrus G14



ASUS ROG Zephyrus G14 is affected by the same BIOS bug as ASUS TUF
Gaming A17 where important ASL is not called in the AMD code path.
Use the Microsoft codepath instead.

Reported-and-suggested-by: default avatarPhilipp Zabel <philipp.zabel@gmail.com>
Tested-by: default avatarPhilipp Zabel <philipp.zabel@gmail.com>
Tested-by: default avatarMatthew Anderson <ruinairas1992@gmail.com>
Tested-by: default avatarMarko Cekrlic <marko.cekrlic.26@gmail.com>
Signed-off-by: default avatarMario Limonciello <mario.limonciello@amd.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent d0f61e89
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -420,6 +420,14 @@ static const struct dmi_system_id s2idle_dmi_table[] __initconst = {
			DMI_MATCH(DMI_PRODUCT_NAME, "ASUS TUF Gaming A17"),
		},
	},
	{
		/* ASUS ROG Zephyrus G14 (2022) */
		.callback = lps0_prefer_microsoft,
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
			DMI_MATCH(DMI_PRODUCT_NAME, "ROG Zephyrus G14 GA402"),
		},
	},
	{}
};