From owner-freebsd-hardware@FreeBSD.ORG Wed Mar 17 15:27:55 2010 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C76F6106564A for ; Wed, 17 Mar 2010 15:27:55 +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 983C78FC0A for ; Wed, 17 Mar 2010 15:27:55 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 4A94446B81; Wed, 17 Mar 2010 11:27:55 -0400 (EDT) Received: from jhbbsd.localnet (smtp.hudson-trading.com [209.249.190.9]) by bigwig.baldwin.cx (Postfix) with ESMTPA id 439A58A01F; Wed, 17 Mar 2010 11:27:54 -0400 (EDT) From: John Baldwin To: agh@coolrhaug.com Date: Wed, 17 Mar 2010 11:23:03 -0400 User-Agent: KMail/1.12.1 (FreeBSD/7.3-CBSD-20100217; KDE/4.3.1; amd64; ; ) References: <201002212231.12018.agh@coolrhaug.com> <201003011154.00827.jhb@freebsd.org> <201003162122.28370.agh@coolrhaug.com> In-Reply-To: <201003162122.28370.agh@coolrhaug.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201003171123.03817.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Wed, 17 Mar 2010 11:27:54 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-1.6 required=4.2 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: kochetkov.andrew@gmail.com, Randy Chou , freebsd-hardware@freebsd.org Subject: Re: Intel DP45SG motherboard problem (amd64) X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Mar 2010 15:27:55 -0000 On Tuesday 16 March 2010 9:22:28 am Alastair Hogge wrote: > On Tue March 2 2010 00:54:00 John Baldwin wrote: > > This would not change acpidump output, just the kernel. Are you able to > > capture the boot messages with this kernel? > Full log: > http://codepad.org/96PT5OO8 Oh! ACPI is working, but the MADT is not so it's trying to mix and match mptable (for SMP) with ACPI. Odd that you didn't get a warning message about the checksum failing from boot -v. Try this patch: Index: amd64/acpica/acpi_machdep.c =================================================================== --- amd64/acpica/acpi_machdep.c (revision 205249) +++ amd64/acpica/acpi_machdep.c (working copy) @@ -627,8 +627,10 @@ if (ACPI_FAILURE(AcpiTbChecksum(table, length))) { if (bootverbose) printf("ACPI: Failed checksum for table %s\n", sig); +#if (ACPI_CHECKSUM_ABORT) table_unmap(table, length); return (NULL); +#endif } return (table); } Index: i386/acpica/acpi_machdep.c =================================================================== --- i386/acpica/acpi_machdep.c (revision 205249) +++ i386/acpica/acpi_machdep.c (working copy) @@ -641,8 +641,10 @@ if (ACPI_FAILURE(AcpiTbChecksum(table, length))) { if (bootverbose) printf("ACPI: Failed checksum for table %s\n", sig); +#if (ACPI_CHECKSUM_ABORT) table_unmap(table, length); return (NULL); +#endif } return (table); } -- John Baldwin