public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI: Force acpi_skip_timer_override for Gigabyte GA-MA78GPM-UD2H
@ 2011-11-22 22:08 Angus Turnbull
  0 siblings, 0 replies; only message in thread
From: Angus Turnbull @ 2011-11-22 22:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds, len.brown

Several Gigabyte motherboards from the SB700 generation have an issue
where they will not boot or suspend/resume reliably without
"acpi_skip_timer_override" on the kernel command line. I have a
GA-MA78GPM-UD2H (AM2+ socket) and the below patch allows it to boot
successfully by adding it to the quirks list (the AMD bug detection in
early_quirks.c isn't enabling acpi_skip_timer_override automatically).

https://lkml.org/lkml/2011/3/31/195 covered a very similar issue.

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/658955 is a bug
report with my system information.


diff -ru a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1466,6 +1466,19 @@
 		     DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
 		     },
 	 },
+	/*
+	 * Buggy Gigabyte ACPI on SB700 boards, will not boot or resume
+	 * reliably without acpi_skip_timer_override (last stable BIOS).
+	 * Affects multiple boards of this generation.
+	 */
+	{
+	 .callback = dmi_ignore_irq0_timer_override,
+	 .ident = "Gigabyte GA-MA78GPM-UD2H",
+	 .matches = {
+		     DMI_MATCH(DMI_SYS_VENDOR,
+			"Gigabyte Technology Co., Ltd."),
+		     DMI_MATCH(DMI_PRODUCT_NAME, "GA-MA78GPM-UD2H"),
+		     },
+	 },
 	{}
 };



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-11-22 22:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-22 22:08 [PATCH] ACPI: Force acpi_skip_timer_override for Gigabyte GA-MA78GPM-UD2H Angus Turnbull

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox