From owner-acpi-jp@jp.FreeBSD.org Thu May  8 14:27:07 2003
Received: (from daemon@localhost)
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) id h485R7m40669;
	Thu, 8 May 2003 14:27:07 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from axe-inc.co.jp (axegw.axe-inc.co.jp [61.199.217.66])
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) with ESMTP/inet id h485R6Y40664
	for <acpi-jp@jp.freebsd.org>; Thu, 8 May 2003 14:27:06 +0900 (JST)
	(envelope-from takawata@axe-inc.co.jp)
Received: from axe-inc.co.jp ([192.47.224.47])
	by axe-inc.co.jp (8.9.3+3.2W/3.7W) with ESMTP id OAA09382;
	Thu, 8 May 2003 14:26:45 +0900 (JST)
Message-Id: <200305080526.OAA09382@axe-inc.co.jp>
To: Andrew Thompson <andy@fud.org.nz>
Cc: current@freebsd.org, acpi-jp@jp.FreeBSD.org
In-reply-to: Your message of "08 May 2003 17:09:11 +1200."
             <03May8.170848nzst.119052@homer.fire.org.nz>
From: User Takawata <takawata@axe-inc.co.jp>
Reply-To: acpi-jp@jp.FreeBSD.org
Precedence: list
Date: Thu, 08 May 2003 14:29:50 +0900
X-Sequence: acpi-jp 2190
Subject: [acpi-jp 2190] Re: Outstanding ACPI issues for 5.1-RELEASE
Sender: owner-acpi-jp@jp.FreeBSD.org
X-Originator: takawata@axe-inc.co.jp
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+030405

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);
