Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 08 May 2003 14:29:50 +0900
From:      User Takawata <takawata@axe-inc.co.jp>
To:        Andrew Thompson <andy@fud.org.nz>
Cc:        current@freebsd.org
Subject:   Re: Outstanding ACPI issues for 5.1-RELEASE
Message-ID:  <200305080526.OAA09382@axe-inc.co.jp>
In-Reply-To: Your message of "08 May 2003 17:09:11 %2B1200." <03May8.170848nzst.119052@homer.fire.org.nz>

next in thread | previous in thread | raw e-mail | index | archive | help
In message <03May8.170848nzst.119052@homer.fire.org.nz>, Andrew Thompson wrote:
>On Wed, 2003-05-07 at 09:28, Nate Lawson wrote:
>> The current state of FreeBSD ACPI is that the Intel 0228 dist was importe=
>d
>> along with a one-line fix to hwregs.c that solves power-off problems.
>>=20
>> Here is a list of the current problems.  We would like to fix as many as
>> possible before the release.  If anyone has time to tackle these issues,
>> please let me know. =20
>
>I am having a problem with acpi on my Compaq N1000v laptop. Before the
>above import it would panic on boot , but now it is unable to find my
>disk (progress mabey?).  The boot logs and acpidump is available @
>http://www.fud.org.nz/acpi/
>
>Anyone got any advise? I can supply more info if needed.
>

That's because the _HID format is not conform to the standard.
Add following change and check whether Host PCI bus bridge appears or not.


Index: acpi_pcib_acpi.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/acpica/acpi_pcib_acpi.c,v
retrieving revision 1.27
diff -u -r1.27 acpi_pcib_acpi.c
--- acpi_pcib_acpi.c    25 Nov 2002 21:55:04 -0000      1.27
+++ acpi_pcib_acpi.c    8 May 2003 05:22:57 -0000
@@ -113,7 +113,7 @@
 
     if ((acpi_get_type(dev) == ACPI_TYPE_DEVICE) &&
        !acpi_disabled("pci") &&
-       acpi_MatchHid(dev, "PNP0A03")) {
+       acpi_MatchHid(dev, "*PNP0A03")) {
 
        if (!pci_cfgregopen())
                return(ENXIO);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200305080526.OAA09382>