From owner-freebsd-current@FreeBSD.ORG Mon Dec 1 10:59:54 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 0740816A4CE for ; Mon, 1 Dec 2003 10:59:54 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id CC19243F75 for ; Mon, 1 Dec 2003 10:59:48 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 13737 invoked by uid 1000); 1 Dec 2003 18:59:49 -0000 Date: Mon, 1 Dec 2003 10:59:49 -0800 (PST) From: Nate Lawson To: Slawa Olhovchenkov In-Reply-To: <20031201180224.GE61122@mail.acropolis.ru> Message-ID: <20031201105339.Y13707@root.org> References: <20031201094715.B13470@root.org> <20031201180224.GE61122@mail.acropolis.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: psmintr not attached w/ acpi 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: Mon, 01 Dec 2003 18:59:54 -0000 On Mon, 1 Dec 2003, Slawa Olhovchenkov wrote: > On Mon, Dec 01, 2003 at 09:48:40AM -0800, Nate Lawson wrote: > > Your ASL indicates that it returns different values for present (based on > > PS2F) and current resources (based on KBDI). Please send me the URL to > > the full ASL so I can see what sets those two variables. > > http://zxy.spb.ru/acpi.dump > > Do you need additional information? Try this workaround, recompile your asl, set dsdt_load in loader.conf. See acpi(4) if you need info on this process. I think your BIOS needs a workaround. I wonder if the MS interpreter ignores _STA for some devices. --- slawa-IntelLaptop.asl.orig Mon Dec 1 10:54:18 2003 +++ slawa-IntelLaptop.asl Mon Dec 1 10:57:39 2003 @@ -3353,14 +3353,7 @@ Name (_HID, EisaId ("PNP0F13")) Method (_STA, 0, NotSerialized) { - If (LEqual (PS2F, 0x00)) - { Return (0x0F) - } - Else - { - Return (0x00) - } } Method (_CRS, 0, NotSerialized) -Nate