From owner-freebsd-bugs Sat Sep 21 22:50: 4 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7464437B401 for ; Sat, 21 Sep 2002 22:50:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C759043E6E for ; Sat, 21 Sep 2002 22:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8M5o1Co019182 for ; Sat, 21 Sep 2002 22:50:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8M5o1Q7019181; Sat, 21 Sep 2002 22:50:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 635BE37B401 for ; Sat, 21 Sep 2002 22:43:29 -0700 (PDT) Received: from h24-77-105-71.vc.shawcable.net (h24-77-105-71.vc.shawcable.net [24.77.105.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723F543E6A for ; Sat, 21 Sep 2002 22:43:28 -0700 (PDT) (envelope-from jhanna@cub.pangolin-systems.com) Received: from cub.pangolin-systems.com (localhost [127.0.0.1]) by h24-77-105-71.vc.shawcable.net (8.12.6/8.12.6) with ESMTP id g8M5hRWv098087 for ; Sat, 21 Sep 2002 22:43:27 -0700 (PDT) (envelope-from jhanna@cub.pangolin-systems.com) Received: (from jhanna@localhost) by cub.pangolin-systems.com (8.12.6/8.12.6/Submit) id g8M5hRfB098086; Sat, 21 Sep 2002 22:43:27 -0700 (PDT) Message-Id: <200209220543.g8M5hRfB098086@cub.pangolin-systems.com> Date: Sat, 21 Sep 2002 22:43:27 -0700 (PDT) From: Jonathan Hanna Reply-To: Jonathan Hanna To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/43221: ATA-100 for SiS 651 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 43221 >Category: kern >Synopsis: ATA-100 for SiS 651 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 21 22:50:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Jonathan Hanna >Release: FreeBSD 4.7-RC i386 >Organization: >Environment: System: FreeBSD cub.pangolin-systems.com 4.7-RC FreeBSD 4.7-RC #3: Fri Sep 20 18:47:23 PDT 2002 root@:/usr/obj/usr/src/sys/CUB i386 >Description: The ATA driver does not recognize the SiS-651 (ATA-133). >How-To-Repeat: Attempt to boot a SiS-651 with UDMA enabled. >Fix: This recognizes the SiS-651 as ATA-100, but does not add ATA-133 support, as I have no ATA-133 drive to try. --- ata-dma.c 2002/09/21 01:27:39 1.1 +++ ata-dma.c 2002/09/21 01:55:18 1.2 @@ -504,6 +504,7 @@ ata_find_dev(parent, 0x06401039, 0) || /* SiS 640 */ ata_find_dev(parent, 0x06451039, 0) || /* SiS 645 */ ata_find_dev(parent, 0x06501039, 0) || /* SiS 650 */ + ata_find_dev(parent, 0x06511039, 0) || /* SiS 651 */ ata_find_dev(parent, 0x07301039, 0) || /* SiS 730 */ ata_find_dev(parent, 0x07331039, 0) || /* SiS 733 */ ata_find_dev(parent, 0x07351039, 0) || /* SiS 735 */ --- ata-pci.c 2002/09/21 01:27:39 1.1 +++ ata-pci.c 2002/09/21 01:55:18 1.2 @@ -192,6 +192,7 @@ ata_find_dev(dev, 0x06401039, 0) || ata_find_dev(dev, 0x06451039, 0) || ata_find_dev(dev, 0x06501039, 0) || + ata_find_dev(dev, 0x06511039, 0) || ata_find_dev(dev, 0x07301039, 0) || ata_find_dev(dev, 0x07331039, 0) || ata_find_dev(dev, 0x07351039, 0) || >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message