From owner-freebsd-bugs@FreeBSD.ORG Mon Sep 10 12:36:31 2007 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 965F316A468 for ; Mon, 10 Sep 2007 12:36:31 +0000 (UTC) (envelope-from malus.x@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.227]) by mx1.freebsd.org (Postfix) with ESMTP id 202B413C4A8 for ; Mon, 10 Sep 2007 12:36:30 +0000 (UTC) (envelope-from malus.x@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so253635wra for ; Mon, 10 Sep 2007 05:36:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=Me5zsok45TbRyTs6Obw2hfXe8h1tjAJK1dVF+U2Kxfw=; b=DxtZC4edWDKGt8BrLs+pSl3nPrHOlSjUVb52Eu322gj0cJ+Vahs7vF4UhcrFBSv0vq9SwjK0t9yQrkoAr/daw0YE3NSvJS7Ln2Pr/3c1ONFnREev5aABMi3pD0EUm3mlAY53o4ZY9uckiimfifrkhTgFb73em9rHmVC2yw/+bgA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=AnGRLX44xY4f2Os+q55LpJml9szlLAPkpDJZwz+CpP/iScZuby2nBCy7rC1hpZSuNHD7z4lL+QErnXX/LGBEb+c9X3LCIpfHa03+TyMZC+xQx5hrJf3AUyGac/KjbzP/i3yYTSkXiB9QSU0ipXTGlKc9jBxLjwO9+EwmpC8lhlY= Received: by 10.90.91.14 with SMTP id o14mr10210887agb.1189426085761; Mon, 10 Sep 2007 05:08:05 -0700 (PDT) Received: from ?192.168.1.2? ( [69.249.2.14]) by mx.google.com with ESMTPS id 39sm5216970agb.2007.09.10.05.08.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 10 Sep 2007 05:08:04 -0700 (PDT) Message-ID: <46E533A1.9020200@gmail.com> Date: Mon, 10 Sep 2007 08:08:01 -0400 From: Dave Grochowski User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: "Andrey V. Elsukov" References: <200709100410.l8A4AAWt090232@freefall.freebsd.org> <46E4D768.7080303@yandex.ru> In-Reply-To: <46E4D768.7080303@yandex.ru> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-bugs@FreeBSD.org 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 List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2007 12:36:31 -0000 Hey, Andrey V. Elsukov wrote: > Dave Grochowski wrote: >> 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. > > Hm.. VIAAHCI & VIABAR == 0. > This changes disable AHCI. > >> --- /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]; > > Can you show verbose dmesg from RELENG_6 (without this patch)? > Whoops, that would be correct. I meant to use |, but I apparently did not. However, it does work now, even with the &. I'll see if I can get a verbose dmesg when I get back from work tonight. Sincerely, Dave Grochowski