From owner-svn-src-all@FreeBSD.ORG Thu Mar 19 15:45:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63F281065796; Thu, 19 Mar 2009 15:45:44 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3642C8FC15; Thu, 19 Mar 2009 15:45:44 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n2JFjier067388; Thu, 19 Mar 2009 15:45:44 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n2JFjiIN067387; Thu, 19 Mar 2009 15:45:44 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <200903191545.n2JFjiIN067387@svn.freebsd.org> From: Marius Strobl Date: Thu, 19 Mar 2009 15:45:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r190072 - stable/7/share/man/man9 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2009 15:45:46 -0000 Author: marius Date: Thu Mar 19 15:45:43 2009 New Revision: 190072 URL: http://svn.freebsd.org/changeset/base/190072 Log: MFC: r179694 Mark "highaddr" and "lowaddr" appropriately. Change "dma" to "DMA". Fix spelling mistage found by rodrigc@. Reviewed by: rodrigc, danger Modified: stable/7/share/man/man9/ (props changed) stable/7/share/man/man9/bus_dma.9 Modified: stable/7/share/man/man9/bus_dma.9 ============================================================================== --- stable/7/share/man/man9/bus_dma.9 Thu Mar 19 15:44:13 2009 (r190071) +++ stable/7/share/man/man9/bus_dma.9 Thu Mar 19 15:45:43 2009 (r190072) @@ -283,7 +283,7 @@ Client specified lock/mutex manipulation This will be called from within busdma whenever a client lock needs to be manipulated. In its current form, the function will be called immediately before -the callback for a dma load operation that has been deferred with +the callback for a DMA load operation that has been deferred with .Dv BUS_DMA_LOCK and immediately after with .Dv BUS_DMA_UNLOCK . @@ -364,17 +364,26 @@ indicates that there are no boundary res Bounds of the window of bus address space that .Em cannot be directly accessed by the device. -The window contains all addresses greater than lowaddr and -less than or equal to highaddr. -For example, a device incapable of DMA above 4GB, would specify -a highaddr of +The window contains all addresses greater than +.Fa lowaddr +and less than or equal to +.Fa highaddr . +For example, a device incapable of DMA above 4GB, would specify a +.Fa highaddr +of .Dv BUS_SPACE_MAXADDR -and a lowaddr of +and a +.Fa lowaddr +of .Dv BUS_SPACE_MAXADDR_32BIT . -Similarly a device that can only dma to addresses bellow 16MB would -specify a highaddr of +Similarly a device that can only perform DMA to addresses below +16MB would specify a +.Fa highaddr +of .Dv BUS_SPACE_MAXADDR -and a lowaddr of +and a +.Fa lowaddr +of .Dv BUS_SPACE_MAXADDR_24BIT . Some implementations requires that some region of device visible address space, overlapping available host memory, be outside the