kern/111699: [sata] SATA drives on an Asus A8V-MX are no longer detected on 7.0-CURRENT (regression)

Dave Grochowski malus.x at gmail.com
Sun Sep 9 21:10:10 PDT 2007


The following reply was made to PR kern/111699; it has been noted by GNATS.

From: Dave Grochowski <malus.x at gmail.com>
To: bug-followup at FreeBSD.org,  malus.x at 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--


More information about the freebsd-bugs mailing list