From owner-freebsd-hackers@FreeBSD.ORG Wed Aug 15 15:28:43 2007 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4427A16A46B for ; Wed, 15 Aug 2007 15:28:43 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id BDB6313C4B7 for ; Wed, 15 Aug 2007 15:28:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8k) with ESMTP id 203479465-1834499 for multiple; Wed, 15 Aug 2007 11:28:31 -0400 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 l7FFSOkE035638; Wed, 15 Aug 2007 11:28:24 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-hackers@freebsd.org Date: Tue, 14 Aug 2007 15:33:01 -0400 User-Agent: KMail/1.9.6 References: <200708111611.22644.mario.lobo@ipad.com.br> In-Reply-To: <200708111611.22644.mario.lobo@ipad.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200708141533.01594.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]); Wed, 15 Aug 2007 11:28:26 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/3963/Wed Aug 15 08:46:37 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-3.8 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00, DATE_IN_PAST_12_24 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Mario Lobo Subject: Re: IDE ultraDMA problem (hackers WAS via IDE controller problem) - SOLVED !! X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Aug 2007 15:28:43 -0000 On Saturday 11 August 2007 12:11:21 pm Mario Lobo wrote: > after a long,long search, I found that chip id 0x53371106 belongs to SATA150 > controller, not PATA !! Then I enabled all mass storage controllers on the > board ( although no SATA drives present ), then two more ids showed up: > > chip=0x016a10de (jmicron SATA300) > chip=0x05711106 <- thats it !! > > Then I went iinto /usr/src/sys/dev/ata/ata-pci.h and changed the line > > from > #define ATA_VIA8237A 0x05911106 > to > #define ATA_VIA8237A 0x05711106 > > recompiled, install and BANG! 6.x already has support for this ID as: #define ATA_VIA82C571 0x05711106 so you shouldn't have needed to change the code at all. -- John Baldwin