From owner-cvs-src@FreeBSD.ORG Thu Aug 25 16:21:06 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2334116A41F; Thu, 25 Aug 2005 16:21:06 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E50FA43D45; Thu, 25 Aug 2005 16:21:05 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j7PGL5aS060491; Thu, 25 Aug 2005 16:21:05 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j7PGL5ss060490; Thu, 25 Aug 2005 16:21:05 GMT (envelope-from sos) Message-Id: <200508251621.j7PGL5ss060490@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 25 Aug 2005 16:21:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.h atapi-cd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Aug 2005 16:21:06 -0000 sos 2005-08-25 16:21:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata ata-all.c ata-all.h ata-chipset.c ata-disk.c ata-lowlevel.c ata-pci.h atapi-cd.c Log: MFC: Add support for working around controllers that cannot do DMA in 48bit. The workaround use PIO mode above ~137GB to allow using the disk. Add the Acer chips with rev < 0xc4 as first candidate. Add support for the Promise PDC4071[89] chips on the Fasttrak TX4300. Docs kindly provided by Promise. Apply fix for "pr82261 DMA-support on Sparc64 broken" Use the bio field instead of the driver field as intended. Dont set default mode to ATA_DMA_MAX on devices not capable of DMA. Approved by: re@ (scottl) Revision Changes Path 1.252.2.1 +59 -15 src/sys/dev/ata/ata-all.c 1.103.2.2 +2 -1 src/sys/dev/ata/ata-all.h 1.126.2.2 +88 -20 src/sys/dev/ata/ata-chipset.c 1.189.2.1 +2 -2 src/sys/dev/ata/ata-disk.c 1.69.2.1 +4 -4 src/sys/dev/ata/ata-lowlevel.c 1.49.2.2 +3 -0 src/sys/dev/ata/ata-pci.h 1.179.2.1 +2 -2 src/sys/dev/ata/atapi-cd.c