From owner-freebsd-acpi@FreeBSD.ORG Mon Jun 4 17:48:35 2007 Return-Path: X-Original-To: freebsd-acpi@freebsd.org Delivered-To: freebsd-acpi@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29F2B16A400 for ; Mon, 4 Jun 2007 17:48:35 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 7B66413C448 for ; Mon, 4 Jun 2007 17:48:34 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l54HmOrl020896; Mon, 4 Jun 2007 13:48:27 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-acpi@freebsd.org Date: Mon, 4 Jun 2007 11:21:08 -0400 User-Agent: KMail/1.9.6 References: <62855.69.61.188.89.1180770401.squirrel@www.kc8onw.net> In-Reply-To: <62855.69.61.188.89.1180770401.squirrel@www.kc8onw.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706041121.09268.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 04 Jun 2007 13:48:27 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3349/Mon Jun 4 10:32:21 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Subject: Re: Unable to install System Control Interrupt handler [20070320] X-BeenThere: freebsd-acpi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: ACPI and power management development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 17:48:35 -0000 On Saturday 02 June 2007 03:46:41 am jonathan@kc8onw.net wrote: > I just updated to the latest -current from 6.2 release on an amd64 system > and get the below error > ACPI Exception (evevent-0257): AE_ALREADY_EXISTS, Unable to install System > Control Interrupt handler [20070320] > > I found this thread that discusses it as well but it seems to have mostly > died off without a clear resolution. > http://lists.freebsd.org/mailman/htdig/freebsd-acpi/2005-December/002307.html > > I know the BIOS in this machine is pretty poor but I would like to get it > working. > > Thanks for any help, > Jonathan Try this: Index: local_apic.c =================================================================== RCS file: /usr/cvs/src/sys/amd64/amd64/local_apic.c,v retrieving revision 1.36 diff -u -r1.36 local_apic.c --- local_apic.c 6 Mar 2007 17:16:46 -0000 1.36 +++ local_apic.c 4 Jun 2007 15:20:14 -0000 @@ -977,10 +977,6 @@ struct apic_enumerator *enumerator; int retval, best; - /* We only support built in local APICs. */ - if (!(cpu_feature & CPUID_APIC)) - return; - /* Don't probe if APIC mode is disabled. */ if (resource_disabled("apic", 0)) return; -- John Baldwin