Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/acpi Remove quirk added in rev 1.14. Even after the...



details:   https://anonhg.NetBSD.org/src/rev/e4d1adff2b83
branches:  trunk
changeset: 757567:e4d1adff2b83
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Mon Sep 06 14:09:54 2010 +0000

description:
Remove quirk added in rev 1.14.  Even after the change of 1.16, it
still matches more boards that just the one with the problem.

Interrupts from the SATA controllers on my MSI K8N Neo3 boards
(which both versions of this quirk matched) are broken when ACPI
is disabled.  My board does not exhibit AE_AML_INFINITE_LOOP
problems.

If we want to avoid manually specifying RB_MD2 in boothowto on
pgoyette@'s board, we're going to have to find another way; perhaps
with the DMI strings available from pmf(9).

Anyhow, some boards needing RB_MD2 during boot(8) is in my opinion
better than others needing to set acpi_force_load in ddb or gdb.

diffstat:

 sys/dev/acpi/acpi_quirks.c |  7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diffs (28 lines):

diff -r aeee6671a252 -r e4d1adff2b83 sys/dev/acpi/acpi_quirks.c
--- a/sys/dev/acpi/acpi_quirks.c        Mon Sep 06 13:15:29 2010 +0000
+++ b/sys/dev/acpi/acpi_quirks.c        Mon Sep 06 14:09:54 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acpi_quirks.c,v 1.16 2010/09/04 17:48:26 jruoho Exp $  */
+/*     $NetBSD: acpi_quirks.c,v 1.17 2010/09/06 14:09:54 jakllsch Exp $        */
 
 /*
  * Copyright 2002 Wasabi Systems, Inc.
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.16 2010/09/04 17:48:26 jruoho Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.17 2010/09/06 14:09:54 jakllsch Exp $");
 
 #include "opt_acpi.h"
 
@@ -69,9 +69,6 @@
        { ACPI_SIG_FADT, "NVIDIA", 0x06040000, AQ_EQ, "CK8     ",
          ACPI_QUIRK_IRQ0 },
 
-       { ACPI_SIG_FADT, "Nvidia", 0x42302e31, AQ_EQ, "AWRDACPI",
-         ACPI_QUIRK_BROKEN },
-
        { ACPI_SIG_FADT, "HP    ", 0x06040012, AQ_LTE, "HWPC20F ",
          ACPI_QUIRK_BROKEN },
 };



Home | Main Index | Thread Index | Old Index