From owner-freebsd-current@FreeBSD.ORG Thu Jan 12 21:08:11 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB1A3106564A for ; Thu, 12 Jan 2012 21:08:11 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id A01578FC16 for ; Thu, 12 Jan 2012 21:08:11 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) by cyrus.watson.org (Postfix) with ESMTPSA id 440D846B1A; Thu, 12 Jan 2012 16:08:11 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id C5D8AB91C; Thu, 12 Jan 2012 16:08:10 -0500 (EST) From: John Baldwin To: Adrian Connolly Date: Thu, 12 Jan 2012 16:08:09 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p10; KDE/4.5.5; amd64; ; ) References: <863081.90627.qm@web100405.mail.kks.yahoo.co.jp> <201201031037.36965.jhb@freebsd.org> <76ED7D95-63D6-4328-B689-BBBA5C9F24A0@yahoo.co.jp> In-Reply-To: <76ED7D95-63D6-4328-B689-BBBA5C9F24A0@yahoo.co.jp> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201201121608.09808.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Thu, 12 Jan 2012 16:08:10 -0500 (EST) Cc: "freebsd-current@freebsd.org" Subject: Re: atkbc not loaded with ACPI enabled in 9.0 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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, 12 Jan 2012 21:08:11 -0000 On Tuesday, January 03, 2012 7:31:59 pm Adrian Connolly wrote: > On 2012/01/04, at 0:37, John Baldwin wrote: > > > > On Monday, January 02, 2012 11:39:10 pm aconnolly08@yahoo.co.jp wrote: > >> I am running 9.0-RC3 on an Acer Aspire One D255E netbook. I have most of the > > functionality I want with one major exception, when I enable ACPI my > > integrated keyboard drivers aren't loaded. Without ACPI I can use my keyboard > > as atkbdc and atkbd get loaded, (not psm though), but I have problems with > > shutdown, time settings, power settings and usb controllers. > >> I have tried various ways of tackling this including: > >> 1. including "nooptions NEW_PCIB" in kernel configuration, rebuilding and > > installing >> no effect > >> 2a. including "debug.acpi.disabled="pci" " >> can't mount file system2b. > > including "debug.acpi.disabled="bus" " >> can't mount file system 2c. > > including "debug.acpi.disabled="children" " >> can't mount file system2d. > > including "debug.acpi.disabled="hostres" " > >>>> no effect > >> 3. making the edit in r228961, rebuilding the kernel and installing >> no > > effect > >> I have the latest bios (v3.x), but it features very few changeable options. > >> Here's the output of my dmesg -aHere's the output of my devinfo -vrHere's > > the output of my devinfo -ur > >> Any suggestions would be greatly appreciated. > >> Best regards,Adrian Connolly > > > > Hmm, none of your attachments made it to the list. Can you post them at a > > URL? > > > > -- > > John Baldwin > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > My apologies, here are the URLs of the output, > > dmesg -a http://pastebin.com/rJhddt4A > > devinfo -vr http://pastebin.com/MYd8wS7F > > devinfo -ur http://pastebin.com/iBr62epv Please try this patch: Index: sys/dev/atkbdc/atkbdc_isa.c =================================================================== --- atkbdc_isa.c (revision 230009) +++ atkbdc_isa.c (working copy) @@ -87,6 +87,7 @@ static driver_t atkbdc_isa_driver = { static struct isa_pnp_id atkbdc_ids[] = { { 0x0303d041, "Keyboard controller (i8042)" }, /* PNP0303 */ + { 0x0320d041, "Keyboard controller (i8042)" }, /* PNP0320 */ { 0 } }; -- John Baldwin