From owner-freebsd-current@FreeBSD.ORG Wed May 7 22:27:05 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CD1137B401 for ; Wed, 7 May 2003 22:27:05 -0700 (PDT) Received: from axe-inc.co.jp (axegw.axe-inc.co.jp [61.199.217.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D26C43FDF for ; Wed, 7 May 2003 22:27:02 -0700 (PDT) (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 In-reply-to: Your message of "08 May 2003 17:09:11 +1200." <03May8.170848nzst.119052@homer.fire.org.nz> Date: Thu, 08 May 2003 14:29:50 +0900 From: User Takawata cc: acpi-jp@jp.freebsd.org cc: current@freebsd.org Subject: Re: Outstanding ACPI issues for 5.1-RELEASE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2003 05:27:05 -0000 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);