From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 19 Jan 2005 15:10:48 +0100 From: Christoph Hellwig To: Sachin P Message-ID: <20050119141048.GA13254@lst.de> References: <66164fbc0501190353485dc8e4@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <66164fbc0501190353485dc8e4@mail.gmail.com> Cc: Linuxppc-dev@ozlabs.org Subject: Re: consistent_alloc() on PPC List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, Jan 19, 2005 at 05:23:17PM +0530, Sachin P wrote: > Hi , > I am facing some problems porting my drivers to the PPC platform . Am > currently using consistent_alloc() and consistent_free() to > allocate/free (non-cached) DMA ble memory. > Is there any function/patch/macro, equivalent to > phy_to_virt()/virt_to_phy() for memory returned by consistent_alloc()? Don't ever use concistant_alloc directly. Always use dma_alloc_coherent() which will give you both virtual and bus address.