From owner-freebsd-bugs@FreeBSD.ORG Mon Sep 10 04:10:10 2007 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9563116A417 for ; Mon, 10 Sep 2007 04:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6418313C465 for ; Mon, 10 Sep 2007 04:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8A4AApc090239 for ; Mon, 10 Sep 2007 04:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8A4AAWt090232; Mon, 10 Sep 2007 04:10:10 GMT (envelope-from gnats) Date: Mon, 10 Sep 2007 04:10:10 GMT Message-Id: <200709100410.l8A4AAWt090232@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Dave Grochowski Cc: Subject: Re: kern/111699: [sata] SATA drives on an Asus A8V-MX are no longer detected on 7.0-CURRENT (regression) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave Grochowski List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2007 04:10:10 -0000 The following reply was made to PR kern/111699; it has been noted by GNATS. From: Dave Grochowski To: bug-followup@FreeBSD.org, malus.x@gmail.com Cc: Subject: Re: kern/111699: [sata] SATA drives on an Asus A8V-MX are no longer detected on 7.0-CURRENT (regression) Date: Mon, 10 Sep 2007 00:00:42 -0400 This is a multi-part message in MIME format. --------------050903010507050708010707 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hey, The attached patch fixes the problem for me. The value for VIAAHCI should probably be 0x0C00 instead of 0x0800, but I do not know if this will have any ramifications for future AHCI capable VIA chipsets. Sincerely, Dave Grochowski --------------050903010507050708010707 Content-Type: text/plain; name="ata-chipset.c.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ata-chipset.c.patch.txt" --- /usr/src/sys/dev/ata/ata-chipset.c.orig 2007-09-09 21:01:35.000000000 -0400 +++ /usr/src/sys/dev/ata/ata-chipset.c 2007-09-09 21:02:12.000000000 -0400 @@ -5098,7 +5098,7 @@ { ATA_VIA6420, 0x00, 7, 0x00, ATA_SA150, "6420" }, { ATA_VIA6421, 0x00, 6, VIABAR, ATA_SA150, "6421" }, { ATA_VIA8237A, 0x00, 7, 0x00, ATA_SA150, "8237A" }, - { ATA_VIA8251, 0x00, 0, VIAAHCI, ATA_SA300, "8251" }, + { ATA_VIA8251, 0x00, 0, VIAAHCI & VIABAR, ATA_SA300, "8251" }, { 0, 0, 0, 0, 0, 0 }}; char buffer[64]; --------------050903010507050708010707--